Skip to main content

DOC & DOCX


DOC & DOCX
DOC and DOCX are file formats that are used in Microsoft’s Word application; a part of the Microsoft Office productivity suite. The main difference between DOC and DOCX is their current status. The DOC format has been used my Microsoft until the 2003 version of Word. In Word 2007, they introduced the DOCX as the new default format. Users can still revert to using the DOC format if they want to.
The single biggest problem with the DOCX format is compatibility as Word 2003 and older version are unable to open DOCX files. This is a major problem when sharing files as not all people update their software with every new version. To solve the problem, Microsoft released a compatibility pack that allows older versions of Office to open the DOCX and other related formats.
In DOC, the document is stored in a binary file that also contains the related formatting and other relevant information. On the other hand, a DOCX file is basically a zip file that contains all the XML files pertaining to the document. If you replace the DOCX extension with ZIP, you can easily open it with any zip compression software and see or alter the XML documents.
The DOC format has been used by Microsoft for quite some time. But its proprietary nature meant that other software makers were not able to use the format for their own applications. Even other word processing applications have difficulties in accurately reading DOC files. Microsoft’s main goal with DOCX is to create an open standard that other companies may also adopt; hence the use of XML as the basis. Implementing functions to read and write DOCX files are easy to do since the XML vocabularies used are readily available. There is no guess work involved in coding.
Because of the introduction DOCX and the other XML based formats, it is probably safe to assume that the DOC format would slowly be phased out in favor of the new formats. With Word 2007 and 2010, newer features have been added. These features can be saved in a DOCX document while some of these features may not be retained in a DOC file.
Summary:
1.DOC is the default extension of Word 2003 and older while DOCX is the default extension of Word 2007 and newer
2.Word 2003 and older cannot open DOCX files without the compatibility pack
3.DOCX is XML based while DOC is in a binary format
4.DOC is proprietary while DOCX is an open standard
5.DOCX can work with newer features while DOC cannot

Comments

  1. It is very simple topic. We know these are the two Extension of MS word file name of Two different version. But the real fact is not known by all.......

    I think so..
    Most of us just neglect such simple matter. But it is not so simple matter to neglect.

    ReplyDelete

Post a Comment

Popular posts from this blog

Exp/ Imp vs. ExpDP/ ImpDP in Oracle 10g

ORACLE Export (exp) vs Datapump (expdp)    ORACLE provides two external utilities to transfer database objects from one database to another database. Traditional exports (exp /imp) are introduced before 10g. Then from 10g, ORACLE introduced datapump (expdp / impdp) as an enhancement to traditional export utility. Traditional Export (exp/ imp) This is an ORACLE database external utility, which is used to transfer database objects from one database server to another database server. It allows transferring the database objects over different platforms, different hardware and software configurations. When an export command is executed on a database, database objects are extracted with their dependency objects. That means if it extracts a table, the dependences like indexes, comments, and grants are extracted and written into an export file (binary format dump file). Following is the command to export a full database, Cmd > exp userid=username/password@exportdb_...

Hi! I'm Java...

Java is a computer programming language. It enables programmers to write computer instructions using English based commands, instead of having to write in numeric codes. It’s known as a “high-level” language because it can be read and written easily by humans. Like English, Java has a set of rules that determine how the instructions are written. These rules are known as its “syntax”. Once a program has been written, the high-level instructions are translated into numeric codes that computers can understand and execute. Who Created Java? In the early nineties, Java was created by a team led by James Gosling for Sun Microsystems. It was originally designed for use on digital mobile devices, such as cell phones. However, when Java 1.0 was released to the public in 1996, its main focus had shifted to use on the Internet. It provided more interactivity with users by giving developers a way to produce animated webpages . Over the years it has evolved as a successful language for ...

Setting up OpenGL environment for Microsoft Visual C++

Hi Friends, before starting the setting up OpenGL environment, please do the following first: 1.       Install Microsoft Visual C++ 6.0 (Comes with Ms Visual Studio 6.0) 2.       Download the file called “opengl95.exe” and “glutdlls.zip” from internet. [Just open browser-> navigate http://www.google.com -> type upper mentioned file name and search -> you will definitely find the appropriate link to download.] 3.       Run opengl95.exe file and it will be extracted and will be generated some files. Copy those files and 4.       Extract the file “glutdlls.zip” and it will also generate some more files. 5.       Now, combine all extracted files from two sources (opengl95.exe and glutdlls.zip) and place in one location. Setting up OpenGL environment for Microsoft Visual C++ With any system, you can start with a C\C++ compiler and install ...