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:
Which file contains the EJB modules of the application?
What are the call back methods in Session bean?
JTS stands for
What are the JSP scripting elements?
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 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);
What JSP lifecycle methods can I override?
What does the following line of code mean? Double table[];