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