Posts

Showing posts from January, 2014

How To Make Simple CSS Stylesheet for a Website ?

Image
CSS language is used to simplify the process of making web pages presentable. It handles the look and feel part of a web page. Not only it makes the web development process more fast and saves the time but also makes the page loading time more faster and easier for maintenance. So today's almost all of the websites are designed by using CSS. You can design and link the CSS file very easily to the web page. In this post I am telling you on "How To Make Simple CSS Style Sheet for a Website ?" by using very simple steps and ideas. I hope that after reading this post you will able to make simple design for your web page using CSS. The format of the HTML page will be as in the image on right side. Steps To Make Simple CSS Style Sheet for a Website 1. At first create a HTML file by using any text editor like notepad. On the HTML file write the following code and save it on the ".html" format. <html> <head> <title>How To Make Simple CSS StyleSheet for

How To Create Simple Menu Using CSS ?

Image
By using CSS codes we can create websites menus more easily with very simple and small number of codes. So uses of CSS menus on websites makes your website lighter and faster, also runs on almost all of the browsers. Here I have given some useful steps and codes for creating simple menu using CSS. It may help you to make simple, attractive and awesome menu for your own website by using the following steps and codes. To Create Simple Menu Using CSS # At first create the following HTML codes on your webpage. Replace the "#" with your link URL included in the HTML code below. <div id="navigation"> <ul id="nav"> <li><a href= "#" >Home</a></li> <li><a href= "#" >Item1</a> <ul> <li><a href= "#" >SubItem1</a></li> <li><a href= "#" >SubItem2</a></li> <li><a href= "#" >SubItem3<

Solved MCQ of Network Architecture set-1

Image
1. ............................ specifies a complete set of rules for the connections and interactions of its physical and logical components for providing and utilizing communication services. Mapa mental do TCP/IP (Photo credit: Wikipedia ) A) Computer Architecture B) Communication Architecture C) Network Architecture D) Internet Architecture 2. The two most important network architecture or reference model are ............... i) Layered reference model ii) OSI reference model iii) DSL reference model iv) TCP/IP reference model A) i and ii B) ii and iii C) iii and iv D) ii and iv 3. The Open System Interconnection(OSI) reference model includes ................... layers. A) five B) six C) seven D) eight 4. ..................... is used to manage and synchronize conversation between two systems. A) Physical Layer B) Data Link Layer C) Session Layer D) Transport Layer 5. Which of the following is not the function of physical layer? A) Converting the digital bits into electrical signal

JDBC MCQ Interview Questions with Answers set-2

Image
1. A Java program cannot directly communicate with an ODBC driver because ....... ODBC Administrator (Photo credit: Wikipedia ) A) ODBC written in C language B) ODBC written in C# language C) ODBC written in C++ language D) ODBC written in Basic language 2.The JDBC-ODBC Bridge driver translates the JDBC API to the ODBC API and used with ....... A) JDBC drivers B) ODBC drivers C) Both A and B D) None of the above 3. The ............................. package contains classes that help in connecting to a database, sending SQL statements to the database, and processing the query results. A) connection.sql B) db.sql C) pkg.sql D) java.sql 4. The ................................ method executes a simple query and returns a single Result Set object. A) executeUpdate() B) executeQuery() C) execute() D) noexecute() 5. The ......................... method executes an SQL statement that may return multiple results. A) executeUpdate() B) executeQuery() C) execute() D) noexecute() 6. The .........