2.What is the correct JavaScript syntax to write "Hello World"?
response.write("Hello World")
document.write("Hello World")
("Hello World")
"Hello World"
7.How does a "for" loop start?
for (i = 0; i <= 5; i++)
for i = 1 to 5
for (i <= 5; i++)
for (i = 0; i <= 5)
Which SQL statement selects all rows from table called Contest, with column ContestDate having values greater or equal to May 25, 20006?
SELECT * FROM Contest WHERE ContestDate < '05/25/2006'
SELECT * FROM Contest HAVING ContestDate >= '05/25/2006'
SELECT * FROM Contest WHERE ContestDate >= '05/25/2006'
None of the above
What is the INSERT command used for?
To retrieve data.
To insert data.
To modify data.
All the above
Which SQL keyword is used to retrieve only unique values?
UNIQUE
DISTINCTIVE
DIFFERENT
DISTINCT
The TRUNCATE TABLE�
checks if the table has primary key specified
deletes the table
deletes all rows from a table
Which of the following SQL clauses is used to sort a result set?
ARRANGE
ORDER BY
SORT
None Of The Above
Java is a strongly-typed language
True
False
Newly created threads take the priority of the threads that create them.
A single source file can contain multiple class definitions, each having any access modifier.