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

Size: px
Start display at page:

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

Transcription

1 DEHRADUN PUBLIC SCHOOL ASSIGNMENT ( ) SUBJECT-INFORMATICS PRACTICES (065) CLASS - XII Chapter 1. Computer Networking Q1.How is firewall useful in ensuring network security? [CBSE 2016] Q2.How is it easier to diagnose fault in Star topology than in bus topology? [CBSE 2017] Q3.Distinguish between LAN and WAN. [CBSE 2015] Q4.Write the name of the most suitable wireless communication channels for each of the following situations? a. Communication between two offices in two different countries. b. To transfer the data from one mobile phone to another [CBSE 2012] Q5.What do you understand by Domain Name Resolution? [CBSE 2015] Q6.What is MAC address? What is the difference between MAC and IP address? Give one example of each. [CBSE 2013] Q7.Write one advantage and disadvantage of optical fibre. [CBSE 2014] Q8.What is the use of repeater in a Network? How is it different from Hub? [CBSE 2013] Q9.What is the purpose of logical address of a computer? [CBSE 2017] Chapter 2. Open Source Concepts Q10. What is the objective behind developing UNICODE? [CBSE 2014] Q11. Distinguish between Phonetic text entry and Keymap based text entry. [CBSE 2015] Q12. What is the full form of the following: [CBSE 2013][CBSE 2014] i) ODF ii) HTTP iii) OSI iv) FLOSS Q13. What is the meaning of Open Source in the term Open Source Database Management System? [CBSE 2016] Q14. Difference between Proprietary and Open Source Software. [CBSE 2011, 2014, 2015] Q15. After realizing the issues with proprietary software, Ms. Sunita has decided to use only Open Source Software. Suggest any one suitable open source software to her, for each of the following categories: i) Operating System ii) Browser Chapter 3. Java GUI Programming Revision Tour -I Q16. In a switch statement, what is the purpose of default section? [CBSE 2015] Q17. Re-write the following if-else segment using switch case statement: char ch = P ; if ((ch== p ) (ch= = P )) System.out.println( Platinum ); if (ch= = g ) (ch == G ) System.out.println( Gold ); if(ch == S ) System.out.println( Silver ); else System.out.println( Normal ); Q18. What will be the value of C after the execution of the following code: [CBSE 2017] int P; int R=8; int oddnum; int C=0; for(p=1; P<R; P=P+3) oddnum = P%2; if (oddnum==1) Page 1 of 9

2 C=C+1; Q19. Write java code that takes the value for a number (n) in jtextfield1 and cube (n*n*n) of it to be displayed in jtextfield2. [CBSE 2012] Q20. Write the output in jtextfield1 if depcode is 3: [CBSE 2016] switch (depcode) case 1 : allowance=4000; break; case 2 : allowance=3200; break; default : allowance=1000; jtextfieldl.settext( " " +allowance); Q21. What is the purpose of parseint( ) method. [CBSE 2016] Q22. Give the output of the following Java code: String x; String str = Java ; x = str.concat ( study ); double a = ; jtextfield1.settext (x.length()+ ); jtextfield2.settext (x.touppercase () ); jtextfield3.settext (x.substring (2,5)); jtextfield4.settext (Math.round(7.8765)+ ); Q23. What will be the displayed in jtextfield1 and jtextfield2 after the execution of the following code? [CBSE 2017] int ndigits=0; int N=35; while (N>12) ndigits=ndigits+1; N=N-10; jtextfield1.settext( +ndigits); jtextfield2.settext( +N); Q24. The following code has some error(s).rewrite the correct code underlining all the corrections made: int n=5,int i=1,f=1; do; f=f*i; i++; while(i<=n) jtextfield1.settext(""+f); Q25. Rewrite the following program using a for loop: int i = 1,sum = 0; while(i<10) sum + =i; i+=2; Q26. Observe the following code carefully and find which statement will never get executed in the code : int Count = 1 ; //Statement 1 do //Statement 2 //Statement 3 Page 2 of 9

3 if (Count < 15 ) //Statement 4 jtextfield1.settext ( Jump ) ; //Statement 5 else //Statement 6 jtextfield1.settext ( Stop ) ; //Statement 7 Count += 4 ; //Statement 8 //Statement 9 while ( t <= 15 ) ; //Statement 10 Q27. How many times will the following loops execute? Which one of them is Entry Controlled and which one is Exit Controlled? [CBSE 2013] int j=8, total=0 ; while(j>1) total+=j; j- =2; Loop1 int j=8, total=0 ; do total+=j; j-=2; while(j >1); Loop2 Chapter 4. Java GUI Programming Revision Tour -II Q28. Write Java statement to extract selected item from a given listbox named jlist1 [CBSE 2016] Q29. What is the difference between jtextfield and jpasswordfield components? [CBSE 2015] Q30. Write a statement to make jtextarea1 un-editable. [CBSE 2013] Q31. Write a statement in Java to declare a String type variable with a name City. [CBSE 2014] Q32. What will be the content of the jtextarea1 after executing the following code: for(int i=5;i<=25;i+=5) jtextarea1.settext (jtextarea1.gettext ( ) + + Integer. tostring(2*i)); [CBSE 2014] Q33. What will be displayed in jtextarea1 after executing the following statement? [CBSE 2012] jtextarea1.settext( GREAT\nCOUNTRY\t INDIA ); Q34. Given a string object named Pay having value as stored in it.obtain the output of the following: JOptionPane.showMessage Dialog(null, +Pay.Length( )+Integer.parseInt(Pay)); [CBSE 2012] Q35. Aditya is a programmer at Edudel enterprises. He created the following GUI in NetBeans. Help him to write code in java for the following: [CBSE 2013] a) To calculate Total marks obtained and display in TextField on the click of command button Get Total. Assume there are three subjects. b) To calculate Grade obtained and display in TextField on the click of command button Get Grade. Criteria for Grade calculation is given below: Marks Grade Above 80 A Above 65 and <=80 B Above 50 and <=65 C <=50 D Page 3 of 9

4 c) To stop execution and exit from the application on the click of command button Exit. Q36. Mr. Radhey Shyam Bansal the owner of the Kiddi Land Enterprises has asked his programmer Ekta to develop the following GUI in Netbeans.Mr. Bansal accepts payment through three types of credit cards. The discount is given according to the following scheme: [CBSE 2011] Type Of Card Platinum Gold Silver Discount 20% of amount 15% of amount 10% of amount If the Bill amount is more than Rs. 25,000 then the customer gets an additional discount of 5%.Write Java code for the following: a) To assign Additional Discount as 0 (jtextfield4) and net Amount as 0 (jtextfield5). Also set them as un-editable. b) [When Calculate Discount (jbutton1) is clicked] To calculate discount as per the given criteria and display the same in jtextfield3.to assign Additional Discount (jtextfield4) as 5% of amount (jtextfield2) as per the above condition. c) [ When Calculate Net Amount (jbutton2) button is clicked] To calculate net Amount as[totalcost (jtextfield2)-discount(jtextfield3)-additional discount(jtextfield4)].to display the Net Amount in jtextfield5. Chapter 5. Java GUI Programming Revision Tour -III Q37. Define Object Oriented Programming. [CBSE 2014] Q38. Define Class with reference to Object Oriented Programming. Q39. Consider the following java class: public class Date public int day; public int month; public int year; public Date(int d,int m,int y) day = d; month = m; year = y; i) How many instance variables does it have? ii) Create a Date Object corresponding to 9 th June Chapter 6. Commonly Used Libraries Q40. What will be the content of F1 and F2 after the code is executed: [CBSE 2014] String F1= Hello, String F2= Friend ; F1=F1.concat (F2); Q41. Predict the output : string Subject = Informatics Practices ; jtextfield1.settext (Subject. Length ( ) ); Page 4 of 9

5 Q42. Predict the output : String Text2, Text1; Text1 = Good Morning ; Text2 = India ; Text1= Text2.concat (Text1); Chapter 7.Concept of Inheritance Q43. Explain the concept of Inheritance with the help of example. [CBSE 2014] Q44. Illustrate the concept of function overloading with the help of an example. Chapter 8.Database Connectivity to MySQL Q45. Briefly explain the concept of ResultSet method. Also, discuss the next ( ) and first ( ) methods. Write appropriate java statement to help him in performing the same. [CBSE 2012] Q46. What is the difference between executequery( ) and executeupdate( ) methods? Q47. What is Connection? Q48. Explain ODBC and JDBC. Q49. Name two commonly used drivers used for database connectivity from Java application. Chapter 9. Web Application Development Q50. What is a protocol? How do protocols affect Internet? Q51. Differentiate between a web browser and web server. Q52. In the URL, what is the http component? Q53. In the URL, what is the component? Q54. In the URL, what is the pr/master.htm component? Q55. What is a URL? What are its components? Exemplify. Q56. What is Client-Server computing? Chapter 10. HTML-I: Basic HTML Elements Q57. Which HTML tag and corresponding attributes are used to establish default font size of entire page? Q58. Which HTML tag and corresponding attributes are used to include an image as the background of an HTML document? [CBSE 2012] Q59. How is<p> tag different from <BR> tag in HTML? [CBSE 2013] Q60. Write any two differences between <HR> and <H1> tag? [CBSE 2013] Q61. After typing the HTML code using a text editor, how do you see it would look as a webpage? [CBSE 2015] Q62. What is the use of <FONT> tag in HTML code? Write any two options used with this tag. [CBSE 2014] Q63. Identify the error(s) in the following HTML code. Also write the correct code. [CBSE 2013] <BODY Color = Red background = school.jpg > Q64. What is the use of IMG tag? Name one attribute of it. [CBSE 2013] Q65. Differentiate between <UL> and<ol> tag. Q66. Write the output of the following HTML code: [CBSE 2017] <ol start= 4 > <li>bake the mixture in oven for an hour</li> <li>remove from oven</li> <li>allow the mixture to stand for ten minutes</li> <li>serve</li> </ol> Q67. Write HTML tags to do the following: [CBSE 2016] a. Inserting a horizontal line in a webpage. b. Inserting a line break. Page 5 of 9

6 Chapter 11.HTML-II: Lists, Tables and Forms Q68. Write the name of the HTML tag used to include numbered list in a HTML Web page. [CBSE 2012] Q69. Which HTML tags are used for making a table and adding rows in a HTML document? [CBSE 2011] Q70. Which attribute is used to control the inside table border? Q71. How is spacing in cells in table controlled? Q72. Write HTML code for displaying the following in a Web Page: 1. System Software Windows vista Linux 2. Application Software MS Office PageMaker Q73. What is the difference between basefont and font tag? Q74. What is the role of ALIGN attribute of <TABLE> tag? Q75. What is wrong with the following coding: <OL type = a start = d > Q76. Differentiate between ordered and unordered list. Q77. Write HTML code to produce these controls a. A text box b. A text area with 10 rows and 30 columns c. A password textbox Chapter 12. XML extensible Markup Language Q78. Differentiate between XML and HTML. [CBSE 2016] Q79. With XML there are no predefined tags. Explain in brief with the help of an example. [CBSE 2015] Q80. What are the components of an XML file in terms of logical structure? Q81. Consider the following XML document. Check this for well- formedness. <name> Jeevan</name> <name> Raunak</name> <name>vasu</name> Q82. Change the XML code of previous question so that it is well-formed. Q83. Differentiate between SGML and XML. Chapter 13.MySQL Revision Tour Q84. Write two examples of DBMS software. [CBSE 2014] Q85. Write MySQL command to open an existing database. [CBSE 2012] Q86. Ms. Akansha wants to remove the entire contents of a table AIRLINES along with its structure to release the storage space. What MySQL statement should she use? [CBSE 2012] Q87. What is the purpose of ALTER TABLE command in MySql? How is it different from UPDATE command? [CBSE 2011] Q88. A table STUDENT has 4 rows and 2 columns and another table TEACHER has 3 row and 4 columns. How many rows and columns will be there if we obtain the Cartesian product of these two tables? Q89. Consider the table: [CBSE 2016] Table:Company CompanyCode Donations C C102 NULL C C What output will be displayed by the following SQL statement? SELECT AVG(Donations) FROM Company; Q90. What is the difference between % and _ wild card characters with reference to LIKE clause of MySQL? Q91. Write SQL commands for the following on the basis of given table: [CBSE 2017] Table:Infant Page 6 of 9

7 ItemCode Item DatePurchase UnitPrice Discount 101 Frock Cot Soft Toy Baby Socks Baby Suit (i) Write a query to display the details about the Cot. (ii) Write a query to display the names of items and their unit price that have unit price less than 800 and discount more than 5%. (iii) Write a query to display the names of items and their date of purchase that were purchased after 31 st December, (iv) Write a query to display the number of items that have more than 10% as discount. (v) Write a query to display the item code and unit price in descending order of unit price. (vi) Write a query to increase the unit price of each item by 10% of their unit price. (vii) Write a query to display the names of items that have Baby anywhere in their item names. (viii) Write a query to display the highest unit price of items. Q92. Consider the table MCA given below. Write commands in SQL for (i) to (iv) and output for (v) to (viii) Table: MCA Mno Name Address Join_Dt Fee Semester 1001 Rahul 12,Vasant Kunj I 1002 Amit 187, R.K.Puram II 1003 Rakhi B6,Lajpat Nagar I 1004 Suhas 345,Nabi Karim III 1005 Deepika 10,Geeta colony IV 1006 Harish L-12,Preet vihar III 1007 Aparna H12, Hari Nagar I (i) To display all information from the table MCA. (ii) To display Mno and Name of those student who joined after 31 st Jan (iii) To display Name, fee and semester of those student who are in III semester. (iv) To display the name of students whose name has last alphabet as A. (v) Select Avg(Fee) from MCA where Semester = I ; (vi) Select Max(Fee) from MCA where Name like a%. (vii) Select count(distinct semester) from MCA. (viii) Select Name from MCA where name like %n ; Chapter 14. Database Transactions Q93. What do you mean by committing a transaction? [CBSE 2012] Q94. What does transaction ROLLBACK indicate? [CBSE 2012] Chapter 15.More on SQL-Grouping Records and Table Joins Q95. Mr. Shankar created a table VEHICLE with 3 rows and 4 columns. He added 1 more rows to it and deleted one column. What is the Cardinality and Degree of the Table VEHICLE? Q96. Consider the tables Employee and Project given below: Table: Employee Table: Project Name Gender Designation P_Code P_code P_Name Size Rahul M Programmer 2 1 Financial Accounting Large System Sanjana F Analyst 1 2 Library System Medium Radhika F Programmer 1 3 Inventory Control Small Anuradha F Analyst 3 Harish M Analyst 2 Page 7 of 9 System With reference to these tables, write commands in SQL for (i) and (ii) and output for (iii). (i) Display the Name and Designation of the employess who have taken under the Library System Project. (ii) Display the Number of Employees involved in Financial Accounting System.

8 (iii)select Name, Gender, Designation from Employee, Project where Employee.P_Code = Project.P_Code and Size = small ; Q97. In a Database there are two tables: Table: ITEM Table: BRAND Item_Code Item_Name Price 111 Refrigerator 90, Television 75, Computer 42, Washing Machine 27,000 Write MySql queries for the following: (i) To display Item_Code, Item_Name and corresponding Brand_Name of those Items, whose Price is between and 40000(both values inclusive) (ii) To display Item_Code, Price and Brand_Name of the item, which has Item_name as Computer. (iii) To increase the price of all the Items by 10%. Q98. Name two Group (Aggregrate) Functions of SQL. [CBSE 2016] Q99. Consider the table below: [CBSE 2016] Table : Company EMPID DEPARTMENT SALARY E101 PERSONNEL E102 ACCOUNTS E103 MARKETING E104 PERSONNEL E105 PERSONNEL E106 MARKETING Identify error(s) in the following SQL statement. Rewrite the correct SQL statement. SELECT department, salary FROM Company GROUP BY Department; Chapter 16. Tables and Integrity Constraints Q100. How is primary key constraint different from unique constraint? Q101. Mr. Sondhi created two tables with DEPTNO as primary key in Table1 and foreign key in Table2. While inserting a row in Table2. Mr. Sondhi is not able to enter a value in the column DEPTNO. What could be the possible reason for it? [CBSE 2012] Q102. What is the significance of NOT NULL constraint? Q103. Write the SQL command to create the following table as per the given specifications: Table Name: Hospital Field Name Data Type Size Constraint Pno Integer 4 Primary Key Name Varchar 20 Unique Age Integer 2 Department Varchar 15 Default OPD Date Date Charges Decimal 7,2 >100 Gender Char 1 Default M Q104. Write SQL command to add a new column for the table given above with the following specification: Field Name Data type Size Doctor_name Varchar 20 Q105. Write SQL command to update the table Hospital for the field Doctor_name and set the value as Dr. Khanna for all the patients of Cardiology department. Chapter 17. IT Applications Q106. What is the impact of e-learning websites on students learning process? [CBSE 2011] Page 8 of 9 Item_Code 111 LG 222 Sony 333 HCL 444 IFB Brand_Name

9 Q107. Write two advantages of e-business sites. How do online retailers usually offer customers a wider range of products at prices that are lesser than those of traditional stores? [CBSE 2017] Q108. Write three important features of e-governance. Give URL of one of the commonly used e- Governance portal. [CBSE 2011] Q109. List two advantages of e-governance to a disabled person. [CBSE 2017] Q110. Vijayan works for the Customs Department. He wishes to create controls on a form for the following functions. Choose appropriate control from Text box, Label, Option button, Check box, List box, Combo box, Command button. [CBSE 2012] SNo Control used to Control 1 Enter Last name 2 Enter gender 3 Choose city from list of cities 4 Submit form x Page 9 of 9

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Mr. Bansal accepts payment through three types of credit cards. The discount is given according to the following scheme:

Mr. Bansal accepts payment through three types of credit cards. The discount is given according to the following scheme: Class XII IP Question Bank From previous Year CBSE Board Question Papers Advanced GUI Programming-More on Swing Controls 2011 Q. Mr. Radhey Shyam Bansal the owner of the Kiddi Land Enterprise has asked

More information

INTERNATIONAL INDIAN SCHOOL, RIYADH XI XII BOYS SECTION INFORMATICS PRACTICES WORKSHEET 15 TH CHAPTER DATABASE TRANSACTION IMPORTANT QUESTION

INTERNATIONAL INDIAN SCHOOL, RIYADH XI XII BOYS SECTION INFORMATICS PRACTICES WORKSHEET 15 TH CHAPTER DATABASE TRANSACTION IMPORTANT QUESTION INTERNATIONAL INDIAN SCHOOL, RIYADH XI XII BOYS SECTION INFORMATICS PRACTICES WORKSHEET 15 TH CHAPTER DATABASE TRANSACTION Grade- XII IMPORTANT QUESTION 1. What is the benefit of Transaction? 2. What are

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

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

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

[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

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

Downloaded from Downloaded from Downloaded from Downloaded from

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

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

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

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

(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

SAMPLE PAPER: 2015 Class :XII Subject : Informatics Practices. Time: 3 hrs. M.M. 70. Section A

SAMPLE PAPER: 2015 Class :XII Subject : Informatics Practices. Time: 3 hrs. M.M. 70. Section A SAMPLE PAPER: 2015 Class :XII Subject : Informatics Practices Time: 3 hrs. M.M. 70 Instructions: i) All questions are compulsory. ii) Programming language:java Section A a) What is foreign key and Candidate

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

TIME : 3 Hrs MAX. MARKS : 70 SET 1

TIME : 3 Hrs MAX. MARKS : 70 SET 1 Sample Paper 0 Class XI Subject Informatics Practices TIME : 3 Hrs MAX. MARKS : 70 SET Q (a) Which of the following is not hardware : (i) Hard disk (ii) Printer (iii) Keyboard (iv) CPU (v) Assembler (vi)

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

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

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

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

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

More information

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

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

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

CLASS XII SAMPLE PAPER-065 INFORMATICS PRACTICES

CLASS XII SAMPLE PAPER-065 INFORMATICS PRACTICES General Instructions : (i)all the questions are compulsory. (ii)programming language : Java. CLASS XII SAMPLE PAPER-065 INFORMATICS PRACTICES Q-1 (a) A School with 20 stand alone computers is considering

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

S.F.D.A.V. Public School,Muzaffarnagar QUESTION BANK- I

S.F.D.A.V. Public School,Muzaffarnagar QUESTION BANK- I S.F.D.A.V. Public School,Muzaffarnagar QUESTION BANK- I SUB- CLASS-XII INFORMATICS PRACTICES 1. Define the following- (i) Repeaters (ii) Gateway (iii) Bridge (iv) Hub (v) Switch 2. What is the difference

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

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

Downloaded from

Downloaded from INFORMATICS PRACTICES (05) SAMPLE PAPER CLASS XII Time: 3HRS MM: 70 Q- Answer the following questions a) Name any two phone operating system(floss). b) What is a character encoding system? c) Mr. Rohan

More information

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

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

More information

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

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

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

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

CBSE AISSCE 2017 Marking Scheme for Informatics Practices

CBSE AISSCE 2017 Marking Scheme for Informatics Practices General Instructions: Marking scheme is the final document for all references with regard to evaluation and cannot be altered under any circumstance. The answers given in the marking scheme are SUGGESTIVE.

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

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

Downloaded from INFORMATICS PRACTICES

Downloaded from   INFORMATICS PRACTICES Roll No. SET 4 Series : GBM/ 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

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

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

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

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

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

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 SET1. 1 (a) Ans. Ans.

Sample Paper SET1. 1 (a) Ans. Ans. (a) (b) Sample Paper SET Class-XII Subject: Informatic Practices Answer the following questions: What is the difference between Star Topology and Bus Topology of network? Bus topology: All devices are

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

Downloaded from

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

More information

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

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

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

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

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

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

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

KENDRIYA VIDYALAYA ONGC PANVELSESSION ENDING EXAM

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

More information

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

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

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

More information

KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII 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

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

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