Class 10 IT | Chapter- Database | Important MCQs - 4 - Arvindzeclass - NCERT Solutions

Post Top Ad

Monday, November 28, 2022

Class 10 IT | Chapter- Database | Important MCQs - 4

  Class 10 IT (402) Complete Solution

CBSE Class 10 Information Technology (402)
Important MCQs
Chapter -Database

Class 10 it Question Answer
Sport
Use above Table for MCQS

1. Which DDL command is used to build a table "Sport " in SQL?



... Answer is A) Create table Sport (Roll No Char(3), Class Char(3), Name varchar(15), Game char(5), Marks Int);



2. This DML command is used to enter record in table "Sport" in SQL.




... Answer is D) Insert into Sport values ( 11, 9, "Surjeet", "Cricket", "B", 68);





3. ____ is the DML command to display all record from table "Sport" in SQL.




... Answer is B) Select * from Sport;


4. Which DML command is used to display "Class & Name" columns from table "Sport" in SQL?




... Answer is C) Select class, Name from Sport;




5. Replace Grade = A where class = 9 using DML command in SQL.




... Answer is D) Update Sport set Grade = "A" where class = 9;


6. _____ is the DML command to display all records of class = 8 students in SQL.




... Answer is B) Select * from Sport Where class = 8;





7. Which DML command is used to display all record, who have got Marks >=70, from table "Sport" in SQL.




... Answer is A) Selct * from Sport where marks >= 70;



8. ____ DML command is used to delete the record of "Surjeet" from table "Sport" in SQL.




... Answer is C) Delete from Sport Where Name = "Surjeet";




9. This DDL command is used to delete the table "Sport" in SQL.




... Answer is A) Drop table Sport;


10. Which DDL command is used to delete one column "Class" from table "Sport" in SQL?




... Answer is D) Alter table Sport drop column class;




--------------------------------------------------

Chapter  - Database

 ------------------------------------------------



------------------------------------------


 Chapters of Class 10  IT (402) Solution

Class 10 IT (402) Question Answer

Part - A

 
Part - B 

Chapter 1 – Digital Documentation
Chapter 2– Electronic Spreadsheet
Chapter 3 –  Database Management System
Chapter 4 –Web Application

------------------------------------------

Sample Paper of Class 10 IT 402

CBSE Class 10 IT (402) Sample Paper

 
------------------------------------------

--------------------------------------------------

Sample Paper of Class 10

-------------------------------------------------

Class 10 IT  MCQs

No comments:

Post a Comment

Post Top Ad