Downloaded from Downloaded from Downloaded from Downloaded from

Size: px
Start display at page:

Download "Downloaded from Downloaded from Downloaded from Downloaded from"

Transcription

1

2

3

4

5

6

7

8

9 CBSE Board AISSCE 01 Marking Scheme for Informatics Practices Sub Code:065 Paper Code 90 Outside Delhi 1 (a) Raj Kamal International School is planning to connect all computers, each spread over 1 distance within 45 meters. Suggest an economical cable type having high speed data transfer, which can be used to connect these computers. UTP (unshielded Twisted Pair) Coaxial Cable STP (Shielded Pair Cable) (1 mark for correct answer) (b) Name two Indian script included in UNICODE 1 Devanagari, Telegu Any Indian scripts (1/ mark for each correct answer) (c) Write examples of one Proprietary and One Open Source Software 1 Proprietary: MS OFFICE Open Source: Open Office Any other correct answer for each type of software (1/ mark for each correct answer) (d) (e) (i) (ii) (f) Name any most popularly used Internet Browsers Google Chrome Mozilla Firefox Any Correct browser names (1/ mark for each correct answer) Ms. Rani Sen, Gen. Manager of Global Nations Corporate recently discovered that the communication between her company s accounts office and HR Office is extremely slow and signals drop quite frequently. These offices are 15 metres away from each other and connected by an Ethernet cable. Sugest her a device, which can be installed in between the offices for smooth communication. Repeater Switch Note: Router also to be accepted (1 mark for answer) What type of network is formed by having this type of connectivity out of LAN, MAN and WAN? LAN Local area Network (1 mark for answer) Give an advantage of using Star Topology over Bus Topology. Show a network layout of Star Topology to connect 5 Computers. 1

10 Advantages More Efficient Faults can be diagnosed easily Any other advantage (1 mark for advantage) (1 mark for anu star topology layout) (g) Give Suitable example of URL and Domain name URL : Domain Name: Any other example of URL and Domain Name Note: 1. wers where domain name is not a part of the URL also to be accepted. Absense of may be ignored (1 mark for URL) (1 mark for Domain Name) (a) While making a form in NetBeans, Mr. Harihar Jha wants to Display a list of countries to allow the users to select their own country. Sugest him to choose most appropriate control out of ListBox and Combo Box. (b) ListBox ComboBox (1 mark for any correct answer) What is the purpose of Break keyword while using switch Case Statement? Illustrate with the help of an example. Break stops the flow of logic within the switch statement and the statement immediately following the switch is executed. Break statement prevents fall through in the switch statement. Example: Switch(n) { case 10: System.out.println( Ten ); break; case 0: System.out.println( Twenty ); break; default; System.out.println( Not Ten or Twenty ); } Any other example of switch statement. (1/ mark for purpose of break)(1/ mark for correct switch statement example) 1 1

11 (c) Write the name HTML tag used to include numbered list in a HTML Web Page. 1 <OL> Mentioning DERED LIST Tag (1 mark for correct answer) (d) Write HTML code for the following: 1 To provide hyperlink to a website <A HREF= > CLICK HERE TO GO CBSE SITE</A> (1 mark for correct HTML tag) (1 mark if any part of Q has been attempted correctly) (1 mark for attempting the question) (e) What will be the content of the jtextarea1 after executing the following code (Assuming that the jtextarea1 had no content before executing this code)? for (int =C=1; C=4; C++) { jtextarea1.settext( jtextarea1.gettext() + + Integer.toString (C*C)) ; } Refer Note Note: ( marks to be awarded for any one of the following answers: 1. Syntax Error. Program will not Compile 3. No output) ( marks to be awarded if operator is changed and any output is written) (f) Which of the following units measures the speed with which data can be Transmitted from one node to another node of a network? Also give the expansion of the suggested unit. (i) KMph (ii) KMpl (iii) Mbps Mega Bits per second (Note: Mega Bytes per second may also be accepted) (1 mark for identifying unit of measure) (1 mark for expansion) (g) Write java code that takes value for a number (n) in jtextfield1 and cube (n*n*n) of it to be displayed in jtextfield. double n=double.parsedouble(jtextfield1.gettext()); double m=n*n*n; jtextfield.settext( +m); Any other equivalent code Note: n can be taken as int or float (1 mark for getting the value from jtextfield1) (1/ mark for calculating cube) (1/ mark for displaying in jtextfield) Note: Do not deduct marks for error in Formula 3 (a) Write MySQL command to open an existing database. 1 USE (Any Database Name)

12 USE (1 mark for correct answer) (b) Ms. Mirana wants to remove the entire content of a table BACKUP alongwith its 1 structure to release the storage place. What MySQL statement should she use? DROP TABLE BACKUP DROP TABLE (1 mark for the answer) (1/ mark for mentioning only DROP) (c) Give one difference between ROLLBACK and COMMIT commands used in MySQL. 1 ROLLBACK aborts transaction and does not save any of the changes made to the database during the transaction. COMMIT statement saves all changes made during the transaction to the database. Any other equivalent answer/example (1/ mark for ROLLBACK) (1/ mark for COMMIT) (d) A table STUDENTS has 4 rows and columns and another table TEACHER has 3 1 rows and 4 columns. How many rows and columns will be there if we obtain the Cartesian product of these two tables? 1 rows, 6 columns 1, (1/ mark for rows) (1/ mark for columns) (e) Mr. Sanghi created two tables with CITY as Primary Key in Table1 and Foreign key in table. While inserting a row in table Table, Mr. Sanghi is not able to enter a value in the column CITY. What could be the possible reason for it? Referential Integrity enforcement ensures that value must exist in referred table for successful insertion in the dependent table. Mentioning Primary Key - Foreign Key Relationship Any other answer that illustrates the Primary Key Foreign Key relationship concept ( mark for correct answer) (f) Item code consisting of 5 digits is stored in an integer type variable intitemcode. Mr. Srikant wants to dtore this item code in a String type variable called stritemcode. String stritemcode=integer.tostring(intitemcode); Any other equivalent statement. NOTE: String object need to be declared. ( marks for correct answer) (1 mark if the variable names has been changed) (g) Mr. Janak is using a table with following columns: Name, Class, Course_Id, Course_name He needs to display names of students, who have not been assigned any stream or have been assigned Course_name that ends with economics He wrote the following command, which did not give the desired result. SELECT Name, Class FROM Students WHERE Course_name=NULL Course_name= %economics ; Help Mr. Janak to run the query by removing the error and write the correct query. SELECT Name, Class

13 FROM Students WHERE Course_name IS NULL SELECT Name, Class FROM Students WHERE Course_name LIKE %economics ; ( marks for correct query) (1 mark for IS NULL) (1 mark for LIKE) (Award ½ mark if only errors are identified) 4 (a) What message will be displayed after the executing of the following code? Int Age=64, Relaxation=4; Int ModiAge=Age-Relaxation; If (ModiAge<60) joptionpane.showmessagwdialog(null, NOT Eligible ) else joptionpane.showmessagwdialog(null, Eligible ) Eligible Syntax Error Error No Output ( marks for any answer mentioned above) (b) Rewrite the following program code using a If Statement: Int C=jComboBox1.getSelectedIndex(); Switch (C) { case 0 : Amount=Bill;break; case 1 : Amount=0.9*Bill;break; case : Amount=0.8*Bill;break; default : Amount=Bill; } if(c==0) Amount=Bill; else if (C==1) Amount=0.9*Bill; else if (C=1) Amount=0.8*Bill; else Amount=Bill; (c) if( C==0) Amount=Bill; if(c==1) Amount=0.9*Bill; if(c==) Amount=0.8*Bill; if ((C>) (C<0)) Amount=Bill; (1/ mark for each statement) NOTE: Award 1 ½ mark if = is used instead of == How many times does the following while loop get executed? int K=5; int L=36; 1

14 while (K<=L) { K+=6; } 6 times 6 (1 mark for correct answer) (d) What will be displayed in jtextarea1 after executing the following statement? jtextarea1, settext ( GREAT\nCOUNTRY\tINDIA ); GREAT COUNTRY INDIA Syntax Error Error No Output (1 mark for correct answer) (1 mark for writing the output as GREAT COUNTRY INDIA) (1/ mark for writing the output in one line as GREAT COUNTRY INDIA) (1/ mark for writing the output as GREAT COUNTRY\tINDIA) (1/ mark for writing the output in one line as GREAT\nCOUNTRY\tINDIA) (e) What will be the values of variables m and n after executing of the following code? Int P, Q=Q For (P=1;P<=4;P++) { Q+=P; Q--; } 5 6 m = 5 n = 6 P = 5 Q = Variables not found No Output/values Error in question ( marks for correct output) (1 mark for mentioning only 1 value) 1

15 (f) ( marks for attempting the question) Given a string object named Pay having value as stored in it. Obtain the output of the following: JOptionPane.showMessageDialog null, +Salary.length ( ) + Integer.parseInt(Salary)); Variables Not Found No Output Note: award 1 ½ mark if length and pay value are stated separately i.e 5 && ( marks for any the answers mentioned above) (1 mark for writing only 5 in Output) (g) Janav Raj is programmer at Path Educo Enterprises. He created the following GUI in NetBeans. Help him to write code for the following: (i) To display series of od or even numbers (depending on Starting Number jtextfield1 is even or odd) in the jtextarea on the click of command button [Display the Series]. For example: If the start number is 5 and last number is 11 TextArea content will be If the start number is and last number is 10 TextArea content will be int s = Integer.parseInt(jTextField1.getText().trim()); int e = Integer.parseInt(jTextField.getText().trim()); while (s <= e) { jtextarea1.append( +s+ ); s+=; }

16 Any other equivalent code NOTE: Marks not to be deducted if Trim() method is not used (1 mark for correct Loop) (1 mark for transferring values from textboxes) (1 ½ mark if settext () is used in place of append() ) (1 mark if any other output statement is used) (ii) To clear both the text fields and text area, on clicking [reset button.] jtextfield1.settext( ); jtextfield.settext( ); jtextfield3.settext( ); Note: award 1 ½ mark if null is used instead of (1 mark for clearing any one textfield) (1 mark for clearing textarea) (iii) To terminate the application on the click [Stop] button. (assume suitable name for the various controls on the form) 1 System.exit(0); Or System.exit(); (1 mark for correct statement) 5 (a) What is the purpose of DER BY clause in MySql? How is it different from GROUP BY clause? DER BY clause sorts only the projection by the specified group attribute(s). GROUP BY clause groups tuples together based on the specified group attribute(s). Any other equivalent explanation only (1 mark for DER BY) (1 mark for GROUP BY) (b) Table SCHOOL has 4 rows and 5 columns. What is the Cardinality and degree of this table? Cardinality: 4 Degree: 5 4, ( ½ marks for cardinality) ( ½ marks for degree) (c) Consider the table SHOPPE given below. Write command in MySql for (i) to (iv) and output for (v) to (vii). Table SHOPPE: Code Item company Qty City Price 10 Biscuit Hide & 100 Delhi Seek 103 Jam Kissan 110 Kolkata Coffee Nestle 00 Kolkata Sauce Maggi 56 Mumbai Cake Britannia 7 Delhi Maggi Nestle 150 Mumbai Chocolate Cadbury 170 Delhi 5.00 (i) To display names of the items whose name starts with C in ascending order of price 1 SELECT ITEM FROM SHOPEE WHERE ITEM LIKE C% DER BY PRICE ASC;

17 NOTE: 1. Writing ASC keyword is optional. Accept orderby without space also i.e. DERBY (1 mark for correct query) ( ½ mark for writing only LIKE clause) ( ½ mark for writing only DERBy clause) ( ½ mark for writing only SELECT ITEM FROM SHOPEE ) (ii) To display Code,Item name and City of the products whose quantity is less than SELECT code, Item, City FROM Shoppe WHERE Qty <100; (1 mark for correct query) ( ½ mark for writing select query without the WHERE Clause) (iii) To count distinct company from the table. 1 SELECT COUNT (DISTINCT COMPANY) FROM Shoppe; (1 mark for correct query) (1/ mark for writing select querry without DISTINCT) (iv) To insert a new row in the table Shoppe 1 110, pizza, Papa Jones, 10, Kolkata, 50.0 INSERT INTO SHOPPE VALUES ( 110, pizza, Papa Jones, 10, Kolkata, 50.0); Note: 1. If columns are mentioned in the insert statement, it should be accepted.. No marks should be deducted for omission of quotes. 3. No marks should be deducted for writing VALUE keywords instead of VALUES. (1 mark for correct query) (award ½ if TABLE Keyword is also mentioned in the query i.e. insert into the table shopee) (Award ½ mark for writing only INSERT Keyword) (v) Select Item from Shoppe where Item IN ( Jam, Coffee ); Item Jam Coffee Note: 1. If the values are written in one row and in any other order do not deduct marks.. No marks to be deducted for not mentioning column Title 3. Ignore case of output values. (1 mark for correct output) ( ½ mark for each correct value) (vi) Select Count ( distinct (City) from shoppe; 1 Count (distinct(city)) Note: No marks to be deducted for not mentioning column title. (1 mark for correct output) (vii) Select MIN (Qty) from Shoppe where City = Mumbai ; 1 MIN(Qty)

18 Note: No marks should be deducted for not mentioning column Title (1 mark for correct output) 6 (a) Write MySql command to create the Table STOCK including its Constraints. Table STOCK Name of Column Type Size Constraint ID Decimal 4 Primary key Name Varchar 0 Company Varchar 0 Price Decimal 8 Not Null (b) CREATE TABLE Stock ( Id DECIMAL(4) PRIMARY KEY, Name VARCHAR(0), Company VARCHAR(0), Price DECIMAL(8) NOT NULL ); NOTE: Ignore absence of, after each column detail (1/ mark for Create Table Stock) (1/ mark for column names with data types) (1/ mark for each constraint) In a database there are two tables: Table ITEM: ICode Iname Price 101 Television Computer Refrigerator Washing Machine 7000 Table BRAND: ICode Brand 101 Sony 0 HP 303 LG 404 IFB (i) To Display ICode, IName and Corresponding Brand of those Items, whose price is between 0000 and (both values inclusive) SELECT Item.ICode, IName, Brand From Item, Brand WHERE Item.ICode=Brand.ICode AND Price BETWEEN 0000 AND 4500; SELECT Item.ICode, IName, Brand From Item, Brand WHERE Item.ICode=Brand.ICode AND Price >=0000 AND Price<=45000; Note; Use of Alias names for tables Optional ( marks for correct querry) (1 mark for mentioning only the range condition) (1 mark for mentioning only equi join condition)

19 (1 mark if AND is mentioned in the FM clause or SELECT clause) (ii) To Display ICode, Price and BName of the item which has IName as Television SELECT ITEM.Icode, Price, Brand FROM Item, Brand WHERE ITEM.Icode=Brand.Icode AND Iname= Television ; Note: 1. Accept any other column name instead of BName. Award marks for Error in query / Column not found is mentioned ( marks for correct querry) (1 mark for mentioning only equi join condition) (1 mark for mentioning only the condition IName= Television ) (1 mark if AND is mentioned in the FM clause or SELECT clause) (iii) To increase the price of all items by 15% UPDATE Item SET Price = Price*1.15; UPDATE Item SET Price = Price + Price*.15; UPDATE Item SET Price = Price + Price*15/100; SELECT Price*1.15 FROM Item; ( marks for correct UPDATE/SELECT query) (1 ½ marks if keyword TABLE is mentioned in the UPDATE statement) (1 mark if only UPDATE keyword is used) (Award 1 mark if there is an error in UPDATE expression) (c) Given below is a Table Patient Name P_No Date_Admn Doc_No Vimla Jain P D01 Ishita Kohli P D506 Vijay Verma P D01 Vijay Verma P D33 (i) Identify Primary Key in the table given above 1 P_No (1 mark for correct querry) (1 mark if Patient Number is given as the answer) (ii) Write MySql querry to add a column Department with data type varchar and size 30 in 1 the table Patient. ALTER TABLE Patient ADD Department Varchr(30); Note: Column Keyword in ALTER TABLE is optional (1 mark for correct querry) (1/ mrk for writing ALTER TABLE only) (1/ mark if size is omitted (1/ mark if type is CHAR) 7 (a) What Social impact does e-governance have on society? 1 e-governance ensures: Transparecy of governance Efficiency of governance Any other equivalent point bringing out social impact of e-governance (1 mark for writing any one impact) (b) Write two important features of e-business. Give two most commonly used e-business sites.

20 Features of e-business: (i) Helps reach customers effectively and speedily (ii) Helps customers to order online (iii) Helps in getting feedback from customers (iv) Helps Inter-Business transactions (c) Commonly used e-business sites Any two features of e-business and any two e-business websites (1/ mark each for any two feature) (1/ mark each for any two websites) Mr. Anurag Das working as manager in Vivian Enterprises wants to create a form in NetBeans to take various inputs from user. Choose appropriate control from Label, TextBox, Radio Button, CheckBox, ListBox, ComboBox and Command button and write them in the Third column. S.No. Control used to Control 1. Enter Name, Address and Salary. Select Gender (Male/Female) 3. Select Department from available list 4. Choose Hobby of employee (Singing/Dancing/Skating/Swimming) S.No. Control used to Control 1. Enter Name, Address and Salary TextBox. Select Gender (Male/Female) RadioButton 3. Select Department from available list listbox/ ComboBox 4. Choose Hobby of employee (Singing/Dancing/Skating/Swimming) (1/ mark for each answer) ComboBox/ CheckBox/ radiobutton/ ListBox ******GOOD LUCK******

[Time allowed: 3hours] [Maximum Marks: 70] Instructions (i) All questions are compulsory

[Time allowed: 3hours] [Maximum Marks: 70] Instructions (i) All questions are compulsory XII INFORMATICS PRACTICES CBSE Board 0 [Time allowed: 3hours] [Maximum Marks: 70] Instructions (i) All questions are compulsory (ii) Programming Language: Java (a) Raj kamal International school is planning

More information

Short Question-Answers

Short Question-Answers a. India.gov.in b. GOI.gov.in c. ncert.nic.in d. None of the above 5. A form through which users interact with an IT application is a part of a. database b. front-end c. back-end d. Javascript 6. A good

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

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

MONTHLY TEST (JUNE 2018) CLASS XII INFORMATICS PRACTICES

MONTHLY TEST (JUNE 2018) CLASS XII INFORMATICS PRACTICES M.M: 40 MONTHLY TEST (JUNE 2018) CLASS XII INFORMATICS PRACTICES TIME: 80 Mins. Q1. Which of the following is not a feature of Networking? (i) Resource Sharing (ii) Reliability (iii) Uninterrupted power

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

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

INDIAN SCHOOL MUSCAT THIRD PRELIMINARY EXAMINATION INFORMATICS PRACTICES

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

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

Optical Fiber/Coaxial Cable/ Bluetooth/Twisted Pair Cable. Give reason for your answer.

Optical Fiber/Coaxial Cable/ Bluetooth/Twisted Pair Cable. Give reason for your answer. CBSE AISSCE 07 Marking General Instructions: Marking scheme is the final document for all references with regard to evaluation and cannot be altered under any circumstances. The answers given in the marking

More information

APEEJAY SCHOOL SAKET First Term Examination Class - XII (Commerce) INFORMATICS PRACTICES(Code 065)

APEEJAY SCHOOL SAKET First Term Examination Class - XII (Commerce) INFORMATICS PRACTICES(Code 065) APEEJAY SCHOOL SAKET First Term Examination 07-8 Class - XII (Commerce) INFORMATICS PRACTICES(Code 065) Time allowed : 3 hours General Instructions : This question paper has 6 questions and 6 printed pages.

More information

INFORMATICS PRACTICES

INFORMATICS PRACTICES Series OSR 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 hand

More information

Downloaded from

Downloaded from SET-4 Series GBM 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 9 printed pages. Code number given on the right

More information

INFORMATICS PRACTICES

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

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

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

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

KENDRIYA VIDYALAYA SANGATHAN REGION KOLKATA XII 3 RD -PreBoard SUBJECT-IP (065)

KENDRIYA VIDYALAYA SANGATHAN REGION KOLKATA XII 3 RD -PreBoard SUBJECT-IP (065) KENDRIYA VIDYALAYA SANGATHAN REGION KOLKATA XII 3 RD -PreBoard2016-17 SUBJECT-IP (065) MAX MARKS-70 TIME- 3 HOURS All questions are compulsory. Programming language : Java, MySQL Q1)a)Arpan is working

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

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

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

(d) Write any two significance of Unicode? 1

(d) Write any two significance of Unicode? 1 1 (a) India Marchants Co is planning in the office building to connect all computers, each 1 spread over within distance of 45 Meters. Suggest the economical cable type having high speed data transfer

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

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

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

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

13. What is the meaning of Open Source in the term Open Source Database Management. 14. Difference between Proprietary and Open Source Software.

13. What is the meaning of Open Source in the term Open Source Database Management. 14. Difference between Proprietary and Open Source Software. Dehradun Public School I-Term Assignment (2016-17) Subject-Informatics Practices (065) Class -XII Chapter 1. Computer Networking 1. How is firewall useful in ensuring network security? [CBSE 2016] 2. State

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

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

UNIT-2 PROGRAMMING QUESTIONS (OLD CBSE PAPER BASED JAVA AND HTML QUESTIONS)

UNIT-2 PROGRAMMING QUESTIONS (OLD CBSE PAPER BASED JAVA AND HTML QUESTIONS) UNIT-2 PROGRAMMING QUESTIONS (OLD CBSE PAPER BASED JAVA AND HTML QUESTIONS) 1. Write the value of t after the execution of the following code : int t; int s; s=6; t = (8 * s++) % 7; 2. Write the value

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

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

INFORMATICS PRACTICES

INFORMATICS PRACTICES Series OSR/C 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 hand

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

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

SPLIT UP SYLLABUS SUBJECT : INFORMATICS PRATICES (065) SESSION: CLASS XII ( ) (THEORY)

SPLIT UP SYLLABUS SUBJECT : INFORMATICS PRATICES (065) SESSION: CLASS XII ( ) (THEORY) SPLIT UP SYLLABUS SUBJECT : INFORMATICS PRATICES (065) SESSION:2014-15 CLASS XII (2014-15) (THEORY) Unit Topic Marks 1. Networking and Open Standards 10 2. Programming 25 3. Relational Database Management

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

THE INDIAN COMMUNITY SCHOOL, KUWAIT

THE INDIAN COMMUNITY SCHOOL, KUWAIT THE INDIAN COMMUNITY SCHOOL, KUWAIT SERIES : I SE / 2016-2017 CODE : N 065 MAX. MARKS : 70 TIME ALLOWED : 3 HOURS NO. OF PAGES : 6 INFORMATICS PRACTICES ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

More information

CLASS XII INFORMATICS PRACTICES ACADEMIC SESSION FORTNIGHTLY BREAKUP OF SYLLABUS. Main Topic Sub Topics Pds Total Pds

CLASS XII INFORMATICS PRACTICES ACADEMIC SESSION FORTNIGHTLY BREAKUP OF SYLLABUS. Main Topic Sub Topics Pds Total Pds S. No Fortnight 1 19 th March 28 March (Block Teaching) Total no of days CLASS XII INFORMATICS PRACTICES ACADEMIC SESSION 2018-2019 FORTNIGHTLY BREAKUP OF SYLLABUS Main Topic Sub Topics Pds Total Pds 8

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

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

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

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

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

INFORMATICS PRACTICES

INFORMATICS PRACTICES Series : ONS/1 Roll No. SET 4 Code No. 90/1 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

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

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

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

Class XII (Theory) Class XII

Class XII (Theory) Class XII Class XII Class XII (Theory) Unit Topic Period Marks Theory Practical Theory Practical 1 NETWORKING AND OPEN STANDARDS 20 4 10 2 2 PROGRAMMING 42 40 25 16 3 RELATIONAL DATABASE MANAGEMENT SYSTEM 42 36

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

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

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

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

Time : 3 hours Max. Marks : 70

Time : 3 hours Max. Marks : 70 1. All questions are compulsory. 2. Answer the questions after carefully reading the text. Time : 3 hours Max. Marks : 70 1. (a) Identify the odd one out of the following: (2) Optical Fiber/Coaxial Cable/Bluetooth/

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

Chapter 3 Question Bank 1. Write the value of t after the execution of the following code : int t; int s; s=6; t = (8 * s++) % 7; 2.

Chapter 3 Question Bank 1. Write the value of t after the execution of the following code : int t; int s; s=6; t = (8 * s++) % 7; 2. Chapter 3 Question Bank 1. Write the value of t after the execution of the following code : int t; int s; s=6; t = (8 * s++) % 7; 2. Write the value of variable c after execution of the following code

More information

Half Yearly Examination SESSION: CLASS: Scholars 2 Subject :- Informatics Practices (ANSWER KEY) SECTION-A

Half Yearly Examination SESSION: CLASS: Scholars 2 Subject :- Informatics Practices (ANSWER KEY) SECTION-A Code : 065 Subodh Public School Half Yearly Examination SESSION: 2018-19 CLASS: Scholars 2 Subject :- Informatics Practices (ANSWER KEY) SECTION-A Q 1. Answer the following questions:- (20 Marks) i. It

More information

SUB: INFORMATICS PRACTICES CLASS: XII ANSWER KEY SET-2. Time: 3 Hrs Max.Mark: 70 1.

SUB: INFORMATICS PRACTICES CLASS: XII ANSWER KEY SET-2. Time: 3 Hrs Max.Mark: 70 1. SAMPLE PAPER 2014-15 SUB: INFORMATICS PRACTICES CLASS: XII ANSWER KEY SET-2 Time: 3 Hrs Max.Mark: 70 1. [A] TELNET [B] Router [C] (1) BUS topology (2) Ring / Circular topology [D] Devanagiri,Tamil,Malayalam,Gujatrati,telugu,assamese

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

KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES(065) CLASS XII. Total Marks Questions VSA SA I LA Total 34 70

KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES(065) CLASS XII. Total Marks Questions VSA SA I LA Total 34 70 KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES(065) CLASS XII Type of Questions Marks per Question Total No. of Total Marks Questions VSA 8 8 SA I 0 40 LA 6 0 Total 34 70 Unit Topic VSA(

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

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

INFOTECH Computer Education, Kishangarh (Raj) Visit : Page 1

INFOTECH Computer Education, Kishangarh (Raj) Visit :   Page 1 Q 1. (a) Which protocol is used for the transfer of hypertext document on the Internet. (1) (b) Which transmission medium should be used to transfer data across two continents at very high speed? (1) (c)

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

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

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

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

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

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

CLASS XII SAMPLE PAPER-065 INFORMATICS PRACTICES

CLASS XII SAMPLE PAPER-065 INFORMATICS PRACTICES CLASS XII SAMPLE PAPER-065 INFORMATICS PRACTICES Time:3 Hrs. M.M:70 General Instructions: I. All Questions are compulsory II. Marks are given in front of each question Q1(a) The Chalchitra theatre has

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

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

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

COURSE DESIGN Class XII ( ) (THEORY)

COURSE DESIGN Class XII ( ) (THEORY) Unit Topic COURSE DESIGN Class XII (2017-18) (THEORY) Theory Period Practical Total periods 1 Networking and Open Standards 20 4 24 2 Programming 46 44 90 3 Relational Database Management System 50 40

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

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

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

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

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

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

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

CLASS XII SUBJECT: - INFORMATICS PRACTICES (065) I.P. (Theory)

CLASS XII SUBJECT: - INFORMATICS PRACTICES (065) I.P. (Theory) CLASS XII SUBJECT: - INFORMATICS PRACTICES (065) Unit Topic Period Marks Theory Practical Theory Practical 1 NETWORKING AND OPEN STANDARDS 20 4 10 2 2 PROGRAMMING 42 40 25 16 3 RELATIONAL DATABASE 42 36

More information

Q13. What is the meaning of Open Source in the term Open Source Database Management

Q13. What is the meaning of Open Source in the term Open Source Database Management DEHRADUN PUBLIC SCHOOL ASSIGNMENT (2017-18) SUBJECT-INFORMATICS PRACTICES (065) CLASS - XII Chapter 1. Computer Networking Q1.How is firewall useful in ensuring network security? [CBSE 2016] Q2.How is

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

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

FIRST PRE BOARD CLASS-XII INFORMATICS PRACTICES

FIRST PRE BOARD CLASS-XII INFORMATICS PRACTICES FIRST PRE BOARD 2010-11 CLASS-XII INFORMATICS PRACTICES Time-3 hours Note. 1. All questions are compulsory. 2. Answer the question after carefully reading the text. 3. Programming language: JAVA, HTML,SQL.

More information

Exam code: Exam name: Database Fundamentals. Version 16.0

Exam code: Exam name: Database Fundamentals. Version 16.0 98-364 Number: 98-364 Passing Score: 800 Time Limit: 120 min File Version: 16.0 Exam code: 98-364 Exam name: Database Fundamentals Version 16.0 98-364 QUESTION 1 You have a table that contains the following

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

UNIT I (NETWORKING AND OPEN STANDARDS) (From this unit: 7 Questions - 10 Marks)

UNIT I (NETWORKING AND OPEN STANDARDS) (From this unit: 7 Questions - 10 Marks) UNIT I (NETWORKING AND OPEN STANDARDS) (From this unit: 7 Questions - 10 Marks) One Mark Questions 1. What is the purpose of Modem in network? 2. Write one example of IP Address. 3. Define Domain Name

More information

Downloaded from

Downloaded from KENDRIYA VIDYALAYA SANGATHAN, CHENNAI REGION Sub : Informatics Practices (065) Time allowed : 3 hours Maximum Marks : 70 Marking Scheme. a. Mrs Ruchi is planning to connect all the 5 computers in her office

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

ASSIGNMENT FOR AUTUMN BREAK CLASS XI INFORMATICS PRACTICES ( )

ASSIGNMENT FOR AUTUMN BREAK CLASS XI INFORMATICS PRACTICES ( ) HARDWARE CONCEPTS ASSIGNMENT FOR AUTUMN BREAK CLASS XI INFORMATICS PRACTICES (2017-18) Q1. Write at least two points of difference between the following terms: (i) Analog Computer and Digital Computer

More information

Downloaded from

Downloaded from UNIT 3 CHAPTER 13: DATABASE FUNDAMENTALS - MYSQL REVISION TOUR Database: Collection of logically related data stored in a structure format. DBMS: Software used to manage databases is called Data Base Management

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

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

Ebook : Overview of application development. All code from the application series books listed at:

Ebook : Overview of application development. All code from the application series books listed at: Ebook : Overview of application development. All code from the application series books listed at: http://www.vkinfotek.com with permission. Publishers: VK Publishers Established: 2001 Type of books: Develop

More information