ES II set 1 Date: July 2017 Class XII Sec. Time: 1 1/2 Hrs. Informatics Practices answer key M.M.: 35

Size: px
Start display at page:

Download "ES II set 1 Date: July 2017 Class XII Sec. Time: 1 1/2 Hrs. Informatics Practices answer key M.M.: 35"

Transcription

1 ES II set 1 Date: July 2017 Class XII Sec. Time: 1 1/2 Hrs. Informatics Practices answer key M.M.: 35 Name Roll No. Instruction: a) Attempt all questions neatly. 1. (a) A table books has 12 rows and 16 columns. Another table author has 10 rows and 15 columns.what will be the degree and cardinality of the cartesian product of the 2 tables. 1 cardinality 120 degree - 31 (b) Is a primary and Candidate key same. Explain 1 Primary Key: It is a field or collection of fields through which a record can be uniquely identified in a table. Primary keys may consist of a single attribute or multiple attributes in combination. Candidate Key: All attribute combinations in a table that can serve as primary key are called candidate key. They behave the candidate for the primary key. Each table may have one or more candidate keys. All primary keys are candidate keys but all candidate keys are not primary keys. (c) Explain COMMIT, SAVEPOINT with example 2 COMMIT-this statement is used to end a transaction and make all changes permanent. Until a transaction is committed, other users cannot see the changes made to the database. SAVEPOINT-It is point in a transaction, up till which all changes have been saved permanently. d) What is Foreign Key? Create a foreign key and explain 2 Foreign Key: It is a column of a table which is the primary key of another table in the same database. It is used to enforce referential integrity of the data. Create table dept ( Deptnumb int(2) PRIMARY KEY, Deptname varchar(10) ); Create table emp ( Empno int(5) PRIMARY KEY, Empname varchar(30), Deptno int(2), Sal decimal(7,2), foreign key deptno references dept(deptnumb) ); 2 a) Differentiate between list and combo box swing control 2 XII / IP Page 1 of 12

2 List:A list is used to get one or more options out of several given options which may or may not be mutually exclusive. This may seem to be the case wherecheckboxes are to be used, but the difference is in the number of options available. If the number of options is small, then CheckBoxes can be used. In case of large number of options, using CheckBoxes may take up a lot of spaceon the form and it may also be inconvenient for the u ser to select the desiredoptions. In such cases Lists are preferred over checkboxes. Example s of such cases are: To select cities out of a given list of cities, to select magazines out of a given list of magazines, etc. ComboBox: A ComboBox is used to get an option out of several given options which are mutually exclusive. This may seem to be the case where RadioButtons are to beused, but the difference is in the number of options available. If the number ofoptions is small, then Rad iobuttons can be used. In case of large number ofoptions, using RadioButtons may take up a lot of space on the form and it may also be inconvenient for the user to select the desired option. In such casescomboboxes are preferred over radio buttons. Examples of such case s are: To select a city out of a given list of cities, to select a train out of a given list of trains, etc. b) Give the output of the following programs 2 i) i) System.out.print( The ); System.out.println( Air ); System.out.print( Force ); System.out.println( School ); The Air ForceSchool _ ii) System.out.println( The ); System.out.println( Air ); System.out.print( Force ); System.out.println( School ); The Air Force School _ 3. Consider the tables DOCTORS and PATIENTS given below: DOCTORS Doc_ID Doc_Name Department OPD_Days 101 Smita ENT TTS 102 Chelsea Paed MWF 201 Sakshi Ortha MWF PATIENTS Pat_No Pat_Name Department Doc_ID XII / IP Page 2 of 12

3 1 Neeraj ENT Mohit Ortho Rahul ENT Vivek Ortho 201 With reference of these tables, write commands in SQL for (i) and (ii) and ANSWER THE (iii): (i) Display the Patno, PatName and corresponding DocName for each patient. 2 Select patno,patname,docname from doctors,patients where doctors.doc_id=patients.doc_id; (ii) Display the name of all patients whose OPD days are TTS. 2 Select patname from doctors,patients where doctors.doc_id=patients.doc_id and opd_days = TTS ; (iii) NAME THE primary key of doctors and patients table. name the foreign key too. Can the user enter 104 as Doc_id in patients table. If not why? 2 Primary key =doc_id and Pat_no foreign key = doc_id. no because it is violating the referential integrity rule. 4. Infra Keys company has number of employees which are divided into 2 grades as per their basic pay per month which is given as follows 6 Grade 1: Basic : >= Da : 40% of basic Hra : 30% of basic Grade 2: Basic : < Da : 30% of basic Hra : 25% of basic Calculate tax on basis of salary Annual salary Less than tax >= % over The following is the screen used to calculate employee tax XII / IP Page 3 of 12

4 (i) Write the code for calculate button a. To automatically select the grade on the basis of Basic salary entered by the user. b. to find out the DA, HRA, gross(basic+da+hra), Annual Salary (gross*12), Total Tax, Monthly Tax( 1/12 of total tax), and net salary( gross-monthly tax) (a) float bas=float.parsefloat(txt2.gettext()); double da,hra,gross,anlsal,tottax,montax,netsal; if(bas>=150000) { Rb1.setSelected(true); da=0.40*bas; hra=0.30 *bas; } else if(bas<=150000) { Rb2.setSelected(true); da=0.30 * bas; hra=0.25 * bas; } gross=bas+da+hra; anlsal=gross* 12; txt3.settext(" "+da); txt4.settext(" "+hra); txt5.settext(" "+gross); txt8.settext(" "+anlsal); if(anlsal<250000) tottax=0; tottax=0.10*(anlsal ); else tottax=0.10* *(anlsal ); montax=tottax/12; txt6.settext(" "+tottax); txt9.settext(" "+montax); netsal=gross-montax; txt7.settext(" "+netsal); 5. a) Create a table Teacher the database school with the following specification 2 Table : Teacher fieldname datatype size Constraint TNum integer 6 Primary key TNAME char 20 Not null unique TADDRESS varchar 30 Default New mumbai DOJ date SALARY decimal 9,2 Create table teacher (tno int(6) primary key, tname char(20) not null unique, taddress varchar(30) default Mumbai, doj date,salary decimal(9,2)); XII / IP Page 4 of 12

5 b) Consider the table TEACHER given below. Write the commands in SQL for 1 to 4 and output for 5 and 6. 6 TEACHER ID Name Department HireDate Category Gender Salary 1 Anupam Hindi TGT M Divyansh English PRT M Himanshu Arts PGT M Kushal Science TGT M Venkateshwar English PRT M Lakshitta Arts TGT F Tanisha Computer TGT M To display all information about teachers of TGT category who were hired on Wednesday. Select * from teacher where category = TGT and dayofweek(hiredate)= Wednesday ; 2. To display the count of the teachers category wise SELECT category, count(*) FROM TEACHER GROUP BY category; 3. To display names, departments of all the teachers in upper case and in descending order of salary. Select upper(name), upper(department) from teacher order by salary desc; 4. To display the count of the unique departments. SELECT count(distinct(department)) FROM TEACHER; 5. SELECT DISTINCT(Department) FROM TEACHER; DISTINCT(department) Hindi English Arts Science Arts Computer 6. SELECT sum(salary) FROM TEACHER WHERE category= PRT ; sum(salary) (a) Write the name of two commonly used e_commerce portal (b) Explain front end and back end interface. 1 FRONT END INTERFACE: The front end application controls communication between end users. For software applications, front end is the same as user interface. In client/server applications, the client part of the program is often called the front end and the server part is called the back end. A good user interface needs to have following features. Clear:Concise: Familiar: Responsive Consistent: Attractive Efficient BACK END DATABASE: It is a database that is accessed by users indirectly through an external application rather than application programming stored within the database. The back-end of an IT application is the database in which all the data is stored A good back-end ensures sustainability, efficiency and easy modification of the application. (c) Mention the main advantage and disadvantage of e-governance sites 1 1. Positive impact a. It improves the efficiency of administration and service delivery. b. Reduced waiting time for the work completion. XII / IP Page 5 of 12

6 c. Reduced the cost of availing the service. d. Successful in keeping a tab on corruption to some extent. e. Increased public participation. 2. Negative Impact a. People living in rural or remote area could not benefited due to lack of computerization. b. Manual methods cannot be avoided. c. Lack of awareness amongst people. (d ) Mention the swing control to make a form which will perform the following tasks 2 Sl no Control used to Swing control 1 Select subject/subjects List 2 Give a picture label 3 To select your train number Combo Box 4 To select the newspapers you like to read List XII / IP Page 6 of 12

7 WT II Set 2 Answer key Date: July 2017 Class XII Sec. Informatics Practices Time: 1 1/2 hrs. M.M.: 35 Name Roll No. Instruction: c) Attempt all questions neatly. 1. (a) A table stud has 8 rows and 4 columns. A table user has 13 rows and 8 columns. Give the degree and cardinality of the Cartesian product of these tables 1 c-104 D-12 (b) Is a primary and Unique key same. Explain 1 No. The unique constraint is same as primary key but can accept NULL values. The UNIQUE and PRIMARY KEY constraints both guarantee for uniqueness of a column or set of columns. (c) What is Foreign Key? Create a foreign key and explain. 2 Foreign Key: It is a column of a table which is the primary key of another table in the same database. It is used to enforce referential integrity of the data. Create table dept ( Deptnumb int(2) PRIMARY KEY, Deptname varchar(10) ); Create table emp ( Empno int(5) PRIMARY KEY, Empname varchar(30), Deptno int(2), Sal decimal(7,2), foreign key deptno references dept(deptnumb) ); (d) What effect does SET AUTOCOMMIT have in transactions? 2 If AUTOCOMMIT is set to 1, each SQL statement is considered a complete transaction and committed by default when it finishes. If AUTOCOMMIT is set to 0, the subsequent series of statements acts like a transaction and no transaction is committed until an explicit COMMIT statement is issued. XII / IP Page 7 of 12

8 2. (a) Differentiate between Radio Button and Combo Box swing control? 1 When from multiple options we are required to select one option, then radio buttons wing control is used and when more options have to be selected then check box is used. Both are used as input box. For each radio button in a program one button group is to be at design time. (b) Give one method of password swing control. Name the property through which we can change the character which is displayed in a password field. 1 getpassword() echochar (c) Give the output of the following programs 2 i) System.out.println( The ); System.out.print( Air ); System.out.print( Force ); System.out.println( School ); The Air Force School _ ii) System.out.println( The ); System.out.println( Air ); System.out.println( Force ); System.out.print( School ); The Air Force School _ 3. In a Database BANK, there are two tables with a sample data given below: Table: EMPLOYEE ENO ENAME SALARY ZONE AGE GRADE DEPT 1 Mona EAST 40 A 10 2 Muktar West 45 B 20 3 Nalini East 26 A 10 4 Sanaj South 30 A 20 5 Surya North 30 B 30 XII / IP Page 8 of 12

9 Write SQL queries for the following Table: DEPARTMENT DEPT DNAME HOD 10 Computers 1 20 Economics 2 30 English 5 (i) To display ENO, ENAME, SALARY and corresponding DNAME of all the employees whose age is between 25 and 35 (both values inclusive) 2 Select ENO,ENAME,SALARY,DNAME from EMPLOYEE E, DEPARTMENT D where E.DEPT = D.DEPT and AGE between 25 and 35 ; (ii) To display DNAME and corresponding ENAME from the tables DEPARTMENT and EMPLOYEE. 2 Select DNAME,ENAME from EMPLOYEE E, DEPARTMENT D where D.HOD = E.ENO ; (iii) To display ENAME, SALARY, ZONE and INCOME TAX (Income Tax to be calculated as 30% of salary) and give appropriate column headings. 2 Select ENAME, SALARY, ZONE, SALARY * 0.3 INCOMETAX from EMPLOYEE ; 4. a) Give the code to disable the TxtBillDate, TxtDisc and TxtFinal textfields 2 TxtBillDate.setEnabled(false); TxtDisc.setEnabled(false); XII / IP Page 9 of 12

10 TxtFinal.setEnabled(false); b) Write the code for the CmdCalc button to display the discount and final price in the TxtDisc, and TxtFinal text fields respectively. Note that Final price is calculated as price - discount and the discount is calculated based on the category and price according to the following table. Also remember to give an additional 5% discount for membership card holders i.e. if the ChkMember checkbox is selected. 4 Category Price Discount Men's < % >= % Women's < % >= % Kid's <500 20% >=500 30% float Price=float.parseFloat(TxtPrice.gettext()); if (OptMens.getSelected()==true) { if (price<1000) disc=0.3; else disc=0.5; } else if (Optwomens.getSelected()==true) { if (price<1500) disc=0.4; else Optkids.getSelected()==true) disc=0.5; } else { if (price<500) disc=0.2; else disc=0.3; } if (ChkMember.getSelected()==true) Disc=disc+0.05 TxtDisc.setText( +disc); TxtFinal.setText( +price-price*disc); 5 (a) Create a table Computer lab with the following specification 2 XII / IP Page 10 of 12

11 Column Name Data Type Size Constraint It_Code NUMBER 4 PRIMARY KEY It_Cat CHAR.. It_Name VARCHAR 25 NOT NULL It_Cost NUMBER 8,2 It_Qty NUMBER 3 Dt_Pur Date CREATE TABLE CompLab ( It_Code NUMBER(2) PRIMARY KEY, It_Cat CHAR, It_Name VARCHAR2(30) NOT NULL, It_Cost NUMBER(8, 2), It_Qty NUMBER(3), Dt_Pur Date ); 4. Write SQL commands for (a) to (d) and give the output for (e) and (f) 6 Table: STUDENT NO NAME STREAM AVGMARK GRADE CLASS dateofadm 1 Smita MEDICAL 89.2 A Kush COMMERCE 78.5 B Anupam HUMANITIES 64.4 C Ashtang COMMERCE 67.5 C Siddharth MEDICAL 92.0 A a) To display total avgmark grade wise. Select sum(avgmark) from student group by grade; b) To display name of those students who got admission on a Friday. Select name from student where dayofweek(dateofadm)= Wednesday ; c) To display maximum AVGMARK for each stream. Select max(avgmark) from student group by stream; d) To display name and stream of students of class 12 in upper case. Select upper(name),upper(stream) from student where class=12; e) SELECT LEFT(NAME, 2) FROM STUDENT WHERE NAME LIKE S% ; LEFT(NAME, 2) Sm Si f) SELECTcount( DISTINCT(STREAM)) FROM STUDENT; count( DISTINCT(STREAM)) 3 XII / IP Page 11 of 12

12 3 (a) Write the name of two commonly used e_governance portal (b) Explain impact of ICT on society. 1 Impact of ICT on society Social networking sites help people to remain in touch with their near and dears Social networking sites help people to work together for social cause E-Governance sites help them to save their time,energy and cost. E-learning sites help student to get quality study material and research on any topic. Helps in conservation of fuel and environment. (c) What is the impact of e_learning sites on student learning process. 1 Societal Impacts: 1. Positive impact a. Self paced. b. fast updation. c. Not time bound. It is available 24 X 7. d. Increased retention and stronger grasp of subject as visual impact is always more than audio impact. e. Unbound by space i.e. study at home f. Easily manageable. g. Travel time and associated cost (parking, fuel, vehicle maintenance)are reduced or eliminated hence cost effective h. Enhances computer and Internet skills. 2. Negative Impact a. Issues related to Technology. b. Inappropriate content. c. Reduced social and cultural interactions. (d ) Mention the swing control to make a form which will perform the following tasks 2 Sl no Control used to Swing control 1 Take the Name as input Text Field 2 To enter NATIONALITY from all the nationalities given as CB options 3 Select subject/subjects List 4 To enter AGE between a range 20 to 25 RB XII / IP Page 12 of 12

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

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

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

SAMPLE PAPER-2015 CLASS-XII Subject: Informatics Practices. Time: 3 hours Max. Marks: 70

SAMPLE PAPER-2015 CLASS-XII Subject: Informatics Practices. Time: 3 hours Max. Marks: 70 SAMPLE PAPER-05 CLASS-XII Subject: Informatics Practices Time: 3 hours Max. Marks: 70 Notes: (i) All questions are compulsory. (ii) Answer the questions after carefully reading the text. Q. a. Write examples

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

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

SECTION A. (a) Name any four application areas of business computing. 2 (b) What are the following software used for? 2

SECTION A. (a) Name any four application areas of business computing. 2 (b) What are the following software used for? 2 KENDRIYA VIDYALAYA 1 AFS TAMBARAM PRACTICE PAPER Class : XII S u b j e c t : I n f o r m a t i c s P r a c t i c e Time allowed : 3 hours Maximum Marks : 70 Instruction: (i) (ii) (iii) (iv) This question

More information

The Air Force School Mock Pre-Board Marking Scheme (INFORMATICS PRACTICES)

The Air Force School Mock Pre-Board Marking Scheme (INFORMATICS PRACTICES) The Air Force School Mock Pre-Board Marking Scheme 2016-17 (INFORMATICS PRACTICES) 1. (i) Write examples of one proprietary and one Open Source Software. 1 Proprietary software :MS Office, Oracle, Windows,

More information

MOCK PRE-BOARD EXAMINATION MARKING SCHEME ( ) CLASS XII INFORMATICS PRACTICES

MOCK PRE-BOARD EXAMINATION MARKING SCHEME ( ) CLASS XII INFORMATICS PRACTICES MOCK PRE-BOARD EXAMINATION MARKING SCHEME (07-8) CLASS XII INFORMATICS PRACTICES Time allowed :3hours Maximum marks : 70 Q. No. A. wer all parts of the same question together. B. Do your paper neatly.

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

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

Sample Paper-2011 Class : XII MM : 70 Subject : Informatics Practices Time : 3 hours

Sample Paper-2011 Class : XII MM : 70 Subject : Informatics Practices Time : 3 hours Sample Paper-0 Class : XII MM : 70 Subject : Informatics Practices Time : 3 hours General Instructions :. This question paper is divided into three sections. Section A consists marks. 3. Section B is of

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

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

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

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

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

CBSE International Class XII Informatics Practices Annual Examination Sample Question Paper

CBSE International Class XII Informatics Practices Annual Examination Sample Question Paper CBSE International Class XII Informatics Practices Annual Examination 2013-14 Sample Question Paper Max Time: 3 hours Max Marks: 70 1. (a) Name the transmission medium useful for sparsely populated areas.

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

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

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

UNIT IV (IT APPLICATIONS) (From this unit: 3 Questions - 5 Marks)

UNIT IV (IT APPLICATIONS) (From this unit: 3 Questions - 5 Marks) UNIT IV (IT APPLICATIONS) (From this unit: 3 Questions - 5 Marks) One Mark Questions 1. Define e-business. Name one popularly used e-business website. 2. What social impact does e-governance have on society?

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

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

KENDRIYA VIDYALAYA ALIGANJ SHIFT-II HOLIDAY HOMEWORK CLASS-XII INFORMATICS PRACTICES KENDRIYA VIDYALAYA ALIGANJ SHIFT-II HOLIDAY HOMEWORK 18-19 CLASS-XII INFORMATICS PRACTICES 1. Arrange the following data types in increasing order of their size : byte, int, float, double, char, boolean.

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

Sample Paper DATABASE MANAGEMENT APPLICATIONS (795) XII

Sample Paper DATABASE MANAGEMENT APPLICATIONS (795) XII Sample Paper DATABASE MANAGEMENT APPLICATIONS (795) XII Time Allowed: 2½ hours Maximum marks: 50 SECTION A Attempt any ten from the following 10 x 1=10 1. The number of attributes in a relation is called

More information

XXXXXXXXXXXXXXXXXXX First Pre-Board Examination, Informatics Practices

XXXXXXXXXXXXXXXXXXX First Pre-Board Examination, Informatics Practices Series SOS 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 7 printed pages. Code number given on the right hand

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

SAMPLE QUESTION PAPER MULTIMEDIA & WEB TECHNOLOGIES (Code 067) Class XII

SAMPLE QUESTION PAPER MULTIMEDIA & WEB TECHNOLOGIES (Code 067) Class XII Max. Marks: 70 SAMPLE QUESTION PAPER MULTIMEDIA & WEB TECHNOLOGIES (Code 067) Class XII Duration : 3 hrs.. a) What is a Database? b) Name the following: i) The extension of MS Access database file. ii)

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

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

Sample Paper 2012 Class XII Subject Informatics Practices

Sample Paper 2012 Class XII Subject Informatics Practices Sample Paper 2012 Class XII Subject Informatics Practices Q1. Answer the following questions- (a) What is constant and how can we define it? (b) What will be the output of the following code? StringBuffer

More information

a)give the statement to display the value of an integer variable amount in a Label named lblamount. 1

a)give the statement to display the value of an integer variable amount in a Label named lblamount. 1 Half Yearly Examination Session - 2017-18 Class : XII Informatics Practices Answer Key Time: 3 Hrs. M.M.: 70 1. Answer the following questions:- a)give the statement to display the value of an integer

More information

Freshminds University Kolkata a) If a string MySTring holds a value 12345, then how will you convert

Freshminds University Kolkata a) If a string MySTring holds a value 12345, then how will you convert Maharaja Agrasen Model School Subject : Informatics Practices Sample Paper Time: 3 Hours Maximum Marks: 70 General Instructions: i) Attempt all the questions. ii) Answer the questions after carefully reading

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

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

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

Chapter 17: Table & Integrity Contraints. Informatics Practices Class XII. By- Rajesh Kumar Mishra. KV No.1, AFS, Suratgarh

Chapter 17: Table & Integrity Contraints. Informatics Practices Class XII. By- Rajesh Kumar Mishra. KV No.1, AFS, Suratgarh Chapter 17: Table & Integrity Contraints Informatics Practices Class XII By- Rajesh Kumar Mishra PGT (Comp.Sc.) KV No.1, AFS, Suratgarh e-mail : rkmalld@gmail.com Integrity Constraints One of the major

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

Downloaded from Set :B SECTION A

Downloaded from   Set :B SECTION A Sample Paper 2014 Class XII Subject Informatics Practices Set :B Time : 3 Hours M.M. 70 M SECTION A Q1. (a)write the two advantage and two disadvantages of the following topologies in network (i) Bus Topologies

More information

INFORMATICS PRACTICES All questions are compulsory. Answer the questions after carefully reading the text.

INFORMATICS PRACTICES All questions are compulsory. Answer the questions after carefully reading the text. SET 4 Series : GBM/1 Code No. 90/1 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

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

Sample Question Paper

Sample Question Paper Sample Question Paper Marks : 70 Time:3 Hour Q.1) Attempt any FIVE of the following. a) List any four applications of DBMS. b) State the four database users. c) Define normalization. Enlist its type. d)

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

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

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- 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

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

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

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

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

QUESTION BANK CLASS- XI ( INFORMATICS PRACTICES)

QUESTION BANK CLASS- XI ( INFORMATICS PRACTICES) QUESTION BANK-2017-18 CLASS- XI ( INFORMATICS PRACTICES) Q1. (a) What will be the value of j = -- k + 2* k+ (l = k, l++) if k is 20 initially. (b) What do you mean by token? (c) What is byte code? (d)

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

INFORMATICS PRACTICES

INFORMATICS PRACTICES INFORMATICS PRACTICES Time allowed : 3 hours Maximum Marks : 70 Instruction: (i) (ii) (iii) (iv) This question paper is divided into 3 sections. Section A consists of 30 marks. Section B and Section C

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

Chapter 9: Working with MySQL

Chapter 9: Working with MySQL Chapter 9: Working with MySQL Informatics Practices Class XI (CBSE Board) Revised as per CBSE Curriculum 2015 Visit www.ip4you.blogspot.com for more. Authored By:- Rajesh Kumar Mishra, PGT (Comp.Sc.) Kendriya

More information

DATABASE DEVELOPMENT (H4)

DATABASE DEVELOPMENT (H4) IMIS HIGHER DIPLOMA QUALIFICATIONS DATABASE DEVELOPMENT (H4) Friday 3 rd June 2016 10:00hrs 13:00hrs DURATION: 3 HOURS Candidates should answer ALL the questions in Part A and THREE of the five questions

More information

Sample Question Paper - I INFORMATICS PRACTICES Class-XII Type of Questions Marks Total Number of Total Marks Per Question Questions SA I 1 16 16 SA II 2 18 36 LA 6 3 18 Total 37 70 Blue Print - Sample

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

Q1. (a) (½) (b) (½) (c) (½) (d) (½) (e) (2) (f) (1) (g) (1) above address object/device assigned (h) (4) Q2. (a) (1) (b) (1) (c) (1) (d) (1)

Q1. (a) (½) (b) (½) (c) (½) (d) (½) (e) (2) (f) (1) (g) (1) above address object/device assigned (h) (4) Q2. (a) (1) (b) (1) (c) (1) (d) (1) Q1. (a) Which protocol is used for the transfer of hyper text document on the internet. (b) Which transmission medium should be used to transfer data across two continents at very high speed. (c) Two neighbourhood

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

Downloaded from

Downloaded from FIRST TERMINAL EXAMINATION, 2013 INFORMATICS PRACTICES Time : 3 hrs. 221214 M.M. : 70 Instructions: i. This question paper contains 7 Questions. ii. All the questions are compulsory. iii. Answer the questions

More information

PRACTICAL ASSIGNMENTS [LAB WORK] CLASS XII IP

PRACTICAL ASSIGNMENTS [LAB WORK] CLASS XII IP Experiment No. 1: PRACTICAL ASSIGNMENTS [LAB WORK] CLASS XII IP Objective: Understanding and use of variables of float and other data types. Task: Develop a simple Calculator application as per given screen

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

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 SCHOOL MUSCAT THIRD PRELIMINARY EXAMINATION INFORMATICS PRACTICES

INDIAN SCHOOL MUSCAT THIRD PRELIMINARY EXAMINATION INFORMATICS PRACTICES INDIAN SCHOOL MUSCAT THIRD PRELIMINARY EXAMINATION INFMATICS PRACTICES wer -Key CLASS: XII Sub. Code: 065 0.0.08 Max. Marks: 70 (a) Identify odd one out of the following: Optical Fiber/Coaxial Cable/ Bluetooth/Twisted

More information

THE INDIAN COMMUNITY SCHOOL, KUWAIT

THE INDIAN COMMUNITY SCHOOL, KUWAIT THE INDIAN COMMUNITY SCHOOL, KUWAIT SERIES : II TERM /FN/ 2018-2019 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

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

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

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

Tables From Existing Tables

Tables From Existing Tables Creating Tables From Existing Tables After completing this module, you will be able to: Create a clone of an existing table. Create a new table from many tables using a SQL SELECT. Define your own table

More information

INFORMATICS PRACTICES

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

More information

Total No. of Questions : 6] [Total No. of Printed Pages : 2 [3689]-101. P. G. D. C. M. (Semester - I) Examination

Total No. of Questions : 6] [Total No. of Printed Pages : 2 [3689]-101. P. G. D. C. M. (Semester - I) Examination Total No. of Questions : 6] [Total No. of Printed Pages : 2 [3689]-101 P. G. D. C. M. (Semester - I) Examination - 2009 ELEMENTS OF INFORMATION TECHNOLOGY AND OFFICE AUTOMATION, WINDOWS OPERATING SYSTEM

More information

Class XII INFORMATICS PRACTICES LAST YEAR PAPER-01( )

Class XII INFORMATICS PRACTICES LAST YEAR PAPER-01( ) Class XII INFMATICS PRACTICES LAST YEAR PAPER-01(2014-15) Time : 3 Hours, Maximum Marks : 70 Instructions: (i) All questions are compulsory. (ii) Answer the questions after carefully reading the text.

More information

KENDRIYA VIDYALAYA SANGATHAN ERNAKULAM REGION FIRST PRE-BOARD EXAMINATION

KENDRIYA VIDYALAYA SANGATHAN ERNAKULAM REGION FIRST PRE-BOARD EXAMINATION KENDRIYA VIDYALAYA SANGATHAN ERNAKULAM REGION FIRST PRE-BOARD EXAMINATION 04-5 INFORMATICS PRACTICES Time allowed: 3 hours Maximum Marks: 70 Instructions: (i) All questions are compulsory. (ii) Programming

More information

EGCI 321: Database Systems. Dr. Tanasanee Phienthrakul

EGCI 321: Database Systems. Dr. Tanasanee Phienthrakul 1 EGCI 321: Database Systems Dr. Tanasanee Phienthrakul 2 Chapter 10 Data Definition Language (DDL) 3 Basic SQL SQL language Considered one of the major reasons for the commercial success of relational

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

Sample Question Paper Subject: Informatics Practices Class: XII Session

Sample Question Paper Subject: Informatics Practices Class: XII Session Sample Question Paper Subject: Informatics Practices Class: XII Session 07-8 Time: 3 Hrs. M.M. 70 (a) Mr. Ravi, an IT Help Desk executive needs to remotely login a customer s PC to provide him technical

More information

INFORMATICS PRACTICES

INFORMATICS PRACTICES SET-4 Series SSO 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 8 printed pages. Code number given on the right

More information

Creating SQL Tables and using Data Types

Creating SQL Tables and using Data Types Creating SQL Tables and using Data Types Aims: To learn how to create tables in Oracle SQL, and how to use Oracle SQL data types in the creation of these tables. Outline of Session: Given a simple database

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

Informatics Practices, Class XII ( ) (Summer Vacation-2015) (Holiday H.W) Java Concepts & Programming, MySQL

Informatics Practices, Class XII ( ) (Summer Vacation-2015) (Holiday H.W) Java Concepts & Programming, MySQL (Summer Vacation-2015) (Holiday H.W) Java Concepts & Programming, MySQL 1. How is ordinary compilation process different from Java compilation? 2. Differentiate between a component and a container. 3.

More information

Q.1 Short Questions Marks 1. New fields can be added to the created table by using command. a) ALTER b) SELECT c) CREATE. D. UPDATE.

Q.1 Short Questions Marks 1. New fields can be added to the created table by using command. a) ALTER b) SELECT c) CREATE. D. UPDATE. ID No. Knowledge Institute of Technology & Engineering - 135 BE III SEMESTER MID EXAMINATION ( SEPT-27) PAPER SOLUTION Subject Code: 2130703 Date: 14/09/27 Subject Name: Database Management Systems Branches:

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

Database Management Systems,

Database Management Systems, Database Management Systems Database Design (2) 1 Topics Data Base Design Logical Design (Review) Physical Design Entity Relationship (ER) Model to Relational Model Entity Relationship Attributes Normalization

More information

Holiday Home work Sub: IP Class: 12

Holiday Home work Sub: IP Class: 12 Holiday Home work Sub: IP Class: 12 1. Which HTML tags are used for making a table and adding rows in a HTML document? 2. How is tag different from tag of HTML? 3. Differentiate between HTML

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

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

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

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

CBSE Board Paper 2013 (With Solution) INFORMATICS PRACTICES

CBSE Board Paper 2013 (With Solution) INFORMATICS PRACTICES CBSE Board Paper 03 (With Solution) INFORMATICS PRACTICES [Time allowed: 3hours] [Maximum Marks: 70] Instructions (i) All questions are compulsory (ii) Programming Language: C++ (a) Write the name of the

More information

KENDRIYA VIDYALAYA SANGATHAN Class- XI [INFORMATICS PRACTICES] Time Duration: 3 Hrs M. M. 70 General instruction: All questions are compulsory

KENDRIYA VIDYALAYA SANGATHAN Class- XI [INFORMATICS PRACTICES] Time Duration: 3 Hrs M. M. 70 General instruction: All questions are compulsory KENDRIYA VIDYALAYA SANGATHAN Class- XI [INFORMATICS PRACTICES] Time Duration: 3 Hrs M. M. 70 General instruction: All questions are compulsory SECTION A Q1. a) What are Header and Footer in MS word? 2

More information

INFORMATION TECHONOLOGY (402) UNIT 7 DATABASE DEVELOPMENT PRACTICAL QUESTIONS

INFORMATION TECHONOLOGY (402) UNIT 7 DATABASE DEVELOPMENT PRACTICAL QUESTIONS INFORMATION TECHONOLOGY (402) UNIT 7 DATABASE DEVELOPMENT PRACTICAL QUESTIONS Q1. Write the SQL commands on the basis of the given table: Table: HOSPITAL NO NAME AGE DEPARTMENT DATEOFADMIN CHARGES GENDER

More information

HALF YEARLY EXAMINATION, INFORMATICS PRACTICES Time - 3 hrs. Class - XII M.M. 70

HALF YEARLY EXAMINATION, INFORMATICS PRACTICES Time - 3 hrs. Class - XII M.M. 70 HALF YEARLY EXAMINATION, 2017-18 INFORMATICS PRACTICES Time - 3 hrs. Class - XII M.M. 70 Name of the student Section Date-23.09.2017 (Saturday) Instructions: There are total 7 questions in this question

More information

SECTION 1 DBMS LAB 1.0 INTRODUCTION 1.1 OBJECTIVES 1.2 INTRODUCTION TO MS-ACCESS. Structure Page No.

SECTION 1 DBMS LAB 1.0 INTRODUCTION 1.1 OBJECTIVES 1.2 INTRODUCTION TO MS-ACCESS. Structure Page No. SECTION 1 DBMS LAB DBMS Lab Structure Page No. 1.0 Introduction 05 1.1 Objectives 05 1.2 Introduction to MS-Access 05 1.3 Database Creation 13 1.4 Use of DBMS Tools/ Client-Server Mode 15 1.5 Forms and

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

CS2300: File Structures and Introduction to Database Systems

CS2300: File Structures and Introduction to Database Systems CS2300: File Structures and Introduction to Database Systems Lecture 14: SQL Doug McGeehan From Theory to Practice The Entity-Relationship Model: a convenient way of representing the world. The Relational

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

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

Rani Durgavati Vishwavidyalaya Jabalpur (M.P.) (UICSA) Master of Computer Application (MCA) Practical List of. MCA III SEM Session -2010

Rani Durgavati Vishwavidyalaya Jabalpur (M.P.) (UICSA) Master of Computer Application (MCA) Practical List of. MCA III SEM Session -2010 Rani Durgavati Vishwavidyalaya Jabalpur (M.P.) (UICSA) Master of Computer Application (MCA) Practical List of MCA III SEM Session -2010 MCA-301 - Object Oriented Programming in C++ 1. WAP to generate Fibonacci

More information