Java SQL CRUD Quiz 1 - SQL Online Test | Online Quiz | Mock Exam
Finish Quiz
0 of 20 questions completed
Questions:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
Information
Java SQL CRUD Quiz 1 – SQL Online Test | Online Quiz | Mock Exam, Free Java SQL CRUD Quiz, Online Java, online Test Quiz 1. Java SQL CRUD Quiz 1 Question and Answers 2019. Java online Test Quiz 1. Java SQL CRUD Quiz 1 Free Mock Test 2019. Java SQL CRUD Quiz 1 Question and Answers in PDF. The Java online mock test paper is free for all students. Spring Online is very useful for exam preparation and getting for Rank. Java SQL CRUD Quiz 1 Question and Answers in English. Java SQL CRUD Mock test for topic via SQL CRUD Mode. Here we are providing Java SQL CRUD Quiz in English Now Test your self for “SQL CRUD Online Quiz in English” Exam by using below quiz…
This paper has 20 questions.
Time allowed is 25 minutes.
The Java SQL CRUD Mock Test is Very helpful for all students. Now Scroll down below n click on “Start Quiz” or “Start Test” and Test yourself.
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading...
You must sign in or sign up to start the quiz.
You have to finish following quiz, to start this quiz:
Results
0 of 20 questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 points, (0)
Average score |
|
Your score |
|
Categories
- Not categorized 0%
Pos. | Name | Entered on | Points | Result |
---|---|---|---|---|
Table is loading | ||||
No data available | ||||
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- Answered
- Review
-
Question 1 of 20
1. Question
Which of the following is used to find the maximum value in a column?
Correct
Incorrect
-
Question 2 of 20
2. Question
Sometimes the expression “select count(*)” will return fewer rows than the expression “select count(value)”.
Correct
Incorrect
-
Question 3 of 20
3. Question
Which of the following SQL statement is used to remove rows from a table?
Correct
Incorrect
-
Question 4 of 20
4. Question
The only way to join two tables is by using standard, ANSI syntax.
Correct
Incorrect
-
Question 5 of 20
5. Question
With SQL, how can you return the number of records in the “Persons” table?
Correct
Incorrect
-
Question 6 of 20
6. Question
A NULL value is treated as a blank or 0.
Correct
Incorrect
-
Question 7 of 20
7. Question
With SQL, how can you return all the records from a table named “Persons” sorted descending by “FirstName”?
Correct
Incorrect
-
Question 8 of 20
8. Question
Given an employees table as follows:
empid name managerid
——————————————-
a1 bob NULLb1 jim a1
B2 tom a1
What value will select count(*) from employees return?
Correct
Incorrect
-
Question 9 of 20
9. Question
What type of lock will deny users any access to a table?
Correct
Incorrect
-
Question 10 of 20
10. Question
The result of a SELECT statement can contain duplicate rows.
Correct
Incorrect
-
Question 11 of 20
11. Question
List all Employees including their First and Last names, Departments and Posts only?
Correct
Incorrect
-
Question 12 of 20
12. Question
What would you add to a select query to arrange the list by FirstName in descending alphabetical order?
Correct
Incorrect
-
Question 13 of 20
13. Question
In “Select e.EmpID, e.FirstName, h.NormalHours *2 from Employee as e inner join HoursWorked as h on Employee.EmpID = HoursWorked.EmpID where e.EmpID = 10001”, the word “as” is optional in the query?
Correct
Incorrect
-
Question 14 of 20
14. Question
The main MySQL program that does all the data handling is called?
Correct
Incorrect
-
Question 15 of 20
15. Question
What type of query can add new information into the database?
Correct
Incorrect
-
Question 16 of 20
16. Question
Removing the word “inner” from the join statement in “Select e.EmpID, e.FirstName, h.NormalHours *2 from Employee as e inner join HoursWorked as h on Employee.EmpID = HoursWorked.EmpID where e.EmpID = 10001” query will have no effect on the results?
Correct
Incorrect
-
Question 17 of 20
17. Question
What keyword wraps the data that you would like to insert in an INSERT query?
Correct
Incorrect
-
Question 18 of 20
18. Question
The result of a SELECT statement can contain duplicate rows.
Correct
Incorrect
-
Question 19 of 20
19. Question
What will be the result of: Select e.Department, sum(h.NormalHours) from Employee as e inner join HoursWorked as h on e.EmpID = h.EmpID where e.Department like ´Proje%´ Group by e.Department
Correct
Incorrect
-
Question 20 of 20
20. Question
In the query “SELECT address FROM users”, what is the column being selected?
Correct
Incorrect