AK-MCQ - X 402 - Unit 3 - Database Management System
AK-MCQ - X 402 - Unit 3 - Database Management System
AK-MCQ - X 402 - Unit 3 - Database Management System
VOCATIONAL SKILLS
CLASS – X UNIT 3: DATABASE MANAGEMENT SYSTEM
1. When more than one field in a table together form a primary key then they are called:
a. Foreign key
b. Candidate key
c. Composite key
d. Alternate key
9. To set relationship between the two tables, which of the following is/are correct pre-
requisite/s?
a. Table names should be same
b. Field names should be same
c. Both a) and b)
d. Field types should be same
11. Sorting the data in the query also sorts the records in the table on which the query is made.
a. True
b. False
12. In a query, searching for ALL the matching criteria refers to:
a. OR operation
b. AND operation
c. IN operation
d. LIKE operation
13. In a query, searching for ANY of the matching criteria refers to:
a. OR operation
b. AND operation
c. IN operation
d. LIKE operation
14. The display name of a field in the query is called an alias name.
a. True
b. False
15. On running a query, if no records are displayed, that means:
a. There are no records in the table that match the criteria given in the query.
b. The table is empty.
c. Both a) and b)
d. There is some minor error in the query.
16. In query design, a field contains the formula PRICE * 0.1. Which type of field is this?
a. Calculated field
b. Formula field
c. Primary key field
d. None of these
18. In query design for a table STUDENT_MASTER, Ankita wants to display the number of
students in each House namely RED, GREEN, BLUE, YELLOW and CYAN. Table has 400 records
and 10 fields. How many records will be displayed in the query output?
a. 50
b. 500
c. 5
d. 2000
19. Which of the following property settings of a Form control will disable the control?
a. Disable = True (or Yes)
b. Enable = False (or No)
c. Enable = True (or Yes)
d. Visible = False (or No)
20. Arun has set the property Background color to Green for a Textbox but entire form
background is setting to green. What could be possibly wrong?
a. The textbox is not selected
b. Property is working for the form
c. Both a) and b)
d. Textbox background colour cannot be changed
21. Kiran wants to display the text in the form control Textbox as Arial, Bold and Size 12. Which
property for the Textbox should she set?
a. Text
b. Size
c. Both a) and b)
d. Font
22. Which section or tab of the property box in Form Design view, allows linking a control to a
field in a table?
a. Data
b. Fields
c. Events
d. General
23. Ravi has two tables – Student_Master table with stores student names, class, sections,
house, and date of birth. The other table is House_Master table which contains the field
House to store the names of the Houses such as RED, GREEN, BLUE, YELLOW and PURPLE.
Which of these tables is a Field table and List table respectively?
a. House_Master, Student_Master
b. Student_Master, House_Master
c. Both a) and b)
d. None of these
24. In a table, a field named Address contains full addresses with city names and pins. To display
all the records having the city name New Delhi in the field Address, which of the following
wildcard is best suited?
a. *
b. ?
c. Combination of both a) and b)
d. Such action is not possible.
25. In the previous question, which of the following expression will display all the records having
the city name New Delhi in the field Address?
a. LIKE “?New Delhi?”
b. LIKE “?New Delhi*”
c. LIKE “*New Delhi*”
d. None of these