CBSE Class XI Guess Paper of Informatics Practices : 2011

Disclaimer: This website is NOT associated with CBSE, for official website of CBSE visit - www.cbse.gov.in

Guess Paper – 2011
CBSE Class – XI
(Informatics Practices)

  • Subject Code: IP (065)
  • Marks-70

1. Answer the following questions:
(a) What is operating system? Give example.2
(b) What is application software? Give example. 2
(c) What is port? Name some of port types.2
(d) What is memory card? Discuss briefly its type.2
(e) What are the two categories of printers? Which type of printer is found to be more speedy? 2

2. Write down the short notes on the followings: 5×2
(i) Bar code reader
(ii) Computer virus
(iii) Complier
(iv) Bluetooth
(v)DVD

3. Explain the following terms with example:5×2
(i) Primary Key
(ii) DDL
(iii) Where Clause
(iv) He Like Clause
(v) Update Command

4. (i)Create the table-Customer as per following structure:2

Column Name Data Type/Size Constraints
Cust_Id integer Primary Key
C_Date date
Cust_Name char(20) Not Null
Cust_Address varchar(30)
Amount decimal(7,2) check Amount>500
Cust_Phone integer(10) unique

(ii) Insert six(6) rows into above table. 2

Write the queries for the above table:
(iii) To increase amount by adding another Rs.100 where amount is less than 1000.1
(iv) To modify the name of the customer of cust_id=5 to Raja.1
(v) To arrange the data of the above table in descending order of amount.1
(vi) To display customer details whose name contains ‘A’ as third alphabet.1
(vii) To display customer’s name who don’t have their amount inn the range of 1000.00 to 2000.00.1
(vii) To remove the entire contents of customers those who have no any address. 1

5. Consider the following table-EMP and write the outputs for the Q.No.(a) to Q.No.(j) 10×1

EMPNO ENAME JOB MGRNO HIREDATE SALARY COMM DEPTNO
7369 Sunita Clerk 7902 1990-12-17 12800 Null 20
7499 Ashok Salesman 7698 1991-02-20 13600 1300 30
7521 Sumit Salesman 7698 1991-02-22 15250 1500 30
7566 Jyoti Manager 7839 1991-04-02 14975 Null 20
7654 Martin Salesman 7698 1991-09-28 16250 2400 30
7698 Binod Manager 7839 1991-05-01 15850 Null 30
7782 Chetan Manager 7839 1991-04-19 12450 Null 10
7788 Sudhir Analyst 7566 1997-04-19 15000 Null 20
7839 Kavita President Null 1991-11-17 19000 Null 10
7844 Tushar Salesman 7698 1991-09-08 14500 0 30
7876 Anand Clerk 7788 1997-05-23 16100 Null 20
7900 Jagdeep Clerk 7698 1991-12-03 14900 Null 30
7902 Sumit Analyst 7566 1991-12-03 13500 3600 20
7934 Manoj Clerk 7782 1992-01-03 15300 Null 10

(a) SELECT COUNT(*) FROM EMP WHERE DEPTNO=20;
(b) SELECT SUM(COMM) FROM EMP WHERE DEPTNO=30;
(c) SELECT MOD(SALARY,10) FROM EMP WHERE DEPTNO=20;
(d) SELECT SUBSTR(ENAME,2,4) FROM WHERE DEPTNO=20;
(e) SELECT MIN(SAL) FROM EMP WHERE DEPTNO=10;
(f) SELECT AVG(COMM) FROM EMP WHERE COMM.<1500;
(g) SELECT COUNT(DISTINCT JOB) FROM EMP;
(h) SELECT SUM(SALARY+COMM) FROM EMP WHERE JOB=”MANAGER’;
(i) SELECT CONCAT(ENAME, JOB) FROM EMP WHERE JOB=’ANALYST’;
(j) SELECT MAX(SALARY) FROM EMP WHERE COMM. IS NULL;

6. Answer the following questions: 10×1
(i) What is constraint?
(ii) Which command is used to list the structure of a table?
(iii) What is the function of order by?
(iv) Define function?
(v) Select char(77,121,83,81,76): What will be the output?
(vi) Write command to display name of the weekday.
(vii) Write command to display the system date.
(viii) Write a command to display first three characters of ‘Information’.
(ix) A numeric data field price stored a value 40409.97. Write command in SQL to round off the price up to 1 decimal place.
(x) Write the command to extract last five letters from string=’ Student’s behavior should be good’.

7. Write the output of the followings:10×1
(a) Select length(upper(‘We are here to study’));
(b) Select substr(trim(‘Informatics Practices’),12,12);
(c) Select concat(concat(‘Infrom’,’atics’),’Practices’));
(d) Select round(29.84,1),round(29.84,-1);
(e) Select right(lower(‘select MySQL’),5);
(f) Select InStr(‘Display the position’,’he’);
(g) Select sign(-15 + 15);
(h) Select truncate(75.796,-2);
(i) Select Date(Curdate);
(j) Select NOW();