Description: programming languages Online Quiz - 188 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Break statement cannot be used in a
A queue follows
The keyword used along with try catch block to execute a part of code even if an exception is not caught is
A stack follows
Given the following code fragment: int A[]; int i = 0; A = new int A[4]; while (i < 4) { A[i] = 10; i = i + 1; } What is the value of A[3]?
Given the following statement: huey.setDouble(8.0*32.2+1.0); What must be the data type of huey?
The method setLabel can be used with what type of Object?
What is the difference between a TextArea and a TextField?
After the following code fragment, what is the value in a? String s; int a; s = "Foolish boy."; a = s.indexOf("fool");
Constructors are used to
How do we comment a line in a jsp
How do we comment a line in html
Which of the following statements are true?
What is the role of Servlet in MVC architecture?
How many number of models are there in MVC architecture?
Which of the following are true?
What is the output of following piece of code ? int x = 2; switch (x) { case 1:System.out.println(”1?); case 2: case 3:System.out.println(”3?); case 4: case 5:System.out.println(”5?); }
What is a DTD file?
Which files contains the libraries, resources and accessories files like property files?
What are the steps involved in developing an RMI object?