programming languages Online Quiz - 110
Description: programming languages Online Quiz - 110 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
How we can include header and footer into our HTML page?
What will extension for SSI?
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?
Following SQL operator will allow duplicates
Single View can be created using multiple tables
Which keyword is used in the select query to remove duplicates?
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?
The appropriate table to use when performing arithmetic calculations on values defined within the SELECT statement (not pulled from a table column) is
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
What of the following fails to cause a thread stop executing ?
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(); }