What is an HTML File?
HTML stands for Hyper Text Markup Language
An HTML file is a text file containing small markup tags
The markup tags tell the Web browser how to display the page
An HTML file must have an htm or html file extension
An HTML file can be created using a simple text editor
Do You Want to Try It?
If you are running Windows, start Notepad.
If you are on a Mac, start SimpleText.
In OSX start TextEdit and change the following preferences: Open the "Format" menu and select "Plain text" instead of "Rich text". Then open the "Preferences" window under the "Text Edit" menu and select "Ignore rich text commands in HTML files". Your HTML code will probably not work if you do not change the preferences above!
Type in the following text:
Title of page
This is my first homepage. This text is bold
Save the file as "mypage.htm".
Start your Internet browser. Select "Open" (or "Open Page") in the File menu of your browser. A dialog box will appear. Select "Browse" (or "Choose File") and locate the HTML file you just created - "mypage.htm" - select it and click "Open". Now you should see an address in the dialog box, for example "C:\MyDocuments\mypage.htm". Click OK, and the browser will display the page.
Example Explained
The first tag in your HTML document is . This tag tells your browser that this is the start of an HTML document. The last tag in your document is . This tag tells your browser that this is the end of the HTML document.
The text between the tag and the tag is header information. Header information is not displayed in the browser window.
The text between the tags is the title of your document. The title is displayed in your browser's caption.
<br />
<br />The text between the <body> tags is the text that will be displayed in your browser.
<br />
<br />The text between the <b> and </b> tags will be displayed in a bold font.
<br />HTM or HTML Extension?
<br />
<br />When you save an HTML file, you can use either the .htm or the .html extension. We have used .htm in our examples. It might be a bad habit inherited from the past when some of the commonly used software only allowed three letter extensions.
<br />
<br />With newer software we think it will be perfectly safe to use .html.
<br />Note on HTML Editors:
<br />
<br />You can easily edit HTML files using a WYSIWYG (what you see is what you get) editor like FrontPage or Dreamweaver, instead of writing your markup tags in a plain text file.
<br />
<br />However, if you want to be a skillful Web developer, we strongly recommend that you use a plain text editor to learn your primer HTML.</span>
<div style='clear: both;'></div>
</div>
<div class='post-footer'>
<div class='post-footer-line post-footer-line-1'>
<span class='post-author vcard'>
Posted by
<span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
<meta content='https://www.blogger.com/profile/12309791003951377157' itemprop='url'/>
<a class='g-profile' href='https://www.blogger.com/profile/12309791003951377157' rel='author' title='author profile'>
<span itemprop='name'>RAVI CHOPRA</span>
</a>
</span>
</span>
<span class='post-timestamp'>
at
<meta content='http://data-dump.blogspot.com/2008/04/learn-html.html' itemprop='url'/>
<a class='timestamp-link' href='https://data-dump.blogspot.com/2008/04/learn-html.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2008-04-18T01:49:00-07:00'>1:49 AM</abbr></a>
</span>
<span class='post-comment-link'>
<a class='comment-link' href='https://www.blogger.com/comment/fullpage/post/161627700135822200/2381052939108450282' onclick=''>
No comments:
</a>
</span>
<span class='post-icons'>
<span class='item-control blog-admin pid-1724816456'>
<a href='https://www.blogger.com/post-edit.g?blogID=161627700135822200&postID=2381052939108450282&from=pencil' title='Edit Post'>
<img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/>
</a>
</span>
</span>
<div class='post-share-buttons goog-inline-block'>
</div>
</div>
<div class='post-footer-line post-footer-line-2'>
<span class='post-labels'>
Labels:
<a href='https://data-dump.blogspot.com/search/label/Learn%20HTML' rel='tag'>Learn HTML</a>
</span>
</div>
<div class='post-footer-line post-footer-line-3'>
<span class='post-location'>
</span>
</div>
</div>
</div>
</div>
<div class='post-outer'>
<div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'>
<meta content='161627700135822200' itemprop='blogId'/>
<meta content='1227351323823928930' itemprop='postId'/>
<a name='1227351323823928930'></a>
<h3 class='post-title entry-title' itemprop='name'>
<a href='https://data-dump.blogspot.com/2008/04/java-criticism.html'>Java criticism</a>
</h3>
<div class='post-header'>
<div class='post-header-line-1'></div>
</div>
<div class='post-body entry-content' id='post-body-1227351323823928930' itemprop='description articleBody'>
<span style="font-weight:bold;">Java programming language was intended to serve as a novel way to manage software complexity. Many consider Java technology to deliver reasonably well on this promise. However, Java is not without flaws, and it does not universally accommodate all programming styles, environments, or requirements.<br /><br />Class path<br /><br />Running a Java program requires all third party supporting libraries to be in the class path. This can be an obstacle to portability, because its syntax is platform-specific: Windows-based systems use backslashes to mark subdirectories and semicolons to separate entries, whereas all other platforms use forward slashes to mark subdirectories and colons to separate entries.<br /><br /><br />It is also necessary for each .jar or .zip archive required to be explicitly named in the class path. Java provides a way around this by allowing directories listed in the class path to end in an asterisk (*), which will be expanded to the names of all files ending in .jar or .JAR within the directory. However, such an entry does not match .zip or .class files within that directory.<br /><br />License<br /><br />Sun Java's proprietary nature gave it a controversial position in the free software community. Because Sun's implementation of Java was not free software, it could not be included in projects that require a free software or GPL-compatible license, such as Debian main, the $100 laptop, and Fedora Core. Sun announced in JavaOne 2006 that Java will become open source software. The statement was issued by Sun Software Executive Vice President Rich Green: "It's not a question of whether, it's a question of how, and so we'll go do this." <br /><br /><br /><br />In July 2006, Sun's CTO Robert Brewin commented that Java will be partially open source by June 2007 but the entire platform will take more time to be fully open source. On November 13, 2006, Sun announced that its standard edition Java runtime environment will be released under the GPL by March of 2007. Its source code will be available under the GPL. According to Richard Stallman, this will mean an end to the Java trap. Mark Shuttleworth called the initial press announcement "a real milestone for the free software community."<br /><br />Resource management<br /><br /><br /><br />While Java does manage memory, it does not manage all resources, such as JDBC database connections; these must be released just as memory would need to be in C++.<br /><br />Memory management<br /><br />Java takes care of memory management. This was done as it makes it harder (but not impossible) for the programmer to create problems such as memory leaks. Java always allocates objects on the heap (unless optimized to the stack or registers by the JIT compiler) and local variables on the stack or in registers. This makes Java less flexible than C++, which allows programmers to choose where objects are allocated.<br /><br /><br />The garbage collector controls when objects are deleted from memory. Java does not allow programmers to guarantee when garbage collection happens (even with System.gc()), they cannot hold off garbage collection, and they cannot delete one particular object. While this makes programming much simpler and reduces memory leaks, it lacks the flexibility that can, in some cases, result in a more efficient handling of memory. Lower-level languages such as C or assembly language provide this flexibility.<br /><br />While many programs, such as those written in C++, tend to fall prey to memory leaks, this is not the whole story. Other resource leaks such as file handles, database and network connections are still likely, especially when exceptions are thrown. However, where C++ has the RAII idiom to address both cases, Java programmers need to remember to release resources in finally clauses and must have a good understanding of which resources Java will release and which they must release.<br /><br />Primitives vs. objects / Autoboxing<br /><br />Java designers decided not to implement certain features present in other languages (including multiple inheritance, operator overloading, and tuples).<br /><br />When generics were added to Java 5.0, there was already a large framework of classes (many of which were already deprecated), so generics were chosen to be implemented using erasure to allow backwards compatibility and preservation of these existing classes. This limited the features that could be provided by this addition as compared to other languages.<br /><br />Java's primitive types are not objects. Primitive types hold their values in the stack rather than being references to values. This was done for performance reasons. Because of this, Java is not considered to be a pure object-oriented programming language and this makes reflection more complicated. However, Java 5.0 supports automatic conversion (autoboxing) of primitive data types to corresponding object form wherever required, during compilation. When autounboxing, a null pointer exception may be thrown. Since this operation occurs implicitly (without a cast or method call), this unchecked exception may not be obvious by inspection of the line of code.<br /><br />Non-Virtual methods<br /><br />Java provides no way to make methods non-virtual (although they can be "sealed" by using the final modifier to disallow overriding). This means that there is no way to let derived classes define a new, unrelated method with the same name. This can be a problem when a base class is designed by a different person, and a new version introduces a method with the same name and signature as some method already present in the derived class. This means that the method in the derived class will implicitly override the method in the base class, even though that was not the intent of the designers of either class. To partially accommodate for these versioning problems, Java 5.0 introduced the @Override annotation, but to preserve backwards compatibility it could not be made compulsory by default.<br /><br />Single paradigm<br /><br />Java is predominantly a single-paradigm language. The addition of static imports in Java 5.0 accommodates the procedural paradigm better than earlier versions of Java.<br /><br />Exception handling<br /><br />Java embraced the concept of exception specifications from C++ where they were optional, but made throws clauses mandatory for any checked exception. While this can be a benefit for small systems, there is not universal agreement that using checked exceptions is a benefit for larger systems. In particular, "higher level" code is often not interested in errors thrown by "lower level" code (eg: NamingException). The coder of the naming classes must make a choice: either force higher level code to deal with naming exceptions as checked exceptions, or allow them to "bubble up" through his own low-level code without compile-time checks.<br /><br />Closure<br /><br />Finally, while anonymous inner classes provide a basic form of closures, they are not complete and require referenced variables to either be class fields or declared "final". The rationale behind this is that it allows JVM implementors to choose a stack model for variable lifetimes, so that a variable scope is removed when exited, thus preventing real closures. In addition, when using - for instance - "Runnable" as a closure, one has to declare the "run" method and put the code in that: you cannot simply put some code in braces and pass it around.<br /><br />Floating point arithmetic<br /><br />While Java's floating point arithmetic is largely based on IEEE 754 (Standard for Binary Floating-Point Arithmetic), certain features are not supported even when using the "strictfp" modifier, such as Exception Flags and Directed Roundings — capabilities mandated by IEEE Standard 754. Many so-called "Java gotchas" are not problems with Java per se, but problems that are inevitable whenever using floating point arithmetic.<br /><br />Look and feel<br /><br />The look and feel of GUI applications written in Java using the Swing platform is often different from native applications. While programmers can choose to use the AWT toolkit that displays native widgets (and thus look like the operating platform), the AWT toolkit is unable to meet advanced GUI programming needs by wrapping around advanced widgets and not sacrificing portability across the various supported platforms, each of which have vastly different APIs especially for higher-level widgets.<br /><br />The Swing toolkit--written completely in Java--both creates the problem of having a different look and feel from native applications, and avoids the problem of being limited by native toolkit capabilities because it reimplements widgets using only the most basic drawing mechanisms that are guaranteed available on all platforms. Unfortunately, the default installations of the JRE (as of August 2006) do not use the system's "native" look and feel, instead defaulting to the built-in Metal Look and Feel. If the programmer doesn't take care to set the native look and feel, users will have applications whose appearance is vastly different from that of their native applications. Apple Computer's own optimized version of the Java Runtime, which is included within the Mac OS X distribution, by default does set the default and implements its "Aqua" look-and-feel, giving Swing applications on the Macintosh a similar appearance to native software. Even in this environment, the programmer must still do some extra work to ensure that that application looks like an Aqua one (for example, they must set system properties to ensure the menubar is rendered in the OS X menubar and not in the application window as it would be on other platforms).<br /><br />Performance<br /><br />It is impossible to make any generalization about the performance of Java programs, because runtime performance is affected much more by the quality of the compiler or JVM than by any intrinsic properties of the language itself. Java bytecode can either be interpreted at run time by a virtual machine, or it can be compiled at load time or runtime into machine code which runs directly on the computer's hardware. Interpretation is slower than native execution, and compilation at load time or runtime has an initial performance penalty for the compilation.<br /><br />Lack of language features<br /><br />There are a few language requirements which incur an unavoidable time penalty, although these features are not unique to Java. Among these are array bounds checking, run-time type checking, and virtual function indirection (although each of these can in some situations be avoided by an optimizing compiler). Also the lack of features can affect performance. For example, Java does not have arrays of structures or a true multi-dimensional array, but only an array of references to objects or further arrays. Nor does Java allow returning more than one value from a function without using an object. The net result is that Java code makes more heap allocations than well-written code in some other languages.<br /><br />Garbage collection<br /><br />The use of a garbage collector to automatically delete objects adds overhead compared to manual deallocation and can have a positive or negative impact, or no discernible impact at all, on performance depending upon the garbage collector implementation and the characteristics of the application's use of objects. With the modern generational garbage collectors used in many JVMs, many applications actually experience greater performance because of faster allocation and deallocation algorithms.<br /><br />Byte code vs. native compilation<br /><br />Relative performance of JIT compilers as compared to native compilers can be quite close, and is often a subject of debate. The JIT compilation stage may be time consuming, which is inconvenient for applications that are short-lived and/or contain large amounts of code. Once compiled to native code, however, the performance of the program can be comparable to that achieved by a native compiler, even on numerical tasks. Although Java does not support manual inlining of method calls, many JIT compilers perform this optimization at load time and can exploit information from the runtime environment to guide more effective transformations, such as profile-directed inlining. Dynamic recompilation, as provided by Sun's HotSpot JVM, can exceed the performance of the static compilation available in most other languages by exploiting information that is only available at runtime.<br /><br />Hardware interfacing<br /><br />Because Java was designed with an emphasis on security and portability, it does not support direct access to the machine architecture and address space. This means working directly with a specific piece of hardware such as a scanner, digital camera, audio recorder, video capture, or virtually any hardware that requires direct memory space control (typically those pieces or hardware installed with drivers), cannot easily be accomplished with Java. An illustration of this issue is seen in version 1.0 of Java as it was not possible to access a printer because the interface code to the various printer drivers was not included in this first JVM.<br /><br />Interfacing with native code<br /><br />Clients side or server systems that need to "talk" to the hardware must implement a hybrid solution using Java and C/C++ or assembly language via the Java Native Interface (JNI) libraries to link native code to the Java libraries. An alternate solution is to code the hardware software component in its native C/C++/assembler language and then pass the data via files, databases or a shared memory interface, although this is not an ideal solution.<br /><br />Using the JNI technique introduces many possible inconsistencies such as: machine dependency, potential deadlock situations, memory allocation leaks, and possibly poor application performance, not to mention code complexity of needing to maintain two different code bases. However, it must be noted that it is a common case for other Virtual machine languages, as for example the .NET Framework Common Language Runtime (see Platform Invocation Services).<br /><br />Inconsistent JVM implementations<br /><br />Java is a bytecode language that runs on top of the JVM; ultimately the compatibility of the language and the ability to have it run across different platforms is dependent on the stability and version of the JVM. While Java is touted as running on a large variety of systems, the most up to date JVM (and JRE) are only those actively updated for Windows, Linux and Solaris. HP (such as Java for HP-UX) and IBM (for MVS, AIX, OS/400) provide their own implementations for their family of platforms but do not always mirror the latest Sun releases. Other JVM implementations usually follow, but sometimes lag in months or years with the more common implementations and therefore introduce compatibility issues.</span>
<div style='clear: both;'></div>
</div>
<div class='post-footer'>
<div class='post-footer-line post-footer-line-1'>
<span class='post-author vcard'>
Posted by
<span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
<meta content='https://www.blogger.com/profile/12309791003951377157' itemprop='url'/>
<a class='g-profile' href='https://www.blogger.com/profile/12309791003951377157' rel='author' title='author profile'>
<span itemprop='name'>RAVI CHOPRA</span>
</a>
</span>
</span>
<span class='post-timestamp'>
at
<meta content='http://data-dump.blogspot.com/2008/04/java-criticism.html' itemprop='url'/>
<a class='timestamp-link' href='https://data-dump.blogspot.com/2008/04/java-criticism.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2008-04-18T01:40:00-07:00'>1:40 AM</abbr></a>
</span>
<span class='post-comment-link'>
<a class='comment-link' href='https://www.blogger.com/comment/fullpage/post/161627700135822200/1227351323823928930' onclick=''>
No comments:
</a>
</span>
<span class='post-icons'>
<span class='item-control blog-admin pid-1724816456'>
<a href='https://www.blogger.com/post-edit.g?blogID=161627700135822200&postID=1227351323823928930&from=pencil' title='Edit Post'>
<img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/>
</a>
</span>
</span>
<div class='post-share-buttons goog-inline-block'>
</div>
</div>
<div class='post-footer-line post-footer-line-2'>
<span class='post-labels'>
Labels:
<a href='https://data-dump.blogspot.com/search/label/Java%20criticism' rel='tag'>Java criticism</a>
</span>
</div>
<div class='post-footer-line post-footer-line-3'>
<span class='post-location'>
</span>
</div>
</div>
</div>
</div>
</div></div>
</div>
<div class='blog-pager' id='blog-pager'>
<span id='blog-pager-newer-link'>
<a class='blog-pager-newer-link' href='https://data-dump.blogspot.com/search?updated-max=2008-05-07T22:16:00-07:00&max-results=3&reverse-paginate=true' id='Blog1_blog-pager-newer-link' title='Newer Posts'>Newer Posts</a>
</span>
<span id='blog-pager-older-link'>
<a class='blog-pager-older-link' href='https://data-dump.blogspot.com/search?updated-max=2008-04-18T01:40:00-07:00&max-results=3' id='Blog1_blog-pager-older-link' title='Older Posts'>Older Posts</a>
</span>
<a class='home-link' href='https://data-dump.blogspot.com/'>Home</a>
</div>
<div class='clear'></div>
<div class='blog-feeds'>
<div class='feed-links'>
Subscribe to:
<a class='feed-link' href='https://data-dump.blogspot.com/feeds/posts/default' target='_blank' type='application/atom+xml'>Posts (Atom)</a>
</div>
</div>
</div></div>
</div>
<div id='sidebar-wrapper'>
<div class='sidebar section' id='sidebar'><div class='widget Image' data-version='1' id='Image1'>
<h2>HDwallpapersnet</h2>
<div class='widget-content'>
<a href='http://www.hdwallpapersnet.blogspot.com'>
<img alt='HDwallpapersnet' height='39' id='Image1_img' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEilh_-HrUP2HVGjPQBC5ODm5zIOq3pqIpiY-aUni1A-b1rbhjj5jf2_ykQhBylWfLLWQnLMZJjsgQdOox8QIFcXn8TfI4mebb6ieLzfBPaLw9wTM3FHrXzNM1Vo3pn6gkphQw5kV1nXXnU/s220/hdwallpapers.png' width='220'/>
</a>
<br/>
</div>
<div class='clear'></div>
</div><div class='widget HTML' data-version='1' id='HTML7'>
<h2 class='title'>Vote</h2>
<div class='widget-content'>
<!-- Begin BlogToplist voting code -->
<a href="http://www.blogtoplist.com/vote.php?u=40575" target="_blank">
<img border="0" alt="Top Blogs" src="http://www.blogtoplist.com/images/votebutton.gif"/></a>
<!-- End BlogToplist voting code -->
</div>
<div class='clear'></div>
</div><div class='widget HTML' data-version='1' id='HTML5'>
<h2 class='title'>Track</h2>
<div class='widget-content'>
<!-- Begin BlogToplist tracker code -->
<a href="http://www.blogtoplist.com/technology/" title="Technology">
<img border="0" alt="Technology" src="http://www.blogtoplist.com/tracker.php?u=40575"/></a>
<!-- End BlogToplist tracker code -->
</div>
<div class='clear'></div>
</div><div class='widget AdSense' data-version='1' id='AdSense2'>
<div class='widget-content'>
<script type="text/javascript"><!--
google_ad_client="pub-7946201296697281";
google_ad_host="pub-1556223355139109";
google_ad_host_channel="00000";
google_ad_width=120;
google_ad_height=240;
google_ad_format="120x240_as";
google_ad_type="text";
google_color_border="FFFFFF";
google_color_bg="FFFFFF";
google_color_link="2D8930";
google_color_url="3B8651";
google_color_text="666666";
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<div class='clear'></div>
</div>
</div><div class='widget HTML' data-version='1' id='HTML4'>
<h2 class='title'>Technorati Favorite</h2>
<div class='widget-content'>
<a href="http://technorati.com/faves?sub=addfavbtn&add=http://data-dump.blogspot.com"><img alt="Add to Technorati Favorites" src="http://static.technorati.com/pix/fave/btn-fave2.png"/></a>
</div>
<div class='clear'></div>
</div><div class='widget HTML' data-version='1' id='HTML2'>
<h2 class='title'>Links</h2>
<div class='widget-content'>
<!-- Search Google -->
<center>
<form action="http://www.google.com/custom" target="_top" method="get">
<table bgcolor="#ffffff">
<tr><td nowrap="nowrap" valign="top" height="32" align="left">
<a href="http://www.google.com/">
<img border="0" alt="Google" src="http://www.google.com/logos/Logo_25wht.gif" align="middle"/></a>
<br/>
<label for="sbi" style="display: none">Enter your search terms</label>
<input maxlength="255" id="sbi" value="" name="q" size="31" type="text"/>
</td></tr>
<tr><td valign="top" align="left">
<label for="sbb" style="display: none">Submit search form</label>
<input id="sbb" value="Search" name="sa" type="submit"/>
<input value="pub-5665443526861688" name="client" type="hidden"/>
<input value="1" name="forid" type="hidden"/>
<input value="ISO-8859-1" name="ie" type="hidden"/>
<input value="ISO-8859-1" name="oe" type="hidden"/>
<input value="active" name="safe" type="hidden"/>
<input value="GALT:#008000;GL:1;DIV:#336699;VLC:663399;AH:center;BGC:FFFFFF;LBGC:336699;ALC:0000FF;LC:0000FF;T:000000;GFNT:0000FF;GIMP:0000FF;FORID:1" name="cof" type="hidden"/>
<input value="en" name="hl" type="hidden"/>
</td></tr></table>
</form>
</center>
<!-- Search Google -->
</div>
<div class='clear'></div>
</div><div class='widget Label' data-version='1' id='Label2'>
<h2>Labels</h2>
<div class='widget-content list-label-widget-content'>
<ul>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/3D%20Operations%20in%20DBMS'>3D Operations in DBMS</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/3D%20Topology%20in%20Geo-DBMS'>3D Topology in Geo-DBMS</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/A%20simple%20thread'>A simple thread</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Advanced%20Data%20Protection%20in%20Windows'>Advanced Data Protection in Windows</a>
<span dir='ltr'>(4)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Applet'>Applet</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/ASP%20Tutorial'>ASP Tutorial</a>
<span dir='ltr'>(5)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Basic%20Hardware%20Components'>Basic Hardware Components</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Basic%20HTML%20Tags'>Basic HTML Tags</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Computer%20Networks'>Computer Networks</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/computers'>computers</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Computers%20Basics'>Computers Basics</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Core%20Java%20Programs%20%5B%20PAGE%201%5D'>Core Java Programs [ PAGE 1]</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Core%20Java%20Programs%20%5B%20PAGE%202%5D'>Core Java Programs [ PAGE 2]</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Core%20Java%20Programs%20%5BPAGE%203%5D'>Core Java Programs [PAGE 3]</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/CSS'>CSS</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/DBMS'>DBMS</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Definitions'>Definitions</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Differences%20Between%20VBScript%20and%20JavaScript'>Differences Between VBScript and JavaScript</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Disadvantages%20of%20Computer'>Disadvantages of Computer</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/DISTRIBUTED%20DATABSE%20MANAGEMENT%20SYSTEM'>DISTRIBUTED DATABSE MANAGEMENT SYSTEM</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Efficient%20computer%20tools%3A%20what%20would%20you%20put%20on%20the%20list%3F'>Efficient computer tools: what would you put on the list?</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Geo-DBMS%20Development'>Geo-DBMS Development</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/History'>History</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/How%20Java%20UsesThreads'>How Java UsesThreads</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/How%20to%20Use%20Computer%20Management%20on%20the%20Local%20Computer'>How to Use Computer Management on the Local Computer</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/HTML%20Attributes'>HTML Attributes</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/HTML%20Character%20Entities'>HTML Character Entities</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/HTML%20Elements'>HTML Elements</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/HTML%20Summary'>HTML Summary</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Introduction%20to%20Java%20Programming'>Introduction to Java Programming</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Introduction%20to%20Network%20Types'>Introduction to Network Types</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Introduction%20to%20PHP'>Introduction to PHP</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Introduction%20To%20XHTML'>Introduction To XHTML</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Java%20applet'>Java applet</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Java%20criticism'>Java criticism</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/JAVA%20Date%20Utility'>JAVA Date Utility</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Java%20Interview%20Questions'>Java Interview Questions</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Java%20Runtime%20Environment'>Java Runtime Environment</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/JAVA%20String%20Utility'>JAVA String Utility</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Java%2FJ2EE%20Programmer%20Practice%20Test%201%20%28page%202%29'>Java/J2EE Programmer Practice Test 1 (page 2)</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/JavaServer%20Pages'>JavaServer Pages</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/JDBC%20Programming'>JDBC Programming</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/JDBC%20Programming%20Examples'>JDBC Programming Examples</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Learn%20HTML'>Learn HTML</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Logical%20view%20and%20physical%20view%20of%20DBMS'>Logical view and physical view of DBMS</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Network%20Centrics'>Network Centrics</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/New%20Computer%20Inventions'>New Computer Inventions</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/PHP%20Installation'>PHP Installation</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/PHP%20String'>PHP String</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/PHP%20Syntax'>PHP Syntax</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/PHP%20Tutorial'>PHP Tutorial</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/PHP%20Variables'>PHP Variables</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/RDBMS'>RDBMS</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Relational%20Database'>Relational Database</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/SEO'>SEO</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Servlet'>Servlet</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Synchronization%3A%20the%20problem.%20part%201'>Synchronization: the problem. part 1</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Teletraffic%20engineering%20in%20broadband%20networks'>Teletraffic engineering in broadband networks</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Ten%20Common%20Database%20Design%20Mistakes'>Ten Common Database Design Mistakes</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/The%20Head%20Element'>The Head Element</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/The%20Thread%20Classes'>The Thread Classes</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Threads%20vs.%20Processes'>Threads vs. Processes</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Tips'>Tips</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Top%205%20Ways%20To%20Make%20A%20Computer%20Run%20Faster'>Top 5 Ways To Make A Computer Run Faster</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/What%20Are%20Software%20Engineering%20Metrics%3F'>What Are Software Engineering Metrics?</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/What%20is%20a%20Thread%3F'>What is a Thread?</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/What%20is%20the%20most%20efficient%20way%20to%20find%20information%20about%20computer%20security%3F'>What is the most efficient way to find information about computer security?</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Why%20use%20HTML%204.0%3F'>Why use HTML 4.0?</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/XHTML%20-%20Why%3F'>XHTML - Why?</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/XHTML%20Exam'>XHTML Exam</a>
<span dir='ltr'>(1)</span>
</li>
</ul>
<div class='clear'></div>
</div>
</div><div class='widget AdSense' data-version='1' id='AdSense1'>
<div class='widget-content'>
<script type="text/javascript"><!--
google_ad_client="pub-7946201296697281";
google_ad_host="pub-1556223355139109";
google_ad_host_channel="00000";
google_ad_width=120;
google_ad_height=600;
google_ad_format="120x600_as";
google_ad_type="text";
google_color_border="FFFFFF";
google_color_bg="FFFFFF";
google_color_link="2D8930";
google_color_url="3B8651";
google_color_text="666666";
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<div class='clear'></div>
</div>
</div><div class='widget HTML' data-version='1' id='HTML8'>
<h2 class='title'>Top Tags</h2>
<div class='widget-content'>
<script charset="UTF-8" src="http://widgets.technorati.com/t.js" type="text/javascript"></script> <div class="tr_embed_t_js"> <a href="http://technorati.com/blogs/data-dump.blogspot.com?sub=tr_embed_t_js" class="tr_embed_arg_blog">Blog Information</a> <a href="http://technorati.com/profile/ravinderravi?sub=tr_embed_t_js" class="tr_embed_arg_username">Profile for ravinderravi</a> </div>
</div>
<div class='clear'></div>
</div><div class='widget HTML' data-version='1' id='HTML3'>
<h2 class='title'>Map</h2>
<div class='widget-content'>
<script src="http://feedjit.com/map/?bc=ffffff&tc=494949&brd1=336699&lnk=494949&hc=336699&dot=ff0000" type="text/javascript"></script><noscript><a href="http://feedjit.com/">Feedjit Live Blog Stats</a></noscript>
</div>
<div class='clear'></div>
</div><div class='widget Profile' data-version='1' id='Profile1'>
<h2>About Me</h2>
<div class='widget-content'>
<dl class='profile-datablock'>
<dt class='profile-data'>
<a class='profile-name-link g-profile' href='https://www.blogger.com/profile/12309791003951377157' rel='author' style='background-image: url(//www.blogger.com/img/logo-16.png);'>
RAVI CHOPRA
</a>
</dt>
<dd class='profile-data'>United States</dd>
</dl>
<a class='profile-link' href='https://www.blogger.com/profile/12309791003951377157' rel='author'>View my complete profile</a>
<div class='clear'></div>
</div>
</div><div class='widget BlogArchive' data-version='1' id='BlogArchive1'>
<h2>Blog Archive</h2>
<div class='widget-content'>
<div id='ArchiveList'>
<div id='BlogArchive1_ArchiveList'>
<ul class='flat'>
<li class='archivedate'>
<a href='https://data-dump.blogspot.com/2008_07_15_archive.html'>Jul 15</a> (1)
</li>
<li class='archivedate'>
<a href='https://data-dump.blogspot.com/2008_05_07_archive.html'>May 07</a> (12)
</li>
<li class='archivedate'>
<a href='https://data-dump.blogspot.com/2008_04_25_archive.html'>Apr 25</a> (16)
</li>
<li class='archivedate'>
<a href='https://data-dump.blogspot.com/2008_04_21_archive.html'>Apr 21</a> (3)
</li>
<li class='archivedate'>
<a href='https://data-dump.blogspot.com/2008_04_19_archive.html'>Apr 19</a> (6)
</li>
<li class='archivedate'>
<a href='https://data-dump.blogspot.com/2008_04_18_archive.html'>Apr 18</a> (28)
</li>
<li class='archivedate'>
<a href='https://data-dump.blogspot.com/2008_04_17_archive.html'>Apr 17</a> (1)
</li>
<li class='archivedate'>
<a href='https://data-dump.blogspot.com/2008_04_16_archive.html'>Apr 16</a> (2)
</li>
<li class='archivedate'>
<a href='https://data-dump.blogspot.com/2008_04_15_archive.html'>Apr 15</a> (2)
</li>
<li class='archivedate'>
<a href='https://data-dump.blogspot.com/2008_04_13_archive.html'>Apr 13</a> (4)
</li>
<li class='archivedate'>
<a href='https://data-dump.blogspot.com/2008_02_29_archive.html'>Feb 29</a> (2)
</li>
</ul>
</div>
</div>
<div class='clear'></div>
</div>
</div><div class='widget Label' data-version='1' id='Label1'>
<h2>Ads</h2>
<div class='widget-content list-label-widget-content'>
<ul>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/3D%20Operations%20in%20DBMS'>3D Operations in DBMS</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/3D%20Topology%20in%20Geo-DBMS'>3D Topology in Geo-DBMS</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/A%20simple%20thread'>A simple thread</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Advanced%20Data%20Protection%20in%20Windows'>Advanced Data Protection in Windows</a>
<span dir='ltr'>(4)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Applet'>Applet</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/ASP%20Tutorial'>ASP Tutorial</a>
<span dir='ltr'>(5)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Basic%20Hardware%20Components'>Basic Hardware Components</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Basic%20HTML%20Tags'>Basic HTML Tags</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Computer%20Networks'>Computer Networks</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/computers'>computers</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Computers%20Basics'>Computers Basics</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Core%20Java%20Programs%20%5B%20PAGE%201%5D'>Core Java Programs [ PAGE 1]</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Core%20Java%20Programs%20%5B%20PAGE%202%5D'>Core Java Programs [ PAGE 2]</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Core%20Java%20Programs%20%5BPAGE%203%5D'>Core Java Programs [PAGE 3]</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/CSS'>CSS</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/DBMS'>DBMS</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Definitions'>Definitions</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Differences%20Between%20VBScript%20and%20JavaScript'>Differences Between VBScript and JavaScript</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Disadvantages%20of%20Computer'>Disadvantages of Computer</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/DISTRIBUTED%20DATABSE%20MANAGEMENT%20SYSTEM'>DISTRIBUTED DATABSE MANAGEMENT SYSTEM</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Efficient%20computer%20tools%3A%20what%20would%20you%20put%20on%20the%20list%3F'>Efficient computer tools: what would you put on the list?</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Geo-DBMS%20Development'>Geo-DBMS Development</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/History'>History</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/How%20Java%20UsesThreads'>How Java UsesThreads</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/How%20to%20Use%20Computer%20Management%20on%20the%20Local%20Computer'>How to Use Computer Management on the Local Computer</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/HTML%20Attributes'>HTML Attributes</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/HTML%20Character%20Entities'>HTML Character Entities</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/HTML%20Elements'>HTML Elements</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/HTML%20Summary'>HTML Summary</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Introduction%20to%20Java%20Programming'>Introduction to Java Programming</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Introduction%20to%20Network%20Types'>Introduction to Network Types</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Introduction%20to%20PHP'>Introduction to PHP</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Introduction%20To%20XHTML'>Introduction To XHTML</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Java%20applet'>Java applet</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Java%20criticism'>Java criticism</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/JAVA%20Date%20Utility'>JAVA Date Utility</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Java%20Interview%20Questions'>Java Interview Questions</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Java%20Runtime%20Environment'>Java Runtime Environment</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/JAVA%20String%20Utility'>JAVA String Utility</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Java%2FJ2EE%20Programmer%20Practice%20Test%201%20%28page%202%29'>Java/J2EE Programmer Practice Test 1 (page 2)</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/JavaServer%20Pages'>JavaServer Pages</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/JDBC%20Programming'>JDBC Programming</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/JDBC%20Programming%20Examples'>JDBC Programming Examples</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Learn%20HTML'>Learn HTML</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Logical%20view%20and%20physical%20view%20of%20DBMS'>Logical view and physical view of DBMS</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Network%20Centrics'>Network Centrics</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/New%20Computer%20Inventions'>New Computer Inventions</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/PHP%20Installation'>PHP Installation</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/PHP%20String'>PHP String</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/PHP%20Syntax'>PHP Syntax</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/PHP%20Tutorial'>PHP Tutorial</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/PHP%20Variables'>PHP Variables</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/RDBMS'>RDBMS</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Relational%20Database'>Relational Database</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/SEO'>SEO</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Servlet'>Servlet</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Synchronization%3A%20the%20problem.%20part%201'>Synchronization: the problem. part 1</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Teletraffic%20engineering%20in%20broadband%20networks'>Teletraffic engineering in broadband networks</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Ten%20Common%20Database%20Design%20Mistakes'>Ten Common Database Design Mistakes</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/The%20Head%20Element'>The Head Element</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/The%20Thread%20Classes'>The Thread Classes</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Threads%20vs.%20Processes'>Threads vs. Processes</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Tips'>Tips</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Top%205%20Ways%20To%20Make%20A%20Computer%20Run%20Faster'>Top 5 Ways To Make A Computer Run Faster</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/What%20Are%20Software%20Engineering%20Metrics%3F'>What Are Software Engineering Metrics?</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/What%20is%20a%20Thread%3F'>What is a Thread?</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/What%20is%20the%20most%20efficient%20way%20to%20find%20information%20about%20computer%20security%3F'>What is the most efficient way to find information about computer security?</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/Why%20use%20HTML%204.0%3F'>Why use HTML 4.0?</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/XHTML%20-%20Why%3F'>XHTML - Why?</a>
<span dir='ltr'>(1)</span>
</li>
<li>
<a dir='ltr' href='https://data-dump.blogspot.com/search/label/XHTML%20Exam'>XHTML Exam</a>
<span dir='ltr'>(1)</span>
</li>
</ul>
<div class='clear'></div>
</div>
</div><div class='widget HTML' data-version='1' id='HTML6'>
<h2 class='title'>FEEDJIT Live Traffic Feed</h2>
<div class='widget-content'>
<script src="http://feedjit.com/serve/?bc=ffffff&tc=494949&brd1=336699&lnk=494949&hc=336699&ww=160" type="text/javascript"></script><noscript><a href="http://feedjit.com/">Feedjit Live Blog Stats</a></noscript>
</div>
<div class='clear'></div>
</div></div>
</div>
<!-- spacer for skins that want sidebar and main to be the same height-->
<div class='clear'> </div>
</div>
<!-- end content-wrapper -->
<div id='footer-wrapper'>
<div class='footer section' id='footer'><div class='widget AdSense' data-version='1' id='AdSense3'>
<div class='widget-content'>
<script type="text/javascript"><!--
google_ad_client="pub-7946201296697281";
google_ad_host="pub-1556223355139109";
google_ad_host_channel="00000";
google_ad_width=468;
google_ad_height=60;
google_ad_format="468x60_as";
google_ad_type="text";
google_color_border="FFFFFF";
google_color_bg="FFFFFF";
google_color_link="2D8930";
google_color_url="3B8651";
google_color_text="999999";
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<div class='clear'></div>
</div>
</div><div class='widget HTML' data-version='1' id='HTML9'>
<h2 class='title'>Page Rank</h2>
<div class='widget-content'>
<a href="http://www.populararticles.com/tools/"><img border="0" src="http://www.populararticles.com/tools/PRimage.php?url=http://www.data-dump.blogspot.com"/></a>
</div>
<div class='clear'></div>
</div></div>
</div>
</div></div>
<!-- end outer-wrapper -->
<script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/2806328968-widgets.js"></script>
<script type='text/javascript'>
window['__wavt'] = 'AOuZoY5Pn60EgGvRg5jFeh0N7DTBEv4CDQ:1743813109028';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d161627700135822200','//data-dump.blogspot.com/2008/04/','161627700135822200');
_WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '161627700135822200', 'title': 'DATA DUMP', 'url': 'https://data-dump.blogspot.com/2008/04/', 'canonicalUrl': 'http://data-dump.blogspot.com/2008/04/', 'homepageUrl': 'https://data-dump.blogspot.com/', 'searchUrl': 'https://data-dump.blogspot.com/search', 'canonicalHomepageUrl': 'http://data-dump.blogspot.com/', 'blogspotFaviconUrl': 'https://data-dump.blogspot.com/favicon.ico', 'bloggerUrl': 'https://www.blogger.com', 'hasCustomDomain': false, 'httpsEnabled': true, 'enabledCommentProfileImages': true, 'gPlusViewType': 'FILTERED_POSTMOD', 'adultContent': false, 'analyticsAccountNumber': '', 'encoding': 'UTF-8', 'locale': 'en-US', 'localeUnderscoreDelimited': 'en', 'languageDirection': 'ltr', 'isPrivate': false, 'isMobile': false, 'isMobileRequest': false, 'mobileClass': '', 'isPrivateBlog': false, 'isDynamicViewsAvailable': true, 'feedLinks': '\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22DATA DUMP - Atom\x22 href\x3d\x22https://data-dump.blogspot.com/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x22DATA DUMP - RSS\x22 href\x3d\x22https://data-dump.blogspot.com/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22DATA DUMP - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/161627700135822200/posts/default\x22 /\x3e\n', 'meTag': '', 'adsenseClientId': 'ca-pub-7946201296697281', 'adsenseHostId': 'ca-host-pub-1556223355139109', 'adsenseHasAds': true, 'adsenseAutoAds': false, 'boqCommentIframeForm': true, 'loginRedirectParam': '', 'view': '', 'dynamicViewsCommentsSrc': '//www.blogblog.com/dynamicviews/4224c15c4e7c9321/js/comments.js', 'dynamicViewsScriptSrc': '//www.blogblog.com/dynamicviews/c4ef6ff9ae7c94eb', 'plusOneApiSrc': 'https://apis.google.com/js/platform.js', 'disableGComments': true, 'interstitialAccepted': false, 'sharing': {'platforms': [{'name': 'Get link', 'key': 'link', 'shareMessage': 'Get link', 'target': ''}, {'name': 'Facebook', 'key': 'facebook', 'shareMessage': 'Share to Facebook', 'target': 'facebook'}, {'name': 'BlogThis!', 'key': 'blogThis', 'shareMessage': 'BlogThis!', 'target': 'blog'}, {'name': 'X', 'key': 'twitter', 'shareMessage': 'Share to X', 'target': 'twitter'}, {'name': 'Pinterest', 'key': 'pinterest', 'shareMessage': 'Share to Pinterest', 'target': 'pinterest'}, {'name': 'Email', 'key': 'email', 'shareMessage': 'Email', 'target': 'email'}], 'disableGooglePlus': true, 'googlePlusShareButtonWidth': 0, 'googlePlusBootstrap': '\x3cscript type\x3d\x22text/javascript\x22\x3ewindow.___gcfg \x3d {\x27lang\x27: \x27en\x27};\x3c/script\x3e'}, 'hasCustomJumpLinkMessage': false, 'jumpLinkMessage': 'Read more', 'pageType': 'archive', 'pageName': 'April 2008', 'pageTitle': 'DATA DUMP: April 2008'}}, {'name': 'features', 'data': {}}, {'name': 'messages', 'data': {'edit': 'Edit', 'linkCopiedToClipboard': 'Link copied to clipboard!', 'ok': 'Ok', 'postLink': 'Post Link'}}, {'name': 'template', 'data': {'name': 'custom', 'localizedName': 'Custom', 'isResponsive': false, 'isAlternateRendering': false, 'isCustom': true}}, {'name': 'view', 'data': {'classic': {'name': 'classic', 'url': '?view\x3dclassic'}, 'flipcard': {'name': 'flipcard', 'url': '?view\x3dflipcard'}, 'magazine': {'name': 'magazine', 'url': '?view\x3dmagazine'}, 'mosaic': {'name': 'mosaic', 'url': '?view\x3dmosaic'}, 'sidebar': {'name': 'sidebar', 'url': '?view\x3dsidebar'}, 'snapshot': {'name': 'snapshot', 'url': '?view\x3dsnapshot'}, 'timeslide': {'name': 'timeslide', 'url': '?view\x3dtimeslide'}, 'isMobile': false, 'title': 'DATA DUMP', 'description': 'This DataDump site provide you Everything about computer , computer science ,computer programming , like java ,C++\x26 C \nalso Dbms related Data provide it.\nsome additional data like windows , and other.\nyou got here lots of data that you can never', 'url': 'https://data-dump.blogspot.com/2008/04/', 'type': 'feed', 'isSingleItem': false, 'isMultipleItems': true, 'isError': false, 'isPage': false, 'isPost': false, 'isHomepage': false, 'isArchive': true, 'isLabelSearch': false, 'archive': {'year': 2008, 'month': 4, 'rangeMessage': 'Showing posts from April, 2008'}}}]);
_WidgetManager._RegisterWidget('_NavbarView', new _WidgetInfo('Navbar1', 'navbar', document.getElementById('Navbar1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HeaderView', new _WidgetInfo('Header1', 'header', document.getElementById('Header1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'main', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/3366830891-lbx.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/1964470060-lightbox_bundle.css'}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_ImageView', new _WidgetInfo('Image1', 'sidebar', document.getElementById('Image1'), {'resize': false}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML7', 'sidebar', document.getElementById('HTML7'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML5', 'sidebar', document.getElementById('HTML5'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_AdSenseView', new _WidgetInfo('AdSense2', 'sidebar', document.getElementById('AdSense2'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML4', 'sidebar', document.getElementById('HTML4'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML2', 'sidebar', document.getElementById('HTML2'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_LabelView', new _WidgetInfo('Label2', 'sidebar', document.getElementById('Label2'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_AdSenseView', new _WidgetInfo('AdSense1', 'sidebar', document.getElementById('AdSense1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML8', 'sidebar', document.getElementById('HTML8'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML3', 'sidebar', document.getElementById('HTML3'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_ProfileView', new _WidgetInfo('Profile1', 'sidebar', document.getElementById('Profile1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_BlogArchiveView', new _WidgetInfo('BlogArchive1', 'sidebar', document.getElementById('BlogArchive1'), {'languageDirection': 'ltr', 'loadingMessage': 'Loading\x26hellip;'}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_LabelView', new _WidgetInfo('Label1', 'sidebar', document.getElementById('Label1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML6', 'sidebar', document.getElementById('HTML6'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_AdSenseView', new _WidgetInfo('AdSense3', 'footer', document.getElementById('AdSense3'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML9', 'footer', document.getElementById('HTML9'), {}, 'displayModeFull'));
</script>
</body>
</html>