KENDRIYA VIDYALAYA ALIGANJ SHIFT-II HOLIDAY HOMEWORK CLASS-XII INFORMATICS PRACTICES

Size: px
Start display at page:

Download "KENDRIYA VIDYALAYA ALIGANJ SHIFT-II HOLIDAY HOMEWORK CLASS-XII INFORMATICS PRACTICES"

Transcription

1 KENDRIYA VIDYALAYA ALIGANJ SHIFT-II HOLIDAY HOMEWORK CLASS-XII INFORMATICS PRACTICES 1. Arrange the following data types in increasing order of their size : byte, int, float, double, char, boolean. What will be the value of jtextfield1 and jtextfield after executing the following code : int t=,x=1; t=(3*x++)/3; jtextfield1.settext( +t); jtextfield.settext( +x); 3. Rewrite the following code using while loop. for(int i=1;i<=1;i++) { JOptionPane.showMessageDialog(this,i); } 4. What will be values of a and b outside loop after execution of the following code: int a=1, b=; for(a=;a<=4;++a) { b=a++; --b; } 5. ABC School uses the following interface built in java to check the eligibility of a student for a particular stream from science, commerce and humanities. The user first enters the total percentage and selects the desired stream by selecting the appropriate option button. An additional 5% is marks is given to students of NCC.

2 Write Java Code for the following a) On the Action event of the close button the application gets closed. b) On the Action event of the clear button all the text fields and the check boxes get cleared. c) On Action event of the button Calc Percentage Net percentage of the student is calculated and displayed in the appropriate text filed. Net percentage is same as that of the actual percentage if the student doesn t opt for NCC, otherwise 5% is added to actual percentage. On Action Event of the button Result, the application checks the eligibility of the students. And display appropriate result (i.e. Eligible for a subject or Not Eligible for a subject) in the respective text field. Minimum percentage for science is 7, for commerce is 6 and for humanities is Find the errors from the following code segment and rewrite the corrected code underlining the correction made. int x,y; z = x + y; for(;i<=1;i++) { Display z; z=z+1 ] 7. Define the following terms- (1) Tuple (ii) Attribute (iii) Primary key (iv) JAVA Byte Code

3 8. What will be the output of following code? (i) SELECT POW(3,) ; (ii) SELECT SUBSTR( INFORMATICS PRACTICES,6,3); (iii) SELECT ROUND( ,) ; (iv) SELECT TRUNCATE( ,) ; (v) SELECT INSTR( INFORMATICS PRACTICES, MAT ); (vi) SELECT LEFT( INFORMATICS PRACTICES,6); 9. The name column of a table "EMPLOYEE" is given below: name Rozer Robert Scott Albert Ricky Glenn Allen Stuart Based on this information, find the output of the following queries: a) SELECT name FROM employee WHERE name like "_l%"; b) SELECT name FROM employee WHERE name not like "%t"; 1. Given below is a Table: Customer

4 i) Write SQL command to remove primary key from the table. ii) Write query to change width of column city to char long with varchar data type. 11. Write the Degree and Cardinality of the table Sports given below : Table: Sports GCod e GameName Number PrizeMoney ScheduleDate 11 Carom Board 5 3 Jan. 4 1 Badminton 1 1 Dec Table Tennis Feb Chess 9 1 Jan Lawn Tennis Mar Answer the question based on the table given below: TABLE : Employee Column Name Data Type Size Constraint Emp_No NUMBER 4 PRIMARY KEY EName VARCHAR Not Null Basic NUMBER 7 Basic is greater than Department VARCHAR 15 Not Null Gender VARCHAR 1 (i) Write the SQL command to create the above table with constraints. (ii) Insert a record with relevant information, in the table Employee (iii) Display all the records of the table Employee. (iv) Delete the Employee Whose Emp_No is 11. (v) Change the Department of Employee to Computer Whose Emp_No. is 1. (vi) Add one column of data type VARCHAR and size 3 to the table Employee. (vii) Drop the table Employee.

5 13. Write SQL commands for (a) to ( f) and write output for (g) on the basis of EMP relation given below. Table : EMP EMPN ENA ME JOB MG R HIREDATE SAL COM M DEPT NO 7839 REA MANAGER 67 1-DEC-98 5 NUL 1 L 134 PREM CLERK FEB SITA MANAGER 89 1-MAR GITA SALESMA JUN-99 9 NUL 3 N L 9876 HONE CLERK 65 1-JUN- 1 8 Y 8976 REEM A SALESMA N 91 1-SEP (a) List the details of those employees whose salary is more than 9. (b) Display data of all employees in descending order of their salary. (c) Display Ename, Job and Sal of all employees other than manager. (d) Display Ename, Hiredate and Comm of those employees who are not getting commission (i.e. COMM). (g) Find the output of the following : 1. SELECT DISTINCT JOB FROM EMP;. SELECT ENAME,SAL+COMM TOTAL SALARY FROM EMP WHERE COMM IS NOT NULL; 3. SELECT ENAME, SAL FROM EMP WHERE DEPTNO=1; 4. SELECT ENAME, JOB FROM EMP WHERE DEPTNO NOT IN (,3); 14. Create a Java Desktop Application to convert a given temperature Fahrenheit to Celsius and Vice Versa using switch case statement. Hints : C=5/9 * (F-3) and F=1.8*(C+3) Using a jbutton s click event handler, display the corresponding temperature value in a jtextfield control. Implement the following settings for IDE :

6 (i) On the Action event of the Clear button the text fields and radio buttons get clear. (ii) On the Action event of the Exit button the application gets closed. (iii) On the Action event of the button Convert the temperature is converted as per user s choice. 15. Write a java code to calculate and display the factorial of an integer stored in variable num. 16. Find the errors from the following code segment and rewrite the corrected code underlining the correction made. int a,b; c = a + b; for(;i<=5;i++) { ] Display c; c=c+1

7 17. Given below is a Table: Customer i) Write SQL command to remove primary key from the table. ii) Write query to change width of column city to char long with varchar data type. Write the Degree and Cardinality of the table Sports given below : Table: Sports GCod e GameName Number PrizeMoney ScheduleDate 11 Carom Board 5 3 Jan. 4 1 Badminton 1 1 Dec Table Tennis Feb Chess 9 1 Jan Lawn Tennis Mar. 4

8 18. Answer the question based on the table given below: TABLE : Student Column Name Data Type Size Constraint (i) (ii) (iii) Write the SQL command to create the above table with constraints. Insert a record with relevant information, in the table student Display all the records of the table Student. (iv) Delete the Student Whose Roll no is 1. (v) Change the Stream of Student to Computer Whose Roll no. is 536. (vi) (vii) Roll_No INTEGER PRIMARY KEY Name VARCHAR Not Null Stipend INTEGER Stipend is greater than Stream VARCHAR 15 Not Null Grade VARCHAR 1 View structure of the table created by you. Drop the column Grade from the table Student. 19. Write SQL commands for (a) to ( f) and write output for (g) on the basis of EMP relation given below. TABLE : EMP EMPN ENA ME JOB MG R HIREDATE SAL COM M DE PT NO REA MANAGER 67 1-DEC-98 5 NUL L 134 PREM CLERK FEB SITA MANAGER 89 1-MAR GITA SALESMA JUN-99 9 NUL 3 N L

9 9876 HONE Y 8976 REEM A CLERK 65 1-JUN- 1 8 SALESMA 91 1-SEP N (a) List the details of those employees whose salary is more than 9. (b) Display data of all employees in descending order of their salary. (c) Display Ename, Job and Sal of all employees other than manager. (d) Display Ename, Hiredate and Comm of those employees who are not getting commission (i.e. COMM).. Find the output of the following : 1. SELECT DISTINCT JOB FROM EMP;. SELECT ENAME,SAL+COMM TOTAL SALARY FROM EMP WHERE COMM IS NOT NULL; 3. SELECT ENAME, SAL FROM EMP WHERE DEPTNO=1; 4. SELECT ENAME, JOB FROM EMP WHERE DEPTNO NOT IN (,3);

SQL Structured Query Language Introduction

SQL Structured Query Language Introduction SQL Structured Query Language Introduction Rifat Shahriyar Dept of CSE, BUET Tables In relational database systems data are represented using tables (relations). A query issued against the database also

More information

SESSION ENDING EXAMINATION CLASS XI SUBJECT : INFORMATICS PRACTICES (065) Time Allowed : 3 Hrs. Max Marks : 70

SESSION ENDING EXAMINATION CLASS XI SUBJECT : INFORMATICS PRACTICES (065) Time Allowed : 3 Hrs. Max Marks : 70 SESSION ENDING EXAMINATION CLASS XI SUBJECT : INFORMATICS PRACTICES (065) Time Allowed : 3 Hrs. Max Marks : 70 Note : 1-This question paper is divided into three sections. 2- Section-A and Section-B are

More information

KENDRIYA VIDYALAYA ONGC PANVELSESSION ENDING EXAM

KENDRIYA VIDYALAYA ONGC PANVELSESSION ENDING EXAM KENDRIYA VIDYALAYA ONGC PANVELSESSION ENDING EXAM - 2013 KENDRIYA VIDYALAYA ONGC, PANVEL SESSION ENDING EXAMINATION 2012 SEE Set-2-2013 CLASS XI SUBJECT : INFORMATICS PRACTICES (065) Time Allowed : 3 Hrs.

More information

THE INDIAN COMMUNITY SCHOOL, KUWAIT

THE INDIAN COMMUNITY SCHOOL, KUWAIT THE INDIAN COMMUNITY SCHOOL, KUWAIT SERIES : II MID TERM /FN/ 18-19 CODE : M 065 TIME ALLOWED : 2 HOURS NAME OF STUDENT : MAX. MARKS : 50 ROLL NO. :.. CLASS/SEC :.. NO. OF PAGES : 3 INFORMATICS PRACTICES

More information

Table : Purchase. Field DataType Size Constraints CustID CHAR 5 Primary key CustName Varchar 30 ItemName Varchar 30 PurchaseDate Date

Table : Purchase. Field DataType Size Constraints CustID CHAR 5 Primary key CustName Varchar 30 ItemName Varchar 30 PurchaseDate Date Q1. Write SQL query for the following : (i) To create above table as per specification given (ii) To insert 02 records as per your choice (iii) Display the Item name, qty & s of all items purchased by

More information

INDIAN SCHOOL MUSCAT FINAL TERM EXAMINATION INFORMATICS PRACTICES

INDIAN SCHOOL MUSCAT FINAL TERM EXAMINATION INFORMATICS PRACTICES Answer Key-Class XI INFO 017-18(Final) Roll Number Code Number 065/ INDIAN SCHOOL MUSCAT FINAL TERM EXAMINATION INFORMATICS PRACTICES CLASS: XII Sub. Code: 065 TimeAllotted:3 Hrs 18.0.018 Max. Marks: 70

More information

King Fahd University of Petroleum and Minerals

King Fahd University of Petroleum and Minerals 1 King Fahd University of Petroleum and Minerals Information and Computer Science Department ICS 334: Database Systems Semester 041 Major Exam 1 18% ID: Name: Section: Grades Section Max Scored A 5 B 25

More information

CS2 Current Technologies Lecture 2: SQL Programming Basics

CS2 Current Technologies Lecture 2: SQL Programming Basics T E H U N I V E R S I T Y O H F R G E D I N B U CS2 Current Technologies Lecture 2: SQL Programming Basics Dr Chris Walton (cdw@dcs.ed.ac.uk) 4 February 2002 The SQL Language 1 Structured Query Language

More information

Downloaded from

Downloaded from Unit-III DATABASES MANAGEMENT SYSTEM AND SQL DBMS & Structured Query Language Chapter: 07 Basic Database concepts Data : Raw facts and figures which are useful to an organization. We cannot take decisions

More information

KENDRIYA VIDYALAYA NO 1 AFS JALAHALLI (WEST) PRE BOARD INFORMATICS PRACTICE Class XII

KENDRIYA VIDYALAYA NO 1 AFS JALAHALLI (WEST) PRE BOARD INFORMATICS PRACTICE Class XII MM: 70 KENDRIYA VIDYALAYA NO AFS JALAHALLI (WEST) PRE BOARD- 0 INFORMATICS PRACTICE Class XII TIME: 3:00 HRS Note: There are 7 Questions and all questions are compulsory. Q. a) Abir wants to establish

More information

Kendriya Vidyalaya Sangathan (Chandigarh Region) Blue Print of Question Paper Class: XI Subject: Informatics Practices Session

Kendriya Vidyalaya Sangathan (Chandigarh Region) Blue Print of Question Paper Class: XI Subject: Informatics Practices Session Kendriya Vidyalaya Sangathan (Chandigarh Region) Blue Print of Question Paper Class: XI Subject: Informatics Practices Session 2017-18 S.No. Unit Very Short Answer Short Answer-I Short Answer-II Long Answer

More information

Kendriya Vidyalaya No1 Rewa Pre-Board I ( )

Kendriya Vidyalaya No1 Rewa Pre-Board I ( ) Class XII Kendriya Vidyalaya No Rewa Pre-Board I (04-5) Sub Informatics Practices TIME : 3:00 hrs MAX. MARKS : 70 a) Mr. Abhay is interested in transferring songs from his mobile to Mr. Raj s mobile. Suggest

More information

INDIAN SCHOOL SOHAR FIRST TERM EXAM ( ) INFORMATICS PRACTICES

INDIAN SCHOOL SOHAR FIRST TERM EXAM ( ) INFORMATICS PRACTICES INDIAN SCHOOL SOHAR FIRST TERM EXAM (2015-2016) INFORMATICS PRACTICES Page 1 of 5 No. of printed pages: 5 Class: XI Marks: 70 Date: 10-09-15 Time: 3 hours Instructions: a. All the questions are compulsory.

More information

INFORMATICS PRACTICES (065)

INFORMATICS PRACTICES (065) Roll No. Code : 112011-065-A Please check that this question paper contains 7 questions and 8 printed pages. CLASS-XI INFORMATICS PRACTICES (065) Time Allowed : 3 Hrs. Maximum Marks : 70 General Instructions

More information

SESSION ENDING EXAMINATION Set-3 INFORMATICS PRACTICES CLASS XI BLUE PRINT Long Short Very Short

SESSION ENDING EXAMINATION Set-3 INFORMATICS PRACTICES CLASS XI BLUE PRINT Long Short Very Short Marks (Weightage of unit) No. of Ques. Marks No. of Ques. Marks No. of Ques. Marks SESSION ENDING EXAMINATION 0- Set-3 INFORMATICS PRACTICES CLASS XI BLUE PRINT Long Short Very Short Unit No. Unit Name

More information

1. Answer the following questions: a. Explain Real Time OS.

1. Answer the following questions: a. Explain Real Time OS. SECOND TERMINAL EXAMINATION, 2014 INFORMATICS PRACTICES Time : 3 hrs. Class XI M.M. : 70 Date 26.02.2014 Important instructions: This question paper contains 7 questions. All the questions are compulsory.

More information

ES I INFORMATICS PRACTICES Set I Class XII Sec- A,B,C Date: April 2017 Time: 1 hr 10 min M.M.: 30

ES I INFORMATICS PRACTICES Set I Class XII Sec- A,B,C Date: April 2017 Time: 1 hr 10 min M.M.: 30 ES I INFORMATICS PRACTICES Set I Class XII Sec- A,B,C Date: April 2017 Time: 1 hr 10 min M.M.: 30 Name Roll No. Instruction: a) Attempt all questions 1. a) Table Stud has 20 rows and 15 columns. Table

More information

SQL. Char (30) can store ram, ramji007 or 80- b

SQL. Char (30) can store ram, ramji007 or 80- b SQL In Relational database Model all the information is stored on Tables, these tables are divided into rows and columns. A collection on related tables are called DATABASE. A named table in a database

More information

CS2 Current Technologies Lecture 3: SQL - Joins and Subqueries

CS2 Current Technologies Lecture 3: SQL - Joins and Subqueries T E H U N I V E R S I T Y O H F R G E D I N B U CS2 Current Technologies Lecture 3: SQL - Joins and Subqueries Chris Walton (cdw@dcs.ed.ac.uk) 11 February 2002 Multiple Tables 1 Redundancy requires excess

More information

KENDRIYA VIDYALAYA SANGATHAN CLASS XII EXAMINATION INFORMATICS PRACTICES (065)

KENDRIYA VIDYALAYA SANGATHAN CLASS XII EXAMINATION INFORMATICS PRACTICES (065) KENDRIYA VIDYALAYA SANGATHAN CLASS XII EXAMINATION INFORMATICS PRACTICES (065) Time Allowed: 3 Hours Maximum Marks: 70 Instructions: (i) All questions are compulsory. (ii) Programming Language: Java, SQL

More information

D.A.V. PUBLIC SCHOOL, NEW PANVEL

D.A.V. PUBLIC SCHOOL, NEW PANVEL D.A.V. PUBLIC SCHOOL, NEW PANVEL Plot No. 267, 268, Sector-10, New Panvel, Navi Mumbai-410206 (Maharashtra). Phone 022-27451793, 27468211, Telefax- 27482276 Email- davschoolnp@vsnl.net / davnewpanvel@gmail.com,

More information

Q5 Question Based on SQL & Database Concept Total Marks 8. Theory Question 2 Marks / SQL Commands 6 Marks / Output of commands 2 Marks

Q5 Question Based on SQL & Database Concept Total Marks 8. Theory Question 2 Marks / SQL Commands 6 Marks / Output of commands 2 Marks Q5 Question Based on SQL & Database Concept Total Marks 8 Theory Question 2 Marks / SQL Commands 6 Marks / Output of commands 2 Marks Q1 Define the Following with example i) Primary Key ii) Foreign Key

More information

Downloaded from

Downloaded from SAMPLE PAPER - 2014 INFORMATICS PRACTICES Class XII Time: 3Hrs. M.M. 70 Instructions: (i) There are 30 questions contained in four sections A,B,C and D. (ii) All questions are compulsory to solve. (iii)

More information

THE INDIAN COMMUNITY SCHOOL, KUWAIT

THE INDIAN COMMUNITY SCHOOL, KUWAIT THE INDIAN COMMUNITY SCHOOL, KUWAIT SERIES : I MODEL / 07-08 CODE : N 065 TIME ALLOWED : 3 HOURS NAME OF STUDENT : MAX. MARKS : 70 ROLL NO. :.. CLASS/SEC :.. NO. OF PAGES : 5 INFORMATICS PRACTICES ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

More information

CS2 Current Technologies Note 1 CS2Bh

CS2 Current Technologies Note 1 CS2Bh CS2 Current Technologies Note 1 Relational Database Systems Introduction When we wish to extract information from a database, we communicate with the Database Management System (DBMS) using a query language

More information

Database Management System. * First install Mysql Database or Wamp Server which contains Mysql Databse.

Database Management System. * First install Mysql Database or Wamp Server which contains Mysql Databse. Database Management System * First install Mysql Database or Wamp Server which contains Mysql Databse. * Installation steps are provided in pdf named Installation Steps of MySQL.pdf or WAMP Server.pdf

More information

RDBMS Using Oracle. BIT-4 Lecture Week 3. Lecture Overview

RDBMS Using Oracle. BIT-4 Lecture Week 3. Lecture Overview RDBMS Using Oracle BIT-4 Lecture Week 3 Lecture Overview Creating Tables, Valid and Invalid table names Copying data between tables Character and Varchar2 DataType Size Define Variables in SQL NVL and

More information

Sample Paper for class XII IP with Answers Prepared by Successbook Group Sub: - Informatics Practices Total Marks :70 Time:3hr

Sample Paper for class XII IP with Answers Prepared by Successbook Group Sub: - Informatics Practices Total Marks :70 Time:3hr Sample Paper for class XII IP with Answers Prepared by Successbook Group Sub: - Informatics Practices Total Marks :70 Time:3hr 1. (a.) Why do we use repeater? A repeater is used to regenerate data and

More information

SAMPLE PAPER CLASS XII SUBJECT Informatics Practices

SAMPLE PAPER CLASS XII SUBJECT Informatics Practices http:/// Time : 3 hrs. SAMPLE PAPER CLASS XII SUBJECT Informatics Practices MM:70 A. Answer the following questions. A.1 Expand the following terms: FLOSS and ODF (1) A.2 Sun Beam Connectivity Association

More information

Programming Languages

Programming Languages Programming Languages Chapter 19 - Continuations Dr. Philip Cannata 1 Exceptions (define (f n) (let/cc esc (/ 1 (if (zero? n) (esc 1) n)))) > (f 0) 1 > (f 2) 1/2 > (f 1) 1 > Dr. Philip Cannata 2 Exceptions

More information

INTERNATIONAL INDIAN SCHOOL, RIYADH XI XII BOYS SECTION. Subject- Informatics Practices

INTERNATIONAL INDIAN SCHOOL, RIYADH XI XII BOYS SECTION. Subject- Informatics Practices Grade- XI INTERNATIONAL INDIAN SCHOOL, RIYADH XI XII BOYS SECTION Unit 1 Programming and Computational Thinking Chapter 1 Introduction to Computer Systems 1. What are the functions of computer? 2. What

More information

General Instructions: (i) (ii) (iii) (iv) (v) (vi) (vii) All questions are compulsory Sample Paper 2014 Class XII Subject Informatics Practices Answer the questions after carefully reading the text. This

More information

Sample Paper 2011 Class XII Subject Informatics Practices Time 03 hrs Max Marks 70 General Instructions:- 1. All questions are compulsory. 2. Question paper carries A, B & C Three parts. 3. Section A is

More information

Databases. Relational Model, Algebra and operations. How do we model and manipulate complex data structures inside a computer system? Until

Databases. Relational Model, Algebra and operations. How do we model and manipulate complex data structures inside a computer system? Until Databases Relational Model, Algebra and operations How do we model and manipulate complex data structures inside a computer system? Until 1970.. Many different views or ways of doing this Could use tree

More information

Informatics Practices (065) Sample Question Paper 1 Section A

Informatics Practices (065) Sample Question Paper 1 Section A Informatics Practices (065) Sample Question Paper 1 Note 1. This question paper is divided into sections. Section A consists 30 marks. 3. Section B and Section C are of 0 marks each. Answer the questions

More information

Q2. What will be displayed in jtextfield1 and jtextfield2 after the following code is executed:

Q2. What will be displayed in jtextfield1 and jtextfield2 after the following code is executed: Q1. Holiday Homework, 2018-19 Class: XI Subject : Informatics Practices Q2. What will be displayed in jtextfield1 and jtextfield2 after the following code is executed: int num = 35, num1 = 46 ; jtextfield1.settext(

More information

Introduction. Introduction to Oracle: SQL and PL/SQL

Introduction. Introduction to Oracle: SQL and PL/SQL Introduction Introduction to Oracle: SQL and PL/SQL 1 Objectives After completing this lesson, you should be able to do the following: Discuss the theoretical and physical aspects of a relational database

More information

GIFT Department of Computing Science Data Selection and Filtering using the SELECT Statement

GIFT Department of Computing Science Data Selection and Filtering using the SELECT Statement GIFT Department of Computing Science [Spring 2013] CS-217: Database Systems Lab-2 Manual Data Selection and Filtering using the SELECT Statement V1.0 4/12/2016 Introduction to Lab-2 This lab reinforces

More information

Subodh Public School

Subodh Public School Subodh Public School08-9 Final Exam Class:Scholars (XI) Subject :- Informatics Practices Answer Key Q. Section-A 0 Marks A a)machine failure (b) Program failure (c) Operating failure (d) Control procedures

More information

Visit For All NCERT solutions, CBSE sample papers, Question papers, Notes for Class 6 to 12

Visit  For All NCERT solutions, CBSE sample papers, Question papers, Notes for Class 6 to 12 KENDRIYA VIDYALAYA SANGATHAN Class XI Subject : Informatics Practices MM:70 Time : 3 hours General Instructions : i) All questions are compulsory. ii) Answer the questions after carefully reading the text.

More information

Part III. Data Modelling. Marc H. Scholl (DBIS, Uni KN) Information Management Winter 2007/08 1

Part III. Data Modelling. Marc H. Scholl (DBIS, Uni KN) Information Management Winter 2007/08 1 Part III Data Modelling Marc H. Scholl (DBIS, Uni KN) Information Management Winter 2007/08 1 Outline of this part (I) 1 Introduction to the Relational Model and SQL Relational Tables Simple Constraints

More information

Time Allowed :3 hours Maximum Marks : 70

Time Allowed :3 hours Maximum Marks : 70 Guru Harkrishan Public School Pre Mock Examination 2014-15 Class XII Sub: Informatics Practices General instructions : Please check that this question paper contains 5 printed pages. Please check that

More information

Objectives. After completing this lesson, you should be able to do the following:

Objectives. After completing this lesson, you should be able to do the following: Objectives After completing this lesson, you should be able to do the following: Describe the types of problems that subqueries can solve Define subqueries List the types of subqueries Write single-row

More information

Select Avg (Commission) for Sales; Select Count(Sales) from Sales;

Select Avg (Commission) for Sales; Select Count(Sales) from Sales; GUESS PAPER 2014 CLASS - XII SUBJECT INFORMATICS PRACTICES (065) Duration : 3 Hours Maximum Marks : 70 General Instructions: I. All questions are compulsory. II. Answer the question after carefully reading

More information

KENDRIYA VIDYALAYA SANGATHAN, ERNAKULAM REGION MODEL QUESTION PAPER INFORMATICS PRACTICES (065) ANSWER KEY- SET-2

KENDRIYA VIDYALAYA SANGATHAN, ERNAKULAM REGION MODEL QUESTION PAPER INFORMATICS PRACTICES (065) ANSWER KEY- SET-2 KENDRIYA VIDYALAYA SANGATHAN, ERNAKULAM REGION MODEL QUESTION PAPER 2012-13 INFORMATICS PRACTICES (065) ANSWER KEY- SET-2 1. [A] Domain name resolution. [B] SMTP(Simple Mail Transfer Protocol) [C] MAN

More information

Guru Gobind Singh Public School. Assignment

Guru Gobind Singh Public School. Assignment Class : XII Subject : Informatics Practices Guru Gobind Singh Public School Sector: V/B, Bokaro Steel City Assignment 1 (a) The Chalchitra theatre has a computer network. The network is in one building.

More information

Maharaja Agrasen Model School Sample Paper Subject: Informatics Practices

Maharaja Agrasen Model School Sample Paper Subject: Informatics Practices Time: 3Hours Q-1 Answer the following questions: Maharaja Agrasen Model School Sample Paper Subject: Informatics Practices Maximum Marks:70 1.1 Which protocol is used for transfer of hyper text documents

More information

INTERNATIONAL INDIAN SCHOOL, RIYADH XI XII BOYS SECTION

INTERNATIONAL INDIAN SCHOOL, RIYADH XI XII BOYS SECTION INTERNATIONAL INDIAN SCHOOL, RIYADH XI XII BOYS SECTION Grade- XI COMPUTER SCIENCE Unit I Programming and Computational Thinking 1. What are the functions of computer? 2. Briefly explain the basic architecture

More information

INDIAN LEARNERS OWN ACADEMY, KUWAIT Informatics Practices XII Holiday Homework. b. What is the importance of abstract classes in programming?

INDIAN LEARNERS OWN ACADEMY, KUWAIT Informatics Practices XII Holiday Homework. b. What is the importance of abstract classes in programming? INDIAN LEARNERS OWN ACADEMY, KUWAIT Informatics Practices XII Holiday Homework 1. a. Define the term Polymorphism. What are the two ways polymorphism is demonstrated in Java? b. What is the importance

More information

ajpatelit.wordpress.com

ajpatelit.wordpress.com ALPHA COLLEGE OF ENGINEERING & TECHNOLOGY COMPUTER ENGG. / INFORMATION TECHNOLOGY Database Management System (2130703) All Queries 1. Write queries for the following tables. T1 ( Empno, Ename, Salary,

More information

KENDRIYA VIDYALAYA SANGATHAN CLASS XII BOARD EXAMINATION INFORMATICS PREACITES (065)

KENDRIYA VIDYALAYA SANGATHAN CLASS XII BOARD EXAMINATION INFORMATICS PREACITES (065) KENDRIYA VIDYALAYA SANGATHAN CLASS XII BOARD EXAMINATION INFORMATICS PREACITES (065) Time allowed: 3 hours Maximum Marks: 70 Instructions: (i) All questions are compulsory. (ii) Programming language :

More information

CompanyCode Donations C C102 NULL C C ENO NAME 1 Anita Khanna 2 Bishmeet Singh

CompanyCode Donations C C102 NULL C C ENO NAME 1 Anita Khanna 2 Bishmeet Singh Series ONS Roll No. SET-4 Code No. 90 Candidates must write the Code on the title page of the answer-book. Please check that this question paper contains printed pages. Code number given on the right hand

More information

II- Pre Board Examination SET A

II- Pre Board Examination SET A KENDRIYA VIDYALAYA SANGATHAN ERNAKULAM REGION II- Pre Board Examination- 08-9 SET A Subject : Informatics Practices (065) Class : XII Time : 3 hours Maximum Marks : 70 _ Note. (i) All questions are compulsory.

More information

Downloaded from

Downloaded from Lesson 16: Table and Integrity Constraints Integrity Constraints are the rules that a database must follow at all times. Various Integrity constraints are as follows:- 1. Not Null: It ensures that we cannot

More information

SECOND TERMINAL EXAMINATION, 2017 INFORMATICS PRACTICES

SECOND TERMINAL EXAMINATION, 2017 INFORMATICS PRACTICES SECOND TERINAL EXAINATION, 2017 INFORATICS PRACTICES Time : 3 hrs. Class XI.. : 70 Date - 25.02.2017 (Saturday) Name of the student Section Important instructions: All questions are compulsory. Answer

More information

CLASS XII COMPUTER SCIENCE(083) TimeAllowed : 3 HrsMax Marks : 70

CLASS XII COMPUTER SCIENCE(083) TimeAllowed : 3 HrsMax Marks : 70 1 CLASS XII COMPUTER SCIENCE(083) TimeAllowed : 3 HrsMax Marks : 70 General Instructions- (i) All questions are compulsory (ii) Programming Language: C++ 1. (a) Differentiate between call-by-value and

More information

Real-World Performance Training SQL Introduction

Real-World Performance Training SQL Introduction Real-World Performance Training SQL Introduction Real-World Performance Team Basics SQL Structured Query Language Declarative You express what you want to do, not how to do it Despite the name, provides

More information

Database implementation Further SQL

Database implementation Further SQL IRU SEMESTER 2 January 2010 Semester 1 Session 2 Database implementation Further SQL Objectives To be able to use more advanced SQL statements, including Renaming columns Order by clause Aggregate functions

More information

1 (i) do (ii) Float (iii) salary12 (iv) Product

1 (i) do (ii) Float (iii) salary12 (iv) Product Tagore Public School Shastri Nagar Pre-Board Examination 07-8 Class-XII Subject-IP (065) MM: 70. A Identify invalid variable names out of the following. State reason if invalid. (i) do (ii) Float (iii)

More information

Question Bank. Class : XII( ) Subject : Informatics Practices(065)

Question Bank. Class : XII( ) Subject : Informatics Practices(065) Question Bank Class : XII(2017-18) Subject : Informatics Practices(065) 1. What is the purpose of modem? [1] 2. Define Domain Name Resolution. [1] 3. What do you mean by transmission media? Name the type

More information

KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII

KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII TOPICS SA() SA() LA(6) TOTAL Networking & Open 4(4) 3(6) - 7(0) Source software Programming in Java 7(7) 6() (6) 4(5) RDBMS 6(6)

More information

1 SQL Structured Query Language

1 SQL Structured Query Language 1 SQL Structured Query Language 1.1 Tables In relational database systems (DBS) data are represented using tables (relations). A query issued against the DBS also results in a table. A table has the following

More information

Creating and Managing Tables Schedule: Timing Topic

Creating and Managing Tables Schedule: Timing Topic 9 Creating and Managing Tables Schedule: Timing Topic 30 minutes Lecture 20 minutes Practice 50 minutes Total Objectives After completing this lesson, you should be able to do the following: Describe the

More information

KENDRIYA VIDYALAYA SANGATHAN, ERNAKULAM REGION INFORMATICS PRACTICES CLASS XII PRE-BOARD-I

KENDRIYA VIDYALAYA SANGATHAN, ERNAKULAM REGION INFORMATICS PRACTICES CLASS XII PRE-BOARD-I Max Mark: 70 KENDRIYA VIDYALAYA SANGATHAN, ERNAKULAM REGION INFORMATICS PRACTICES CLASS XII PRE-BOARD-I Instructions: (i) All Questions are compulsory (ii) Programming language : Java, SQL (iii)read the

More information

GIFT Department of Computing Science. [Spring 2016] CS-217: Database Systems. Lab-3 Manual. Single Row Functions in SQL

GIFT Department of Computing Science. [Spring 2016] CS-217: Database Systems. Lab-3 Manual. Single Row Functions in SQL GIFT Department of Computing Science [Spring 2016] CS-217: Database Systems Lab-3 Manual Single Row Functions in SQL V3.0 4/26/2016 Introduction to Lab-3 Functions make the basic query block more powerful,

More information

KENDRIYA VIDYALAYA SANGATHAN- CHENNAI REGION INFORMATICS PRACTICES REVISION TIME : 3 HOURS MAX MARKS : 70

KENDRIYA VIDYALAYA SANGATHAN- CHENNAI REGION INFORMATICS PRACTICES REVISION TIME : 3 HOURS MAX MARKS : 70 KENDRIYA VIDYALAYA SANGATHAN- CHENNAI REGION INFORMATICS PRACTICES REVISION- 2012-13 TIME : 3 HOURS MAX MARKS : 70 NOTE : i. All the questions are compulsory. ii. Answer the questions after carefully reading

More information

Sample Paper 2015 Class XII Subject INFORMATICS PRACTICES

Sample Paper 2015 Class XII Subject INFORMATICS PRACTICES Sample Paper 205 Class XII Subject INFORMATICS PRACTICES Q. Answer the following questions: a) Mr. Abhinav wants to implements a network using less cable length and data should be transmitted in one direction

More information

MARKING SCHEME INFORMATICS PRACTICES (065) Time allowed : 3 Hours M. M.: 70. (a) Ans: Team Viewer( 1 mark for correct answer)

MARKING SCHEME INFORMATICS PRACTICES (065) Time allowed : 3 Hours M. M.: 70. (a) Ans: Team Viewer( 1 mark for correct answer) MARKING SCHEME INFORMATICS PRACTICES (065) Time allowed : 3 Hours M. M.: 70 1. (a) Ans: Team Viewer( 1 mark for correct answer) (b) Ans: i) WAN ii) MAN (1/2 Mark for each correct ans) (c) Ans: Modem convert

More information

KENDRIYA VDYALAYA SANGATHAN ERNAKULAM REGION MODEL PAPER - SET-I SUB: INFORMATICS PRACTICES CLASS: XII Time: 3 Hrs Max.Mark: 70

KENDRIYA VDYALAYA SANGATHAN ERNAKULAM REGION MODEL PAPER - SET-I SUB: INFORMATICS PRACTICES CLASS: XII Time: 3 Hrs Max.Mark: 70 KENDRIYA VDYALAYA SANGATHAN ERNAKULAM REGION MODEL PAPER - SET-I SUB: INFORMATICS PRACTICES CLASS: XII Time: 3 Hrs Max.Mark: 70 1. a) Mr. Ramesh is working in an Global Organisation. He wants to login

More information

INDIAN SCHOOL SOHAR FINAL EXAMINATION ( ) INFORMATICS PRACTICES (065)

INDIAN SCHOOL SOHAR FINAL EXAMINATION ( ) INFORMATICS PRACTICES (065) INDIAN SCHOOL SOHAR FINAL EXAMINATION (2015-2016) INFORMATICS PRACTICES (065) No. of printed pages: 5 Please check that this question paper contains 5 printed pages. Please check that this question paper

More information

Answer any four from (a) to (g) questions : (4 x 2=8)

Answer any four from (a) to (g) questions : (4 x 2=8) SAMPLE PAPER Class XI Annual Examination 2014-15 Subject - Informatics Practices Max. Marks : 70 Time : 3 Hrs. Note : Read the instructions carefully before answering Q.1 Answer the following questions

More information

Department of Computer Science and Information Systems, College of Business and Technology, Morehead State University

Department of Computer Science and Information Systems, College of Business and Technology, Morehead State University 1 Department of Computer Science and Information Systems, College of Business and Technology, Morehead State University Lecture 3 Part A CIS 311 Introduction to Management Information Systems (Spring 2017)

More information

1 SQL Structured Query Language

1 SQL Structured Query Language 1 SQL Structured Query Language 1.1 Tables In relational database systems (DBS) data are represented using tables (relations). A query issued against the DBS also results in a table. A table has the following

More information

Create Rank Transformation in Informatica with example

Create Rank Transformation in Informatica with example Create Rank Transformation in Informatica with example Rank Transformation in Informatica. Creating Rank Transformation in Inforamtica. Creating target definition using Target designer. Creating a Mapping

More information

Databases - 4. Other relational operations and DDL. How to write RA expressions for dummies

Databases - 4. Other relational operations and DDL. How to write RA expressions for dummies Databases - 4 Other relational operations and DDL How to write RA expressions for dummies Step 1: Identify the relations required and CP them together Step 2: Add required selections to make the CP Step

More information

SAMPLE PAPER Class XII Subject INFORMATICS PRACTICES. TIME: 3Hrs. M.M. 70

SAMPLE PAPER Class XII Subject INFORMATICS PRACTICES. TIME: 3Hrs. M.M. 70 SAMPLE PAPER -2015 Class XII Subject INFORMATICS PRACTICES TIME: 3Hrs. M.M. 70 Q1. (a). Which Protocol is used for transfer of hypertext documents of the Internet? [1] (b). Two doctors in the same room

More information

INFORMATICS PRACTICES

INFORMATICS PRACTICES SET-4 Series SGN Code No. 90 Roll No. Candidates must write the Code on the title page of the answer-book. Please check that this question paper contains 11 printed pages. Code number given on the right

More information

PRE BOARD EXAM Sub:Informatics Practices (065) Class:XII

PRE BOARD EXAM Sub:Informatics Practices (065) Class:XII Max Marks:-70 PRE BOARD EXAM 2010-11 Sub:Informatics Practices (065) Class:XII Time :3 Hrs. 1. (a) Two doctors in the same room have connected their Palm Tops using Bluetooth for working on a Group presentation.

More information

BLUE PRINT. S.No. Topic Marks 1 Java Programming 30 2 Database concepts 35 3 IT Applications 5

BLUE PRINT. S.No. Topic Marks 1 Java Programming 30 2 Database concepts 35 3 IT Applications 5 BLUE PRINT S.No. Topic Marks 1 Java Programming 30 2 Database concepts 35 3 IT Applications 5 KENDRIYA VIDYALAYA NO.2 TAMBARAM, CHENNAI 73 HALF YEARLY EXAM 2015 CLASS : XII MARKS : 70 SUB : INFORMATICS

More information

P.G.D.C.M. (Semester I) Examination, : ELEMENTS OF INFORMATION TECHNOLOGY AND OFFICE AUTOMATION (2008 Pattern)

P.G.D.C.M. (Semester I) Examination, : ELEMENTS OF INFORMATION TECHNOLOGY AND OFFICE AUTOMATION (2008 Pattern) *4089101* [4089] 101 P.G.D.C.M. (Semester I) Examination, 2011 101 : ELEMENTS OF INFORMATION TECHNOLOGY AND OFFICE AUTOMATION (2008 Pattern) Time : 3 Hours Max. Marks : 70 Note : 1) Q. 1 is compulsory.

More information

CLASS XII SAMPLE PAPER-065 INFORMATICS PRACTICES

CLASS XII SAMPLE PAPER-065 INFORMATICS PRACTICES CLASS XII SAMPLE PAPER-065 INFORMATICS PRACTICES Time- 3hrs Max m Marks-70 General Instructions : (i) All questions are compulsory. (ii) Answer the questions after carefully reading the text. Q1 (i) (a)

More information

Visit For All NCERT solutions, CBSE sample papers, Question papers, Notes for Class 6 to 12

Visit  For All NCERT solutions, CBSE sample papers, Question papers, Notes for Class 6 to 12 SESSION ENDIN G EXAINATION Time allowed: 3 hours INOR ATICS PRACTICES C L A S S XI aximum arks: 70 Note: (i) This question paper is divided into 3 sections (ii) Section A consists of 30 arks. (iii) Section

More information

Sample Paper 2014 Class - XII Subject Informatics Practices (065)

Sample Paper 2014 Class - XII Subject Informatics Practices (065) Sample Paper 2014 Class - XII Subject Informatics Practices (065) Instructions: (i) All questions are compulsory (ii) Answer the questions after carefully reading the text. QA Answer the following questions:

More information

GIFT Department of Computing Science. CS-217: Database Systems. Lab-4 Manual. Reporting Aggregated Data using Group Functions

GIFT Department of Computing Science. CS-217: Database Systems. Lab-4 Manual. Reporting Aggregated Data using Group Functions GIFT Department of Computing Science CS-217: Database Systems Lab-4 Manual Reporting Aggregated Data using Group Functions V3.0 4/28/2016 Introduction to Lab-4 This lab further addresses functions. It

More information

ES II Set 1 Date: 20 th July 2018 Class XII Sec. Time: 1 1/2 Hrs. Informatics Practices answer key M.M.: 35

ES II Set 1 Date: 20 th July 2018 Class XII Sec. Time: 1 1/2 Hrs. Informatics Practices answer key M.M.: 35 ES II Set 1 Date: 20 th July 2018 Class XII Sec. Time: 1 1/2 Hrs. Informatics Practices answer key M.M.: 35 Name Roll No. Instruction: a) Attempt all questions neatly. b) All Parts of the same question

More information

Q1. (SQL) Consider the following table HOSPITAL. Write SQL commands for the statements (i) to (v)

Q1. (SQL) Consider the following table HOSPITAL. Write SQL commands for the statements (i) to (v) Q1. (SQL) Consider the following table HOSPITAL. Write SQL commands for the statements (i) to Table : HOSPITAL No Name Age Department Date of adm Charges Sex 1 Arpit 62 Surgery 21.01.98 300 M 2 Zarina

More information

INDIAN SCHOOL MUSCAT FIRST PRELIMINARY EXAMINATION 2017 INFORMATICS PRACTICES

INDIAN SCHOOL MUSCAT FIRST PRELIMINARY EXAMINATION 2017 INFORMATICS PRACTICES Roll Number Code Number 065/ INDIAN SCHOOL MUSCAT FIRST PRELIMINARY EXAMINATION 07 INFORMATICS PRACTICES CLASS: XII Sub. Code: 065 Time Allotted: 3 Hrs...07 Max. Marks: 70 Instructions:. All the questions

More information

Marwadi University Bachelor of Computer Application Semester II (w.e.f. July, 2016)

Marwadi University Bachelor of Computer Application Semester II (w.e.f. July, 2016) Learning Objectives: This course is intended to give students basic fundamental knowledge about RDBMS. This will give conceptual insight about how database design and implementation takes place. Also,

More information

Sample Paper 2012 Class XII Subject Informatics Practices

Sample Paper 2012 Class XII Subject Informatics Practices Sample Paper 2012 Class XII Subject Informatics Practices Time-3hrs Max m Marks-70 Roll No Do Not Write any thing on Question Paper Answer all the questions:- 1 (a) India Marchants Co is planning in the

More information

KENDRIYA VIDYALAYA SANGATHAN, KOLKATA REGION SESSION ENDING EXAM ( ) INFORMATICS PRACTICES CLASS-XI DURAION: 3 HOURS MAXIMUM MARKS: 70

KENDRIYA VIDYALAYA SANGATHAN, KOLKATA REGION SESSION ENDING EXAM ( ) INFORMATICS PRACTICES CLASS-XI DURAION: 3 HOURS MAXIMUM MARKS: 70 KENDRIYA VIDYALAYA SANGATHAN, KOLKATA REGION SESSION ENDING EXAM (205-6) INFORMATICS PRACTICES CLASS-XI DURAION: 3 HOURS MAXIMUM MARKS: 70 ALL QUESTIONS ARE COMPULSORY Q) a) Which of the following is not

More information

Sample Paper 2015 Class XII- Comm Subject INFORMATICS PRACTICES. Q1 a) Rewrite the code using While Loop? 2

Sample Paper 2015 Class XII- Comm Subject INFORMATICS PRACTICES. Q1 a) Rewrite the code using While Loop? 2 Sample Paper 2015 Class XII- Comm Subject INFORMATICS PRACTICES Time Allowed: 3 hours Maximum Marks: 70 Note: (i) (ii) Answer the questions after carefully reading the text. Give Design wherever required.

More information

KENDRIYA VIDYALAYA SANGATHAN- CHENNAI REGION INFORMATICS PRACTICES REVISION = ANSWER KEY. Q.1 a. What is protocol? 1

KENDRIYA VIDYALAYA SANGATHAN- CHENNAI REGION INFORMATICS PRACTICES REVISION = ANSWER KEY. Q.1 a. What is protocol? 1 KENDRIYA VIDYALAYA SANGATHAN- CHENNAI REGION INFORMATICS PRACTICES REVISION = 2012-13 ANSWER KEY Q.1 a. What is protocol? 1 A set of rules of communication is protocol. 1 mark for correct answer b. In

More information

Informatics Practices - Assignments. A Practical Workbook

Informatics Practices - Assignments. A Practical Workbook Informatics Practices - Assignments (based on JAVA & SQL) A Practical Workbook Class XII 1 Assignments based on JAVA 1. Create a java Desktop application to find the largest number among the three floating

More information

Guru Gobind Singh Public School Sector V,B Bokaro Steel City Annual IP Assignment Class 11

Guru Gobind Singh Public School Sector V,B Bokaro Steel City Annual IP Assignment Class 11 Guru Gobind Singh Public School Sector V,B Bokaro Steel City Annual IP Assignment Class 11 1. What will be the output of given expression : int a=7; System.out.println(++a + + a-- + + a+1 + +a++); System.out.println(a);

More information

1 (a) Which transmission medium should be used to transfer data across two continents at very high speed?

1 (a) Which transmission medium should be used to transfer data across two continents at very high speed? KENDRIYA VIDYALAYA PALAMPUR 3RD Pre-Board Examination CLASS XII - INFORMATICS PRACTICES SESSION 08-09 Time allowed : 3 Hours Maximum Marks : 70 Instructions : (i) All questions are compulsory. (ii) Answer

More information

Downloaded from

Downloaded from FIRST TERMINAL EXAMINATION, INFORMATICS PRACTICES Time : 3 hrs. Class - XI M.M. : 70 Instructions: This question paper contains seven questions. All the questions are compulsory. Answer the questions carefully.

More information

KENDRIYA VIDYALAYA SANGATHAN, CHENNAI REGION CLASS XII COMMON PRE-BOARD EXAMINATION

KENDRIYA VIDYALAYA SANGATHAN, CHENNAI REGION CLASS XII COMMON PRE-BOARD EXAMINATION KENDRIYA VIDYALAYA SANGATHAN, CHENNAI REGION CLASS XII COMMON PRE-BOARD EXAMINATION Sub : Informatics Practices (065) Time allowed : 3 hours Maximum Marks : 70 Instruction : (i) All questions are compulsory

More information

Visit for more.

Visit  for more. Chapter 9: More On Database & SQL Advanced Concepts Informatics Practices Class XII (CBSE Board) Revised as per CBSE Curriculum 2015 Visit www.ip4you.blogspot.com for more. Authored By:- Rajesh Kumar Mishra,

More information

KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII TOPICS SA(1) SA(2) LA(6) TOTAL

KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII TOPICS SA(1) SA(2) LA(6) TOTAL KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII TOPICS SA() SA() LA(6) TOTAL Networking & Open 4(4) 3(6) - 7(0) Source software Programming in Java 7(7) 6() (6) 4(5) RDBMS 6(6)

More information

XII INFORMATICS PRACTICES CBSE Board 2014

XII INFORMATICS PRACTICES CBSE Board 2014 XII INFORMATICS PRACTICES CBSE Board 04 (a) Why is a switch called an intelligent hub? Ans. Function of switch is similar to hub that is to connect different types of devices and computers in network but

More information