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

Background Process in ORACLE Database

Background Process in ORACLE Database Database Writer Process (DBWn) Log Writer Process (LGWR) Checkpoint Process (CKPT) System Monitor Process (SMON) Process Monitor Process (PMON) Recoverer Process (RECO) Job Queue Processes Archiver Processes (ARCn) Queue Monitor Processes (QMNn) Database Writer Process (DBWn) The database writer process (DBWn) writes the contents of buffers to datafiles. The DBWn processes are responsible for writing modified (dirty) buffers in the database buffer cache to disk. Although one database writer process (DBW0) is adequate for most systems, you can configure additional processes (DBW1 through DBW9 and DBWa through DBWj) to improve write performance if your system modifies data heavily. These additional DBWn processes are not useful on uniprocessor systems. When a buffer in the database buffer cache is modified, it is marked dirty. A cold buffer is a buffer that has not been recently used according to the least recently used (LRU) algorith...

Using GREP in UNIX

How To Use grep Command In Linux / UNIX by  VIVEK GITE  on  AUGUST 2, 2007  ·  147 COMMENTS H ow do I use grep command in Linux? grep command searches the given file for lines containing a match to the given strings or words. By default, grep prints the matching lines. Use grep to search for lines of text that match one or many regular expressions, and outputs only the matching lines. The name, "grep", derives from the command used to perform a similar operation, using the Unix/Linux text editor ed: g/re/p grep command syntax grep 'word' filename grep 'string1 string2' filename cat otherfile | grep 'something' command | grep 'something' Use grep to search file Search /etc/passwd for boo user: $ grep boo /etc/passwd You can force grep to ignore word case i.e match boo, Boo, BOO and all other combination with -i option: $ grep -i "boo" /etc/passwd Use grep recursively You can search recursively i.e. read all files under each ...

SBI IBPS IT Officer Scoring Topics #1

G3 is a computer CHIP If instruction RST-5 is written in a program, the program control will jump to location 0028H . TOP-DOWN is a tree PREORDER traversing . An Operand STACK is essential for conversion to INFIX Expression. Header of IP is FIXED part of 20 Bytes. FENCE register is used for MEMORY PROTECTION . YACC semantic action is sequence of C Statements. s Symbol represents SYMMETRIC DIFFERENCE. E.g. AsB 5 th NF is related to JOIN DEPENDENCY. 8086 Microprocessor is a 16 bit Processor. A total of about 1 million bytes can be directly addressed by the 8086 microprocessor 8086 has 8 flags Compare to 8086, the 80286 provides a higher degree of memory operation The address space of 8086 Microprocessor is 2 16 = 1MB. The action of parsing the source program into the proper syntactic classes is known as LEXICAL ANALYSIS. Printf() in C used to print “character, string, float, integer, octal and hexadecimal values” onto the output scree...