0% found this document useful (0 votes)
119 views6 pages

QP Xi Ip See 2023-24 Set-1

This document is a question paper for the Session Ending Examination 2023-24 for Class 11 in Informatics Practices, containing various sections with different types of questions. It includes multiple choice questions, short answer questions, programming tasks, and SQL queries, all designed to assess students' knowledge in the subject. The exam has a total of 70 marks and a duration of 3 hours.

Uploaded by

Draxy gamer
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
119 views6 pages

QP Xi Ip See 2023-24 Set-1

This document is a question paper for the Session Ending Examination 2023-24 for Class 11 in Informatics Practices, containing various sections with different types of questions. It includes multiple choice questions, short answer questions, programming tasks, and SQL queries, all designed to assess students' knowledge in the subject. The exam has a total of 70 marks and a duration of 3 hours.

Uploaded by

Draxy gamer
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

केन्द्रीय विद्यालय संगठन, जयपुर संभाग

KENDRIYA VIDYALAYA SANGATHAN, JAIPUR REGION


सत्ांत परीक्षा 2023-24
Session Ending Examination–2023-24
कक्षा : ग्यारहि ं विषय : इन्द्फार्मेटिक्स प्रैक्क्िस विषय कोड : 065 सेि नं.: 1
Class: 11 Sub. : Informatics Practices Sub Code: 065 Set No.:1
अधिकतर्म अंक :70 अिधि : 3 घंिे
Max. Marks: 70 Duration: 3 hrs.
General Instructions:
1. This question paper contains five sections, Section A to E.
2. All questions are compulsory.
3. Section A has 18 questions carrying 01 mark each.
4. Section B has 07 Very Short Answer type questions carrying 02 marks each.
5. Section C has 05 Short Answer type questions carrying 03 marks each.
6. Section D has 02 Long Answer type questions carrying 04 marks each.
7. Section E has 03 questions carrying 05 marks each
8. All programming questions are to be answered using Python Language only.

SECTION – A
1. Which of the following is TRUE? 1
(a) ALU +CU =OS
(b) ALU + CU= RAM
(c) ALU+CU =CPU
(d) ALU +CU=ROM
2. Disk Defragmenter is a _____________. 1
(a) Open Source Software
(b) Utility Software
(c) Application Software
(d) System Software

3. Which one is a freeware? 1


(a) Microsoft Office
(b) Mac OS
(c) Adobe Reader
(d) Android

4. The default value of ‘sep’ argument in print ( ) is ____________. 1


(a) Space (‘ ‘)
(b) New line character ( \n)
(c) Tab character ( \t)
(d) Comma (‘,’)
5. Which of the following is not a Python sequence? 1
(a) String
(b) Tuple
(c) List
(d) Dictionary

6. What will be the output of the given code? 1


for x in range(5):
pass
print(x)
(a) 0
(b) 4
(c) 1
(d) 5
7. Which of the following functions will return key-value pairs of the dictionary in the form 1
of the tuples?
(a) get( )
(b) items()
(c) values( )
(d) keys( )
8. Pool of values from where a column draws its value is called_____________. 1
(a) Relation
(b) Tuple
(c) Domain
(d) Attribute

9. Which one is not TRUE? 1


(a) Metadata is stored in Data dictionary.
(b) Alternate keys are not primary key.
(c) Database schema is a sketch of design of a planned data.
(d) Repetition of data is called inconsistency.

10. IOT stands for __________________. 1


(a) Internet of telecom
(b) Industry of things
(c) Intelligence of things
(d) Internet of things

11. What type of cloud computing fits to the requirement of a company which is looking for 1
a provider offering to outsource the hardware and software i.e. servers, storage,
networking and Operating System etc. on demand basis and pay as per usage?
(a) IaaS
(b) PaaS
(c) AdaS
(d) SaaS
12. The asterisk (*) in SELECT query retrieves ____________________. 1
(a) Selected Attributes only.
(b) Selected Tuples only
(c) All the Data from tables.
(d) All the NULL values.
13. Which of the followings are DML commands? Choose the correct group/option. 1
(i) DROP (ii) DELETE (iii) INSERT INTO (iv) SELECT (v) ALTER
(a) (i),(ii) and (v)
(b) (ii),(iii) and (iv)
(c) (i),(iii) and (v)
(d) (iii),(iv) and (v)
14. Anuj wants Shiva to help him to choose the appropriate query as given below to 1
display a sum of twelve month’s salary using SELECT query under alias name
‘Annual Salary’.
(a) SELECT ENAME , SALARY*12 ANNUAL SALARY FROM EMPL;
(b) SELECT ENAME, SALARY*12 ALIAS NAME ANNUAL SALARY FROM EMP;
(c) SELECT ENAME , SALARY* 12 RENAME ‘ANNUAL SALARY’ FROM EMPL;
(d) SELECT ENAME , SALARY*12 AS ‘ANNUAL SALARY ‘ FROM EMPL;
15. Sachin wants to delete a primary key constraint from employee table .Select an 1
appropriate command to do so.
(a) ALTER TABLE EMPLOYEE DELETE PRIMARY KEY CASCADE ;
(b) ALTER TABLE EMPLOYEE SET PRIMARY KEY TO DELETE ;
(c) ALTER TABLE EMPLOYEE DROP PRIMARY KEY CASCADE ;
(d) ALTER TABLE EMPLOYEE MODIFY PRIMARY KEY TO CASCADE;
16. Which function is used to substitute NULL with a Value in the output using SELECT 1
command?
(a) IFNULL( )
(b) ISNULL( )
(c) SUBSTITUTE( )
(d) None of these
Q17 and 18 are ASSERTION AND REASONING based questions. Mark the correct
choice as
(a) Both A and R are true and R is the correct explanation for A
(b) Both A and R are true and R is not the correct explanation for A
(c) A is True but R is False
(d) A is false but R is True
17. Assertion (A): In MySQL, the LIKE keyword is used for pattern matching. 1
Reason (R): ‘* ‘and ‘# ‘are the two wild card characters used with LIKE clause.
18. Assertion (A):To perform calculations SELECT command or DUAL table is used to 1
write expressions in MySQL.
Reason (R): DUAL table is dummy table with one row and one column for obtaining
calculation results.
SECTION B
19. Differentiate between Freeware and Free Software 2
-or-
Differentiate between RAM and ROM
20. What will be the output of the following code? 2
L= [ ‘Hermit Crab’, [ ‘He’, ‘marched’, ‘them’, ‘up’, ‘to’, ‘top’, ‘of’ ,‘hill’],’Duke’ ]
print( L[1] [1 : : 3] ] )
21. Identify Application software from the given list of software : 2
Antivirus, Spreadsheet, ,WinRAR, CorelDraw ,Safari, Disk Cleanup, MSWord
22. Find the output: 2
a ,a = 5, 10
b, b = a+ 15 , a+ 25
print ( a , b)
23. Differentiate between sort ( ) and sorted ( ) functions in lists. 2
24.a) Observe the following table COURSES carefully and answer the questions that 2
follows:
Table: Courses
C_id F_ID CName Fees
C01 111 Networking 45000
C02 222 Bio Informatics 70000
C03 333 Computer Security 60000
C04 444 System Design 40000
C05 555 DBA 80000

a) What is the degree and cardinality of the table Courses?


b) Identify the primary key and alternate keys from the table Courses.
25 A MySQL table ITEMS contains the following columns: 2
INO, INAME, QUANTITY, PRICE, DISCOUNT
Write the SQL command to remove the column DISCOUNT from the table.
SECTION C
26. What is System Bus? Name the four types of system buses. 3
- Or –
Give one similarity and two differences between a compiler and interpreter.
27. Write a program to print the odd numbers in range 5 to 50 (both inclusive) which are 3
divisible by 5.
28. Consider the list Student( Name, DOB,Marks in five subjects and Percentage) which 3
is given as:
Student = [‘Shyam’,’ 02/05/2011’,[ 76,64,58,82,47 ],’65.4 %’ ]
Write python statements for the instructions given as below:.
a) Print the Marks in the third subject.
b) Change the name of student from ‘ Shyam’ to ‘Ram’
c) Add value ‘ 25’ as Roll Number in front of list i.e. before the student’s name to
make list as : Student = [ 25,‘Shyam’,’ 02/05/2011’,[ 76,64,58,82,47 ],’65.4 %’ ]
29. a) Define: Grid computing 3
b) What is the use of gyroscope sensor in mobile?
c) What is Smart City?
30. Consider the following table “Employee” and answer the queries given below:- 3
EMPNO ENAME DOJ SALARY DEPT
E1 ALEX 2000-09-23 70000 HR
E2 VISSESH 2000-05-14 65000 SALES
E3 DHIRAJ 2001-07-29 55000 MARKETING
E4 PAWAN 2000-03-13 60000 ACCOUNTS
E5 NIRAJ 2002-08-30 50000 SALES
a) Write SQL query to create table employee with the empno,ename,doj,salary,dept (2+
as attributes where
- EMPNO is primary key.
-SALARY should not accept NULL values.
b) To INSERT a new record into the table employee with following values
1)
(‘E6’,’ HARSH’,’2002-12-26’,55000,’SALES’)
SECTION D
31. Consider the table CLUB given below and answer the following queries 4
CO_ID COACHNAME AGE SPORTS DATOFAPP PAY GENDER
1 ANKITA 36 Squash 22/02/1998 10000 M
2 RAVINA 35 Volleyball 20/01/1997 12000 F
3 KARAN 34 Tennis 19/02/1998 15000 M
4 TARUN 31 Tennis 12/01/1998 20000 M
5 ZAREEN 39 Squash 01/01/1998 15000 F
6 KAVITA 34 Squash 24/02/1998 5000 F
7 KAVISH 37 Volleyball 27/03/1996 10000 M
a) SELECT * FROM CLUB WHERE AGE BETWEEN 35 AND 37 ;
b) SELECT COACHNAME,PAY FROM CLUB WHERE GENDER=’F’ ;
c) SELECT *FROM CLUB WHERE DATOFAPP > ‘31/01/1998’ ;
d) SELECT CO_ID, AGE, SPORTS FROM CLUB ORDER BY AGE ;
32. 4
Consider the following dictionary :
phrases= { ‘ Enjoy ‘: ‘ Life ‘, ‘Accept ‘: ‘Yourself ’, ‘Have’: ‘faith’, ‘Good’: ‘Job’ }
Write the output of the following:
a) print( phrases[‘Good’] )
b) phrases.update( { ’Stay ’: ’Strong’ } )
print( phrases)
c) print(phrases.items( ))
d) del phrases[ ‘ Have ‘]
print( phrases)
SECTION E
33 Consider the table employee given below and write the following queries 5
Table: Employee
Empid Ename Deptno Salary Comm
101 Smitha 10 20000 40
102 Sohan 20 25000
103 Meera 10 30000 20
104 Amit 30 40000 30
a) Display the structure of the above table.
b) Display the Ename and Deptno of employees whose name contains letter ‘h’.
c) Display the details of employees whose salary is between 20000 and 25000.
d) Display details of employees in department 10 with salary more than 30000.
e) To display the employee details in descending order of their ecode.
34 a) Identify the error(s): 5
(1+
SELECT * FROM TABLE EMPL WHERE SALARY = NULL;
Correct above query and explain the errors.
b) You have a table named "Products" with columns "ProductID,"
1+
"ProductName," and "Price." Write an SQL query to update the product’s
price by adding rupees 25.50 to it where ProductID is 504.
c) You have a table named "Students" with columns "StudentID," "FirstName," 1+
"LastName," and "Age." Write an SQL query to delete all students below the
age of 18.
d) Consider a table Staff with following details:
2)
Staff: (StaffID, FirstName,LastName, IsQualified)
(i) Write an SQL query to add a new column ‘Mobile_Number’ in the table Staff.
(ii) Write an SQL query to remove primary key from the table Staff.
35 Answer the following: 5
a) What is the use of built in function id( ) ? (1+
b) Define: Dynamic typing
1+
c) What do you understand by precedence of operators? Explain it with
1+
example.
d) Predict the output of the following code fragment:-
2)
values =[ ]
for i in range (1,4):
values.append(i)
print(values)

You might also like