<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8696921121865103106</id><updated>2011-11-27T15:57:45.989-08:00</updated><category term='C++'/><category term='Windows XP'/><category term='Multiprocessing System'/><category term='Operating System'/><category term='Computer Languages'/><category term='MS Word'/><category term='Data Processing'/><category term='Excel Tricks'/><title type='text'>Computer Zone</title><subtitle type='html'>(Go to unlimite)</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://isoftpoint.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>39</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-8440685884779390533</id><published>2011-02-10T08:15:00.000-08:00</published><updated>2011-02-10T08:15:00.320-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Computer Languages'/><category scheme='http://www.blogger.com/atom/ns#' term='C++'/><title type='text'>How to BINARY CONVERTOR IN C++ ?</title><content type='html'>#include &lt;iostream&gt;&lt;br /&gt;using namespace std;&lt;br /&gt;#include &lt;cstring&gt;&lt;br /&gt;#include &lt;cstdlib&gt;&lt;br /&gt;&lt;br /&gt;char *entry, letter, choice[2];&lt;br /&gt;int ascii, len, binary[8], total;&lt;br /&gt;void prog();&lt;br /&gt;&lt;br /&gt;int main()&lt;br /&gt;{&lt;br /&gt;    prog();   &lt;br /&gt;    return 0;&lt;br /&gt;}      &lt;br /&gt;    &lt;br /&gt;void prog()&lt;br /&gt;{&lt;br /&gt; entry = new char[501];&lt;br /&gt; /* entry should be dynamic, otherwise a new&lt;br /&gt;    string entry of 501 chars would be created&lt;br /&gt;    each time function is called!&lt;br /&gt;    Talk about memory hog! */&lt;br /&gt; cout&lt;&lt;"Enter string to convert (up to 500 chars): ";    cin.getline(entry, 500);    len = strlen(entry);  /* get the number of characters in entry. */    /* this loop is executed for each letter in the string. */    for(int i = 0; i&lt;len; total="0;" store="" the="" first="" put="" that="" letter="entry[i];" into="" an="" so="" we="" can="" see="" its="" number="" ascii="letter;"&gt;0) /* This while loop converts the ASCII # into binary,&lt;br /&gt;                      stores it backwards into the binary array. */&lt;br /&gt;    {&lt;br /&gt;       /* To get the binary code one must take the decimal number in&lt;br /&gt;          question, take it and divide it by two repeatedly, save&lt;br /&gt;          the remainder (which will become the binary number), save&lt;br /&gt;          the whole number, divide by two, and repeat the whole&lt;br /&gt;          process until 0 is reached.  This if-else statement serves&lt;br /&gt;          this functionality, by getting the remainder of the ascii&lt;br /&gt;          code, storing it in the array and then dividing the int&lt;br /&gt;          ascii by two */&lt;br /&gt;       if((ascii%2)==0)&lt;br /&gt;       {&lt;br /&gt;          binary[total] = 0;&lt;br /&gt;          ascii = ascii/2;&lt;br /&gt;          total++; /* increasing by one each time will yeild the&lt;br /&gt;                      number of numbers in the array. */&lt;br /&gt;       }&lt;br /&gt;       else&lt;br /&gt;       {&lt;br /&gt;          binary[total] = 1;&lt;br /&gt;          ascii = ascii/2;&lt;br /&gt;          total++;&lt;br /&gt;       }&lt;br /&gt;    }&lt;br /&gt;    total--; /* due to data type factors, the program will actually&lt;br /&gt;                add a 0 at the end of the array that is not supposed&lt;br /&gt;                to be there, decrementing total will solve this&lt;br /&gt;                problem, as that 0 will not be displayed. */&lt;br /&gt;    /* this while loop displays the binary code for that letter. */&lt;br /&gt;    while(total&gt;=0)&lt;br /&gt;    {&lt;br /&gt;       cout&lt;&lt;binary[total];&gt;&lt;br /&gt;       total--;&lt;br /&gt;    }&lt;br /&gt; }&lt;br /&gt; delete[] entry; /* free up the memory used by entry */&lt;br /&gt; cout&lt;&lt;endl&gt;&lt;&lt;"Do again(1 = yes, 2= no)?: ";   cin.getline(choice,3);   if(choice[0] == '1')      prog(); /* program is recursive, it calls itself.  It's kinda                 like a function loop of sorts. */   else      exit(0); /* quits the program */  }  source: www.cplusplus.com&lt;/endl&gt;&lt;/binary[total];&gt;&lt;/len;&gt;&lt;/cstdlib&gt;&lt;/cstring&gt;&lt;/iostream&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-8440685884779390533?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/8440685884779390533'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/8440685884779390533'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/02/how-to-make-binary-convertor-in-c.html' title='How to BINARY CONVERTOR IN C++ ?'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-1015580276919073875</id><published>2011-02-08T23:00:00.000-08:00</published><updated>2011-02-08T23:00:10.166-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Computer Languages'/><title type='text'>HOW TO SELECT A LANGUAGE FOR CODING AN APPLICATION</title><content type='html'>&lt;div style="text-align: justify;"&gt;          One is often faced with the situation of selecting a programming language, out of the many options available for coding an application.  The following factors generally influence the selection process:&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;ul style="text-align: justify;"&gt;&lt;li&gt;&lt;span style="color: rgb(102, 102, 204);font-size:130%;" &gt;&lt;span style="font-weight: bold;"&gt;Nature of the application:&lt;/span&gt;&lt;/span&gt;     The language should be suitable for the application area.  For example, &lt;span style="color: rgb(204, 0, 0); font-weight: bold;"&gt;FORTRAN&lt;/span&gt;&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;is suitable for scientific and engineering applications, while &lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;COBOL&lt;/span&gt; is suitable for business applications.&lt;/li&gt;&lt;li&gt;&lt;span style="color: rgb(102, 102, 204);font-size:130%;" &gt;&lt;span style="font-weight: bold;"&gt;Familiarity with the language:&lt;/span&gt;&lt;/span&gt;     If there are multiple languages, which are found suitable for the application area, the language selected should be one that is best known to the programmers who are going to code the application.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="color: rgb(102, 102, 204);font-size:130%;" &gt;&lt;span style="font-weight: bold;"&gt;Easy of learning the language:&lt;/span&gt;&lt;/span&gt;     If there are multiple languages, which are found suitable for the application area, and if the programmers are not familiar with any of them, the language, which is easier to learn and use, should be selected.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="color: rgb(102, 102, 204);font-size:130%;" &gt;&lt;span style="font-weight: bold;"&gt;Availability of programme development tools:&lt;/span&gt;&lt;/span&gt;     Before selecting a language, one must also find out whether the language is well supported wtih good programme development tools like compiler, interpreter, debugger, linker etc.  The time and effort needed for coding the application can be greatly reduced, if the selected language is supported with good programme development tools.&lt;/li&gt;&lt;li&gt;&lt;span style="color: rgb(153, 0, 0);"&gt;Names, how to designe the GUI for the software, how and up to what detail to include comments in programme code, and what diagrams, charts, reports, outputs, etc.  Necessary for documentation to be complete successully.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-size:78%;"&gt;&lt;span style="font-style: italic;"&gt;Souce:&lt;/span&gt; &lt;span style="color: rgb(204, 51, 204);"&gt;Computer Fundaments&lt;span style="color: rgb(204, 153, 51);"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(204, 153, 51);"&gt;(III Edition)&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-1015580276919073875?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/1015580276919073875'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/1015580276919073875'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/01/select-language-for-coding-application.html' title='HOW TO SELECT A LANGUAGE FOR CODING AN APPLICATION'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-8696685677329614601</id><published>2011-02-08T08:50:00.000-08:00</published><updated>2011-02-08T08:50:00.205-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Windows XP'/><title type='text'>Windows START Command Use through DOS Prompt</title><content type='html'>Starts a separate window to run a specified program or command.&lt;br /&gt;&lt;br /&gt;START ["title"] [/Dpath] [/I] [/MIN] [/MAX] [/SEPARATE | /SHARED]&lt;br /&gt;   [/LOW | /NORMAL | /HIGH | /REALTIME | /ABOVENORMAL | /BELOWNORMAL]&lt;br /&gt;   [/WAIT] [/B] [command/program]&lt;br /&gt;   [parameters]&lt;br /&gt;&lt;br /&gt; "title"     Title to display in  window title bar.&lt;br /&gt; path        Starting directory&lt;br /&gt; B           Start application without creating a new window. The&lt;br /&gt;             application has ^C handling ignored. Unless the application&lt;br /&gt;             enables ^C processing, ^Break is the only way to interrupt&lt;br /&gt;             the application&lt;br /&gt; I           The new environment will be the original environment passed&lt;br /&gt;             to the cmd.exe and not the current environment.&lt;br /&gt; MIN         Start window minimized&lt;br /&gt; MAX         Start window maximized&lt;br /&gt; SEPARATE    Start 16-bit Windows program in separate memory space&lt;br /&gt; SHARED      Start 16-bit Windows program in shared memory space&lt;br /&gt; LOW         Start application in the IDLE priority class&lt;br /&gt; NORMAL      Start application in the NORMAL priority class&lt;br /&gt; HIGH        Start application in the HIGH priority class&lt;br /&gt; REALTIME    Start application in the REALTIME priority class&lt;br /&gt; ABOVENORMAL Start application in the ABOVENORMAL priority class&lt;br /&gt; BELOWNORMAL Start application in the BELOWNORMAL priority class&lt;br /&gt; WAIT        Start application and wait for it to terminate&lt;br /&gt; command/program&lt;br /&gt;             If it is an internal cmd command or a batch file then&lt;br /&gt;             the command processor is run with the /K switch to cmd.exe.&lt;br /&gt;             This means that the window will remain after the command&lt;br /&gt;             has been run.&lt;br /&gt;&lt;br /&gt;             If it is not an internal cmd command or batch file then&lt;br /&gt;             it is a program and will run as either a windowed application&lt;br /&gt;             or a console application.&lt;br /&gt;&lt;br /&gt; parameters  These are the parameters passed to the command/program&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;If Command Extensions are enabled, external command invocation&lt;br /&gt;through the command line or the START command changes as follows:&lt;br /&gt;&lt;br /&gt;non-executable files may be invoked through their file association just&lt;br /&gt; by typing the name of the file as a command.  (e.g.  WORD.DOC would&lt;br /&gt; launch the application associated with the .DOC file extension).&lt;br /&gt; See the ASSOC and FTYPE commands for how to create these&lt;br /&gt; associations from within a command script.&lt;br /&gt;&lt;br /&gt;When executing an application that is a 32-bit GUI application, CMD.EXE&lt;br /&gt; does not wait for the application to terminate before returning to&lt;br /&gt; the command prompt.  This new behavior does NOT occur if executing&lt;br /&gt; within a command script.&lt;br /&gt;&lt;br /&gt;When executing a command line whose first token is the string "CMD "&lt;br /&gt; without an extension or path qualifier, then "CMD" is replaced with&lt;br /&gt; the value of the COMSPEC variable.  This prevents picking up CMD.EXE&lt;br /&gt; from the current directory.&lt;br /&gt;&lt;br /&gt;When executing a command line whose first token does NOT contain an&lt;br /&gt; extension, then CMD.EXE uses the value of the PATHEXT&lt;br /&gt; environment variable to determine which extensions to look for&lt;br /&gt; and in what order.  The default value for the PATHEXT variable&lt;br /&gt; is:&lt;br /&gt;&lt;br /&gt;     .COM;.EXE;.BAT;.CMD&lt;br /&gt;&lt;br /&gt; Notice the syntax is the same as the PATH variable, with&lt;br /&gt; semicolons separating the different elements.&lt;br /&gt;&lt;br /&gt;When searching for an executable, if there is no match on any extension,&lt;br /&gt;then looks to see if the name matches a directory name.  If it does, the&lt;br /&gt;START command launches the Explorer on that path.  If done from the&lt;br /&gt;command line, it is the equivalent to doing a CD /D to that path.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-8696685677329614601?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/8696685677329614601'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/8696685677329614601'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/01/windows-start-command-use-through-dos.html' title='Windows START Command Use through DOS Prompt'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-3482369656205075556</id><published>2011-02-06T17:42:00.000-08:00</published><updated>2011-02-06T17:43:16.042-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Excel Tricks'/><title type='text'>Some Excel Tricks</title><content type='html'>&lt;ul&gt;&lt;li&gt;&lt;span style="font-family:Arial;"&gt;&lt;b&gt;&lt;span style="font-size:85%;"&gt;Generate Random Numbers &lt;/span&gt; &lt;/b&gt;       &lt;span style="font-size:85%;"&gt;&lt;br /&gt;      Need to create random numbers?  You can do it in        Excel. &lt;br /&gt;      To generate a number between 0 and 1, type &lt;b&gt;=RAND() &lt;/b&gt;in a cell.&lt;br /&gt;      To generate a number between 1 and 100, type &lt;b&gt;=RAND()*100&lt;/b&gt;.&lt;br /&gt;      After entering, use the fill handle to quickly populate as many cells with        random numbers as needed. To use the fill handle, click the cell, move        your pointer over the lower-right corner of the cell until it turns into a        black plus sign, and drag it horizontally or vertically across the cells        you wish to populate.  The cells can then be formatted as desired.&lt;br /&gt; &lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Arial;"&gt;&lt;b&gt;&lt;span style="font-size:85%;"&gt;No Formula, Please &lt;/span&gt; &lt;/b&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;      When copying and pasting a cell that contains a formula, use the Paste        Special feature.  First, copy the cell (Edit...Copy).  Next        click in the desired location and click &lt;b&gt;Edit&lt;/b&gt;...&lt;b&gt;Paste Special&lt;/b&gt;.         Choose &lt;b&gt;Values&lt;/b&gt; to copy the number only and not the formula.       &lt;br /&gt; &lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Arial;font-size:85%;"&gt;&lt;b&gt;Insert Time/Date in Excel&lt;br /&gt;      &lt;/b&gt;Try these keyboard shortcuts to        insert the time/date in an Excel spreadsheet:&lt;br /&gt;      &lt;b&gt;Current date:&lt;/b&gt; Press &lt;b&gt;CTRL+SEMICOLON &lt;/b&gt;&lt;br /&gt;      &lt;b&gt;Current time&lt;/b&gt;: Press &lt;b&gt;CTRL+SHIFT+ SEMICOLON&lt;/b&gt;&lt;br /&gt;      &lt;b&gt;Current date and time:&lt;/b&gt; Press&lt;b&gt; CTRL+ SEMICOLON then SPACE then        CTRL+SHIFT+ SEMICOLON &lt;/b&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;     &lt;ul&gt;&lt;li&gt;&lt;span style="font-family:Arial;"&gt;&lt;b&gt;&lt;span style="font-size:85%;"&gt;Hide Worksheets in Excel 2002        &lt;/span&gt; &lt;/b&gt;       &lt;span style="font-size:85%;"&gt;&lt;br /&gt;      To hide Excel worksheets to prevent unwanted changes, Select the        worksheet, click &lt;b&gt;Format&lt;/b&gt;...&lt;b&gt;Sheet&lt;/b&gt;...&lt;b&gt;Hide&lt;/b&gt;.&lt;br /&gt; &lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Arial;font-size:85%;"&gt;&lt;b&gt;Color-Coding Excel Sheet Tabs in Excel 2002&lt;/b&gt;&lt;br /&gt;      In Excel 2002, color-code sheet tabs for easier identification or        grouping. &lt;br /&gt;      Select the sheet(s) by holding down the CTRL key and clicking the tabs.      &lt;br /&gt;      Click &lt;b&gt;Format&lt;/b&gt;...&lt;b&gt;Sheet&lt;/b&gt;...&lt;b&gt;Tab Color&lt;/b&gt;. You can also &lt;b&gt;       right-click&lt;/b&gt; the sheet tab and choose&lt;br /&gt;      click Tab Color.&lt;br /&gt; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Arial;"&gt;&lt;b&gt;&lt;span style="font-size:85%;"&gt;Pasting an Excel Table and Its Formatting into        Word&lt;br /&gt;      &lt;/span&gt;       &lt;/b&gt;&lt;span style="font-size:85%;"&gt;In Excel, select the table and click Edit..Copy.         Switch to Word, and click where the table will be located.  Click        Edit...Paste. Using the Paste Options smart tag, select one of the        following options: To keep the formatting, select Keep Source Formatting.        To automatically keep data updated as it is updated in Excel, select Keep        Source Formatting and Link to Excel.  To match the style of another        table in the Word document, select Match Destination Table Style. To link        the table instead of copying it, select Match Destination Table Style and        Link to Excel.&lt;br /&gt; &lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;span style="font-family:Arial;font-size:85%;"&gt;Go To&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family:Arial;font-size:85%;"&gt;&lt;br /&gt;      To search for specific cells, such as ones that have formulas or ones that        just contain values, use the Go To feature.   Click Edit...Go        to...and choose the desired feature.&lt;br /&gt; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Arial;"&gt;&lt;b&gt;&lt;span style="font-size:85%;"&gt;Shortcut Keys&lt;br /&gt;      &lt;/span&gt;       &lt;/b&gt;&lt;span style="font-size:85%;"&gt;To see a complete list of shortcut keys in Excel, press        F1 on the keyboard and type shortcut keys in the search box. &lt;br /&gt; &lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Arial;font-size:85%;"&gt;&lt;b&gt;Customizing Toolbars&lt;/b&gt;&lt;br /&gt;      Right-click on any toolbars and click the customize the toolbar.         Click the Command tab, select the desired category, and click and drag new        features from the right command box to the toolbar.&lt;br /&gt; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Arial;"&gt;&lt;b&gt;&lt;span style="font-size:85%;"&gt;Quick Graphs&lt;br /&gt;      &lt;/span&gt;       &lt;/b&gt;&lt;span style="font-size:85%;"&gt;Want to create a quick graph?  Click anyway in the        Excel data on the spreadsheet, press&lt;b&gt; F11 &lt;/b&gt;key and presto!         Right-click in the graph border to change the type, location, or data.&lt;br /&gt; &lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Arial;font-size:85%;"&gt;&lt;b&gt;Basic Keyboard Shortcuts&lt;br /&gt;      F1 &lt;/b&gt;Help &lt;b&gt;&lt;br /&gt;      F2 &lt;/b&gt;Edit current Cell &lt;b&gt;&lt;br /&gt;      F5 &lt;/b&gt;Goto&lt;b&gt;&lt;br /&gt;      F7 &lt;/b&gt;Spell Check &lt;b&gt;&lt;br /&gt;      F12 &lt;/b&gt;Save file as &lt;b&gt;&lt;br /&gt;      CTRL + A &lt;/b&gt;Select entire worksheet. &lt;b&gt;&lt;br /&gt;      CTRL + B &lt;/b&gt;Toggle Bold Text. &lt;b&gt;&lt;br /&gt;      CTRL + C &lt;/b&gt;Copies the item or items selected to the Clipboard and can be        pasted using &lt;b&gt;CTRL + V.&lt;br /&gt;      CTRL + F &lt;/b&gt;Displays the Find dialog box. &lt;b&gt;&lt;br /&gt;      CTRL + H &lt;/b&gt;Displays the Replace dialog box&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-3482369656205075556?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/3482369656205075556'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/3482369656205075556'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2011/02/some-excel-tricks.html' title='Some Excel Tricks'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-3489035708192873784</id><published>2011-02-05T08:15:00.000-08:00</published><updated>2011-02-05T08:15:00.486-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Multiprocessing System'/><title type='text'>What are the Advantages and Limitations of Multiprocessing</title><content type='html'>&lt;div  style="text-align: justify;font-family:times new roman;"&gt;&lt;span style="font-size:130%;"&gt;Multiprocessing systems typically have the following advantages:&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;ul  style="text-align: justify;font-family:times new roman;"&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold; color: rgb(204, 51, 204);"&gt;Better Performance.&lt;/span&gt;  Due to multiplicity of processors, multiprocessor systems have better performance (shorter responses times and higher throughput) than single+processor systems.  For example, if there are two different programs to be run, two processors are evidently more powerful than one because the programs can be simultaneously run on different processors.  Furthermore, if a particular computation can be partitioned into a number of sub-computations that can run concurrently, in a multiprocessor system, all the sub-computations can be simultaneously run, with each one on a difference processor (popularly known as parallel processing)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold; color: rgb(204, 51, 204);"&gt;Better Reliability.  &lt;/span&gt;Due to multiplicity of processors, multiprocessor system also have better reliability than single-processor systems.  In a properly designed multiprocessor system, if one of the processors breaks down, the other processor(s) automatically takes over the system workload until repairs are made.  Hence, a complete breakdown of such systems can be avoided.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div  style="text-align: justify;font-family:times new roman;"&gt;&lt;span style="font-size:130%;"&gt;Multiprocessing system, however, require a very sophisticated operating system to schedule, balance, and coordinate the input, output, and processing activities of multiple processors.  The design of such an operating system is a complex and time take job.  Moreover, multiprocessing systems are expensive to procure and maintain.  In condition to the high charge paid initially, the regular operation and maintenance of these systems are also a costly affair.&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style="font-size:130%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;div style="text-align: right;"&gt;&lt;span style="font-weight: bold; color: rgb(102, 0, 204);font-size:130%;" &gt;To see Government Resolutions (&lt;a href="http://gsoftnet.blogspot.com/"&gt;Click Here&lt;/a&gt;)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(102, 0, 204);font-size:130%;" &gt;To see Table of Summer-2010 (&lt;a href="http://rtmnagpur.blogspot.com/2010/02/time-table-of-arts-commerce-science.html"&gt;Click Here&lt;/a&gt;)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(102, 0, 204);font-size:130%;" &gt;To see Tax Advice (&lt;a href="http://einfotax.blogspot.com/"&gt;Click Here&lt;/a&gt;)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(102, 0, 204);font-size:130%;" &gt;To see Pensioner's Details (&lt;a href="http://imsemployee.blogspot.com/2010/02/revised-resolution-for-pensionersfamily.html"&gt;Click Here&lt;/a&gt;)&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-3489035708192873784?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/3489035708192873784'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/3489035708192873784'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/02/advantages-and-limitations-of.html' title='What are the Advantages and Limitations of Multiprocessing'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-2962132413271872648</id><published>2011-02-04T20:32:00.000-08:00</published><updated>2011-02-04T20:32:00.405-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Data Processing'/><title type='text'>Do you know What is Data Processing Concept ?</title><content type='html'>The following events take place when a computer processes the data.&lt;br /&gt;&lt;ol&gt;&lt;li&gt;The programme and the necessary data are entered into the Computer System from an input device, and are stored in main memory where they can be accessed as needed.&lt;/li&gt;&lt;li&gt;Now, the C.P.U. (Central Processing Unit) retrieves the instructions from the main memory, one by one, and de-codes each instructions to determine what operation to be performed.&lt;/li&gt;&lt;li&gt;When required by instructions, the C.P.U. also retrieves the necessary data from main memory.&lt;/li&gt;&lt;li&gt;The C.P.U. then performs the operation required by the instruction, which might be arithmetic or logical operation. As each instructions are performed, the results are either temporary saved by the C.P.U. or are stored in memory.&lt;/li&gt;&lt;li&gt;The processing Cycle (retrieves instructions, decode and execute instructions, save results) is repeated until all the programme instructions have been carried out by the C.P.U. The final results are then either stored in main memory, or are sent to an output device such as a printer.&lt;/li&gt;&lt;/ol&gt;&lt;ul&gt;&lt;li style="color: rgb(0, 51, 0);"&gt;For more information regarding 6th Pay &lt;a href="http://gsoftnet.blogspot.com/"&gt;&lt;span style="font-weight: bold;"&gt;Click Here&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li style="color: rgb(0, 51, 0);"&gt;For more information regarding Government Resolution &lt;a href="http://imsemployee.blogspot.com/"&gt;&lt;span style="font-weight: bold;"&gt;Click here&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li style="color: rgb(0, 51, 0);"&gt;For more information regarding Income Tax ITR &lt;a href="http://efastway.blogspot.com/"&gt;&lt;span style="font-weight: bold;"&gt;Click Here&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="color: rgb(0, 51, 0);"&gt;For more information regarding RTM Nagpur University &lt;a href="http://rtmnagpur.blogspot.com/"&gt;&lt;span style="font-weight: bold;"&gt;Click Here&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-2962132413271872648?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/2962132413271872648'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/2962132413271872648'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/01/data-processing-concept.html' title='Do you know What is Data Processing Concept ?'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-5061095320733850505</id><published>2011-02-02T18:59:00.000-08:00</published><updated>2011-02-02T19:00:35.476-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Operating System'/><category scheme='http://www.blogger.com/atom/ns#' term='Windows XP'/><title type='text'>Know about Operating System Windows XP</title><content type='html'>You can install Windows XP Home Edition or Professional in a virtual machine using the corresponding&lt;br /&gt;Windows XP distribution CD. If your VMware product supports it, you can also install from a PXE server.&lt;br /&gt;Fulfill these prerequisites before installing Windows XP:ESX, VMware Workstation, VMware ACE, and GSX Server: To use the virtual BusLogic SCSI adapter in&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Create and configure a new virtual machine&lt;br /&gt;Consider these support and configuration issues for Windows XP:&lt;br /&gt;&lt;/li&gt;&lt;li&gt;a Windows XP virtual machine, you need a special SCSI driver available from the download section of the&lt;br /&gt;VMware &lt;span style="font-style: italic;font-size:78%;" &gt;&lt;span style="font-family:arial;"&gt;Web site at www.vmware.com/&lt;/span&gt;&lt;/span&gt;download. Follow the instructions on the Web site to use the&lt;br /&gt;driver with a fresh installation of Windows XP.&lt;/li&gt;&lt;li&gt;ESX and GSX Server: If you are using the virtual LSI Logic SCSI adapter in a Windows XP virtual&lt;br /&gt;machine, download the driver from the download center at the LSI Logic Web site. Go to&lt;br /&gt;&lt;span style="font-style: italic;font-size:78%;" &gt;http://www.lsi.com/cm/DownloadSearch.do?locale=EN&lt;/span&gt; and download the LSI20320‐R SCSI adapter&lt;br /&gt;driver for your guest operating system.&lt;/li&gt;&lt;li&gt;ESX: You can use the vmscsi SCSI driver for the virtual BusLogic SCSI adapter provided on the Windows&lt;br /&gt;XP Professional floppy image that is included with the ESX software. Although supported by ESX 4.0&lt;br /&gt;Update 1, the e1000 NIC driver is not provided with the 32‐bit version of Windows XP Professional. For&lt;br /&gt;support, download the driver from the Intel Web site. See knowledgebase article 1016456&lt;/li&gt;&lt;li&gt;If you have a virtual machine with a SCSI virtual disk and an earlier Windows guest operating system,&lt;br /&gt;and want to upgrade the virtual machine to Windows XP, install the new SCSI driver before upgrading&lt;br /&gt;the operating system.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-5061095320733850505?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/5061095320733850505'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/5061095320733850505'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2011/02/know-about-operating-system-windows-xp.html' title='Know about Operating System Windows XP'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-6713999380732381844</id><published>2011-02-01T18:21:00.000-08:00</published><updated>2011-02-01T18:23:03.232-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MS Word'/><title type='text'>How to Create Graphics Presentation in MS Word</title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt;The power graphics is demonstrated through business graphics software in the industry today. Features covered include making presentations and combining information from other application packages such as spreadsheets and databases.&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;ul  style="text-align: justify;font-family:times new roman;"&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;Start &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(102, 0, 0);font-size:130%;" &gt;MS Word&lt;/span&gt;&lt;span style="font-size:130%;"&gt; Applications.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;Set &lt;/span&gt;&lt;span style="color: rgb(204, 0, 0); font-weight: bold;font-size:130%;" &gt;Line Spacing&lt;/span&gt;&lt;span style="font-size:130%;"&gt; to &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;1.5 inches.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;Type the above matter in Microsoft Work and &lt;/span&gt;&lt;span style="color: rgb(204, 0, 0); font-weight: bold;font-size:130%;" &gt;save&lt;/span&gt;&lt;span style="font-size:130%;"&gt; the document in "&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;My Document&lt;/span&gt;&lt;span style="font-size:130%;"&gt;" folder with any file name.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;Use &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;Universe&lt;/span&gt;&lt;span style="font-size:130%;"&gt; font and set font size to 16 for title of the document. &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;Underline&lt;/span&gt;&lt;span style="font-size:130%;"&gt; the title and use &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;Bold&lt;/span&gt;&lt;span style="font-size:130%;"&gt; style.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;Use &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;Verdena&lt;/span&gt;&lt;span style="font-size:130%;"&gt; font for subtitles in the document.  Set &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;font size to 13&lt;/span&gt;&lt;span style="font-size:130%;"&gt; and change found style to&lt;/span&gt;&lt;span style="font-style: italic; font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt; italic&lt;/span&gt;&lt;span style="font-size:130%;"&gt;.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;Use "&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;Print Preview&lt;/span&gt;&lt;span style="font-size:130%;"&gt;" command to see the preview and change &lt;/span&gt;&lt;span style="color: rgb(204, 0, 0);font-size:130%;" &gt;zoom&lt;/span&gt;&lt;span style="font-size:130%;"&gt; levels.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;Save the Document with file name &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;assignment 2&lt;/span&gt;&lt;span style="font-size:130%;"&gt; using &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;Save AS&lt;/span&gt;&lt;span style="font-size:130%;"&gt; command in the folder of your name.  Use &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;Create New Folder&lt;/span&gt;&lt;span style="font-size:130%;"&gt; Icon to Create New Folder of your name.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;See the &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;Web Page Preview&lt;/span&gt;&lt;span style="font-size:130%;"&gt; of the Document created by you.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;Use &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;Properties&lt;/span&gt;&lt;span style="font-size:130%;"&gt; option in &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;File&lt;/span&gt;&lt;span style="font-size:130%;"&gt; menu and observe the use of this option.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;Use &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;Exit&lt;/span&gt;&lt;span style="font-size:130%;"&gt; command to exit from Microsoft Word Application.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style=";font-family:times new roman;font-size:78%;"  &gt;Sourse: Computer Fundamentls (Acci.-8)&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-6713999380732381844?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/6713999380732381844'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/6713999380732381844'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2011/02/how-to-create-graphics-presentation-in.html' title='How to Create Graphics Presentation in MS Word'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-2131058085310696238</id><published>2010-03-19T05:18:00.000-07:00</published><updated>2010-03-19T05:19:15.627-07:00</updated><title type='text'>HOW TO WORK "CMD" COMMAND &amp; WITH WINDOWS OPERATING SYSTEM</title><content type='html'>Starts a new instance of the Windows XP command interpreter&lt;br /&gt;&lt;br /&gt;CMD [/A | /U] [/Q] [/D] [/E:ON | /E:OFF] [/F:ON | /F:OFF] [/V:ON | /V:OFF]&lt;br /&gt;   [[/S] [/C | /K] string]&lt;br /&gt;&lt;br /&gt;/C      Carries out the command specified by string and then terminates&lt;br /&gt;/K      Carries out the command specified by string but remains&lt;br /&gt;/S      Modifies the treatment of string after /C or /K (see below)&lt;br /&gt;/Q      Turns echo off&lt;br /&gt;/D      Disable execution of AutoRun commands from registry (see below)&lt;br /&gt;/A      Causes the output of internal commands to a pipe or file to be ANSI&lt;br /&gt;/U      Causes the output of internal commands to a pipe or file to be&lt;br /&gt;       Unicode&lt;br /&gt;/T:fg   Sets the foreground/background colors (see COLOR /? for more info)&lt;br /&gt;/E:ON   Enable command extensions (see below)&lt;br /&gt;/E:OFF  Disable command extensions (see below)&lt;br /&gt;/F:ON   Enable file and directory name completion characters (see below)&lt;br /&gt;/F:OFF  Disable file and directory name completion characters (see below)&lt;br /&gt;/V:ON   Enable delayed environment variable expansion using ! as the&lt;br /&gt;       delimiter. For example, /V:ON would allow !var! to expand the&lt;br /&gt;       variable var at execution time.  The var syntax expands variables&lt;br /&gt;       at input time, which is quite a different thing when inside of a FOR&lt;br /&gt;       loop.&lt;br /&gt;/V:OFF  Disable delayed environment expansion.&lt;br /&gt;&lt;br /&gt;Note that multiple commands separated by the command separator '&amp;amp;&amp;amp;'&lt;br /&gt;are accepted for string if surrounded by quotes.  Also, for compatibility&lt;br /&gt;reasons, /X is the same as /E:ON, /Y is the same as /E:OFF and /R is the&lt;br /&gt;same as /C.  Any other switches are ignored.&lt;br /&gt;&lt;br /&gt;If /C or /K is specified, then the remainder of the command line after&lt;br /&gt;the switch is processed as a command line, where the following logic is&lt;br /&gt;used to process quote (") characters:&lt;br /&gt;&lt;br /&gt;   1.  If all of the following conditions are met, then quote characters&lt;br /&gt;       on the command line are preserved:&lt;br /&gt;&lt;br /&gt;       - no /S switch&lt;br /&gt;       - exactly two quote characters&lt;br /&gt;       - no special characters between the two quote characters,&lt;br /&gt;         where special is one of: &amp;amp;&lt;&gt;()@^|&lt;br /&gt;       - there are one or more whitespace characters between the&lt;br /&gt;         the two quote characters&lt;br /&gt;       - the string between the two quote characters is the name&lt;br /&gt;         of an executable file.&lt;br /&gt;&lt;br /&gt;   2.  Otherwise, old behavior is to see if the first character is&lt;br /&gt;       a quote character and if so, strip the leading character and&lt;br /&gt;       remove the last quote character on the command line, preserving&lt;br /&gt;       any text after the last quote character.&lt;br /&gt;&lt;br /&gt;If /D was NOT specified on the command line, then when CMD.EXE starts, it&lt;br /&gt;looks for the following REG_SZ/REG_EXPAND_SZ registry variables, and if&lt;br /&gt;either or both are present, they are executed first.&lt;br /&gt;&lt;br /&gt;   HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\AutoRun&lt;br /&gt;&lt;br /&gt;       and/or&lt;br /&gt;&lt;br /&gt;   HKEY_CURRENT_USER\Software\Microsoft\Command Processor\AutoRun&lt;br /&gt;&lt;br /&gt;Command Extensions are enabled by default.  You may also disable&lt;br /&gt;extensions for a particular invocation by using the /E:OFF switch.  You&lt;br /&gt;can enable or disable extensions for all invocations of CMD.EXE on a&lt;br /&gt;machine and/or user logon session by setting either or both of the&lt;br /&gt;following REG_DWORD values in the registry using REGEDT32.EXE:&lt;br /&gt;&lt;br /&gt;   HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\EnableExtensions&lt;br /&gt;&lt;br /&gt;       and/or&lt;br /&gt;&lt;br /&gt;   HKEY_CURRENT_USER\Software\Microsoft\Command Processor\EnableExtensions&lt;br /&gt;&lt;br /&gt;to either 0x1 or 0x0.  The user specific setting takes precedence over&lt;br /&gt;the machine setting.  The command line switches take precedence over the&lt;br /&gt;registry settings.&lt;br /&gt;&lt;br /&gt;The command extensions involve changes and/or additions to the following&lt;br /&gt;commands:&lt;br /&gt;&lt;br /&gt;   DEL or ERASE&lt;br /&gt;   COLOR&lt;br /&gt;   CD or CHDIR&lt;br /&gt;   MD or MKDIR&lt;br /&gt;   PROMPT&lt;br /&gt;   PUSHD&lt;br /&gt;   POPD&lt;br /&gt;   SET&lt;br /&gt;   SETLOCAL&lt;br /&gt;   ENDLOCAL&lt;br /&gt;   IF&lt;br /&gt;   FOR&lt;br /&gt;   CALL&lt;br /&gt;   SHIFT&lt;br /&gt;   GOTO&lt;br /&gt;   START (also includes changes to external command invocation)&lt;br /&gt;   ASSOC&lt;br /&gt;   FTYPE&lt;br /&gt;&lt;br /&gt;To get specific details, type commandname /? to view the specifics.&lt;br /&gt;&lt;br /&gt;Delayed environment variable expansion is NOT enabled by default.  You&lt;br /&gt;can enable or disable delayed environment variable expansion for a&lt;br /&gt;particular invocation of CMD.EXE with the /V:ON or /V:OFF switch.  You&lt;br /&gt;can enable or disable completion for all invocations of CMD.EXE on a&lt;br /&gt;machine and/or user logon session by setting either or both of the&lt;br /&gt;following REG_DWORD values in the registry using REGEDT32.EXE:&lt;br /&gt;&lt;br /&gt;   HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\DelayedExpansion&lt;br /&gt;&lt;br /&gt;       and/or&lt;br /&gt;&lt;br /&gt;   HKEY_CURRENT_USER\Software\Microsoft\Command Processor\DelayedExpansion&lt;br /&gt;&lt;br /&gt;to either 0x1 or 0x0.  The user specific setting takes precedence over&lt;br /&gt;the machine setting.  The command line switches take precedence over the&lt;br /&gt;registry settings.&lt;br /&gt;&lt;br /&gt;If delayed environment variable expansion is enabled, then the exclamation&lt;br /&gt;character can be used to substitute the value of an environment variable&lt;br /&gt;at execution time.&lt;br /&gt;&lt;br /&gt;File and Directory name completion is NOT enabled by default.  You can&lt;br /&gt;enable or disable file name completion for a particular invocation of&lt;br /&gt;CMD.EXE with the /F:ON or /F:OFF switch.  You can enable or disable&lt;br /&gt;completion for all invocations of CMD.EXE on a machine and/or user logon&lt;br /&gt;session by setting either or both of the following REG_DWORD values in&lt;br /&gt;the registry using REGEDT32.EXE:&lt;br /&gt;&lt;br /&gt;   HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\CompletionChar&lt;br /&gt;   HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\PathCompletionChar&lt;br /&gt;&lt;br /&gt;       and/or&lt;br /&gt;&lt;br /&gt;   HKEY_CURRENT_USER\Software\Microsoft\Command Processor\CompletionChar&lt;br /&gt;   HKEY_CURRENT_USER\Software\Microsoft\Command Processor\PathCompletionChar&lt;br /&gt;&lt;br /&gt;with the hex value of a control character to use for a particular&lt;br /&gt;function (e.g.  0x4 is Ctrl-D and 0x6 is Ctrl-F).  The user specific&lt;br /&gt;settings take precedence over the machine settings.  The command line&lt;br /&gt;switches take precedence over the registry settings.&lt;br /&gt;&lt;br /&gt;If completion is enabled with the /F:ON switch, the two control&lt;br /&gt;characters used are Ctrl-D for directory name completion and Ctrl-F for&lt;br /&gt;file name completion.  To disable a particular completion character in&lt;br /&gt;the registry, use the value for space (0x20) as it is not a valid&lt;br /&gt;control character.&lt;br /&gt;&lt;br /&gt;Completion is invoked when you type either of the two control&lt;br /&gt;characters.  The completion function takes the path string to the left&lt;br /&gt;of the cursor appends a wild card character to it if none is already&lt;br /&gt;present and builds up a list of paths that match.  It then displays the&lt;br /&gt;first matching path.  If no paths match, it just beeps and leaves the&lt;br /&gt;display alone.  Thereafter, repeated pressing of the same control&lt;br /&gt;character will cycle through the list of matching paths.  Pressing the&lt;br /&gt;Shift key with the control character will move through the list&lt;br /&gt;backwards.  If you edit the line in any way and press the control&lt;br /&gt;character again, the saved list of matching paths is discarded and a new&lt;br /&gt;one generated.  The same occurs if you switch between file and directory&lt;br /&gt;name completion.  The only difference between the two control characters&lt;br /&gt;is the file completion character matches both file and directory names,&lt;br /&gt;while the directory completion character only matches directory names.&lt;br /&gt;If file completion is used on any of the built in directory commands&lt;br /&gt;(CD, MD or RD) then directory completion is assumed.&lt;br /&gt;&lt;br /&gt;The completion code deals correctly with file names that contain spaces&lt;br /&gt;or other special characters by placing quotes around the matching path.&lt;br /&gt;Also, if you back up, then invoke completion from within a line, the&lt;br /&gt;text to the right of the cursor at the point completion was invoked is&lt;br /&gt;discarded.&lt;br /&gt;&lt;br /&gt;The special characters that require quotes are:&lt;br /&gt;    &lt;space&gt;&lt;br /&gt;    &amp;amp;()[]{}^=;!'+,`~&lt;/space&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-2131058085310696238?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/2131058085310696238'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/2131058085310696238'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/03/how-to-work-cmd-command-with-windows.html' title='HOW TO WORK &quot;CMD&quot; COMMAND &amp; WITH WINDOWS OPERATING SYSTEM'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-8489712773490546645</id><published>2010-03-17T00:50:00.000-07:00</published><updated>2010-03-17T00:51:49.706-07:00</updated><title type='text'>Consept of Data Processing</title><content type='html'>The following events take place when a computer processes the data.&lt;br /&gt;&lt;br /&gt;   1. The programme and the necessary data are entered into the Computer System from an input device, and are stored in main memory where they can be accessed as needed.&lt;br /&gt;   2. Now, the C.P.U. (Central Processing Unit) retrieves the instructions from the main memory, one by one, and de-codes each instructions to determine what operation to be performed.&lt;br /&gt;   3. When required by instructions, the C.P.U. also retrieves the necessary data from main memory.&lt;br /&gt;   4. The C.P.U. then performs the operation required by the instruction, which might be arithmetic or logical operation. As each instructions are performed, the results are either temporary saved by the C.P.U. or are stored in memory.&lt;br /&gt;   5. The processing Cycle (retrieves instructions, decode and execute instructions, save results) is repeated until all the programme instructions have been carried out by the C.P.U. The final results are then either stored in main memory, or are sent to an output device such as a printer.&lt;br /&gt;&lt;br /&gt;    * For more information regarding 6th Pay Click Here&lt;br /&gt;    * For more information regarding Government Resolution Click here&lt;br /&gt;    * For more information regarding Income Tax ITR Click Here&lt;br /&gt;    * For more information regarding RTM Nagpur University Click Here&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-8489712773490546645?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/8489712773490546645'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/8489712773490546645'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/03/consept-of-data-processing.html' title='Consept of Data Processing'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-8907817487357147545</id><published>2010-03-15T01:16:00.000-07:00</published><updated>2010-03-15T01:21:13.865-07:00</updated><title type='text'>OPERATING SYSTEM WINDOWS XP</title><content type='html'>You can install Windows XP Home Edition or Professional in a virtual machine using the corresponding&lt;br /&gt;Windows XP distribution CD. If your VMware product supports it, you can also install from a PXE server.&lt;br /&gt;Fulfill these prerequisites before installing Windows XP:ESX, VMware Workstation, VMware ACE, and GSX Server: To use the virtual BusLogic SCSI adapter in&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Create and configure a new virtual machine&lt;br /&gt;Consider these support and configuration issues for Windows XP:&lt;br /&gt;&lt;/li&gt;&lt;li&gt;a Windows XP virtual machine, you need a special SCSI driver available from the download section of the&lt;br /&gt;VMware &lt;span style="font-style: italic;font-size:78%;" &gt;&lt;span style="font-family: arial;"&gt;Web site at www.vmware.com/&lt;/span&gt;&lt;/span&gt;download. Follow the instructions on the Web site to use the&lt;br /&gt;driver with a fresh installation of Windows XP.&lt;/li&gt;&lt;li&gt;ESX and GSX Server: If you are using the virtual LSI Logic SCSI adapter in a Windows XP virtual&lt;br /&gt;machine, download the driver from the download center at the LSI Logic Web site. Go to&lt;br /&gt;&lt;span style="font-style: italic;font-size:78%;" &gt;http://www.lsi.com/cm/DownloadSearch.do?locale=EN&lt;/span&gt; and download the LSI20320‐R SCSI adapter&lt;br /&gt;driver for your guest operating system.&lt;/li&gt;&lt;li&gt;ESX: You can use the vmscsi SCSI driver for the virtual BusLogic SCSI adapter provided on the Windows&lt;br /&gt;XP Professional floppy image that is included with the ESX software. Although supported by ESX 4.0&lt;br /&gt;Update 1, the e1000 NIC driver is not provided with the 32‐bit version of Windows XP Professional. For&lt;br /&gt;support, download the driver from the Intel Web site. See knowledgebase article 1016456&lt;/li&gt;&lt;li&gt;If you have a virtual machine with a SCSI virtual disk and an earlier Windows guest operating system,&lt;br /&gt;and want to upgrade the virtual machine to Windows XP, install the new SCSI driver before upgrading&lt;br /&gt;the operating system.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-8907817487357147545?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/8907817487357147545'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/8907817487357147545'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/03/operating-system-windows-xp.html' title='OPERATING SYSTEM WINDOWS XP'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-9120027245041491024</id><published>2010-03-11T23:24:00.000-08:00</published><updated>2010-03-11T23:30:09.974-08:00</updated><title type='text'>Do you know, What is CIS (Central Internet Servers) ?</title><content type='html'>&lt;div style="text-align: justify; font-family: times new roman;"&gt;&lt;span style="font-size:130%;"&gt;By 1998, a new form of the darknet began to emerge from technological advances in several areas. The internet had become mainstream, and as such its protocols and infrastructure could now be relied upon by anyone seeking to connect users with a centralized service or with each other. The continuing fall in the price of storage together with advances in compression technology had also crossed the threshold at which storing large numbers of audio files was no longer an obstacle to mainstream users. Additionally, the power of computers had crossed the point at which they could be used as rendering devices for multimedia content. Finally, “CD ripping” became a trivial method for content injection.&lt;br /&gt;&lt;br /&gt;The first embodiments of this new darknet were central internet servers with large collections of MP3 audio files. A fundamental change that came with these servers was the use of a new distribution network: The internet displaced the sneaker net – at least for audio content. This solved several problems of the old darknet.  First, latency was reduced drastically.&lt;br /&gt;&lt;br /&gt;Secondly, and more importantly, discovery of objects became much easier because of simple and powerful search mechanisms – most importantly the general-purpose world-wide-web search engine. The local view of the small world was replaced by a global view of the entire collection accessible by all users. The main characteristic of this form of the darknet was centralized storage and search – a simple architecture that mirrored mainstream internet servers.&lt;br /&gt;&lt;br /&gt;Centralized or quasi-centralized distribution and service networks make sense for legal online commerce.  Bandwidth and infrastructure costs tend to be low, and having customers visit a commerce site means the merchant can display adverts, collect profiles, and bill efficiently.  Additionally, management, auditing, and accountability are much easier in a centralized model.  &lt;br /&gt;However, centralized schemes work poorly for illegal object distribution because large, central servers are large single points of failure: If the distributor is breaking the law, it is relatively easy to force him to stop.  Early MP3 Web and FTP sites were commonly “hosted” by universities, corporations, and ISPs.  Copyright-holders or their representatives sent “cease and desist” letters to these web-site operators and web-owners citing copyright infringement and in a few cases followed up with legal action [15].  The threats of legal action were successful attacks on those centralized networks, and MP3 web and FTP sites disappeared from the mainstream shortly after they appeared.&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-9120027245041491024?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/9120027245041491024'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/9120027245041491024'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/03/do-you-know-what-is-cis-central.html' title='Do you know, What is CIS (Central Internet Servers) ?'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-331026486435062101</id><published>2010-03-10T23:30:00.000-08:00</published><updated>2010-03-10T23:30:00.369-08:00</updated><title type='text'>SPECIFICATION, FETURES &amp; BENEFITS OF DOT MATRICS PRINTER</title><content type='html'>&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:trackmoves/&gt;   &lt;w:trackformatting/&gt;   &lt;w:punctuationkerning/&gt;   &lt;w:validateagainstschemas/&gt;   &lt;w:saveifxmlinvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;   &lt;w:ignoremixedcontent&gt;false&lt;/w:IgnoreMixedContent&gt;   &lt;w:alwaysshowplaceholdertext&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;   &lt;w:donotpromoteqf/&gt;   &lt;w:lidthemeother&gt;EN-US&lt;/w:LidThemeOther&gt;   &lt;w:lidthemeasian&gt;X-NONE&lt;/w:LidThemeAsian&gt;   &lt;w:lidthemecomplexscript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;   &lt;w:compatibility&gt;    &lt;w:breakwrappedtables/&gt;    &lt;w:snaptogridincell/&gt;    &lt;w:wraptextwithpunct/&gt;    &lt;w:useasianbreakrules/&gt;    &lt;w:dontgrowautofit/&gt;    &lt;w:splitpgbreakandparamark/&gt;    &lt;w:dontvertaligncellwithsp/&gt;    &lt;w:dontbreakconstrainedforcedtables/&gt;    &lt;w:dontvertalignintxbx/&gt;    &lt;w:word11kerningpairs/&gt;    &lt;w:cachedcolbalance/&gt;   &lt;/w:Compatibility&gt;   &lt;w:browserlevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;   &lt;m:mathpr&gt;    &lt;m:mathfont val="Cambria Math"&gt;    &lt;m:brkbin val="before"&gt;    &lt;m:brkbinsub val="--"&gt;    &lt;m:smallfrac val="off"&gt;    &lt;m:dispdef/&gt;    &lt;m:lmargin val="0"&gt;    &lt;m:rmargin val="0"&gt;    &lt;m:defjc val="centerGroup"&gt;    &lt;m:wrapindent val="1440"&gt;    &lt;m:intlim val="subSup"&gt;    &lt;m:narylim val="undOvr"&gt;   &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:latentstyles deflockedstate="false" defunhidewhenused="true" defsemihidden="true" defqformat="false" defpriority="99" latentstylecount="267"&gt;   &lt;w:lsdexception locked="false" priority="0" semihidden="false" unhidewhenused="false" qformat="true" name="Normal"&gt;   &lt;w:lsdexception locked="false" priority="9" semihidden="false" unhidewhenused="false" qformat="true" name="heading 1"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 2"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 3"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 4"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 5"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 6"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 7"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 8"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 9"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 1"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 2"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 3"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 4"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 5"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 6"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 7"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 8"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 9"&gt;   &lt;w:lsdexception locked="false" priority="35" qformat="true" name="caption"&gt;   &lt;w:lsdexception locked="false" priority="10" semihidden="false" unhidewhenused="false" qformat="true" name="Title"&gt;   &lt;w:lsdexception locked="false" priority="0" name="Default Paragraph Font"&gt;   &lt;w:lsdexception locked="false" priority="11" semihidden="false" unhidewhenused="false" qformat="true" name="Subtitle"&gt;   &lt;w:lsdexception locked="false" priority="22" semihidden="false" unhidewhenused="false" qformat="true" name="Strong"&gt;   &lt;w:lsdexception locked="false" priority="20" semihidden="false" unhidewhenused="false" qformat="true" name="Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="59" semihidden="false" unhidewhenused="false" name="Table Grid"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Placeholder Text"&gt;   &lt;w:lsdexception locked="false" priority="1" semihidden="false" unhidewhenused="false" qformat="true" name="No Spacing"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Revision"&gt;   &lt;w:lsdexception locked="false" priority="34" semihidden="false" unhidewhenused="false" qformat="true" name="List Paragraph"&gt;   &lt;w:lsdexception locked="false" priority="29" semihidden="false" unhidewhenused="false" qformat="true" name="Quote"&gt;   &lt;w:lsdexception locked="false" priority="30" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Quote"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="19" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="21" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="31" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Reference"&gt;   &lt;w:lsdexception locked="false" priority="32" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Reference"&gt;   &lt;w:lsdexception locked="false" priority="33" semihidden="false" unhidewhenused="false" qformat="true" name="Book Title"&gt;   &lt;w:lsdexception locked="false" priority="37" name="Bibliography"&gt;   &lt;w:lsdexception locked="false" priority="39" qformat="true" name="TOC Heading"&gt;  &lt;/w:LatentStyles&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */  @font-face  {font-family:"Cambria Math";  panose-1:2 4 5 3 5 4 6 3 2 4;  mso-font-charset:0;  mso-generic-font-family:roman;  mso-font-pitch:variable;  mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face  {font-family:AdobePiStd;  panose-1:0 0 0 0 0 0 0 0 0 0;  mso-font-charset:0;  mso-generic-font-family:auto;  mso-font-format:other;  mso-font-pitch:auto;  mso-font-signature:3 0 0 0 1 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal  {mso-style-unhide:no;  mso-style-qformat:yes;  mso-style-parent:"";  margin:0in;  margin-bottom:.0001pt;  mso-pagination:widow-orphan;  font-size:12.0pt;  font-family:"Times New Roman","serif";  mso-fareast-font-family:"Times New Roman";} .MsoChpDefault  {mso-style-type:export-only;  mso-default-props:yes;  font-size:10.0pt;  mso-ansi-font-size:10.0pt;  mso-bidi-font-size:10.0pt;} @page Section1  {size:8.5in 11.0in;  margin:1.0in 1.25in 1.0in 1.25in;  mso-header-margin:.5in;  mso-footer-margin:.5in;  mso-paper-source:0;} div.Section1  {page:Section1;} --&gt; &lt;/style&gt;&lt;!--[if gte mso 10]&gt; &lt;style&gt;  /* Style Definitions */  table.MsoNormalTable  {mso-style-name:"Table Normal";  mso-tstyle-rowband-size:0;  mso-tstyle-colband-size:0;  mso-style-noshow:yes;  mso-style-priority:99;  mso-style-qformat:yes;  mso-style-parent:"";  mso-padding-alt:0in 5.4pt 0in 5.4pt;  mso-para-margin:0in;  mso-para-margin-bottom:.0001pt;  mso-pagination:widow-orphan;  font-size:11.0pt;  font-family:"Calibri","sans-serif";  mso-ascii-font-family:Calibri;  mso-ascii-theme-font:minor-latin;  mso-fareast-font-family:"Times New Roman";  mso-fareast-theme-font:minor-fareast;  mso-hansi-font-family:Calibri;  mso-hansi-theme-font:minor-latin;  mso-bidi-font-family:"Times New Roman";  mso-bidi-theme-font:minor-bidi;} &lt;/style&gt; &lt;![endif]--&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Features and benefits&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 7pt; font-family: AdobePiStd;"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;RS-232 or 20mA input&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 7pt; font-family: AdobePiStd;"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Small enough (4&lt;/span&gt;&lt;span style="font-size: 6pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;1&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;/&lt;/span&gt;&lt;span style="font-size: 6pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;2&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;" x 4" x 2") to fit anywhere—&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Table top, wall, or panel mounting available.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 7pt; font-family: AdobePiStd;"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;24-, 32-, and 40-column printing capacity&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 7pt; font-family: AdobePiStd;"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Uses standard 2&lt;/span&gt;&lt;span style="font-size: 6pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;1&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;/&lt;/span&gt;&lt;span style="font-size: 6pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;2&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;" adding machine paper&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 7pt; font-family: AdobePiStd;"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Programmable double high and/or double wide characters&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 7pt; font-family: AdobePiStd;"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Easily replaceable black or purple ink cartridge.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 7pt; font-family: AdobePiStd;"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Dual function rocker switch: On/Standby, Paper feed&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 7pt; font-family: AdobePiStd;"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Available in AC or DC models.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 7pt; font-family: AdobePiStd;"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Optional watertight enclosure available.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 7pt; font-family: AdobePiStd;"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;X-ON, X-OFF and Busy Signal-clear to send (CTS)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;are both supported.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 7pt; font-family: AdobePiStd;"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Selectable sequencial transaction number printing&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Specifications&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Print method: &lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Impact dot matrix&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Character matrix: &lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;5 x 8 or 5 x 5 matrix&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Character spacing:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;24 column - 12.8 characters/inch&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;32 column - 17 characters/inch&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;40 column - 21 characters/inch&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Line feed spacing:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;7.6 lines per inch...single high character mode&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Character buffering: &lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;9.5K&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Paper roll:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Table top - 2&lt;/span&gt;&lt;span style="font-size: 6pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;1&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;/&lt;/span&gt;&lt;span style="font-size: 6pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;4&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;" W x 2&lt;/span&gt;&lt;span style="font-size: 6pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;3&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;/&lt;/span&gt;&lt;span style="font-size: 6pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;4&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;" O.D.; 0.44" I.D.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Panel mount - 2&lt;/span&gt;&lt;span style="font-size: 6pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;1&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;/&lt;/span&gt;&lt;span style="font-size: 6pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;4&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;" W x 1&lt;/span&gt;&lt;span style="font-size: 6pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;1&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;/&lt;/span&gt;&lt;span style="font-size: 6pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;4&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;: O.D.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Power: &lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;1.5 Watts (idle) 10 Watts (while printing)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;AC voltage: &lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;9 VAC (120 VAC stepdown converter included)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;DC voltage:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Optional 9-12 VDC, 100 mA idle, 1.5 A typical, 2.9A peak&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Optional 12-48 VDC&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Available baud rates:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;300, 600, 1200, 2400, 4800, 9600, 19200&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Character format:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;7, 8 data bits, 1 or 2 stop bits, even, odd or no parity&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Environment: &lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;5°C to 40°C (41°F to 104°F)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Shipping weight: &lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;3 lbs&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Options:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Time/date battery protected circuitry&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Wall mounting versions and a watertight enclosure are&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;available, for both AC and DC models.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Warranty: &lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;120 day&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-331026486435062101?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/331026486435062101'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/331026486435062101'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/03/specification-fetures-benefits-of-dot.html' title='SPECIFICATION, FETURES &amp; BENEFITS OF DOT MATRICS PRINTER'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-1013923026515495329</id><published>2010-03-09T03:17:00.000-08:00</published><updated>2010-03-09T03:18:51.414-08:00</updated><title type='text'>System Security Testing</title><content type='html'>&lt;div style="text-align: justify; font-family: times new roman;"&gt;&lt;span style="font-size:130%;"&gt;Proactive methods, employing system testing, can be used to identify system vulnerabilities&lt;br /&gt;efficiently, depending on the criticality of the IT system and available resources (e.g., allocated&lt;br /&gt;funds, available technology, persons with the expertise to conduct the test). Test methods&lt;br /&gt;include.&lt;br /&gt;&lt;br /&gt;• Automated vulnerability scanning tool&lt;br /&gt;• Security test and evaluation (ST&amp;amp;E)&lt;br /&gt;• Penetration testing.6&lt;br /&gt;&lt;br /&gt;The automated vulnerability scanning tool is used to scan a group of hosts or a network for&lt;br /&gt;known vulnerable services (e.g., system allows anonymous File Transfer Protocol [FTP],&lt;br /&gt;sendmail relaying). However, it should be noted that some of the potential vulnerabilities&lt;br /&gt;identified by the automated scanning tool may not represent real vulnerabilities in the context of&lt;br /&gt;the system environment. For example, some of these scanning tools rate potential vulnerabilities&lt;br /&gt;without considering the site’s environment and requirements. Some of the “vulnerabilities”&lt;br /&gt;flagged by the automated scanning software may actually not be vulnerable for a particular site&lt;br /&gt;but may be configured that way because their environment requires it. Thus, this test method&lt;br /&gt;may produce false positives.&lt;br /&gt;ST&amp;amp;E is another technique that can be used in identifying IT system vulnerabilities during the&lt;br /&gt;risk assessment process. It includes the development and execution of a test plan (e.g., test&lt;br /&gt;script, test procedures, and expected test results). The purpose of system security testing is to&lt;br /&gt;test the effectiveness of the security controls of an IT system as they have been applied in an&lt;br /&gt;operational environment. The objective is to ensure that the applied controls meet the approved&lt;br /&gt;security specification for the software and hardware and implement the organization’s security&lt;br /&gt;policy or meet industry standards.&lt;br /&gt;Penetration testing can be used to complement the review of security controls and ensure that&lt;br /&gt;different facets of the IT system are secured. Penetration testing, when employed in the risk&lt;br /&gt;assessment process, can be used to assess an IT system’s ability to withstand intentional attempts&lt;br /&gt;to circumvent system security. Its objective is to test the IT system from the viewpoint of a&lt;br /&gt;threat-source and to identify potential failures in the IT system protection schemes.&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-1013923026515495329?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/1013923026515495329'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/1013923026515495329'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/03/system-security-testing.html' title='System Security Testing'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-1762494042415181671</id><published>2010-02-15T08:38:00.000-08:00</published><updated>2010-02-15T09:05:37.745-08:00</updated><title type='text'>BUS LINES &amp; SYSTEM COMPONENTS</title><content type='html'>Bus lines provide data pathways that connect various system components.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/__6Oce5fcGow/S3l-ceTXFFI/AAAAAAAAAD0/Pvy7lTLhRwc/s1600-h/dd1.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 291px; height: 223px;" src="http://4.bp.blogspot.com/__6Oce5fcGow/S3l-ceTXFFI/AAAAAAAAAD0/Pvy7lTLhRwc/s400/dd1.JPG" alt="" id="BLOGGER_PHOTO_ID_5438517052662289490" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;A Bus line- also know  as data bus or simply bus connects the part of the CPU to each other.  It also links the CPU to various other components on the system board.  A bus is a data roadway along which bits travel.  Such data pathways resemble a multilane highway.  The more lanes there are. tje faster traffic cam go through.  Similarly, the greater the capacity of a bus, the more powerful and faster the operation. A 64-Bit bus has greater capacity than a 32 - Bit bus.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;A system unit has more than one type of bus line.  The principal bus lines (or "architectures") are :&lt;br /&gt;&lt;/div&gt;&lt;ul style="text-align: justify;"&gt;&lt;li&gt;&lt;span style="color: rgb(153, 0, 0);"&gt;Industry standard architecture &lt;/span&gt;(ISA) was developped for the IBM Personal Computer. First it was an 8-Bit wide data path; then it was 16 Bits wide. Although too slow for may of today's application, the ISA but is still widely used.&lt;/li&gt;&lt;li&gt;&lt;span style="color: rgb(153, 0, 0);"&gt;Peripheral component interconnect&lt;/span&gt; (PCI) was originally developed to meet the video demands of graphical user interfaces, PCI is a high-speed 32 Bit or 64-Bit bus that is over 20 times faster than ISA buses.  The PCI is expected to replace the ISA bus in the near future.  PCI buses are widely used to connect the CPU, memory and expansion boards.&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/__6Oce5fcGow/S3l-rEmRQ_I/AAAAAAAAAD8/vT1Na8o5Nbw/s1600-h/KK.JPG"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 220px; height: 152px;" src="http://1.bp.blogspot.com/__6Oce5fcGow/S3l-rEmRQ_I/AAAAAAAAAD8/vT1Na8o5Nbw/s400/KK.JPG" alt="" id="BLOGGER_PHOTO_ID_5438517303460316146" border="0" /&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="color: rgb(153, 0, 0);"&gt;Accellerated graphics port&lt;/span&gt; (AGP)  is over twice as fast as the PCI bus.  While the PCI bus is used for a variety of purposes, the AGP bus is dedicated to the acceleration of graphics performance.  Widely used for graphics and 3-D animations, the AGP is replacing the PCI bus for the transfer of video data.&lt;/li&gt;&lt;/ul&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://einfotax.blogspot.com/"&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;CLICK HERE FOR TAX ADVICE&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-1762494042415181671?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/1762494042415181671'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/1762494042415181671'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/02/bus-lines-system-components.html' title='BUS LINES &amp; SYSTEM COMPONENTS'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/__6Oce5fcGow/S3l-ceTXFFI/AAAAAAAAAD0/Pvy7lTLhRwc/s72-c/dd1.JPG' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-3310871412726482703</id><published>2010-02-13T23:09:00.000-08:00</published><updated>2010-02-13T23:31:32.872-08:00</updated><title type='text'>DO YOU KNOW WHAT IS SYSTEM EVALUATION</title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-family: times new roman;"&gt;     Once the new system is implemented and put to operation, it is necessary to evaluate the system to verify whether it is meeting its objectives.  These objectives of the system are clearly stated during its problem analysis and system planning phase.  The post implementation system evaluation is normally carried out by people who have an independent viewpoint, and are not responsible for the development and maintenance of the system.  While evaluating a system,  the following points are normally considered:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;ol style="font-family: times new roman; text-align: justify;"&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold; color: rgb(153, 51, 0);"&gt;Performance Evaluation&lt;/span&gt;:  The performance of the new system is evaluated and compared with the performance of the old system.  In generally, the new system should be at least as efficient as the old one in performance.  In case of any slack, the reason is analyzed, and if possible, necessary changes are incorporated in the new system to rectify it.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold; color: rgb(153, 51, 0);"&gt;Cost Analysis&lt;/span&gt;:  It should be analyzed whether the cost estimates done for the various phases of the project, during the planning phase in the beginning, matches with the actual cost incurred in each phase.  In case of discrepancies, the cost analysis will help in finding out the reasons.  The knowledge can be used in making correct cost estimates for the new systems, which will be designed in future.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="color: rgb(153, 51, 0); font-weight: bold;"&gt;Time Analysis&lt;/span&gt;:  It should be analyzed whether the time estimates done for the various phases of the project, during the planning phase in the beginning, matches with the actual time taken in each phase.  In case of discrepancies, the time analysis will help in finding out the reasons.  The knowledge can be used in making correct time estimates for the new systems, which will be designed in future.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="color: rgb(153, 51, 0); font-weight: bold;"&gt;User Satisfaction&lt;/span&gt;:  It should be found out whether the users are satisfied with the new system.  How useful is the system for them?  How enthusiastic are they about the service they receive?  Do they received outputs in time to take necessary action?  The morale of people using or affected by a system is a good measure of the success of the system.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="color: rgb(153, 51, 0); font-weight: bold;"&gt;Ease of Modificatio&lt;/span&gt;&lt;span style="color: rgb(153, 51, 0);"&gt;n&lt;/span&gt;:  Sooner or later, all systems need to be modified due to one or more of the reasons mentioned in the next section.  Hence, the ease with which a system can be modified to incorporate the suggested changes is also an important parameter to judge the quality of the system.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold; color: rgb(153, 51, 0);"&gt;Failure Rate&lt;/span&gt;:  The quality of a system also depends on its failure rate.  A system, which frequently fails cannot meet its objectives successfully.  Hence, it is of poor quality.&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-3310871412726482703?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/3310871412726482703'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/3310871412726482703'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/02/do-you-know-what-is-system-evaluation.html' title='DO YOU KNOW WHAT IS SYSTEM EVALUATION'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-767364572899361521</id><published>2010-02-09T13:37:00.000-08:00</published><updated>2010-02-12T09:21:42.783-08:00</updated><title type='text'>Graphic Presentation in MS Word</title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-family:times new roman;font-size:130%;"&gt;The power graphics is demonstrated through business graphics software in the industry today. Features covered include making presentations and combining information from other application packages such as spreadsheets and databases.&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;ul  style="text-align: justify;font-family:times new roman;"&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;Start &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(102, 0, 0);font-size:130%;" &gt;MS Word&lt;/span&gt;&lt;span style="font-size:130%;"&gt; Applications.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;Set &lt;/span&gt;&lt;span style="color: rgb(204, 0, 0); font-weight: bold;font-size:130%;" &gt;Line Spacing&lt;/span&gt;&lt;span style="font-size:130%;"&gt; to &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;1.5 inches.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;Type the above matter in Microsoft Work and &lt;/span&gt;&lt;span style="color: rgb(204, 0, 0); font-weight: bold;font-size:130%;" &gt;save&lt;/span&gt;&lt;span style="font-size:130%;"&gt; the document in "&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;My Document&lt;/span&gt;&lt;span style="font-size:130%;"&gt;" folder with any file name.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;Use &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;Universe&lt;/span&gt;&lt;span style="font-size:130%;"&gt; font and set font size to 16 for title of the document. &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;Underline&lt;/span&gt;&lt;span style="font-size:130%;"&gt; the title and use &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;Bold&lt;/span&gt;&lt;span style="font-size:130%;"&gt; style.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;Use &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;Verdena&lt;/span&gt;&lt;span style="font-size:130%;"&gt; font for subtitles in the document.  Set &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;font size to 13&lt;/span&gt;&lt;span style="font-size:130%;"&gt; and change found style to&lt;/span&gt;&lt;span style="font-style: italic; font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt; italic&lt;/span&gt;&lt;span style="font-size:130%;"&gt;.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;Use "&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;Print Preview&lt;/span&gt;&lt;span style="font-size:130%;"&gt;" command to see the preview and change &lt;/span&gt;&lt;span style="color: rgb(204, 0, 0);font-size:130%;" &gt;zoom&lt;/span&gt;&lt;span style="font-size:130%;"&gt; levels.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;Save the Document with file name &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;assignment 2&lt;/span&gt;&lt;span style="font-size:130%;"&gt; using &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;Save AS&lt;/span&gt;&lt;span style="font-size:130%;"&gt; command in the folder of your name.  Use &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;Create New Folder&lt;/span&gt;&lt;span style="font-size:130%;"&gt; Icon to Create New Folder of your name.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;See the &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;Web Page Preview&lt;/span&gt;&lt;span style="font-size:130%;"&gt; of the Document created by you.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;Use &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;Properties&lt;/span&gt;&lt;span style="font-size:130%;"&gt; option in &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;File&lt;/span&gt;&lt;span style="font-size:130%;"&gt; menu and observe the use of this option.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;Use &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);font-size:130%;" &gt;Exit&lt;/span&gt;&lt;span style="font-size:130%;"&gt; command to exit from Microsoft Word Application.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style=";font-family:times new roman;font-size:78%;"  &gt;Sourse: Computer Fundamentls (Acci.-8)&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-767364572899361521?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/767364572899361521'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/767364572899361521'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/02/graphic-presentation-in-ms-word.html' title='Graphic Presentation in MS Word'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-7915199682773994948</id><published>2010-02-07T05:47:00.000-08:00</published><updated>2010-02-07T05:48:24.362-08:00</updated><title type='text'>WINDOWS &amp; CMD COMMAND</title><content type='html'>Starts a new instance of the Windows XP command interpreter&lt;br /&gt;&lt;br /&gt;CMD [/A | /U] [/Q] [/D] [/E:ON | /E:OFF] [/F:ON | /F:OFF] [/V:ON | /V:OFF]&lt;br /&gt;   [[/S] [/C | /K] string]&lt;br /&gt;&lt;br /&gt;/C      Carries out the command specified by string and then terminates&lt;br /&gt;/K      Carries out the command specified by string but remains&lt;br /&gt;/S      Modifies the treatment of string after /C or /K (see below)&lt;br /&gt;/Q      Turns echo off&lt;br /&gt;/D      Disable execution of AutoRun commands from registry (see below)&lt;br /&gt;/A      Causes the output of internal commands to a pipe or file to be ANSI&lt;br /&gt;/U      Causes the output of internal commands to a pipe or file to be&lt;br /&gt;       Unicode&lt;br /&gt;/T:fg   Sets the foreground/background colors (see COLOR /? for more info)&lt;br /&gt;/E:ON   Enable command extensions (see below)&lt;br /&gt;/E:OFF  Disable command extensions (see below)&lt;br /&gt;/F:ON   Enable file and directory name completion characters (see below)&lt;br /&gt;/F:OFF  Disable file and directory name completion characters (see below)&lt;br /&gt;/V:ON   Enable delayed environment variable expansion using ! as the&lt;br /&gt;       delimiter. For example, /V:ON would allow !var! to expand the&lt;br /&gt;       variable var at execution time.  The var syntax expands variables&lt;br /&gt;       at input time, which is quite a different thing when inside of a FOR&lt;br /&gt;       loop.&lt;br /&gt;/V:OFF  Disable delayed environment expansion.&lt;br /&gt;&lt;br /&gt;Note that multiple commands separated by the command separator '&amp;amp;&amp;amp;'&lt;br /&gt;are accepted for string if surrounded by quotes.  Also, for compatibility&lt;br /&gt;reasons, /X is the same as /E:ON, /Y is the same as /E:OFF and /R is the&lt;br /&gt;same as /C.  Any other switches are ignored.&lt;br /&gt;&lt;br /&gt;If /C or /K is specified, then the remainder of the command line after&lt;br /&gt;the switch is processed as a command line, where the following logic is&lt;br /&gt;used to process quote (") characters:&lt;br /&gt;&lt;br /&gt;   1.  If all of the following conditions are met, then quote characters&lt;br /&gt;       on the command line are preserved:&lt;br /&gt;&lt;br /&gt;       - no /S switch&lt;br /&gt;       - exactly two quote characters&lt;br /&gt;       - no special characters between the two quote characters,&lt;br /&gt;         where special is one of: &amp;amp;&lt;&gt;()@^|&lt;br /&gt;       - there are one or more whitespace characters between the&lt;br /&gt;         the two quote characters&lt;br /&gt;       - the string between the two quote characters is the name&lt;br /&gt;         of an executable file.&lt;br /&gt;&lt;br /&gt;   2.  Otherwise, old behavior is to see if the first character is&lt;br /&gt;       a quote character and if so, strip the leading character and&lt;br /&gt;       remove the last quote character on the command line, preserving&lt;br /&gt;       any text after the last quote character.&lt;br /&gt;&lt;br /&gt;If /D was NOT specified on the command line, then when CMD.EXE starts, it&lt;br /&gt;looks for the following REG_SZ/REG_EXPAND_SZ registry variables, and if&lt;br /&gt;either or both are present, they are executed first.&lt;br /&gt;&lt;br /&gt;   HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\AutoRun&lt;br /&gt;&lt;br /&gt;       and/or&lt;br /&gt;&lt;br /&gt;   HKEY_CURRENT_USER\Software\Microsoft\Command Processor\AutoRun&lt;br /&gt;&lt;br /&gt;Command Extensions are enabled by default.  You may also disable&lt;br /&gt;extensions for a particular invocation by using the /E:OFF switch.  You&lt;br /&gt;can enable or disable extensions for all invocations of CMD.EXE on a&lt;br /&gt;machine and/or user logon session by setting either or both of the&lt;br /&gt;following REG_DWORD values in the registry using REGEDT32.EXE:&lt;br /&gt;&lt;br /&gt;   HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\EnableExtensions&lt;br /&gt;&lt;br /&gt;       and/or&lt;br /&gt;&lt;br /&gt;   HKEY_CURRENT_USER\Software\Microsoft\Command Processor\EnableExtensions&lt;br /&gt;&lt;br /&gt;to either 0x1 or 0x0.  The user specific setting takes precedence over&lt;br /&gt;the machine setting.  The command line switches take precedence over the&lt;br /&gt;registry settings.&lt;br /&gt;&lt;br /&gt;The command extensions involve changes and/or additions to the following&lt;br /&gt;commands:&lt;br /&gt;&lt;br /&gt;   DEL or ERASE&lt;br /&gt;   COLOR&lt;br /&gt;   CD or CHDIR&lt;br /&gt;   MD or MKDIR&lt;br /&gt;   PROMPT&lt;br /&gt;   PUSHD&lt;br /&gt;   POPD&lt;br /&gt;   SET&lt;br /&gt;   SETLOCAL&lt;br /&gt;   ENDLOCAL&lt;br /&gt;   IF&lt;br /&gt;   FOR&lt;br /&gt;   CALL&lt;br /&gt;   SHIFT&lt;br /&gt;   GOTO&lt;br /&gt;   START (also includes changes to external command invocation)&lt;br /&gt;   ASSOC&lt;br /&gt;   FTYPE&lt;br /&gt;&lt;br /&gt;To get specific details, type commandname /? to view the specifics.&lt;br /&gt;&lt;br /&gt;Delayed environment variable expansion is NOT enabled by default.  You&lt;br /&gt;can enable or disable delayed environment variable expansion for a&lt;br /&gt;particular invocation of CMD.EXE with the /V:ON or /V:OFF switch.  You&lt;br /&gt;can enable or disable completion for all invocations of CMD.EXE on a&lt;br /&gt;machine and/or user logon session by setting either or both of the&lt;br /&gt;following REG_DWORD values in the registry using REGEDT32.EXE:&lt;br /&gt;&lt;br /&gt;   HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\DelayedExpansion&lt;br /&gt;&lt;br /&gt;       and/or&lt;br /&gt;&lt;br /&gt;   HKEY_CURRENT_USER\Software\Microsoft\Command Processor\DelayedExpansion&lt;br /&gt;&lt;br /&gt;to either 0x1 or 0x0.  The user specific setting takes precedence over&lt;br /&gt;the machine setting.  The command line switches take precedence over the&lt;br /&gt;registry settings.&lt;br /&gt;&lt;br /&gt;If delayed environment variable expansion is enabled, then the exclamation&lt;br /&gt;character can be used to substitute the value of an environment variable&lt;br /&gt;at execution time.&lt;br /&gt;&lt;br /&gt;File and Directory name completion is NOT enabled by default.  You can&lt;br /&gt;enable or disable file name completion for a particular invocation of&lt;br /&gt;CMD.EXE with the /F:ON or /F:OFF switch.  You can enable or disable&lt;br /&gt;completion for all invocations of CMD.EXE on a machine and/or user logon&lt;br /&gt;session by setting either or both of the following REG_DWORD values in&lt;br /&gt;the registry using REGEDT32.EXE:&lt;br /&gt;&lt;br /&gt;   HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\CompletionChar&lt;br /&gt;   HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\PathCompletionChar&lt;br /&gt;&lt;br /&gt;       and/or&lt;br /&gt;&lt;br /&gt;   HKEY_CURRENT_USER\Software\Microsoft\Command Processor\CompletionChar&lt;br /&gt;   HKEY_CURRENT_USER\Software\Microsoft\Command Processor\PathCompletionChar&lt;br /&gt;&lt;br /&gt;with the hex value of a control character to use for a particular&lt;br /&gt;function (e.g.  0x4 is Ctrl-D and 0x6 is Ctrl-F).  The user specific&lt;br /&gt;settings take precedence over the machine settings.  The command line&lt;br /&gt;switches take precedence over the registry settings.&lt;br /&gt;&lt;br /&gt;If completion is enabled with the /F:ON switch, the two control&lt;br /&gt;characters used are Ctrl-D for directory name completion and Ctrl-F for&lt;br /&gt;file name completion.  To disable a particular completion character in&lt;br /&gt;the registry, use the value for space (0x20) as it is not a valid&lt;br /&gt;control character.&lt;br /&gt;&lt;br /&gt;Completion is invoked when you type either of the two control&lt;br /&gt;characters.  The completion function takes the path string to the left&lt;br /&gt;of the cursor appends a wild card character to it if none is already&lt;br /&gt;present and builds up a list of paths that match.  It then displays the&lt;br /&gt;first matching path.  If no paths match, it just beeps and leaves the&lt;br /&gt;display alone.  Thereafter, repeated pressing of the same control&lt;br /&gt;character will cycle through the list of matching paths.  Pressing the&lt;br /&gt;Shift key with the control character will move through the list&lt;br /&gt;backwards.  If you edit the line in any way and press the control&lt;br /&gt;character again, the saved list of matching paths is discarded and a new&lt;br /&gt;one generated.  The same occurs if you switch between file and directory&lt;br /&gt;name completion.  The only difference between the two control characters&lt;br /&gt;is the file completion character matches both file and directory names,&lt;br /&gt;while the directory completion character only matches directory names.&lt;br /&gt;If file completion is used on any of the built in directory commands&lt;br /&gt;(CD, MD or RD) then directory completion is assumed.&lt;br /&gt;&lt;br /&gt;The completion code deals correctly with file names that contain spaces&lt;br /&gt;or other special characters by placing quotes around the matching path.&lt;br /&gt;Also, if you back up, then invoke completion from within a line, the&lt;br /&gt;text to the right of the cursor at the point completion was invoked is&lt;br /&gt;discarded.&lt;br /&gt;&lt;br /&gt;The special characters that require quotes are:&lt;br /&gt;    &lt;space&gt;&lt;br /&gt;    &amp;amp;()[]{}^=;!'+,`~&lt;/space&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-7915199682773994948?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/7915199682773994948'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/7915199682773994948'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/02/windows-cmd-command.html' title='WINDOWS &amp; CMD COMMAND'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-4124194643345709714</id><published>2010-02-05T09:34:00.000-08:00</published><updated>2010-02-05T09:36:50.243-08:00</updated><title type='text'>REPLACE COMMAND IS USED AS DATABASE AND OTHER APPLICATIONS</title><content type='html'>The Windows 95 to Windows 2007 all versions followed the Replace command which is use for to replace files or to replace any word as well as used this command as database.&lt;br /&gt;&lt;br /&gt;Replaces files.&lt;br /&gt;&lt;br /&gt;REPLACE [drive1:][path1]filename [drive2:][path2] [/A] [/P] [/R] [/W]&lt;br /&gt;REPLACE [drive1:][path1]filename [drive2:][path2] [/P] [/R] [/S] [/W] [/U]&lt;br /&gt;&lt;br /&gt;  [drive1:][path1]filename Specifies the source file or files.&lt;br /&gt;  [drive2:][path2]         Specifies the directory where files are to be&lt;br /&gt;                           replaced.&lt;br /&gt;  /A                       Adds new files to destination directory. Cannot&lt;br /&gt;                           use with /S or /U switches.&lt;br /&gt;  /P                       Prompts for confirmation before replacing a file or&lt;br /&gt;                           adding a source file.&lt;br /&gt;  /R                       Replaces read-only files as well as unprotected&lt;br /&gt;                           files.&lt;br /&gt;  /S                       Replaces files in all subdirectories of the&lt;br /&gt;                           destination directory. Cannot use with the /A&lt;br /&gt;                           switch.&lt;br /&gt;  /W                       Waits for you to insert a disk before beginning.&lt;br /&gt;  /U                       Replaces (updates) only files that are older than&lt;br /&gt;                           source files. Cannot use with the /A switch.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-4124194643345709714?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/4124194643345709714'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/4124194643345709714'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/02/replace-command-is-used-as-database-and.html' title='REPLACE COMMAND IS USED AS DATABASE AND OTHER APPLICATIONS'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-6720119771378369027</id><published>2010-02-03T18:02:00.000-08:00</published><updated>2010-02-03T18:04:30.394-08:00</updated><title type='text'>"SET" Command is used to dispplay System Annalysis Configuration.</title><content type='html'>Displays, sets, or removes cmd.exe environment variables.&lt;br /&gt;&lt;br /&gt;SET [variable=[string]]&lt;br /&gt;&lt;br /&gt; variable  Specifies the environment-variable name.&lt;br /&gt; string    Specifies a series of characters to assign to the variable.&lt;br /&gt;&lt;br /&gt;Type SET without parameters to display the current environment variables.&lt;br /&gt;&lt;br /&gt;If Command Extensions are enabled SET changes as follows:&lt;br /&gt;&lt;br /&gt;SET command invoked with just a variable name, no equal sign or value&lt;br /&gt;will display the value of all variables whose prefix matches the name&lt;br /&gt;given to the SET command.  For example:&lt;br /&gt;&lt;br /&gt;   SET P&lt;br /&gt;&lt;br /&gt;would display all variables that begin with the letter 'P'&lt;br /&gt;&lt;br /&gt;SET command will set the ERRORLEVEL to 1 if the variable name is not&lt;br /&gt;found in the current environment.&lt;br /&gt;&lt;br /&gt;SET command will not allow an equal sign to be part of the name of&lt;br /&gt;a variable.&lt;br /&gt;&lt;br /&gt;Two new switches have been added to the SET command:&lt;br /&gt;&lt;br /&gt;   SET /A expression&lt;br /&gt;   SET /P variable=[promptString]&lt;br /&gt;&lt;br /&gt;The /A switch specifies that the string to the right of the equal sign&lt;br /&gt;is a numerical expression that is evaluated.  The expression evaluator&lt;br /&gt;is pretty simple and supports the following operations, in decreasing&lt;br /&gt;order of precedence:&lt;br /&gt;&lt;br /&gt;   ()                  - grouping&lt;br /&gt;   ! ~ -               - unary operators&lt;br /&gt;   * / %               - arithmetic operators&lt;br /&gt;   + -                 - arithmetic operators&lt;br /&gt;   &lt;&lt; &gt;&gt;               - logical shift&lt;br /&gt;   &amp;amp;                   - bitwise and&lt;br /&gt;   ^                   - bitwise exclusive or&lt;br /&gt;   |                   - bitwise or&lt;br /&gt;   = *= /= %= += -=    - assignment&lt;br /&gt;     &amp;amp;= ^= |= &lt;&lt;= &gt;&gt;=&lt;br /&gt;   ,                   - expression separator&lt;br /&gt;&lt;br /&gt;If you use any of the logical or modulus operators, you will need to&lt;br /&gt;enclose the expression string in quotes.  Any non-numeric strings in the&lt;br /&gt;expression are treated as environment variable names whose values are&lt;br /&gt;converted to numbers before using them.  If an environment variable name&lt;br /&gt;is specified but is not defined in the current environment, then a value&lt;br /&gt;of zero is used.  This allows you to do arithmetic with environment&lt;br /&gt;variable values without having to type all those % signs to get their&lt;br /&gt;values.  If SET /A is executed from the command line outside of a&lt;br /&gt;command script, then it displays the final value of the expression.  The&lt;br /&gt;assignment operator requires an environment variable name to the left of&lt;br /&gt;the assignment operator.  Numeric values are decimal numbers, unless&lt;br /&gt;prefixed by 0x for hexadecimal numbers, and 0 for octal numbers.&lt;br /&gt;So 0x12 is the same as 18 is the same as 022. Please note that the octal&lt;br /&gt;notation can be confusing: 08 and 09 are not valid numbers because 8 and&lt;br /&gt;9 are not valid octal digits.&lt;br /&gt;&lt;br /&gt;The /P switch allows you to set the value of a variable to a line of input&lt;br /&gt;entered by the user.  Displays the specified promptString before reading&lt;br /&gt;the line of input.  The promptString can be empty.&lt;br /&gt;&lt;br /&gt;Environment variable substitution has been enhanced as follows:&lt;br /&gt;&lt;br /&gt;   %PATH:str1=str2%&lt;br /&gt;&lt;br /&gt;would expand the PATH environment variable, substituting each occurrence&lt;br /&gt;of "str1" in the expanded result with "str2".  "str2" can be the empty&lt;br /&gt;string to effectively delete all occurrences of "str1" from the expanded&lt;br /&gt;output.  "str1" can begin with an asterisk, in which case it will match&lt;br /&gt;everything from the beginning of the expanded output to the first&lt;br /&gt;occurrence of the remaining portion of str1.&lt;br /&gt;&lt;br /&gt;May also specify substrings for an expansion.&lt;br /&gt;&lt;br /&gt;   %PATH:~10,5%&lt;br /&gt;&lt;br /&gt;would expand the PATH environment variable, and then use only the 5&lt;br /&gt;characters that begin at the 11th (offset 10) character of the expanded&lt;br /&gt;result.  If the length is not specified, then it defaults to the&lt;br /&gt;remainder of the variable value.  If either number (offset or length) is&lt;br /&gt;negative, then the number used is the length of the environment variable&lt;br /&gt;value added to the offset or length specified.&lt;br /&gt;&lt;br /&gt;   %PATH:~-10%&lt;br /&gt;&lt;br /&gt;would extract the last 10 characters of the PATH variable.&lt;br /&gt;&lt;br /&gt;   %PATH:~0,-2%&lt;br /&gt;&lt;br /&gt;would extract all but the last 2 characters of the PATH variable.&lt;br /&gt;&lt;br /&gt;Finally, support for delayed environment variable expansion has been&lt;br /&gt;added.  This support is always disabled by default, but may be&lt;br /&gt;enabled/disabled via the /V command line switch to CMD.EXE.  See CMD /?&lt;br /&gt;&lt;br /&gt;Delayed environment variable expansion is useful for getting around&lt;br /&gt;the limitations of the current expansion which happens when a line&lt;br /&gt;of text is read, not when it is executed.  The following example&lt;br /&gt;demonstrates the problem with immediate variable expansion:&lt;br /&gt;&lt;br /&gt;   set VAR=before&lt;br /&gt;   if "%VAR%" == "before" (&lt;br /&gt;       set VAR=after&lt;br /&gt;       if "%VAR%" == "after" @echo If you see this, it worked&lt;br /&gt;   )&lt;br /&gt;&lt;br /&gt;would never display the message, since the %VAR% in BOTH IF statements&lt;br /&gt;is substituted when the first IF statement is read, since it logically&lt;br /&gt;includes the body of the IF, which is a compound statement.  So the&lt;br /&gt;IF inside the compound statement is really comparing "before" with&lt;br /&gt;"after" which will never be equal.  Similarly, the following example&lt;br /&gt;will not work as expected:&lt;br /&gt;&lt;br /&gt;   set LIST=&lt;br /&gt;   for %i in (*) do set LIST=%LIST% %i&lt;br /&gt;   echo %LIST%&lt;br /&gt;&lt;br /&gt;in that it will NOT build up a list of files in the current directory,&lt;br /&gt;but instead will just set the LIST variable to the last file found.&lt;br /&gt;Again, this is because the %LIST% is expanded just once when the&lt;br /&gt;FOR statement is read, and at that time the LIST variable is empty.&lt;br /&gt;So the actual FOR loop we are executing is:&lt;br /&gt;&lt;br /&gt;   for %i in (*) do set LIST= %i&lt;br /&gt;&lt;br /&gt;which just keeps setting LIST to the last file found.&lt;br /&gt;&lt;br /&gt;Delayed environment variable expansion allows you to use a different&lt;br /&gt;character (the exclamation mark) to expand environment variables at&lt;br /&gt;execution time.  If delayed variable expansion is enabled, the above&lt;br /&gt;examples could be written as follows to work as intended:&lt;br /&gt;&lt;br /&gt;   set VAR=before&lt;br /&gt;   if "%VAR%" == "before" (&lt;br /&gt;       set VAR=after&lt;br /&gt;       if "!VAR!" == "after" @echo If you see this, it worked&lt;br /&gt;   )&lt;br /&gt;&lt;br /&gt;   set LIST=&lt;br /&gt;   for %i in (*) do set LIST=!LIST! %i&lt;br /&gt;   echo %LIST%&lt;br /&gt;&lt;br /&gt;If Command Extensions are enabled, then there are several dynamic&lt;br /&gt;environment variables that can be expanded but which don't show up in&lt;br /&gt;the list of variables displayed by SET.  These variable values are&lt;br /&gt;computed dynamically each time the value of the variable is expanded.&lt;br /&gt;If the user explicitly defines a variable with one of these names, then&lt;br /&gt;that definition will override the dynamic one described below:&lt;br /&gt;&lt;br /&gt;%CD% - expands to the current directory string.&lt;br /&gt;&lt;br /&gt;%DATE% - expands to current date using same format as DATE command.&lt;br /&gt;&lt;br /&gt;%TIME% - expands to current time using same format as TIME command.&lt;br /&gt;&lt;br /&gt;%RANDOM% - expands to a random decimal number between 0 and 32767.&lt;br /&gt;&lt;br /&gt;%ERRORLEVEL% - expands to the current ERRORLEVEL value&lt;br /&gt;&lt;br /&gt;%CMDEXTVERSION% - expands to the current Command Processor Extensions&lt;br /&gt;   version number.&lt;br /&gt;&lt;br /&gt;%CMDCMDLINE% - expands to the original command line that invoked the&lt;br /&gt;   Command Processor.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-6720119771378369027?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/6720119771378369027'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/6720119771378369027'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/02/set-command-is-used-to-dispplay-system.html' title='&quot;SET&quot; Command is used to dispplay System Annalysis Configuration.'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-5324525626904770986</id><published>2010-01-27T19:30:00.000-08:00</published><updated>2010-01-27T19:31:24.246-08:00</updated><title type='text'>DO YOU KNOW WHAT IS DATA PROCESSING CONCEPT?</title><content type='html'>The following events take place when a computer processes the data.&lt;br /&gt;&lt;ol&gt;&lt;li&gt;The programme and the necessary data are entered into the Computer System from an input device, and are stored in main memory where they can be accessed as needed.&lt;/li&gt;&lt;li&gt;Now, the C.P.U. (Central Processing Unit) retrieves the instructions from the main memory, one by one, and de-codes each instructions to determine what operation to be performed.&lt;/li&gt;&lt;li&gt;When required by instructions, the C.P.U. also retrieves the necessary data from main memory.&lt;/li&gt;&lt;li&gt;The C.P.U. then performs the operation required by the instruction, which might be arithmetic or logical operation. As each instructions are performed, the results are either temporary saved by the C.P.U. or are stored in memory.&lt;/li&gt;&lt;li&gt;The processing Cycle (retrieves instructions, decode and execute instructions, save results) is repeated until all the programme instructions have been carried out by the C.P.U. The final results are then either stored in main memory, or are sent to an output device such as a printer.&lt;/li&gt;&lt;/ol&gt;&lt;ul&gt;&lt;li style="color: rgb(0, 51, 0);"&gt;For more information regarding 6th Pay &lt;a href="http://gsoftnet.blogspot.com/"&gt;&lt;span style="font-weight: bold;"&gt;Click Here&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li style="color: rgb(0, 51, 0);"&gt;For more information regarding Government Resolution &lt;a href="http://imsemployee.blogspot.com/"&gt;&lt;span style="font-weight: bold;"&gt;Click here&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li style="color: rgb(0, 51, 0);"&gt;For more information regarding Income Tax ITR &lt;a href="http://efastway.blogspot.com/"&gt;&lt;span style="font-weight: bold;"&gt;Click Here&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="color: rgb(0, 51, 0);"&gt;For more information regarding RTM Nagpur University &lt;a href="http://rtmnagpur.blogspot.com/"&gt;&lt;span style="font-weight: bold;"&gt;Click Here&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-5324525626904770986?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/5324525626904770986'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/5324525626904770986'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/01/do-you-know-what-is-data-processing.html' title='DO YOU KNOW WHAT IS DATA PROCESSING CONCEPT?'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-2241762860495333515</id><published>2010-01-22T09:07:00.000-08:00</published><updated>2010-01-21T19:37:56.553-08:00</updated><title type='text'>Uses of "START" Command to run Application from Command Prompt</title><content type='html'>Starts a separate window to run a specified program or command.&lt;br /&gt;&lt;br /&gt;START ["title"] [/Dpath] [/I] [/MIN] [/MAX] [/SEPARATE | /SHARED]&lt;br /&gt;     [/LOW | /NORMAL | /HIGH | /REALTIME | /ABOVENORMAL | /BELOWNORMAL]&lt;br /&gt;     [/WAIT] [/B] [command/program]&lt;br /&gt;     [parameters]&lt;br /&gt;&lt;br /&gt;   "title"     Title to display in  window title bar.&lt;br /&gt;   path        Starting directory&lt;br /&gt;   B           Start application without creating a new window. The&lt;br /&gt;               application has ^C handling ignored. Unless the application&lt;br /&gt;               enables ^C processing, ^Break is the only way to interrupt&lt;br /&gt;               the application&lt;br /&gt;   I           The new environment will be the original environment passed&lt;br /&gt;               to the cmd.exe and not the current environment.&lt;br /&gt;   MIN         Start window minimized&lt;br /&gt;   MAX         Start window maximized&lt;br /&gt;   SEPARATE    Start 16-bit Windows program in separate memory space&lt;br /&gt;   SHARED      Start 16-bit Windows program in shared memory space&lt;br /&gt;   LOW         Start application in the IDLE priority class&lt;br /&gt;   NORMAL      Start application in the NORMAL priority class&lt;br /&gt;   HIGH        Start application in the HIGH priority class&lt;br /&gt;   REALTIME    Start application in the REALTIME priority class&lt;br /&gt;   ABOVENORMAL Start application in the ABOVENORMAL priority class&lt;br /&gt;   BELOWNORMAL Start application in the BELOWNORMAL priority class&lt;br /&gt;   WAIT        Start application and wait for it to terminate&lt;br /&gt;   command/program&lt;br /&gt;               If it is an internal cmd command or a batch file then&lt;br /&gt;               the command processor is run with the /K switch to cmd.exe.&lt;br /&gt;               This means that the window will remain after the command&lt;br /&gt;               has been run.&lt;br /&gt;&lt;br /&gt;               If it is not an internal cmd command or batch file then&lt;br /&gt;               it is a program and will run as either a windowed application&lt;br /&gt;               or a console application.&lt;br /&gt;&lt;br /&gt;   parameters  These are the parameters passed to the command/program&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;If Command Extensions are enabled, external command invocation&lt;br /&gt;through the command line or the START command changes as follows:&lt;br /&gt;&lt;br /&gt;non-executable files may be invoked through their file association just&lt;br /&gt;   by typing the name of the file as a command.  (e.g.  WORD.DOC would&lt;br /&gt;   launch the application associated with the .DOC file extension).&lt;br /&gt;   See the ASSOC and FTYPE commands for how to create these&lt;br /&gt;   associations from within a command script.&lt;br /&gt;&lt;br /&gt;When executing an application that is a 32-bit GUI application, CMD.EXE&lt;br /&gt;   does not wait for the application to terminate before returning to&lt;br /&gt;   the command prompt.  This new behavior does NOT occur if executing&lt;br /&gt;   within a command script.&lt;br /&gt;&lt;br /&gt;When executing a command line whose first token is the string "CMD "&lt;br /&gt;   without an extension or path qualifier, then "CMD" is replaced with&lt;br /&gt;   the value of the COMSPEC variable.  This prevents picking up CMD.EXE&lt;br /&gt;   from the current directory.&lt;br /&gt;&lt;br /&gt;When executing a command line whose first token does NOT contain an&lt;br /&gt;   extension, then CMD.EXE uses the value of the PATHEXT&lt;br /&gt;   environment variable to determine which extensions to look for&lt;br /&gt;   and in what order.  The default value for the PATHEXT variable&lt;br /&gt;   is:&lt;br /&gt;&lt;br /&gt;       .COM;.EXE;.BAT;.CMD&lt;br /&gt;&lt;br /&gt;   Notice the syntax is the same as the PATH variable, with&lt;br /&gt;   semicolons separating the different elements.&lt;br /&gt;&lt;br /&gt;When searching for an executable, if there is no match on any extension,&lt;br /&gt;then looks to see if the name matches a directory name.  If it does, the&lt;br /&gt;START command launches the Explorer on that path.  If done from the&lt;br /&gt;command line, it is the equivalent to doing a CD /D to that path.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-2241762860495333515?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/2241762860495333515'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/2241762860495333515'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/01/uses-of-start-command-to-run.html' title='Uses of &quot;START&quot; Command to run Application from Command Prompt'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-7168358164755009763</id><published>2010-01-21T07:29:00.000-08:00</published><updated>2010-01-20T17:59:54.425-08:00</updated><title type='text'>MS-DOS External Command "FIND" it's Description, Use &amp; Syntex</title><content type='html'>Searches for a text string in a file or files.&lt;br /&gt;&lt;br /&gt;FIND [/V] [/C] [/N] [/I] [/OFF[LINE]] "string" [[drive:][path]filename[ ...]]&lt;br /&gt;&lt;br /&gt; /V         Displays all lines NOT containing the specified string.&lt;br /&gt; /C         Displays only the count of lines containing the string.&lt;br /&gt; /N         Displays line numbers with the displayed lines.&lt;br /&gt; /I         Ignores the case of characters when searching for the string.&lt;br /&gt; /OFF[LINE] Do not skip files with offline attribute set.&lt;br /&gt; "string"   Specifies the text string to find.&lt;br /&gt; [drive:][path]filename&lt;br /&gt;            Specifies a file or files to search.&lt;br /&gt;&lt;br /&gt;If a path is not specified, FIND searches the text typed at the prompt&lt;br /&gt;or piped from another command.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-7168358164755009763?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/7168358164755009763'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/7168358164755009763'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/01/ms-dos-external-command-find-its.html' title='MS-DOS External Command &quot;FIND&quot; it&apos;s Description, Use &amp; Syntex'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-7386387297969549342</id><published>2010-01-18T16:11:00.000-08:00</published><updated>2010-01-18T16:13:48.591-08:00</updated><title type='text'>APPLICATION OF "SET" COMMAND &amp; ITS OPERATIONS</title><content type='html'>Displays, sets, or removes cmd.exe environment variables.&lt;br /&gt;&lt;br /&gt;SET [variable=[string]]&lt;br /&gt;&lt;br /&gt;  variable  Specifies the environment-variable name.&lt;br /&gt;  string    Specifies a series of characters to assign to the variable.&lt;br /&gt;&lt;br /&gt;Type SET without parameters to display the current environment variables.&lt;br /&gt;&lt;br /&gt;If Command Extensions are enabled SET changes as follows:&lt;br /&gt;&lt;br /&gt;SET command invoked with just a variable name, no equal sign or value&lt;br /&gt;will display the value of all variables whose prefix matches the name&lt;br /&gt;given to the SET command.  For example:&lt;br /&gt;&lt;br /&gt;    SET P&lt;br /&gt;&lt;br /&gt;would display all variables that begin with the letter 'P'&lt;br /&gt;&lt;br /&gt;SET command will set the ERRORLEVEL to 1 if the variable name is not&lt;br /&gt;found in the current environment.&lt;br /&gt;&lt;br /&gt;SET command will not allow an equal sign to be part of the name of&lt;br /&gt;a variable.&lt;br /&gt;&lt;br /&gt;Two new switches have been added to the SET command:&lt;br /&gt;&lt;br /&gt;    SET /A expression&lt;br /&gt;    SET /P variable=[promptString]&lt;br /&gt;&lt;br /&gt;The /A switch specifies that the string to the right of the equal sign&lt;br /&gt;is a numerical expression that is evaluated.  The expression evaluator&lt;br /&gt;is pretty simple and supports the following operations, in decreasing&lt;br /&gt;order of precedence:&lt;br /&gt;&lt;br /&gt;    ()                  - grouping&lt;br /&gt;    ! ~ -               - unary operators&lt;br /&gt;    * / %               - arithmetic operators&lt;br /&gt;    + -                 - arithmetic operators&lt;br /&gt;    &lt;&lt; &gt;&gt;               - logical shift&lt;br /&gt;    &amp;amp;                   - bitwise and&lt;br /&gt;    ^                   - bitwise exclusive or&lt;br /&gt;    |                   - bitwise or&lt;br /&gt;    = *= /= %= += -=    - assignment&lt;br /&gt;      &amp;amp;= ^= |= &lt;&lt;= &gt;&gt;=&lt;br /&gt;    ,                   - expression separator&lt;br /&gt;&lt;br /&gt;If you use any of the logical or modulus operators, you will need to&lt;br /&gt;enclose the expression string in quotes.  Any non-numeric strings in the&lt;br /&gt;expression are treated as environment variable names whose values are&lt;br /&gt;converted to numbers before using them.  If an environment variable name&lt;br /&gt;is specified but is not defined in the current environment, then a value&lt;br /&gt;of zero is used.  This allows you to do arithmetic with environment&lt;br /&gt;variable values without having to type all those % signs to get their&lt;br /&gt;values.  If SET /A is executed from the command line outside of a&lt;br /&gt;command script, then it displays the final value of the expression.  The&lt;br /&gt;assignment operator requires an environment variable name to the left of&lt;br /&gt;the assignment operator.  Numeric values are decimal numbers, unless&lt;br /&gt;prefixed by 0x for hexadecimal numbers, and 0 for octal numbers.&lt;br /&gt;So 0x12 is the same as 18 is the same as 022. Please note that the octal&lt;br /&gt;notation can be confusing: 08 and 09 are not valid numbers because 8 and&lt;br /&gt;9 are not valid octal digits.&lt;br /&gt;&lt;br /&gt;The /P switch allows you to set the value of a variable to a line of input&lt;br /&gt;entered by the user.  Displays the specified promptString before reading&lt;br /&gt;the line of input.  The promptString can be empty.&lt;br /&gt;&lt;br /&gt;Environment variable substitution has been enhanced as follows:&lt;br /&gt;&lt;br /&gt;    %PATH:str1=str2%&lt;br /&gt;&lt;br /&gt;would expand the PATH environment variable, substituting each occurrence&lt;br /&gt;of "str1" in the expanded result with "str2".  "str2" can be the empty&lt;br /&gt;string to effectively delete all occurrences of "str1" from the expanded&lt;br /&gt;output.  "str1" can begin with an asterisk, in which case it will match&lt;br /&gt;everything from the beginning of the expanded output to the first&lt;br /&gt;occurrence of the remaining portion of str1.&lt;br /&gt;&lt;br /&gt;May also specify substrings for an expansion.&lt;br /&gt;&lt;br /&gt;    %PATH:~10,5%&lt;br /&gt;&lt;br /&gt;would expand the PATH environment variable, and then use only the 5&lt;br /&gt;characters that begin at the 11th (offset 10) character of the expanded&lt;br /&gt;result.  If the length is not specified, then it defaults to the&lt;br /&gt;remainder of the variable value.  If either number (offset or length) is&lt;br /&gt;negative, then the number used is the length of the environment variable&lt;br /&gt;value added to the offset or length specified.&lt;br /&gt;&lt;br /&gt;    %PATH:~-10%&lt;br /&gt;&lt;br /&gt;would extract the last 10 characters of the PATH variable.&lt;br /&gt;&lt;br /&gt;    %PATH:~0,-2%&lt;br /&gt;&lt;br /&gt;would extract all but the last 2 characters of the PATH variable.&lt;br /&gt;&lt;br /&gt;Finally, support for delayed environment variable expansion has been&lt;br /&gt;added.  This support is always disabled by default, but may be&lt;br /&gt;enabled/disabled via the /V command line switch to CMD.EXE.  See CMD /?&lt;br /&gt;&lt;br /&gt;Delayed environment variable expansion is useful for getting around&lt;br /&gt;the limitations of the current expansion which happens when a line&lt;br /&gt;of text is read, not when it is executed.  The following example&lt;br /&gt;demonstrates the problem with immediate variable expansion:&lt;br /&gt;&lt;br /&gt;    set VAR=before&lt;br /&gt;    if "%VAR%" == "before" (&lt;br /&gt;        set VAR=after&lt;br /&gt;        if "%VAR%" == "after" @echo If you see this, it worked&lt;br /&gt;    )&lt;br /&gt;&lt;br /&gt;would never display the message, since the %VAR% in BOTH IF statements&lt;br /&gt;is substituted when the first IF statement is read, since it logically&lt;br /&gt;includes the body of the IF, which is a compound statement.  So the&lt;br /&gt;IF inside the compound statement is really comparing "before" with&lt;br /&gt;"after" which will never be equal.  Similarly, the following example&lt;br /&gt;will not work as expected:&lt;br /&gt;&lt;br /&gt;    set LIST=&lt;br /&gt;    for %i in (*) do set LIST=%LIST% %i&lt;br /&gt;    echo %LIST%&lt;br /&gt;&lt;br /&gt;in that it will NOT build up a list of files in the current directory,&lt;br /&gt;but instead will just set the LIST variable to the last file found.&lt;br /&gt;Again, this is because the %LIST% is expanded just once when the&lt;br /&gt;FOR statement is read, and at that time the LIST variable is empty.&lt;br /&gt;So the actual FOR loop we are executing is:&lt;br /&gt;&lt;br /&gt;    for %i in (*) do set LIST= %i&lt;br /&gt;&lt;br /&gt;which just keeps setting LIST to the last file found.&lt;br /&gt;&lt;br /&gt;Delayed environment variable expansion allows you to use a different&lt;br /&gt;character (the exclamation mark) to expand environment variables at&lt;br /&gt;execution time.  If delayed variable expansion is enabled, the above&lt;br /&gt;examples could be written as follows to work as intended:&lt;br /&gt;&lt;br /&gt;    set VAR=before&lt;br /&gt;    if "%VAR%" == "before" (&lt;br /&gt;        set VAR=after&lt;br /&gt;        if "!VAR!" == "after" @echo If you see this, it worked&lt;br /&gt;    )&lt;br /&gt;&lt;br /&gt;    set LIST=&lt;br /&gt;    for %i in (*) do set LIST=!LIST! %i&lt;br /&gt;    echo %LIST%&lt;br /&gt;&lt;br /&gt;If Command Extensions are enabled, then there are several dynamic&lt;br /&gt;environment variables that can be expanded but which don't show up in&lt;br /&gt;the list of variables displayed by SET.  These variable values are&lt;br /&gt;computed dynamically each time the value of the variable is expanded.&lt;br /&gt;If the user explicitly defines a variable with one of these names, then&lt;br /&gt;that definition will override the dynamic one described below:&lt;br /&gt;&lt;br /&gt;%CD% - expands to the current directory string.&lt;br /&gt;&lt;br /&gt;%DATE% - expands to current date using same format as DATE command.&lt;br /&gt;&lt;br /&gt;%TIME% - expands to current time using same format as TIME command.&lt;br /&gt;&lt;br /&gt;%RANDOM% - expands to a random decimal number between 0 and 32767.&lt;br /&gt;&lt;br /&gt;%ERRORLEVEL% - expands to the current ERRORLEVEL value&lt;br /&gt;&lt;br /&gt;%CMDEXTVERSION% - expands to the current Command Processor Extensions&lt;br /&gt;    version number.&lt;br /&gt;&lt;br /&gt;%CMDCMDLINE% - expands to the original command line that invoked the&lt;br /&gt;    Command Processor.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-7386387297969549342?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/7386387297969549342'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/7386387297969549342'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/01/application-of-set-command-its.html' title='APPLICATION OF &quot;SET&quot; COMMAND &amp; ITS OPERATIONS'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-7253323023338995217</id><published>2010-01-12T08:28:00.000-08:00</published><updated>2010-01-12T08:29:54.716-08:00</updated><title type='text'>WINDOWS XP'S "CMD" COMMAND - VERY USEFUL</title><content type='html'>Starts a new instance of the Windows XP command interpreter&lt;br /&gt;&lt;br /&gt;CMD [/A | /U] [/Q] [/D] [/E:ON | /E:OFF] [/F:ON | /F:OFF] [/V:ON | /V:OFF]&lt;br /&gt;    [[/S] [/C | /K] string]&lt;br /&gt;&lt;br /&gt;/C      Carries out the command specified by string and then terminates&lt;br /&gt;/K      Carries out the command specified by string but remains&lt;br /&gt;/S      Modifies the treatment of string after /C or /K (see below)&lt;br /&gt;/Q      Turns echo off&lt;br /&gt;/D      Disable execution of AutoRun commands from registry (see below)&lt;br /&gt;/A      Causes the output of internal commands to a pipe or file to be ANSI&lt;br /&gt;/U      Causes the output of internal commands to a pipe or file to be&lt;br /&gt;        Unicode&lt;br /&gt;/T:fg   Sets the foreground/background colors (see COLOR /? for more info)&lt;br /&gt;/E:ON   Enable command extensions (see below)&lt;br /&gt;/E:OFF  Disable command extensions (see below)&lt;br /&gt;/F:ON   Enable file and directory name completion characters (see below)&lt;br /&gt;/F:OFF  Disable file and directory name completion characters (see below)&lt;br /&gt;/V:ON   Enable delayed environment variable expansion using ! as the&lt;br /&gt;        delimiter. For example, /V:ON would allow !var! to expand the&lt;br /&gt;        variable var at execution time.  The var syntax expands variables&lt;br /&gt;        at input time, which is quite a different thing when inside of a FOR&lt;br /&gt;        loop.&lt;br /&gt;/V:OFF  Disable delayed environment expansion.&lt;br /&gt;&lt;br /&gt;Note that multiple commands separated by the command separator '&amp;amp;&amp;amp;'&lt;br /&gt;are accepted for string if surrounded by quotes.  Also, for compatibility&lt;br /&gt;reasons, /X is the same as /E:ON, /Y is the same as /E:OFF and /R is the&lt;br /&gt;same as /C.  Any other switches are ignored.&lt;br /&gt;&lt;br /&gt;If /C or /K is specified, then the remainder of the command line after&lt;br /&gt;the switch is processed as a command line, where the following logic is&lt;br /&gt;used to process quote (") characters:&lt;br /&gt;&lt;br /&gt;    1.  If all of the following conditions are met, then quote characters&lt;br /&gt;        on the command line are preserved:&lt;br /&gt;&lt;br /&gt;        - no /S switch&lt;br /&gt;        - exactly two quote characters&lt;br /&gt;        - no special characters between the two quote characters,&lt;br /&gt;          where special is one of: &amp;amp;&lt;&gt;()@^|&lt;br /&gt;        - there are one or more whitespace characters between the&lt;br /&gt;          the two quote characters&lt;br /&gt;        - the string between the two quote characters is the name&lt;br /&gt;          of an executable file.&lt;br /&gt;&lt;br /&gt;    2.  Otherwise, old behavior is to see if the first character is&lt;br /&gt;        a quote character and if so, strip the leading character and&lt;br /&gt;        remove the last quote character on the command line, preserving&lt;br /&gt;        any text after the last quote character.&lt;br /&gt;&lt;br /&gt;If /D was NOT specified on the command line, then when CMD.EXE starts, it&lt;br /&gt;looks for the following REG_SZ/REG_EXPAND_SZ registry variables, and if&lt;br /&gt;either or both are present, they are executed first.&lt;br /&gt;&lt;br /&gt;    HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\AutoRun&lt;br /&gt;&lt;br /&gt;        and/or&lt;br /&gt;&lt;br /&gt;    HKEY_CURRENT_USER\Software\Microsoft\Command Processor\AutoRun&lt;br /&gt;&lt;br /&gt;Command Extensions are enabled by default.  You may also disable&lt;br /&gt;extensions for a particular invocation by using the /E:OFF switch.  You&lt;br /&gt;can enable or disable extensions for all invocations of CMD.EXE on a&lt;br /&gt;machine and/or user logon session by setting either or both of the&lt;br /&gt;following REG_DWORD values in the registry using REGEDT32.EXE:&lt;br /&gt;&lt;br /&gt;    HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\EnableExtensions&lt;br /&gt;&lt;br /&gt;        and/or&lt;br /&gt;&lt;br /&gt;    HKEY_CURRENT_USER\Software\Microsoft\Command Processor\EnableExtensions&lt;br /&gt;&lt;br /&gt;to either 0x1 or 0x0.  The user specific setting takes precedence over&lt;br /&gt;the machine setting.  The command line switches take precedence over the&lt;br /&gt;registry settings.&lt;br /&gt;&lt;br /&gt;The command extensions involve changes and/or additions to the following&lt;br /&gt;commands:&lt;br /&gt;&lt;br /&gt;    DEL or ERASE&lt;br /&gt;    COLOR&lt;br /&gt;    CD or CHDIR&lt;br /&gt;    MD or MKDIR&lt;br /&gt;    PROMPT&lt;br /&gt;    PUSHD&lt;br /&gt;    POPD&lt;br /&gt;    SET&lt;br /&gt;    SETLOCAL&lt;br /&gt;    ENDLOCAL&lt;br /&gt;    IF&lt;br /&gt;    FOR&lt;br /&gt;    CALL&lt;br /&gt;    SHIFT&lt;br /&gt;    GOTO&lt;br /&gt;    START (also includes changes to external command invocation)&lt;br /&gt;    ASSOC&lt;br /&gt;    FTYPE&lt;br /&gt;&lt;br /&gt;To get specific details, type commandname /? to view the specifics.&lt;br /&gt;&lt;br /&gt;Delayed environment variable expansion is NOT enabled by default.  You&lt;br /&gt;can enable or disable delayed environment variable expansion for a&lt;br /&gt;particular invocation of CMD.EXE with the /V:ON or /V:OFF switch.  You&lt;br /&gt;can enable or disable completion for all invocations of CMD.EXE on a&lt;br /&gt;machine and/or user logon session by setting either or both of the&lt;br /&gt;following REG_DWORD values in the registry using REGEDT32.EXE:&lt;br /&gt;&lt;br /&gt;    HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\DelayedExpansion&lt;br /&gt;&lt;br /&gt;        and/or&lt;br /&gt;&lt;br /&gt;    HKEY_CURRENT_USER\Software\Microsoft\Command Processor\DelayedExpansion&lt;br /&gt;&lt;br /&gt;to either 0x1 or 0x0.  The user specific setting takes precedence over&lt;br /&gt;the machine setting.  The command line switches take precedence over the&lt;br /&gt;registry settings.&lt;br /&gt;&lt;br /&gt;If delayed environment variable expansion is enabled, then the exclamation&lt;br /&gt;character can be used to substitute the value of an environment variable&lt;br /&gt;at execution time.&lt;br /&gt;&lt;br /&gt;File and Directory name completion is NOT enabled by default.  You can&lt;br /&gt;enable or disable file name completion for a particular invocation of&lt;br /&gt;CMD.EXE with the /F:ON or /F:OFF switch.  You can enable or disable&lt;br /&gt;completion for all invocations of CMD.EXE on a machine and/or user logon&lt;br /&gt;session by setting either or both of the following REG_DWORD values in&lt;br /&gt;the registry using REGEDT32.EXE:&lt;br /&gt;&lt;br /&gt;    HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\CompletionChar&lt;br /&gt;    HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\PathCompletionChar&lt;br /&gt;&lt;br /&gt;        and/or&lt;br /&gt;&lt;br /&gt;    HKEY_CURRENT_USER\Software\Microsoft\Command Processor\CompletionChar&lt;br /&gt;    HKEY_CURRENT_USER\Software\Microsoft\Command Processor\PathCompletionChar&lt;br /&gt;&lt;br /&gt;with the hex value of a control character to use for a particular&lt;br /&gt;function (e.g.  0x4 is Ctrl-D and 0x6 is Ctrl-F).  The user specific&lt;br /&gt;settings take precedence over the machine settings.  The command line&lt;br /&gt;switches take precedence over the registry settings.&lt;br /&gt;&lt;br /&gt;If completion is enabled with the /F:ON switch, the two control&lt;br /&gt;characters used are Ctrl-D for directory name completion and Ctrl-F for&lt;br /&gt;file name completion.  To disable a particular completion character in&lt;br /&gt;the registry, use the value for space (0x20) as it is not a valid&lt;br /&gt;control character.&lt;br /&gt;&lt;br /&gt;Completion is invoked when you type either of the two control&lt;br /&gt;characters.  The completion function takes the path string to the left&lt;br /&gt;of the cursor appends a wild card character to it if none is already&lt;br /&gt;present and builds up a list of paths that match.  It then displays the&lt;br /&gt;first matching path.  If no paths match, it just beeps and leaves the&lt;br /&gt;display alone.  Thereafter, repeated pressing of the same control&lt;br /&gt;character will cycle through the list of matching paths.  Pressing the&lt;br /&gt;Shift key with the control character will move through the list&lt;br /&gt;backwards.  If you edit the line in any way and press the control&lt;br /&gt;character again, the saved list of matching paths is discarded and a new&lt;br /&gt;one generated.  The same occurs if you switch between file and directory&lt;br /&gt;name completion.  The only difference between the two control characters&lt;br /&gt;is the file completion character matches both file and directory names,&lt;br /&gt;while the directory completion character only matches directory names.&lt;br /&gt;If file completion is used on any of the built in directory commands&lt;br /&gt;(CD, MD or RD) then directory completion is assumed.&lt;br /&gt;&lt;br /&gt;The completion code deals correctly with file names that contain spaces&lt;br /&gt;or other special characters by placing quotes around the matching path.&lt;br /&gt;Also, if you back up, then invoke completion from within a line, the&lt;br /&gt;text to the right of the cursor at the point completion was invoked is&lt;br /&gt;discarded.&lt;br /&gt;&lt;br /&gt;The special characters that require quotes are:&lt;br /&gt;     &lt;space&gt;&lt;br /&gt;     &amp;amp;()[]{}^=;!'+,`~&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-7253323023338995217?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/7253323023338995217'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/7253323023338995217'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/01/windows-xps-cmd-command-very-useful.html' title='WINDOWS XP&apos;S &quot;CMD&quot; COMMAND - VERY USEFUL'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-6556523955044954603</id><published>2010-01-11T17:55:00.001-08:00</published><updated>2010-01-11T17:55:46.967-08:00</updated><title type='text'>USE OF CHECK A DISK COMMAND "CHKDSK".</title><content type='html'>Checks a disk and displays a status report.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;CHKDSK [volume[[path]filename]]] [/F] [/V] [/R] [/X] [/I] [/C] [/L[:size]]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;  volume          Specifies the drive letter (followed by a colon),&lt;br /&gt;                  mount point, or volume name.&lt;br /&gt;  filename        FAT/FAT32 only: Specifies the files to check for fragmentation.&lt;br /&gt;  /F              Fixes errors on the disk.&lt;br /&gt;  /V              On FAT/FAT32: Displays the full path and name of every file&lt;br /&gt;                  on the disk.&lt;br /&gt;                  On NTFS: Displays cleanup messages if any.&lt;br /&gt;  /R              Locates bad sectors and recovers readable information&lt;br /&gt;                  (implies /F).&lt;br /&gt;  /L:size         NTFS only:  Changes the log file size to the specified number&lt;br /&gt;                  of kilobytes.  If size is not specified, displays current&lt;br /&gt;                  size.&lt;br /&gt;  /X              Forces the volume to dismount first if necessary.&lt;br /&gt;                  All opened handles to the volume would then be invalid&lt;br /&gt;                  (implies /F).&lt;br /&gt;  /I              NTFS only: Performs a less vigorous check of index entries.&lt;br /&gt;  /C              NTFS only: Skips checking of cycles within the folder&lt;br /&gt;                  structure.&lt;br /&gt;&lt;br /&gt;The /I or /C switch reduces the amount of time required to run Chkdsk by&lt;br /&gt;skipping certain checks of the volume.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-6556523955044954603?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/6556523955044954603'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/6556523955044954603'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/01/use-of-check-disk-command-chkdsk.html' title='USE OF CHECK A DISK COMMAND &quot;CHKDSK&quot;.'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-3056907660960923587</id><published>2010-01-07T09:19:00.000-08:00</published><updated>2010-01-07T09:22:39.340-08:00</updated><title type='text'>USE OF "FORMAT" COMMAND AND ITS OPTIONS</title><content type='html'>Formats a disk for use with Windows XP.&lt;br /&gt;&lt;br /&gt;FORMAT volume [/FS:file-system] [/V:label] [/Q] [/A:size] [/C] [/X]&lt;br /&gt;FORMAT volume [/V:label] [/Q] [/F:size]&lt;br /&gt;FORMAT volume [/V:label] [/Q] [/T:tracks /N:sectors]&lt;br /&gt;FORMAT volume [/V:label] [/Q]&lt;br /&gt;FORMAT volume [/Q]&lt;br /&gt;&lt;br /&gt;  volume          Specifies the drive letter (followed by a colon),&lt;br /&gt;                  mount point, or volume name.&lt;br /&gt;  /FS:filesystem  Specifies the type of the file system (FAT, FAT32, or NTFS).&lt;br /&gt;  /V:label        Specifies the volume label.&lt;br /&gt;  /Q              Performs a quick format.&lt;br /&gt;  /C              NTFS only: Files created on the new volume will be compressed&lt;br /&gt;                  by default.&lt;br /&gt;  /X              Forces the volume to dismount first if necessary.  All opened&lt;br /&gt;                  handles to the volume would no longer be valid.&lt;br /&gt;  /A:size         Overrides the default allocation unit size. Default settings&lt;br /&gt;                  are strongly recommended for general use.&lt;br /&gt;                  NTFS supports 512, 1024, 2048, 4096, 8192, 16K, 32K, 64K.&lt;br /&gt;                  FAT supports 512, 1024, 2048, 4096, 8192, 16K, 32K, 64K,&lt;br /&gt;                  (128K, 256K for sector size &gt; 512 bytes).&lt;br /&gt;                  FAT32 supports 512, 1024, 2048, 4096, 8192, 16K, 32K, 64K,&lt;br /&gt;                  (128K, 256K for sector size &gt; 512 bytes).&lt;br /&gt;&lt;br /&gt;                  Note that the FAT and FAT32 files systems impose the&lt;br /&gt;                  following restrictions on the number of clusters on a volume:&lt;br /&gt;&lt;br /&gt;                  FAT: Number of clusters &lt;= 65526&lt;br /&gt;                  FAT32: 65526 &lt; Number of clusters &lt; 4177918&lt;br /&gt;&lt;br /&gt;                  Format will immediately stop processing if it decides that&lt;br /&gt;                  the above requirements cannot be met using the specified&lt;br /&gt;                  cluster size.&lt;br /&gt;&lt;br /&gt;                  NTFS compression is not supported for allocation unit sizes&lt;br /&gt;                  above 4096.&lt;br /&gt;&lt;br /&gt;  /F:size         Specifies the size of the floppy disk to format (1.44)&lt;br /&gt;  /T:tracks       Specifies the number of tracks per disk side.&lt;br /&gt;  /N:sectors      Specifies the number of sectors per track.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-3056907660960923587?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/3056907660960923587'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/3056907660960923587'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/01/use-of-format-command-and-its-options.html' title='USE OF &quot;FORMAT&quot; COMMAND AND ITS OPTIONS'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-5289369416112287256</id><published>2010-01-06T09:14:00.000-08:00</published><updated>2010-01-05T20:21:02.527-08:00</updated><title type='text'>CONCEPT OF DATA PROCESSING</title><content type='html'>The following events take place when a computer processes the data.&lt;br /&gt;&lt;ol&gt;&lt;li&gt;The programme and the necessary data are entered into the Computer System from an input device, and are stored in main memory where they can be accessed as needed.&lt;/li&gt;&lt;li&gt;Now, the C.P.U. (Central Processing Unit) retrieves the instructions from the main memory, one by one, and de-codes each instructions to determine what operation to be performed.&lt;/li&gt;&lt;li&gt;When required by instructions, the C.P.U. also retrieves the necessary data from main memory.&lt;/li&gt;&lt;li&gt;The C.P.U. then performs the operation required by the instruction, which might be arithmetic or logical operation.  As each instructions are performed, the results are either temporary saved by the C.P.U. or are stored in memory.&lt;/li&gt;&lt;li&gt;The processing Cycle (retrieves instructions, decode and execute instructions, save results) is repeated until all the programme instructions have been carried out by the C.P.U.  The final results are then either stored in main memory, or are sent to an output device such as a printer.&lt;/li&gt;&lt;/ol&gt;&lt;ul&gt;&lt;li style="color: rgb(0, 51, 0);"&gt;For more information regarding 6th Pay &lt;a href="http://gsoftnet.blogspot.com/"&gt;&lt;span style="font-weight: bold;"&gt;Click Here&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li style="color: rgb(0, 51, 0);"&gt;For more information regarding Government Resolution &lt;a href="http://imsemployee.blogspot.com/"&gt;&lt;span style="font-weight: bold;"&gt;Click here&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li style="color: rgb(0, 51, 0);"&gt;For more information regarding Income Tax ITR &lt;a href="http://efastway.blogspot.com/"&gt;&lt;span style="font-weight: bold;"&gt;Click Here&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="color: rgb(0, 51, 0);"&gt;For more information regarding RTM Nagpur University &lt;a href="http://rtmnagpur.blogspot.com/"&gt;&lt;span style="font-weight: bold;"&gt;Click Here&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-5289369416112287256?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/5289369416112287256'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/5289369416112287256'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2009/12/concept-of-data-processing.html' title='CONCEPT OF DATA PROCESSING'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-3021629193049051104</id><published>2010-01-06T09:05:00.000-08:00</published><updated>2010-01-05T20:19:22.792-08:00</updated><title type='text'>BITS AND BYTES</title><content type='html'>&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:trackmoves/&gt;   &lt;w:trackformatting/&gt;   &lt;w:punctuationkerning/&gt;   &lt;w:validateagainstschemas/&gt;   &lt;w:saveifxmlinvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;   &lt;w:ignoremixedcontent&gt;false&lt;/w:IgnoreMixedContent&gt;   &lt;w:alwaysshowplaceholdertext&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;   &lt;w:donotpromoteqf/&gt;   &lt;w:lidthemeother&gt;EN-US&lt;/w:LidThemeOther&gt;   &lt;w:lidthemeasian&gt;X-NONE&lt;/w:LidThemeAsian&gt;   &lt;w:lidthemecomplexscript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;   &lt;w:compatibility&gt;    &lt;w:breakwrappedtables/&gt;    &lt;w:snaptogridincell/&gt;    &lt;w:wraptextwithpunct/&gt;    &lt;w:useasianbreakrules/&gt;    &lt;w:dontgrowautofit/&gt;    &lt;w:splitpgbreakandparamark/&gt;    &lt;w:dontvertaligncellwithsp/&gt;    &lt;w:dontbreakconstrainedforcedtables/&gt;    &lt;w:dontvertalignintxbx/&gt;    &lt;w:word11kerningpairs/&gt;    &lt;w:cachedcolbalance/&gt;    &lt;w:usefelayout/&gt;   &lt;/w:Compatibility&gt;   &lt;w:browserlevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;   &lt;m:mathpr&gt;    &lt;m:mathfont val="Cambria Math"&gt;    &lt;m:brkbin val="before"&gt;    &lt;m:brkbinsub val="--"&gt;    &lt;m:smallfrac val="off"&gt;    &lt;m:dispdef/&gt;    &lt;m:lmargin val="0"&gt;    &lt;m:rmargin val="0"&gt;    &lt;m:defjc val="centerGroup"&gt;    &lt;m:wrapindent val="1440"&gt;    &lt;m:intlim val="subSup"&gt;    &lt;m:narylim val="undOvr"&gt;   &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:latentstyles deflockedstate="false" defunhidewhenused="true" defsemihidden="true" defqformat="false" defpriority="99" latentstylecount="267"&gt;   &lt;w:lsdexception locked="false" priority="0" semihidden="false" unhidewhenused="false" qformat="true" name="Normal"&gt;   &lt;w:lsdexception locked="false" priority="9" semihidden="false" unhidewhenused="false" qformat="true" name="heading 1"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 2"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 3"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 4"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 5"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 6"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 7"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 8"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 9"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 1"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 2"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 3"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 4"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 5"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 6"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 7"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 8"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 9"&gt;   &lt;w:lsdexception locked="false" priority="35" qformat="true" name="caption"&gt;   &lt;w:lsdexception locked="false" priority="10" semihidden="false" unhidewhenused="false" qformat="true" name="Title"&gt;   &lt;w:lsdexception locked="false" priority="1" name="Default Paragraph Font"&gt;   &lt;w:lsdexception locked="false" priority="11" semihidden="false" unhidewhenused="false" qformat="true" name="Subtitle"&gt;   &lt;w:lsdexception locked="false" priority="22" semihidden="false" unhidewhenused="false" qformat="true" name="Strong"&gt;   &lt;w:lsdexception locked="false" priority="20" semihidden="false" unhidewhenused="false" qformat="true" name="Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="59" semihidden="false" unhidewhenused="false" name="Table Grid"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Placeholder Text"&gt;   &lt;w:lsdexception locked="false" priority="1" semihidden="false" unhidewhenused="false" qformat="true" name="No Spacing"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Revision"&gt;   &lt;w:lsdexception locked="false" priority="34" semihidden="false" unhidewhenused="false" qformat="true" name="List Paragraph"&gt;   &lt;w:lsdexception locked="false" priority="29" semihidden="false" unhidewhenused="false" qformat="true" name="Quote"&gt;   &lt;w:lsdexception locked="false" priority="30" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Quote"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="19" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="21" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="31" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Reference"&gt;   &lt;w:lsdexception locked="false" priority="32" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Reference"&gt;   &lt;w:lsdexception locked="false" priority="33" semihidden="false" unhidewhenused="false" qformat="true" name="Book Title"&gt;   &lt;w:lsdexception locked="false" priority="37" name="Bibliography"&gt;   &lt;w:lsdexception locked="false" priority="39" qformat="true" name="TOC Heading"&gt;  &lt;/w:LatentStyles&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */  @font-face  {font-family:"Cambria Math";  panose-1:2 4 5 3 5 4 6 3 2 4;  mso-font-charset:1;  mso-generic-font-family:roman;  mso-font-format:other;  mso-font-pitch:variable;  mso-font-signature:0 0 0 0 0 0;} @font-face  {font-family:Calibri;  panose-1:2 15 5 2 2 2 4 3 2 4;  mso-font-charset:0;  mso-generic-font-family:swiss;  mso-font-pitch:variable;  mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal  {mso-style-unhide:no;  mso-style-qformat:yes;  mso-style-parent:"";  margin-top:0in;  margin-right:0in;  margin-bottom:10.0pt;  margin-left:0in;  line-height:115%;  mso-pagination:widow-orphan;  font-size:11.0pt;  font-family:"Calibri","sans-serif";  mso-ascii-font-family:Calibri;  mso-ascii-theme-font:minor-latin;  mso-fareast-font-family:"Times New Roman";  mso-fareast-theme-font:minor-fareast;  mso-hansi-font-family:Calibri;  mso-hansi-theme-font:minor-latin;  mso-bidi-font-family:"Times New Roman";  mso-bidi-theme-font:minor-bidi;} .MsoChpDefault  {mso-style-type:export-only;  mso-default-props:yes;  mso-ascii-font-family:Calibri;  mso-ascii-theme-font:minor-latin;  mso-fareast-font-family:"Times New Roman";  mso-fareast-theme-font:minor-fareast;  mso-hansi-font-family:Calibri;  mso-hansi-theme-font:minor-latin;  mso-bidi-font-family:"Times New Roman";  mso-bidi-theme-font:minor-bidi;} .MsoPapDefault  {mso-style-type:export-only;  margin-bottom:10.0pt;  line-height:115%;} @page Section1  {size:8.5in 11.0in;  margin:1.0in 1.0in 1.0in 1.0in;  mso-header-margin:.5in;  mso-footer-margin:.5in;  mso-paper-source:0;} div.Section1  {page:Section1;} --&gt; &lt;/style&gt;&lt;!--[if gte mso 10]&gt; &lt;style&gt;  /* Style Definitions */  table.MsoNormalTable  {mso-style-name:"Table Normal";  mso-tstyle-rowband-size:0;  mso-tstyle-colband-size:0;  mso-style-noshow:yes;  mso-style-priority:99;  mso-style-qformat:yes;  mso-style-parent:"";  mso-padding-alt:0in 5.4pt 0in 5.4pt;  mso-para-margin-top:0in;  mso-para-margin-right:0in;  mso-para-margin-bottom:10.0pt;  mso-para-margin-left:0in;  line-height:115%;  mso-pagination:widow-orphan;  font-size:11.0pt;  font-family:"Calibri","sans-serif";  mso-ascii-font-family:Calibri;  mso-ascii-theme-font:minor-latin;  mso-hansi-font-family:Calibri;  mso-hansi-theme-font:minor-latin;} table.MsoTableGrid  {mso-style-name:"Table Grid";  mso-tstyle-rowband-size:0;  mso-tstyle-colband-size:0;  mso-style-priority:59;  mso-style-unhide:no;  border:solid black 1.0pt;  mso-border-themecolor:text1;  mso-border-alt:solid black .5pt;  mso-border-themecolor:text1;  mso-padding-alt:0in 5.4pt 0in 5.4pt;  mso-border-insideh:.5pt solid black;  mso-border-insideh-themecolor:text1;  mso-border-insidev:.5pt solid black;  mso-border-insidev-themecolor:text1;  mso-para-margin:0in;  mso-para-margin-bottom:.0001pt;  mso-pagination:widow-orphan;  font-size:11.0pt;  font-family:"Calibri","sans-serif";  mso-ascii-font-family:Calibri;  mso-ascii-theme-font:minor-latin;  mso-hansi-font-family:Calibri;  mso-hansi-theme-font:minor-latin;} &lt;/style&gt; &lt;![endif]--&gt;  &lt;p  class="MsoNormal" style="font-family:times new roman;"&gt;&lt;span style="font-size:100%;"&gt;The term Bit is a acronym for Binary Digit.&lt;span style=""&gt;  &lt;/span&gt;The bit is the smallest piece of information that the computer can work with.&lt;span style=""&gt;  &lt;/span&gt;The values 0 and 1 are called Bits.&lt;span style=""&gt;  &lt;/span&gt;Bits are grouped together to from a larger chunk of information called as Byte.&lt;span style=""&gt;  &lt;/span&gt;A byte consists of eight bits that the Computer stores and processes as a single Entry.&lt;span style=""&gt;  &lt;/span&gt;A Byte represents one character o Data.&lt;span style=""&gt;  &lt;/span&gt;The Computer can store individual bytes in its memory and later retrieve them&lt;/span&gt;&lt;/p&gt;  &lt;table class="MsoTableGrid"  style="border: medium none ; border-collapse: collapse;font-family:times new roman;" border="1" cellpadding="0" cellspacing="0"&gt;  &lt;tbody&gt;&lt;tr style=""&gt;   &lt;td style="border: 1pt solid black; padding: 0in 5.4pt; width: 117.9pt;" valign="top" width="157"&gt;   &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"&gt;&lt;span style="font-size:130%;"&gt;1 Byte&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td  style="border-style: solid solid solid none; padding: 0in 5.4pt; width: 153pt;color:black black black -moz-use-text-color;" valign="top" width="204"&gt;   &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"&gt;&lt;span style="font-size:130%;"&gt;8 Bits&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style=""&gt;   &lt;td  style="border-style: none solid solid; padding: 0in 5.4pt; width: 117.9pt;color:-moz-use-text-color black black;" valign="top" width="157"&gt;   &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"&gt;&lt;span style="font-size:130%;"&gt;1 Kilobyte&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td  style="border-style: none solid solid none; padding: 0in 5.4pt; width: 153pt;color:-moz-use-text-color black black -moz-use-text-color;" valign="top" width="204"&gt;   &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"&gt;&lt;span style="font-size:130%;"&gt;1024 Bytes&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style=""&gt;   &lt;td  style="border-style: none solid solid; padding: 0in 5.4pt; width: 117.9pt;color:-moz-use-text-color black black;" valign="top" width="157"&gt;   &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"&gt;&lt;span style="font-size:130%;"&gt;1 Megabyte&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td  style="border-style: none solid solid none; padding: 0in 5.4pt; width: 153pt;color:-moz-use-text-color black black -moz-use-text-color;" valign="top" width="204"&gt;   &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"&gt;&lt;span style="font-size:130%;"&gt;1024 Kilobytes&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style=""&gt;   &lt;td  style="border-style: none solid solid; padding: 0in 5.4pt; width: 117.9pt;color:-moz-use-text-color black black;" valign="top" width="157"&gt;   &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"&gt;&lt;span style="font-size:130%;"&gt;1 Gigabyte&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td  style="border-style: none solid solid none; padding: 0in 5.4pt; width: 153pt;color:-moz-use-text-color black black -moz-use-text-color;" valign="top" width="204"&gt;   &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"&gt;&lt;span style="font-size:130%;"&gt;1024 Megabytes&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style=""&gt;   &lt;td  style="border-style: none solid solid; padding: 0in 5.4pt; width: 117.9pt;color:-moz-use-text-color black black;" valign="top" width="157"&gt;   &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"&gt;&lt;span style="font-size:130%;"&gt;1 Terabyte&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td  style="border-style: none solid solid none; padding: 0in 5.4pt; width: 153pt;color:-moz-use-text-color black black -moz-use-text-color;" valign="top" width="204"&gt;   &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"&gt;&lt;span style="font-size:130%;"&gt;1024 Gegabytes&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;  &lt;span style=";font-family:times new roman;font-size:100%;"  &gt;&lt;span style="line-height: 115%;font-size:11;" &gt;Souce: Course on Computer Concepts CCC&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-3021629193049051104?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/3021629193049051104'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/3021629193049051104'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2009/12/bits-and-bytes.html' title='BITS AND BYTES'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-7708589339030833939</id><published>2010-01-04T04:52:00.000-08:00</published><updated>2010-01-04T05:15:16.112-08:00</updated><title type='text'>How to compute Small Programmes in Various Language</title><content type='html'>The following programmes compute in various language:&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-size:130%;"&gt;FORTRAN:&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);font-size:130%;" &gt;&lt;span style="font-size:100%;"&gt;To calculate sum of 10 Numbers:&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);font-size:130%;" &gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;&lt;span style="color: rgb(0, 0, 0);font-size:130%;" &gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: bold;"&gt;The sum of 10 Numbers&lt;br /&gt;Sum = 0&lt;br /&gt;DO 50 I = 1,10&lt;br /&gt;Read (5,10) N&lt;br /&gt;SUM = SUM +N&lt;br /&gt;Continue&lt;br /&gt;Write (6,20) Sum&lt;br /&gt;Format (F6,2)&lt;br /&gt;Format (1X, 'The sum of Given Numbers =', F10,2)&lt;br /&gt;Stop&lt;br /&gt;End&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-size:130%;"&gt;BASIC&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);font-size:130%;" &gt;&lt;span style="font-size:100%;"&gt;To calculate sum of 10 Numbers:&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);font-size:130%;" &gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;&lt;span style="color: rgb(0, 0, 0);font-size:130%;" &gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: bold;"&gt;Rem The sum of 10 Numbers&lt;br /&gt;Let S  = 0&lt;br /&gt;For 1 = 1 to 10&lt;br /&gt;Read N&lt;br /&gt;Let S = S + N&lt;br /&gt;Next 1&lt;br /&gt;Print " The sum of Given Numbers = ", S&lt;br /&gt;Data 4,20,15,32,48&lt;br /&gt;Data 12,3,9,14,44&lt;br /&gt;END&lt;br /&gt;&lt;br /&gt;As well as we compute every programme in COBOL,  PASCAL,  C and C++ , Java etc.&lt;br /&gt;Format (F6,2)&lt;br /&gt;Format (1X, 'The sum of Given Numbers =', F10,2)&lt;br /&gt;Stop&lt;br /&gt;End&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-7708589339030833939?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/7708589339030833939'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/7708589339030833939'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/01/how-to-compute-small-programmes-in.html' title='How to compute Small Programmes in Various Language'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-7727805291106354093</id><published>2010-01-03T00:57:00.000-08:00</published><updated>2010-01-03T00:59:48.252-08:00</updated><title type='text'>"EDIT" MS-DOS Command Uses</title><content type='html'>MS-DOS "EDIT" Command used to edit File TEXT.  The system is as follows:&lt;br /&gt;&lt;br /&gt;EDIT [/B] [/H] [/R] [/S] [/&lt;nnn&gt;] [/?] [file(s)]&lt;br /&gt;&lt;br /&gt;  /B       - Forces monochrome mode.&lt;br /&gt;  /H       - Displays the maximum number of lines possible for your hardware.&lt;br /&gt;  /R       - Load file(s) in read-only mode.&lt;br /&gt;  /S       - Forces the use of short filenames.&lt;br /&gt;  /&lt;nnn&gt;   - Load binary file(s), wrapping lines to &lt;nnn&gt; characters wide.&lt;br /&gt;  /?       - Displays this help screen.&lt;br /&gt;  [file]   - Specifies initial files(s) to load.  Wildcards and multiple&lt;br /&gt;             filespecs can be given.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-7727805291106354093?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/7727805291106354093'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/7727805291106354093'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/01/edit-ms-dos-command-uses.html' title='&quot;EDIT&quot; MS-DOS Command Uses'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-7703453301268745549</id><published>2010-01-03T00:24:00.000-08:00</published><updated>2010-01-03T00:54:20.625-08:00</updated><title type='text'>"DIR" MS-DOS most important Command</title><content type='html'>The MS-DOS Command "DIR" runs to display Folder Contains:&lt;br /&gt;The Specification &amp;amp; Details of DIR Command:&lt;br /&gt;&lt;br /&gt;DIR [drive:][path][filename] [/A[[:]attributes]] [/B] [/C] [/D] [/L] [/N]&lt;br /&gt;  [/O[[:]sortorder]] [/P] [/Q] [/S] [/T[[:]timefield]] [/W] [/X] [/4]&lt;br /&gt;&lt;br /&gt;  [drive:][path][filename]&lt;br /&gt;              Specifies drive, directory, and/or files to list.&lt;br /&gt;&lt;br /&gt;  /A          Displays files with specified attributes.&lt;br /&gt;  attributes   D  Directories                R  Read-only files&lt;br /&gt;               H  Hidden files               A  Files ready for archiving&lt;br /&gt;               S  System files               -  Prefix meaning not&lt;br /&gt;  /B          Uses bare format (no heading information or summary).&lt;br /&gt;  /C          Display the thousand separator in file sizes.  This is the&lt;br /&gt;              default.  Use /-C to disable display of separator.&lt;br /&gt;  /D          Same as wide but files are list sorted by column.&lt;br /&gt;  /L          Uses lowercase.&lt;br /&gt;  /N          New long list format where filenames are on the far right.&lt;br /&gt;  /O          List by files in sorted order.&lt;br /&gt;  sortorder    N  By name (alphabetic)       S  By size (smallest first)&lt;br /&gt;               E  By extension (alphabetic)  D  By date/time (oldest first)&lt;br /&gt;               G  Group directories first    -  Prefix to reverse order&lt;br /&gt;  /P          Pauses after each screenful of information.&lt;br /&gt;  /Q          Display the owner of the file.&lt;br /&gt;  /S          Displays files in specified directory and all subdirectories.&lt;br /&gt;  /T          Controls which time field displayed or used for sorting&lt;br /&gt;  timefield   C  Creation&lt;br /&gt;              A  Last Access&lt;br /&gt;              W  Last Written&lt;br /&gt;  /W          Uses wide list format.&lt;br /&gt;  /X          This displays the short names generated for non-8dot3 file&lt;br /&gt;              names.  The format is that of /N with the short name inserted&lt;br /&gt;              before the long name. If no short name is present, blanks are&lt;br /&gt;              displayed in its place.&lt;br /&gt;  /4          Displays four-digit years&lt;br /&gt;&lt;br /&gt;Switches may be preset in the DIRCMD environment variable.  Override&lt;br /&gt;preset switches by prefixing any switch with - (hyphen)--for example, /-W.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-7703453301268745549?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/7703453301268745549'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/7703453301268745549'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2010/01/dir-ms-dos-most-important-command.html' title='&quot;DIR&quot; MS-DOS most important Command'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-5530221275496932300</id><published>2009-12-17T09:04:00.000-08:00</published><updated>2009-12-17T09:38:45.200-08:00</updated><title type='text'>SAMPLE EXAMPLE OF PSEUDOCODE</title><content type='html'>&lt;span style="color: rgb(102, 0, 0);"&gt;&lt;span style="color: rgb(153, 0, 0);"&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-family: times new roman;"&gt;&lt;span style="font-size:180%;"&gt;PSEUDOCODE:&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;.&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;.&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;.&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;REPEAT&lt;br /&gt; Process 1&lt;br /&gt;   .&lt;br /&gt;   .&lt;br /&gt;   .&lt;br /&gt; Process n&lt;br /&gt;UNTIL Condition&lt;br /&gt;.&lt;br /&gt;.&lt;br /&gt;.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(102, 0, 0);"&gt;&lt;span style="color: rgb(153, 0, 0);"&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-family: times new roman;"&gt;&lt;span style="font-size:180%;"&gt;CODE:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-size:180%;" &gt;Set Count to Zero&lt;br /&gt;Read first Student Record&lt;br /&gt;DO WHILE Sexcode is not equal to Zero&lt;br /&gt;If Sexcode = .F.&lt;br /&gt; Calculate Percentage&lt;br /&gt;If Percentage =&gt;45 THEN&lt;br /&gt;If Percentage&lt;60 THEN&lt;br /&gt;write output data&lt;br /&gt;add 1 to Count&lt;br /&gt;ENDIF&lt;br /&gt;ENDIF&lt;br /&gt;ENDIF&lt;br /&gt;Read next student record&lt;br /&gt;ENDDO&lt;br /&gt;Write Count&lt;br /&gt;STOP.&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-5530221275496932300?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/5530221275496932300'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/5530221275496932300'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2009/12/sample-example-of-pseudocode.html' title='SAMPLE EXAMPLE OF PSEUDOCODE'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-2896923691360132873</id><published>2009-12-16T18:25:00.000-08:00</published><updated>2009-12-16T18:37:39.572-08:00</updated><title type='text'>PRESENTION GRAPHICS ON MICROSOFT WORD</title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: times new roman;"&gt;The power graphics is demonstrated through business graphics software in the industry today.  Features covered include making presentations and combining information from other application packages such as spreadsheets and databases.&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;ul style="font-family: times new roman; text-align: justify;"&gt;&lt;li&gt;Start &lt;span style="font-weight: bold; color: rgb(102, 0, 0);"&gt;MS Word&lt;/span&gt; Applications.&lt;/li&gt;&lt;li&gt;Set &lt;span style="color: rgb(204, 0, 0); font-weight: bold;"&gt;Line Spacing&lt;/span&gt; to &lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;1.5 inches.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Type the above matter in Microsoft Work and &lt;span style="color: rgb(204, 0, 0); font-weight: bold;"&gt;save&lt;/span&gt; the document in "&lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;My Document&lt;/span&gt;" folder with any file name.&lt;/li&gt;&lt;li&gt;Use &lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;Universe&lt;/span&gt; font and set font size to 16 for title of the document. &lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;Underline&lt;/span&gt; the title and use &lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;Bold&lt;/span&gt; style.&lt;/li&gt;&lt;li&gt;Use &lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;Verdena&lt;/span&gt; font for subtitles in the document.  Set &lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;font size to 13&lt;/span&gt; and change found style to&lt;span style="font-style: italic; font-weight: bold; color: rgb(204, 0, 0);"&gt; italic&lt;/span&gt;.&lt;/li&gt;&lt;li&gt;Use "&lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;Print Preview&lt;/span&gt;" command to see the preview and change &lt;span style="color: rgb(204, 0, 0);font-size:180%;" &gt;zoom&lt;/span&gt; levels.&lt;/li&gt;&lt;li&gt;Save the Document with file name &lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;assignment 2&lt;/span&gt; using &lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;Save AS&lt;/span&gt; command in the folder of your name.  Use &lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;Create New Folder&lt;/span&gt; Icon to Create New Folder of your name.&lt;/li&gt;&lt;li&gt;See the &lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;Web Page Preview&lt;/span&gt; of the Document created by you.&lt;/li&gt;&lt;li&gt;Use &lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;Properties&lt;/span&gt; option in &lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;File&lt;/span&gt; menu and observe the use of this option.&lt;/li&gt;&lt;li&gt;Use &lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;Exit&lt;/span&gt; command to exit from Microsoft Word Application.&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-family: times new roman;font-size:78%;" &gt;Sourse: Computer Fundamentls (Acci.-8)&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-2896923691360132873?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/2896923691360132873'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/2896923691360132873'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2009/12/presention-graphics-on-microsoft-word.html' title='PRESENTION GRAPHICS ON MICROSOFT WORD'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-6743829135387631262</id><published>2009-12-15T19:55:00.000-08:00</published><updated>2009-12-15T20:07:20.337-08:00</updated><title type='text'>BASIC OF COMPUTER NETWORKS</title><content type='html'>The mergind of Computers and communications has had a profound influence on the way Computer Systems are organized.  The old model of a single mainframe computer serving all at organizations needs has been replaced by one in which a large number of separate but interconnected computers do the job.  These systems called computer networks.&lt;br /&gt;&lt;span style="color: rgb(153, 0, 0); font-weight: bold;"&gt;LOCAL AREA NETWORK (LAN)&lt;/span&gt; :      Local Area Network as the word itself defines, is a network confined to a small area.  It is a network of computers that is privately owned and limited to a small room, single building or at most spread across the campus.  There are three characterstic of LANs, which distinguish them from other types of networks:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Size&lt;/li&gt;&lt;li&gt;Transmission Technology&lt;/li&gt;&lt;li&gt;Topology&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-size:78%;"&gt;Source: CCC&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;Sports New &lt;a href="http://gsoftnet.blogspot.com/"&gt;Click Here&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;6th Pay Calculator &lt;a href="http://imsemployee.blogspot.com/"&gt;Click Here&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;Income Tax &lt;a href="http://efastway.blogspot.com/"&gt;Click Here&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;Results &lt;a href="http://rtmnagpur.blogspot.com/"&gt;Click Here&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-6743829135387631262?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/6743829135387631262'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/6743829135387631262'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2009/12/basic-of-computer-networks.html' title='BASIC OF COMPUTER NETWORKS'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-3796614306342886876</id><published>2009-12-13T20:11:00.000-08:00</published><updated>2009-12-13T20:22:46.279-08:00</updated><title type='text'>RELATIONSHIP BETWEEN HARDWARES &amp; SOFTWARES</title><content type='html'>The following important points regarding the relationship between hardware and software are brought out by this analogy:&lt;br /&gt;*  Both Hardware and software are necessary for a computer to do useful job.  Both are complementary to each other.&lt;br /&gt;&lt;br /&gt;* The same hardware can be loaded with different software to make a computer system perform different types of jobs, just as different songs can be played using the same cassette player.&lt;br /&gt;&lt;br /&gt;*  Except for upgrades (like increasing the main memory and hard disk capacities, or adding speakers, modems, etc.) hardware is normally a one-time expenses, whereas software is a continuing expenses.  Just as we by new cassettes for the newly released songs, or for songs whose cassettes we do not have, similarly one buys new software to be run on the same hardware, as and when need arises or funds become available.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;Source:  Computer Fundaamentals&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-3796614306342886876?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/3796614306342886876'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/3796614306342886876'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2009/12/following-important-points-regarding.html' title='RELATIONSHIP BETWEEN HARDWARES &amp; SOFTWARES'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-1274235217385885423</id><published>2009-12-07T18:29:00.000-08:00</published><updated>2009-12-07T18:39:13.494-08:00</updated><title type='text'>BASIC APPLICATIONS OF COMPUTER</title><content type='html'>The Computer era had brought vast changes in Industry Work, Government Management, Education Helps, Medicine Research, Scientific Research, Law and Social Sciences and even in Music-Film Industry and Art-Paining.  It means Computer Era totally changes human style of living.  The computers are used in following applications:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Education&lt;/li&gt;&lt;li&gt;Libraries and Museums&lt;/li&gt;&lt;li&gt;Scientific Research&lt;/li&gt;&lt;li&gt;Business Applications&lt;/li&gt;&lt;li&gt;Office Automation&lt;/li&gt;&lt;li&gt;Word Processing&lt;/li&gt;&lt;li&gt;Desktop Publishing&lt;/li&gt;&lt;li&gt;Banking&lt;/li&gt;&lt;li&gt;Reservation Systems&lt;/li&gt;&lt;li&gt;Air Trading Control&lt;/li&gt;&lt;li&gt;Flight Simulation&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="color: rgb(153, 51, 0);"&gt;&lt;span style="font-size:130%;"&gt;For Latest G.R. of Maharashtra Govt. &lt;a href="http://gsoftnet.blogspot.com/"&gt;Click Here&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="color: rgb(153, 51, 0);"&gt;&lt;span style="font-size:130%;"&gt;For Employee News &lt;a href="http://imsemployee.blogspot.com/"&gt;Click Here&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="color: rgb(153, 51, 0);"&gt;&lt;span style="font-size:130%;"&gt;For Income Tax ITR information &lt;a href="http://efastway.blogspot.com/"&gt;Click Here&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="color: rgb(153, 51, 0);"&gt;For R.T.M.Nagpur University &lt;a href="http://rtmnagpur.blogspot.com/"&gt;Click Here&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-1274235217385885423?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/1274235217385885423'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/1274235217385885423'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2009/12/basic-applications-of-computer.html' title='BASIC APPLICATIONS OF COMPUTER'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-7755664307379527730</id><published>2009-12-06T19:58:00.000-08:00</published><updated>2009-12-06T20:05:57.309-08:00</updated><title type='text'>FUNDAMENTAL:  CHARACTERSTICS OF COMPUTERS</title><content type='html'>Today's more increasing popularity of Computer and has proved it is very powerful and useful device.  This powerful Device are popular due to its following characteristics:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Automatic&lt;/li&gt;&lt;li&gt;Speed&lt;/li&gt;&lt;li&gt;Accuracy&lt;/li&gt;&lt;li&gt;Diligence&lt;/li&gt;&lt;li&gt;Versatility&lt;/li&gt;&lt;li&gt;Power of Remembering&lt;/li&gt;&lt;li&gt;No I. Q.&lt;/li&gt;&lt;li&gt;No Feelings&lt;/li&gt;&lt;/ol&gt;&lt;ul&gt;&lt;li&gt;For 6th Pay Calculator as per Maharasthra Government Resolution &lt;a href="http://gsoftnet.blogspot.com/"&gt;Click Here&lt;/a&gt;&lt;/li&gt;&lt;li&gt;For Employee Rules &amp;amp; Other Information &lt;a href="http://imsemployee.blogspot.com/"&gt;Click Here&lt;/a&gt;&lt;/li&gt;&lt;li&gt;For Income ITR 1 to 8 Information &lt;a href="http://efastway.blogspot.com/"&gt;Click Here&lt;/a&gt;&lt;/li&gt;&lt;li&gt;For RTM Nagpur University Information &lt;a href="http://rtmnagpur.blogspot.com/"&gt;Click Here&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-7755664307379527730?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/7755664307379527730'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/7755664307379527730'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2009/12/fundamental-characterstics-of-computers.html' title='FUNDAMENTAL:  CHARACTERSTICS OF COMPUTERS'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-8696921121865103106.post-8912326129753266749</id><published>2009-10-11T16:02:00.000-07:00</published><updated>2009-10-11T16:14:24.567-07:00</updated><title type='text'>Introduction of Computer</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/__6Oce5fcGow/StJmJTdnnLI/AAAAAAAAAB4/89FUxTT-jwk/s1600-h/index1.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 223px;" src="http://1.bp.blogspot.com/__6Oce5fcGow/StJmJTdnnLI/AAAAAAAAAB4/89FUxTT-jwk/s320/index1.JPG" alt="" id="BLOGGER_PHOTO_ID_5391484013945265330" border="0" /&gt;&lt;/a&gt;1.  System (Computer Machine)&lt;br /&gt;2.  Monitor (Display Device)&lt;br /&gt;3.  Speaker (Output Device)&lt;br /&gt;4.  Key Board (Input Device)&lt;br /&gt;5.  Mouse (Input Device-Logic Instructions only)&lt;br /&gt;6.  Hand Scanner&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8696921121865103106-8912326129753266749?l=isoftpoint.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/8912326129753266749'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8696921121865103106/posts/default/8912326129753266749'/><link rel='alternate' type='text/html' href='http://isoftpoint.blogspot.com/2009/10/introduction-of-computer.html' title='Introduction of Computer'/><author><name>Manish</name><uri>http://www.blogger.com/profile/05431334019459257780</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/__6Oce5fcGow/StJmJTdnnLI/AAAAAAAAAB4/89FUxTT-jwk/s72-c/index1.JPG' height='72' width='72'/></entry></feed>
