Database Technology
Unit 4 MCQ
WEEK 3 DATABASE TECHNOLOGY MCQ
1. Which one of the following is not the type of database languages?
- DDL
- DCL
- DML
- TML
Correct Answer: TML
2. Which keyword is used for changing the name of a field in table?
- desc
- rename
- modify
- add name
Correct Answer: Rename
3. Which one of the following command is used to retrieve the records from table?
- select
- display
- list
- insert
Correct Answer: Select
4. Which of the following SQL query is correct to insert a record into student table?
- insert into student(1,'raj','cse');
- insert into student values (1,'raj','cse');
- insert into student table(1,'raj','cse');
Correct Answer: INSERT INTO student VALUES (1,'raj','cse');
5. Which one of the following keyword is used for sorting of data?
- having
- Sort
- List
- Order by
Correct Answer: Order By