programming languages Online Quiz - 110
Description: programming languages Online Quiz - 110 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Which sequence of HTML tags are correct?
We send and receive HTML file using which protocol?
UPDATE command is of following type
DELETE command will delete the table from database
You want to select all employee names starting with capital C. Which clause you will use?
Which two of the following orders are used in ORDER BY clauses?
The default character for specifying runtime variables in SELECT statements is
Which of the following is not a group function?
A monitor called nik has 3 threads, having same priority, in its waiting pool; How can we notify one of the threads, named 'thread1' to move from Waiting state to Ready State?
What of the following fails to cause a thread stop executing ?
Program output : package com.collection.examples; import java.util.HashSet; public class HashSetExample { public static void main(String[] args) { HashSet s = new HashSet();//1 for(short i = 0; i<100;i++){ //2 s.add(i); //3 s.remove(i-1); //4 } System.out.println(s.size()); //5 } }
Which of the following options is true for the following program: try { if (choice) { while (true) } else { system .exit(1): } }finally { codetocleanup(); }