Forum: Database Design Dec 11th, 2007 |
| Replies: 6 Views: 1,278 Re: Problems and Solutions in Database design Hii frnds..
CREATE INDEX myIndex ON myTable(myColumn). What type of index will get created after executing the above statement? Why ?
and How can we swap values between two rows in a table using... |
Forum: Database Design Dec 11th, 2007 |
| Replies: 6 Views: 1,278 |
Forum: JSP Dec 11th, 2007 |
| Replies: 6 Views: 914 Re: JSP - Questions A tag library is a set of actions that encapsulate functionality. These tags are then used within JSP pages. This helps us to reuse common functionality like connecting to a database.
<%@... |
Forum: JSP Dec 10th, 2007 |
| Replies: 6 Views: 914 Re: JSP - Questions Hi Smith, i''m Tom.I thnk, i can help you.U asked,how was a JSP processed, Right?
Okie, A JSP is converted into a Servlet by the application server and then the request is serviced.Once compiled ,... |
Forum: Java Dec 10th, 2007 |
| Replies: 9 Views: 790 Re: Java basics Questions Hey,
Each java program is converted into one or more class files.The content of the class file is a set of instructions called bytecode to be executed by JVM. JVM is an interpreter for bytecode. Java... |
Forum: Java Dec 10th, 2007 |
| Replies: 9 Views: 790 Re: Java basics Questions Hello Jimm.
A java source file must have .java extension.It should have at least one top level , public class defenition and any number of non_public class defenitions.The file name should match the... |
Forum: C++ Dec 10th, 2007 |
| Replies: 12 Views: 2,876 Re: C++ interview questions Hi crys,
This question also very nice one..
I thnk,compared to the standard C function printf() and scanf(),the usage of cin and cout is more type_safe.In function scanf() we need to provide '&'... |
Forum: C++ Dec 10th, 2007 |
| Replies: 12 Views: 2,876 Re: C++ interview questions Ok, crys u had agood question. Can i help you?
Ok i will try my best.
First of all C language is a subset of C++ language.And C provides action,structure and function oriented pprogramming,but C++... |