programming languages Online Quiz - 187
Description: programming languages Online Quiz - 187 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Trying determine the shape of a cylindrical can made from 1000 cm2 of tin that has the largest possible volume is an example of:
Final Inspection is done by
Stateful session beans contain
Which file contains the EJB modules of the application?
What are the call back methods in Session bean?
JTA stands for
JTS stands for
Which one of the following is a valid declaration of an applet?
What are the JSP scripting elements?
What are the different types of JSP tags?
int j; for(int i=0;i<14;i++) { if(i<10) { j = 2 + i; } System.out.println("j: " + j + " i: " + i); } What is WRONG with the above code?
int values[] = {1,2,3,4,5,6,7,8}; for(int i=0;i< X; ++i) System.out.println(values[i]); Referring to the above, what value for X will print all members of array "values"?
What are the two parts of a value of type double?
The following a legal Java statement
A function is:
What will happen if you attempt to compile and run the following code? Integer ten=new Integer(10); Long nine=new Long (9); System.out.println(ten + nine); int i=1; System.out.println(i + ten);
Which method takes the HttpServletRequest and HttpServletResponse objects as its arguments
What JSP lifecycle methods can I override?
What does the following line of code mean? Double table[];
The following is NOT an example of a data type.