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

Size: px
Start display at page:

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

Transcription

1 Class XII IP GROUP_1 Question Bank From previous Year CBSE Board Question Papers Advanced GUI Programming-More on Swing Controls 011 Q. Mr. Radhey Shyam Bansal the owner of the Kiddi Land Enterprise has asked his programmer Ekta to devlop the following GUI in Netbeans. Mr. Bansal accepts payment through three types of credit cards. The discount is given according to the following scheme: If the bill amount is more than Rs. 5,000/- then the customer gets an additional offer of 5%. Write java code for the following: i. To assign Additional Discount as 0 (jtextfield4) and Net amount as 0 (jtextfield5). Also set them as un-editable. 1 ii. 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 (jtextfield) as per the above condition. To enable Calculate Net Amount (jbutton) button iii. Answer: [when Calculate Net Amount (jbutton) button is clicked] To calculate net amount as [TotalCost(jTextField)- Discount (jtextfield3) -Additional Discount (jtextfield4)] To display the net amount in jtextfield5. 1

2 (i) jtextfield4.settext("0"); jtextfield5.settext("0"); jtextfield4.seteditable(false); jtextfield5. seteditable(false); (ii) double discount = 0.0 ; double billamount=double.parsedouble(jtextfield.gettext()); if(jradiobutton1.isselected()) discount = 0.0; if(jradiobutton.isselected()) discount = 0.15; if (jradiobutton3.isselected()) discount = 0.10; jtextfield3.settext(billamount * discount + ) ; if (billamount > 5000) jtextfield4.settext (billamount*0.05+ ); jbutton.setenabled(true) ; (iii) doube netamount = Double.parseDouble(jTextField.getText()) Double.parseDouble(jTextField3.getText()) Double.parseDouble(jTextField4.getText()); jtextfield5.settext(netamount + " "); 01 Q. Janav Raj is a 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 odd or even number (depending on Starting NumberjTextField1 is even or odd) in the jtextarea on the click of command button [Display The Series]. ii. To clear both the text fields and text area, on clicking [Reset] button. iii. To terminate the application on the click of [stop] button. (Assume suitable names for the various controls on the Form) 1 Answer: i. int num1=integer.parseint(starttextfield.gettext()); int num=integer.parseint(stoptextfield.gettext()); seriestextarea.settext(null); if((num1 % )==0) for(int i=num1;i<=num;i=i+)

3 seriestextarea.append(i+" "); else for(int i=num1;i<=num;i=i+) seriestextarea.append(i+" "); ii. seriestextarea.settext(null); starttextfield.settext(null); stoptextfield.settext(null); iii. System.exit(0); 013 Q. Aditya is a programmer at Edudel enterprises. He created the following GUI in NetBeans. Help him to write code in java for the following: (i) To calculate Total marks obtained and display in jtextfield4 on the click of command button Get Total. (ii) To calculate Grade obtained and display in jtextfield5 on the click of command button Get Grade. Criteria for Grade calculation is given below: (iii) To stop execution and exit from the application on the click of command button Exit. 1 3

4 Answer: (i) private void jbutton1actionperformed(java.awt.event.actionevent evt) int a=integer.parseint(jtextfield1.gettext()); int b=integer.parseint(jtextfield.gettext()); int c=integer.parseint(jtextfield3.gettext()); int total=a+b+c; jtextfield4.settext(integer.tostring(total)); (ii) int t=integer.parseint(jtextfield4.gettext()); int a=t/3; if(a>=80) jtextfield5.settext("a"); else if(a>65 && a<=55) jtextfield5.settext("b"); else if(a>50 && a<=65) jtextfield5.settext("c"); else if(a<=50) jtextfield5.settext("d"); (iii) System.exit(0); 014 Q. Mr. Rangaswami works at a Recreation Park as a system analyst. He has created the following GUI. When a group arrives at the Recreation Park, the number of people in the group and whether the group wants to enjoy the Water Park or not is entered. Entry fee is Rs. 500 per person. The person can choose to play at Water park by selecting the checkbox. Rides of Water Park will cost Rs. 50 extra per person. Help him to write code for the following: (i) On the click of Calculate button, textfield for Entry Fees should display Entry Fees per person x number of people. If Water Park check box is selected, textfield for Water Park charges should display Water Park Charges per Person x Number of People. textfield for total Amount should display sum of Entry Fees and Water Park charges for all the people in the group. 3 4

5 (ii)write java code to clear all Textboxes on the click of Clear Button. 1 (iii) Write java Code to close the application on the click of Exit Button. 1 Answer: i. Int wfee=0; Int tfee=0; Int nop=integer.parseint(jtextfield1.gettext()); Int efee=nop*500; If(JCheckBox1.isSelected()) Wfee=nop*500; tfee=efee+wfee; jtextfield.settext( +efee); jtextfield3.settext( +wfee); jtextfield4.settext( +tfee); ii. JTextField1.setText( ); JTextField.setText( ); JTextField3.setText( ); JTextField4.setText( ); iii. System.exit(0); 015 Q. The students of Shiksha Vidyalaya work for different extracurricular activities like community Outreach Program, Swachh Bharat Abhiyan and Traffic Safety Club. The Programmer at the school has developed a GUI application as shown below: A student can participate in more than activities. Each student gets 10 points for each activity- namely Community Outreach Programme, Swachh Bharat ABhiyan and Traffic Safety Club. 5

6 Help the programmer to write code for the following: (i) When Calculate Total Score button is clicked, the points for each activity (that is selected) should be displayed in the text field in from of that activity s checkbox and the Total score should be displayed in the appropriate Text field. 3 (ii) When Clear button is clicked, all the Textfields and Checkboxes should be cleared. 1 (iii) When Stop button is clicked, the application should close. 1 (i) int score=0; if(jcheckbox1.isselected()) jtextfield3.settext("" + 10); score=score+10; if(jcheckbox.isselected()) jtextfield4.settext("" + 10); score=score+10; if(jcheckbox3.isselected()) jtextfield5.settext("" + 10); score=score+10; jtextfield6.settext(""+score); (ii) jtextfield1.settext(""); jtextfield.settext(""); jtextfield3.settext(""); jtextfield4.settext(""); jtextfield5.settext(""); jtextfield6.settext(""); jcheckbox1.setselected(false); jcheckbox.setselected(false); jcheckbox3.setselected(false); (iii) System.exit(0); Class XII IP Question Bank From previous Year CBSE Board Question Papers Database Management System-Concepts Q.1 What is SQL? Ans. SQL is Non-procedural universal data access language used to access and manipulate data stored in nearly all the data bases available currently. SQL standards are defined by ANSI (American National Standards Institute). SQL statements are used to retrieve and update data in a database. SQL works with database programs like MySQL, MS Access, DB, Informix, MS SQL Server, Oracle, Sybase, etc. Q. Differentiate between DDL and DML? (011-1) Ans Data Definition Language (DDL): This is a category of SQL commands. All the commands which are used to create, destroy, or restructure databases and tables come under this category. Examples of DDL commands are - CREATE, DROP, ALTER. Data Manipulation Language (DML): This is a category of SQL commands. All the commands which are used to manipulate data within tables come under this category. Examples of DML commands are - INSERT, UPDATE, DELETE. Q.3 What is a constraint? Ans : A constraints is a condition or check application on a field or set of fields. Example: NOT NULL (ensure that column con not have null value), CHECK (make 6

7 sure that all value satisfy certain criteria), UNIQUE (ensure that all values in a column are different) etc. Q.4 What are single row functions? (010-11) Ans: Single Row Function work with a single row at a time. A single row function returns a result for every row of acquired table Examples of Single row functions are Sqrt(), Concat(), Lcase(), Upper(), Day(), etc. Q.5 Compare CHAR and VARCHAR data types. (01-13) Ans. The CHAR data-type stores fixed length strings such that strings having length smaller than the field size are padded on the right with spaces before being stored. The VARCHAR on the other hand supports variable length strings and therefore stores strings smaller than the field size without modification. Q.6 What are the differences between DELETE and DROP commands of SQL? (013-14) Ans: DELETE is DML command while DROP is a DDL command. Delete is used to delete rows from a table while DROP is used to remove the entire table from the database. Q.7 What do you understand by MySQL Client? (010-11) Ans: MySQL Clients are programs that connect to MySQL Server and issue queries in predefined format. Q.8Differentiate between Alternate key and Candidate key. 011 Answer: Q.9 What is the purpose of ALTR TABLE command in MySql? How is it different from UPDATE command? 011 Answer: ALTER TABLE command is used to modify the structure of a table. GROUP_ CONTROL STRUCTURE S.N O YEAR QUESTION /ANSWER MARK A 7

8 1 016 Identify the odd one out of the following Java statements. State reason for your choice. 1 (i) for (ii) do while (iii) switch (iv) while 014 What will be the values of variables agg and agg1 after the execution of the following loops? What will be displayed in jtextarea1 after the execution of the following loop? for(int I=5; I>=;I--) jtextarea1.settext(jtextarea1.gettext()+ +Integer.toString(I*I)); What will be displayed in jtextarea1 after the execution of the following code: int G=1; do jtextarea1.settext(integer.tostring(g++)); G=G+1; while(g<=5); 5 01 What is the purpose of break keyword while using Switch Case Statement? Illustrate with the help of an example How many times will the following loops execute? Which one of them is Entry Control and which one is Exit? What will be displayed in jtextfield1 and jtextfield after the execution of the following loop? int Sum=0,Last=10; for (int C=1;C<=Last;C+=) Sum++; jtextfield1.settext(integer.tostring(sum)); jtextfield.settext(integer.tostring(c)); Rewrite the following program code using a if statement. String Remarks; int Code=Integer.parseInt(jTextField1.getText()); switch(code) case 0 : Remarks= 100% Tax Exemption ; 8

9 break; case 1 : Remarks= 50% Tax Exemption ; break; case : Remarks= 3% Tax Exemption ; break; default: Remarks=! Invalid Entry ; Observe the following code carefully and find which statement will never get executed in the code? int t=1; //Statement 1 do //Statement //Statement 3 if (t>13) //Statement 4 jtextfield1.settext("something"); //Statement 5 else //Statement 6 jtextfield1.settext("pass"); //Statement 7 t+=3; //Statement 8 //Statement 9 while (t<=15); //Statement What message will be displayed after the execution of the following code? int Age=64,Relaxation=4; int ModiAge=Age Relaxation; if (ModiAge<60) joptionpane.showmessagedialog(null, NOT eligible ); else joptionpane.showmessagedialog(null, eligible ); 1 FUNCTION IN MYSQL S.NO YEAR QUESTION MARKA (i)name Group (Aggregate) function of SQL? (ii) Consider the table Table : Company CompanyCode Donations C C10 NULL C C What output will be displayed by the following SQL Statement? SELECT AVG(Donations) FROM Company; 014 Distinguish between Single Row and Aggregate functions of MySQL. Write one example of each A numeric column MONEY contains write a command to truncate MONEY (i) Up to decimal places. (i.e. expected result ) (ii) (ii) Up to -3 places. (i.e. expected result 34000) Shanya Khanna is using a table Employee. It has the following columns. Admno, Name, Agg, Stream [coloumn Agg contains Aggregate marks] 9

10 She wants to display highest Agg obtained in each Stream. She wrote the following statement: SELECT Stream, MAX(Agg) FROM Employee; But she did not get the desired result. Rewrite the above query with necessary changes to help her get the desired output What is the difference between CURDATE () and DATE () functions? There is a column Salary in a Table EMPLOYEE. The following two statements are giving different outputs. What may be the possible reason? SELECT COUNT(*) FROM EMPLOYEE; SELECT COUNT(SALARY) FROM EMPLOYEE; PROGRAMMING FINDAMENTALS S.NO YEAR QUESTION MARKA Write the purpose of parseint() method Identify invalid variable names out of the following. State reason if 1 invalid. (i) for (ii).salary (iii) salary1 (iv) product What is the difference between statement (i) and (ii) (i) t = (ii) if(t= 1 =) d= Is a string containing a single character same as a char? Write a statement in Java to declare a String type variable with a 1 name City Distinguish between / and % operator What will be the value X1 after execution of the following code: 1 String x1= Spread, x= PEACE ; x1=x.concat(x1); Write Java statement to make a jtextfield1.disabled Mr. Kapoor is a programmer at Ekansh Enterprises. He created 5 digit 1 password and stored in a string variable called strpassword. He wants to store the same password in an Integer type variable called intpassword. Write an appropriate Java statement to transfer the content from strpassword to intpassword Write a java statement to make the jtextfield1 non-editable What will be the contents of Str1 and Str after the following code is executed? String Str,Str1; Str1="Dear Friend"; Str="Hello"; Str1=Str.concat(Str1); GROUP_3 Question Bank of Previous year Web Application Development S.NO QUESTIONS MARKS YEAR. 1 Which HTML tags are used for making a table and adding rows in a HTML document? How is <OL> tag different from <UL> tag of HTML? Differentiate between XML and HTML Write the name of HTML tag used to include numbered list in a HTML Web Page Write HTML code for the following:

11 To provide hyperlink to a website : 6 Differentiate between the <TR> and <TD> tags of HTML with the help of an appropriate example. 7 Name two attributes of FONT tag of HTML (i) Insert a picture in the web page. (ii) Insert an empty line in the web page Give two attributes of Table element of HTML After typing the HTML code using a text editor, how do you see how it would look as a web page? 11 With XML there are no predefined tags Explain in brief with 015 the help of an example outside outside 11

12 Mysql Advanced & Data Base Transitions Q.1 What is a Transaction? Which command is used to make changes done by a transaction 015 permanent on a database? Q. 01 Q.3 01 Q.4 01 Q.5 Mr. Krishnaswami is working on a database and has doubt about the concept of SAVEPOINT in a transaction. Write down the meaning of SAVEPOINT and provide a simple example considering yourself as an online web support executive. 013 Q.6 What is the use of COMMIT statement in SQL? How is it different from ROLLBACK statement? 013 1

13 Q Q Q

14 Q.10 What happens when ROLLBACK command is issued in a transaction process? 013 Q.11 Shanya Khanna is using a table Employee. It has the following columns. Admno, Name, Agg, Stream [ column Agg contains aggregate marks] Shewants to display highest Agg in each stream. She wrote the following statement: SELECT Stream, MAX(Agg) FROM Employee; But she did not get the desired result. Rewrite the above query with necessary changes to help her get the desired output. Q (i) To display all information of the students of humanities in descending order of percentage. (ii) To display Adno, Name, Percentage and Stream of those students whose name is less than 6 characters long. (iii) To add another column Bus)Fees with datatype and size as decimal (8,). (iv) To increase percentage by % of all the humanities students. (v) SELECT COUNT(*) FROM EXAM; (vi) SELECT Sname, Percentage FROM EXAM WHERE Name LIKE N% ; (vii) SELECT ROUND(Percentage,0) FROM EXAM WHERE Adno= R005 ; Q

15 Q Q Q

16 Q Q

17 Q GROUP_4 Networking and Open Source Softwares 1 Expand the following abbreviations and explain in brief : 007 (i) FLOSS (ii) GNU Write one point of difference between a freeware and free software Write one example to show how Data mining is helpful in decision 007 making. 4 How is Post implementation review important during System 007 development Life Cycle? 5 Identify the type of relationship represented in the following statement 007 and draw an Entity Relationship Diagram to show it : A customer can buy many items Ms. Taufiq Ahmed wants to prevent unauthorized access to/from his 011 company's local area network. Write the name of a system (software/ hardware), which he should install to do the same 7 Beauty Lines Fashion Inc. is a fashion company with design unit and market unit 135 metres away from each other. The company recently connected their LANs using Ethernet cable to share the stock related information. But after joining their LANs, they are not able to share the information due to loss of signal in between. Which device out of the following. Should you suggest to be installed for a smooth communication?

18 (i) UPS (ii) Modem (iii) Repeater 8 Which of the following is not a feature of Networking? (i) Resource sharing (ii) Uninterrupted power supply (iii) Reduced cost (iv) Reliability 9 Name any two Indian scripts included in Unicode Mr. Jayanto Das is confused between Shareware and Open source 011 software Mention at least two points of differences to help her understand the same. 11 Identify the type of Topology from the following: 011 (i) If each node is connected with the help of independent cable with the help of a central switching (communication controller) (ii) If each node is connected with the help of a single co-axial cable. 1 Define the following with reference to Threats to Network Security. 011 (i) Trojan Horse (ii) Worm 13 Skte t'wo advantages of networking computers instead of having 014 standalone computers. 14 What was the objective behind developing UNICODE? Expand the following terms : 014 (i) WAN (ii)oss 16 What is the purpose of switch in a network? Identify the following devices : 014 (i) An intelligent device that connects several nodes to form a network and redirects the received information only to intended node(s). (ii) A device that regenerates (amplifies) the received signal and retransmits it to its destination. 18 What is the name of the network topology in which each hode is 014 connected independently using a switch? 19 What is meant by "Denial of Service" with reference to Internet service 014? 0 Why is a switch called an intelligent hub? 014 outside delhi 1 What was the objective behind developing UNICODE? 014 outside delhi Expand the following terms : (i) OSS (ii) ODF 014 outside delhi 3 What is the use of Repeater in a Network? 014 outside delhi 4 Identify the following device : (i) A device that is used to connect different types of networks. It performs the necessary translation so that the connected networks can communicate properly. (ii) A device that converts data from digital bit stream into an 014 outside delhi 18

19 analog signal and vice versa. 5 Write one advantage and one disadvantage of using Optical fibre cable. 014 outside delhi 6 Distinguish between Open Source Software and Proprietary Software. 014 outside 7 Given below are two addresses : (i) (ii) Identify which one of the above is an IP address and which one is a URL. 8 Expand (i) ODF (ii) HTTP delhi 014 compartment 014 compartment 9 How is a Trojan Horse harmful to a network? 014 compartment 30 What do the following top level domains signify? (i).edu (ii).org 014 compartment 31 Write one advantage each of Star and Bus topology used in networking. 014 compartment 3 List two measures to secure a computer network. 014 compartment 33 What is common in all of the following software(s)? Firefox, Perl, PHP, OpenOffice.org Write one feature of the above category of software. 014 compartment 34 A company has 3 departments namely Administrative, Sales, Production. Out of telephone cable, Optical Fiber, Ethernet Cable, which communication medium is best for high speed communication between departments? Name one open source Indian operating system What is the purpose of a Server in a network? What do the following top level domains signify? (i).com (ii).org List measures to secure a network Distinguish between MAC address and IP address with the help of 015 example of each. 40 Distinguish between Phonetic text entry and keymap based entry of 015 typing Indian language text. 41 A school with 0 stand-alone computers is considering networking them together and adding a server. State advantages of doing this Distinguish between LAN and WAN What is the purpose of Modem in network? Write one example of IP Address

20 45 Define Domain Name Resolution Name two threats to security in a network. What is the role of Firewall in Network security? 47 Write one advantage and one disadvantage of Open Source software over Proprietary software. 48 Vidya College has three departments that are to be connected into a network. Which of the following communication medium (out of the given options), should be used by the college for connecting their departments for very effective High Speed communication? Coaxial Cable Optical Fiber Ethernet Cable Also name the type of network (out of PAN/LAN/WAN) formed. 49 State reason why Star topology requires more cable length than Bus topology. 50 Seema needs a network device that should regenerate the signal over the same network before the signal becomes too weak or corrupted. Amit needs a network device to connect two different networks together that work upon different networking models so that the two networks can communicate properly. Name the devices that should be used by Seema and Amit How is a domain name related to an IP address? How is firewall useful in ensuring network security? Two doctors have connected their mobile phones to transfer a picture file of a person suffering from a skin disease. What type of network is formed? Which communication media out of Coaxial cable, Optical fiber, Bluetooth, Satellite link should be used to transfer the file? State reason why Star topology requires more cable length than Bus 016 topology. 55 Open Source Software developers work for the good of 016 Community. Is this statement true? Give reason. 56 What happens during Domain Name Resolution? How is Denial of service attack, a threat to Network security? Identify odd one out of the following: Optical Fiber / Coaxial Cable / Bluetooth / Twisted Pair Cable. Give reason for your answer How is it easier to diagnose fault in Star topology than in Bus topology? What is the purpose of logical address of computer? 017 0

21 61 Does Open source software only mean that the software is free of cost? Give reason for your answer. 6 Which of the following are valid IP addresses? Give reason(s) if invalid. i) ii) iii) iv) Question bank JAVA 1 While working in Netbeans, Ms Kanta Surbhi wants to display 'Cleared' orreattempt required' message depending the marks entered in jtextfield.help her to choose more appropriate statement out of 'If statement' and 'Switch statement'. 1( 01) Write a statement to make jtextarea1 as un-editable. 1( 01) 3 Which HTML tags are used for making a table and adding rows in a HTML document? 1( 01) 4 How is <UL> tag different from <OL> tag of HTML? 1( 01) 5 What will be the value of A and B after execution of the following code: ( 01) int A = 100, B ; for (B=10; B<=1; B++) A+=B; JOptionPane. showmessagedialog (this, A: +A+ B: +B+ ) ; 6 Define data encapsulation with reference to Object Oriented Programming. 1( 01) 7.Name the method is used to extract value of index while using ListBox in Java. 1( 01) 8. What is the difference between the use of isselected and setselected methods used with Jcheckbox in Java. ( 013) 1

22 9. Name any two commonly used methods of JComboBox control? ( 013) 10. What is button group and which control is used with button group? ( 014) 11. Distinguish between / and % operator. ( 014) 1.Which property of Listbox is used to display values in the List. ( 014) 13What will be displayed in jtextareal after the execution of the following loop? for (int f=5, I<=5; I+=5) jtextarea1. settext.(j TextAreal. gettext()+ +Integer.toString(*I) ) ; ( 014) 14.Write the value of the of t after execution of following code. ( 015) Int t; Int s; S=6; t=(8*s++)%7; Q.15 In a switch statement what is the purpose of break statement. ( 015) Q.16Write a Java code to assign value 70 to the variable Y Then decrease the values of Y by 5 and store its value in Z. ( 015) Q.17 What is the difference between SetVisible and Set Enabled Method. ( 016) Q.18 When is If-Else statement preferred over Switch statement. Q.19 Rewrite the following code using While loop. Int sum-0; (for int i=9;i>=1;i--); I%3==0; Sum=sum+I; Else sum=sum I; Q0 The following code has some error(s). Rewrite the correct code underlining all the corrections made. ( 015) int written, interview; written = Integer.parseInt(jTextField1.getText()); interview = Integer.parseInt(jTextField.getText()); if (written <80) OR (interview <15) System.out.println(Not selected); Else; System.out.println( Selected ); Q.1 How many times will the following loop execute : ( 015) int z = 7, sum = 0; do sum = sum + z; z = z+; system.out.println( +z);

23 while (z <=1); Q. Rewrite the following program code using IF ELSE IF instead of SWITCH statement. String rem; int code = Integer.parseInt(jTextField1.getText() ); Switch (code) case 1 : rem = Classes start on 8 th April ; break; case : rem = Classes start on 10 th April ; break; case 3 : rem = Classes start on 1 th April ; break; default : rem = Contact Admin Office ; Q.3 Write the values of sum and t after execution of the following code : ( 015) int sum,t; sum = 7; t = 3; sum = sum + (++t); Q.4 What will be the contents of jtextfield1 and jtextfield after executing the following code : ( 015) String s = Best ; String r = Luck ; String z; Z = r.concat(s); jtextfield1.settext(z); jtextfield.settext(r.touppercase()); Q.5 Write the value that will be assigned to variable x after executing the following statement. ( 016) X=0-5+30/5; Q.6 Consider the statement Choice= Y ; What is the datatype of variable choice? Write a JAVA statement to declare the variable choice. ( 017) Q.7 While working in Netbeans IDE,Amit wants that the text in a Text in a Text area should move to the next line without breaking the word. Which properties would help him to do that? ( 017) 3

24 Q.8 Write a JAVA statement to Append a string ABC to the next line without breaking the word. Which properties would help him to do that? ( 017) Q.9 Rewrite the following code using if else if statement instead of switch ( 017) Switch (success) Case -1 : x1= NO result ; Break; Case 0: x1= Final result- Not Sucessful ; Break; Default : x1 = result not known ; Break; Q.30 Write the values of r and s after the execution of the following code: ( 017) Int p=11; Int q =1; Int r ; Inr s; r =q++; s = P++; r++; 4

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

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

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

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

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

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

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

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

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

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

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

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

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

More information

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

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

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

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

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

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

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

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

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

More information

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

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

15 Create a Java GUI application which has the following interface as shown below:

15 Create a Java GUI application which has the following interface as shown below: 15 Create a Java GUI application which has the following interface as shown below: When the Cal Discount button is clicked, it should display the Bill Amount & the Discount in the respective text fields.

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

Kendriya Vidyalaya No1 Rewa Pre-Board I ( )

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

More information

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

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

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

Summer Holiday Home Work Informatics Practices Class 12 th

Summer Holiday Home Work Informatics Practices Class 12 th Summer Holiday Home Work Informatics Practices Class 12 th COMUTER NETWORKING Very Short Answer Questions 1. Define a network. 2. Write two advantages of networks. 3. Write two disadvantages of networks.

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

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

[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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Question Bank ( ) With Solutions

Question Bank ( ) With Solutions Informatics Practices Class: XII Open Teaching & Learning aterials Question wise & Year wise Collection of Questions from CBSE s AISSCE Question Papers & solutions from 0 to 07. Question Bank (0 07) With

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

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

Sample Question Paper Subject: Informatics Practices Class: XII Session

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

More information

INFORMATICS PRACTICES

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

More information

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

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

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

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

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

Application based QUESTIONS for JAVA

Application based QUESTIONS for JAVA Application based QUESTIONS for JAVA Q1. Write Java Code for the following a) On the Action event of the close button the application gets closed. 1 b) On the Action event of the clear button all the text

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

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

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

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

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

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

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

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

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

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

(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

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

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

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

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

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

More information

Sample 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

SECOND TERMINAL EXAMINATION, 2017 INFORMATICS PRACTICES

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

More information

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

INFORMATICS PRACTICES

INFORMATICS PRACTICES INFORMATICS PRACTICES Time allowed : 3 hours Maximum Marks : 70 Instruction: Please chck that this quetion paper contains 8 printed pages. Code number given on the right hand side of the question paper

More information

COURSE DESIGN CLASS XII ( ) (THEORY) Networking and Open Standards 10 Marks (20 Theory+4 Practical) Periods

COURSE DESIGN CLASS XII ( ) (THEORY) Networking and Open Standards 10 Marks (20 Theory+4 Practical) Periods COURSE DESIGN CLASS XII (2014-15) (THEORY) Unit Topic Period Total Periods Theory Practical 1. Networking and Open Standards 20 4 24 2. Programming 46 44 90 3. Relational Database Management System 50

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

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

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

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

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

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

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

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

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

NEO CONVENT SR. SEC. SCHOOL, PASCHIM VIHAR, DELHI 63 Paper IP, Class XI-C, Unit Test 1 ( ) Answer Key Max. Marks: 40

NEO CONVENT SR. SEC. SCHOOL, PASCHIM VIHAR, DELHI 63 Paper IP, Class XI-C, Unit Test 1 ( ) Answer Key Max. Marks: 40 NEO CONVENT SR. SEC. SCHOOL, PASCHIM VIHAR, DELHI 63 Paper IP, Class XI-C, Unit Test (0.07.07) Answer Key Max. Marks: 40 Q.a) b) c) d) e) f) Ans. What are the major strengths and weaknesses of a computer?

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

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

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

INDIAN SCHOOL SOHAR FIRST TERM EXAM ( ) INFORMATICS PRACTICES

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

More information

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

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

More information

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

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