HE AIR FORCE SCHOOL: SUBROTO PARK: DELHI CANTT WT-II SUB: INFORMATICS PRACTICES ANSWER KEY. 1. (a) What will be the output of the code 2

Size: px
Start display at page:

Download "HE AIR FORCE SCHOOL: SUBROTO PARK: DELHI CANTT WT-II SUB: INFORMATICS PRACTICES ANSWER KEY. 1. (a) What will be the output of the code 2"

Transcription

1 HE AIR FORCE SCHOOL: SUBROTO PARK: DELHI CANTT WT-II CLASS : XI SET I SUB: INFORMATICS PRACTICES ANSWER KEY MAX MARK: 30 TIME ALLOWED : 1Hr 10 Mins 1. (a) What will be the output of the code 2 int f=1,i=2; do f*=i; i=i+1; while(i<5); System.out.println(f); Ans: 24 (b) The following code has some errors. Rewrite the correct code. Underline the corrections made. 2 Float ch; switch(ch); case a : case A ; case e : case E : case i : case i : case u : case U : ++vowels; default : ++others; Ans: char ch; int vowvels,others; switch(ch)_ case a : case A : case e : case E : case I : case i : case u : case U : ++vowels; default : ++others; (c) Rewrite the following program code using a for loop: 2 IP class XI WT2 answer key Page 1 of 10

2 int i,sum=0;` while(i<10) sum +=i; i+=2; Ans: int i,sum=0; for(i=0;i<10;i+=2) sum +=i; (d) Write the name of the control used for the following 2 i. User has to give a multiline input TEXTAREA ii. Picture to be displayed. LABEL iii. Execution of statements BUTTON iv. A heading is to be displayed LABEL 2. (a) Differentiate between radio button and check box. Give any 1 method common to these controls? 2 RadioButton: Allow us to choose a single item from a group of jradiobutton options. It is circular in shape and a dot appears when selected. CheckBox: Allow us to choose one or more items from a group of jcheckbox options. It is square in shape and a tick appears when selected. METHOD- isselected() (b) Differentiate between do while and while loop with example. 2 While loop : The while loop is an entry-controlled loop. It means that the loop condition is testedbefore executing the loop body. If the loop condition is initially false, for the first iteration, then loop may not execute even once. The syntax of the while loop is as follows: Syntax while(test expression) loop body do while : Do..While loop is an exit-controlled loop. In the do..while loop, the test occurs at the end of the loop. This ensures that the do..while loop executes the statements included in th e loop body at least once. IP class XI WT2 answer key Page 2 of 10

3 The syntax of the loop is as follows: Syntax : do loop body while (test expression); 3.Create an application in Java using GUI to calculate the largest of 3 floating point numbers? 2 float a = Float.parseFloat(t1.getText()); float b = Float.parseFloat (t2.gettext()); float c = Float.parseFloat (t3.gettext()); if((a>b)&&(a>c)) l1.settext( a is largest ); else if((b>a)&&(b>c)) l1.settext( b is largest ); else l1.settext( c is largest ); 4.Create an application in Java using GUI to find the cube if a float number entered by the user if it is greater than 100 and square of a number if it is less than 100. Take the number as input from the user. 2 float a = Float.parseFloat(t1.getText()); if(a>100) res=a*a*a; else res=a*a; t2.settext( +a); 5.Create an application in Java using GUI to print the table of a number entered by the user. 2 int a = Integer.parseInt(t1.getText()); for (int i=1;i<=10;i++) ta1.append(i*a+ \n ); 6. Create a java application that will print odd numbers from 2 to 100? 2 for (int i=3;i<=100;i++) ta1.append(i+ \n ); 7.Create an application in Java to print the weekday for the corresponding weekday number entered? 3 IP class XI WT2 answer key Page 3 of 10

4 int day = Integer.parseInt(t1.getText()); switch (day) case 1 : l1.settext( Mon ); case 2 : l1.settext( Tues ); case 3 : l1.settext( Wed ); case 4 : l1.settext( thur ); case 5 : l1.settext( Fri ); case 6 : l1.settext( sat ); case 7 : l1.settext( Sun ); default : l1.settext( wrong number entered ); 8.Write an application in Java i. To calculate the net amount based on the conditions given below. 4 Mode of payment Discount Platinum 20% Silver 15% Gold 10% An additional discount of 5% will be given if the bill amount is more than IP class XI WT2 answer key Page 4 of 10

5 jtextfield4.seteditable(false); jtextfield5.seteditable(false); float Offer = 0; // For offer float AddOffer = 0; // For additional offer if (jradiobutton1.isselected()==true) Offer = Float.parseFloat(jTextField2.getText()) * 20/100; else if (jradiobutton2.isselected()==true) Offer = Float.parseFloat(jTextField2.getText()) * 15/100; else if (jradiobutton3.isselected()==true) Offer = Float.parseFloat(jTextField2.getText()) * 10/100; // Displaying the offer amount in jtextfield3 jtextfield3.settext(string.valueof(offer)); // Calculating additional offer amount if (Float.parseFloat(jTextField2.getText()) > 50000) AddOffer = Float.parseFloat(jTextField2.getText()) * 5/100; // Displaying the additionl offer amount in jtextfield4 jtextfield4.settext(string.valueof(addoffer)); jbutton2.setenabled(true); ii. Write the code for clear button to clear all text box contents and disable the calculate discount and calculate net amount button. 2 T1.setText( ); T2.setText( ); T3.setText( ); T4.setText( ); T5.setText( ); Calbutton.setEnabled(false); Calbutton1.setEnabled(false); iii. Write the code for exit button to close the application. 1 System.exit(0); IP class XI WT2 answer key Page 5 of 10

6 THE AIR FORCE SCHOOL: SUBROTO PARK: DELHI CANTT WT-II CLASS : XI SET II SUB: INFORMATICS PRACTICES ANSWER KEY MAX MARK: 40 TIME ALLOWED : 1Hr 10 Mins 1. (a) What will be the output of the code 2 1 int Num = 1; do jtextarea1.settext(num + "\n"); Num = Num + 1; while(num>=10); (c) The following code has some errors. Rewrite the correct code. Underline the corrections made. 2 int sum;value;inct; int i for(i==0;i<=10;i++) sum=sum+i; inct++; system.out.print(inct); Ans : int sum,value,inct; int i; for(i=0;i<=10;i++) sum=sum+i; inct++; System.out.print(inct); (c) Rewrite the following program code using a while loop 2 int i,j; for(i=1;i<=4;i++) System.out.print(j); System.out.println(); Ans: int i=1,j; while(i<=4) System.out.print(j); i++; System.out.println(); IP class XI WT2 answer key Page 6 of 10

7 (d) Write the name of the control used for the following 2 v. User has to give a multiline input TEXTAREA vi. Select nationality RADIO BUTTON vii. Select gender RADIO BUTTON viii. A heading is to be displayed LABEL 2. (a) Differentiate between Text field and Password field components 2 The Text Field displays the obtained text in unencrypted form and we can extract the text using gettext()whreas password field displays the obtained text in encrypted form. This component allows confidential input like passwords which are single line. and we can extract the text using getpassword() (b) Differentiate between entry controlled and exit controlled loop with example. 2 Entry Controlled loop : It means that the loop condition is tested before executing the loop body. If the loop condition is initially false, for the first iteration, then loop may not execute even once.eg while loop. The syntax of the while loop is as follows: Syntax while(test expression) loop body (iii) Exit Controlled loop: an exit-controlled loop tests the condition occurs at the end of the loop. This ensures that the do..while loop executes the statements includ ed in the loop body at least once. The syntax of the loop is as follows: Syntax : do loop body while (test expression); 9.Create an application in Java using GUI to calculate the smallest of 3 floating point numbers? 2 float a = Float.parseFloat(t1.getText()); float b = Float.parseFloat (t2.gettext()); float c = Float.parseFloat (t3.gettext()); if((a<b)&&(a<c)) l1.settext( a is smallest ); else if((b<a)&&(b<c)) l1.settext( b is smallest ); else l1.settext( c is smallest ); IP class XI WT2 answer key Page 7 of 10

8 10. Create an application in Java using GUI to find the area of a square if the choice entered by the user is 1 and area of a rectangle if the choice is 2 and should print invalid for any other choice. 2 int choice = Integer.parseInt(t1.getText()); switch(choice) case 1 : float s = Float.parseFloat(t1.getText()); ans = s*s; case 2: float l = Float.parseFloat(t1.getText()); float b = Float.parseFloat(t2.getText()); ans = l*b; default : lans.settext( invalid ); lans.settext( ans= +ans); 11. Create an application in Java using GUI to print the table of a number entered by the user. 2 int a = Integer.parseInt(t1.getText()); for (int i=1;i<=10;i++) ta1.append(i*a+ \n ); 12. Create an application in Java to print all numbers between the 2 numbers entered by the user. 2 int low = Integer.parseInt(t1.getText()); int high = Integer.parseInt(t1.getText()); for (int i=low;i<=high;i++) ta1.append(i+ \n ); 13. Create an application in Java to print the corresponding month name in case the user enters number from 1 to 6 and should print invalid if number entered is more than 6? 3 int day = Integer.parseInt(t1.getText()); switch (day) IP class XI WT2 answer key Page 8 of 10

9 case 1 : l1.settext( Jan ); case 2 : l1.settext( Feb ); case 3 : l1.settext( Mar ); case 4 : l1.settext( Apr ); case 5 : l1.settext( May ); case 6 : l1.settext( June ); default : l1.settext( invalid ); 14. Write an application for the following. i. Write the coding for CALCULATE button which calculates and displays the discount percentage and discounted price based on the table given below 4 OPTION DISCOUNT % CASH NIL CREDIT CARD 25% IP class XI WT2 answer key Page 9 of 10

10 float dis,disc; float amt = Float.parseFloat(t1.getText()); if(jradiobutton1.isselected()==true ) Dis=0; else if(jradiobutton2.isselected()==true ) Dis=25; T2.setText(dis+ % ): Disc=amt-amt*dis/100; T3.setText(disc+ ); ii. Write the code for clear button to clear all text box contents and disable the calculate button. 2 T1.setText( ); T2.setText( ); T3.setText( ); Cmdbutton.setEnabled(false); iii. Write the code for exit button to close the application. 1 System.exit(0); IP class XI WT2 answer key Page 10 of 10

INDIAN LEARNERS OWN ACADEMY,kuwait

INDIAN LEARNERS OWN ACADEMY,kuwait Submission Date: 22-03-2018 INDIAN LEARNERS OWN ACADEMY,kuwait INFORMATICS PRACTICES - XII ASSIGNMENT 2 PROGRAMMING FUNDAMENTALS 1. Find the output int number1=7,number2=8; int second=73; if(number1>0

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

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

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

3-Rewrite the following program code using a Switch statement: 2

3-Rewrite the following program code using a Switch statement: 2 PRACTICE PAPER-IP CONVERSION 1-Rewrite the code using switch.case. 2 int a=3; if(a= =3) System.out.println( Number is odd ); if(a= =7) System.out.println( Number is odd ); if(a= =5) System.out.println(

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

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

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

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

More information

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

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

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

I SEMESTER EXAM : : XI :COMPUTER SCIENCE : MAX MARK a) What is the difference between Hardware and Software? Give one example for each.

I SEMESTER EXAM : : XI :COMPUTER SCIENCE : MAX MARK a) What is the difference between Hardware and Software? Give one example for each. I SEMESTER EXAM : : XI :COMPUTER SCIENCE : MAX MARK 70. a) What is the difference between Hardware and Software? Give one example for each. b) Give two differences between primary and secondary memory.

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

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

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

DEHRADUN PUBLIC SCHOOL II-TERM ASSIGNMENT ( ) SUBJECT-INFORMATICS PRACTICES (065) CLASS XI

DEHRADUN PUBLIC SCHOOL II-TERM ASSIGNMENT ( ) SUBJECT-INFORMATICS PRACTICES (065) CLASS XI DEHRADUN PUBLIC SCHOOL II-TERM ASSIGNMENT (2016-17) SUBJECT-INFORMATICS PRACTICES (065) CLASS XI Chapter 3. Getting Started with Programming using IDE 1. How is ordinary compilation different from Java

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

CAMBRIDGE SCHOOL, NOIDA ASSIGNMENT 1, TOPIC: C++ PROGRAMMING CLASS VIII, COMPUTER SCIENCE

CAMBRIDGE SCHOOL, NOIDA ASSIGNMENT 1, TOPIC: C++ PROGRAMMING CLASS VIII, COMPUTER SCIENCE CAMBRIDGE SCHOOL, NOIDA ASSIGNMENT 1, TOPIC: C++ PROGRAMMING CLASS VIII, COMPUTER SCIENCE a) Mention any 4 characteristic of the object car. Ans name, colour, model number, engine state, power b) What

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

http:/// Sample Paper 2011 Class XII Subject Informatics Practices 1. Answer the following questions: (a) Define: i. IP address ii. Modem 2 (b) What is Denial-of-service? 2 (c) Write the purpose of the

More information

1. Answer the following : a) What do you mean by Open Source Software. Give an example. (2)

1. Answer the following : a) What do you mean by Open Source Software. Give an example. (2) THE AIR FORCE SCHOOL Class XI First Terminal Examination 2017-18 Computer Science (083) Time: 3 hrs. M. Marks : 70 General Instructions : (i) All the questions are compulsory. (ii) Programming Language

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

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

IMPORTANT JAVA APPLICATION

IMPORTANT JAVA APPLICATION IMPORTANT JAVA APPLICATION Q1. Subodh works in Raymond International School. He has developed the following interface in Netbeans to calculate the total fee : Controls Name Purpose jtextfield txtname Student

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

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

Programming in Haskell Aug-Nov 2015

Programming in Haskell Aug-Nov 2015 Programming in Haskell Aug-Nov 2015 LECTURE 14 OCTOBER 1, 2015 S P SURESH CHENNAI MATHEMATICAL INSTITUTE Enumerated data types The data keyword is used to define new types data Bool = False True data Day

More information

D.A.V. PUBLIC SCHOOL, NEW PANVEL

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

More information

Java Programming Language Mr.Rungrote Phonkam

Java Programming Language Mr.Rungrote Phonkam 5 Java Programming Language Mr.Rungrote Phonkam rungrote@it.kmitl.ac.th Contents 1. Expressions 2. Control Flow 2.1 Condition 2.2 Multiple Branch 2.3 Lopps 2.4 Jump ก ก 1. Expressions ก ก ก ก ก 5/b%2+10;

More information

Lecture Notes: ESC 101

Lecture Notes: ESC 101 Lecture Notes: ESC 101 Date: 26/02/2008 // Program to Display calendar of a given month import java.util.scanner; class Year int year; Year() this.year=2000; Year(int y) year=(y>1900)? y:1900; //if year

More information

SAMPLE QUESTIONS FOR DIPLOMA IN INFORMATION TECHNOLOGY; YEAR 1

SAMPLE QUESTIONS FOR DIPLOMA IN INFORMATION TECHNOLOGY; YEAR 1 FACULTY OF SCIENCE AND TECHNOLOGY SAMPLE QUESTIONS FOR DIPLOMA IN INFORMATION TECHNOLOGY; YEAR 1 ACADEMIC SESSION 2014; SEMESTER 3 PRG102D: BASIC PROGRAMMING CONCEPTS Section A Compulsory section Question

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

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

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

COMPUTER APPLICATIONS

COMPUTER APPLICATIONS COMPUTER APPLICATIONS (Theory) (Two hours) Answers to this Paper must be written on the paper provided separately. You will not be allowed to write during the first 15 minutes. This time is to be spent

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

APCS Semester #1 Final Exam Practice Problems

APCS Semester #1 Final Exam Practice Problems Name: Date: Per: AP Computer Science, Mr. Ferraro APCS Semester #1 Final Exam Practice Problems The problems here are to get you thinking about topics we ve visited thus far in preparation for the semester

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

CS141 Programming Assignment #8

CS141 Programming Assignment #8 CS141 Programming Assignment #8 Due Sunday, April 14th. 1- Write a class with methods to do the following output: a) 5 5 5 5 5 4 4 4 4 3 3 3 2 2 1 b) 1 2 3 4 5 4 3 2 1 1 2 3 4 * 4 3 2 1 1 2 3 * * * 3 2

More information

BRAIN INTERNATIONAL SCHOOL. Term-I Class XI Sub: Computer Science Revision Worksheet

BRAIN INTERNATIONAL SCHOOL. Term-I Class XI Sub: Computer Science Revision Worksheet BRAIN INTERNATIONAL SCHOOL Term-I Class XI 2018-19 Sub: Computer Science Revision Worksheet Chapter-1. Computer Overview 1. Which electronic device invention brought revolution in earlier computers? 2.

More information

Subject: PIC Chapter 2.

Subject: PIC Chapter 2. 02 Decision making 2.1 Decision making and branching if statement (if, if-, -if ladder, nested if-) Switch case statement, break statement. (14M) 2.2 Decision making and looping while, do, do-while statements

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

CS111: PROGRAMMING LANGUAGE II

CS111: PROGRAMMING LANGUAGE II CS111: PROGRAMMING LANGUAGE II Computer Science Department Lecture 1(c): Java Basics (II) Lecture Contents Java basics (part II) Conditions Loops Methods Conditions & Branching Conditional Statements A

More information

CHAPTER 5 FLOW OF CONTROL

CHAPTER 5 FLOW OF CONTROL CHAPTER 5 FLOW OF CONTROL PROGRAMMING CONSTRUCTS - In a program, statements may be executed sequentially, selectively or iteratively. - Every programming language provides constructs to support sequence,

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

INFORMATICS PRACTICES

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

More information

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

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

More information

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

(c) ((!(a && b)) == (!a!b)) TRUE / FALSE. (f) ((!(a b)) == (!a &&!b)) TRUE / FALSE. (g) (!(!a) && (c-d > 0) && (b!b))

(c) ((!(a && b)) == (!a!b)) TRUE / FALSE. (f) ((!(a b)) == (!a &&!b)) TRUE / FALSE. (g) (!(!a) && (c-d > 0) && (b!b)) ComS 207: Programming I Midterm 2, Tue. Mar 21, 2006 Student Name: Student ID Number: Recitation Section: 1. True/False Questions (10 x 1p each = 10p) Determine the value of each boolean expression given

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

Conditional Control Structures. Dr.T.Logeswari

Conditional Control Structures. Dr.T.Logeswari Conditional Control Structures Dr.T.Logeswari TEST COMMAND test expression Or [ expression ] Syntax Ex: a=5; b=10 test $a eq $b ; echo $? [ $a eq $b] ; echo $? 2 Unix Shell Programming - Forouzan 2 TEST

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

C++ Programs(CONDITIONAL CONSTRUCTS & LOOPS)

C++ Programs(CONDITIONAL CONSTRUCTS & LOOPS) DELHI PUBLIC SCHOOL, Durgapur QUESTION BANK & REVISION SHEET OF COMPUTER FOR FINAL EXAMINATION (207-8) CLASS-VII Computer C++ Programs(CONDITIONAL CONSTRUCTS & LOOPS) Q.WAP to accept any three number and

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

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

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

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

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

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

More information

INFORMATICS PRACTICES

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

More information

INDIAN SCHOOL MUSCAT THIRD PRELIMINARY EXAMINATION INFORMATICS PRACTICES

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

More information

DECISION CONTROL AND LOOPING STATEMENTS

DECISION CONTROL AND LOOPING STATEMENTS DECISION CONTROL AND LOOPING STATEMENTS DECISION CONTROL STATEMENTS Decision control statements are used to alter the flow of a sequence of instructions. These statements help to jump from one part of

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

SBOA SCHOOL & JUNIOR COLLEGE, CHENNAI 101 COMPUTER SCIENCE CLASS: XI HALF YEARLY EXAMINATION MAX MARKS:70 CODE - A DURATION : 3 Hours

SBOA SCHOOL & JUNIOR COLLEGE, CHENNAI 101 COMPUTER SCIENCE CLASS: XI HALF YEARLY EXAMINATION MAX MARKS:70 CODE - A DURATION : 3 Hours SBOA SCHOOL & JUNIOR COLLEGE, CHENNAI 101 COMPUTER SCIENCE CLASS: XI HALF YEARLY EXAMINATION 2016 MAX MARKS:70 CODE - A DURATION : 3 Hours All questions are compulsory. Do not change the order of the questions

More information

SECOND TERMINAL EXAMINATION, 2017 INFORMATICS PRACTICES

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

More information

12 CREATING NEW TYPES

12 CREATING NEW TYPES Lecture 12 CREATING NEW TYPES of DATA Typedef declaration Enumeration Structure Bit fields Uninon Creating New Types Is difficult to solve complex problems by using programs written with only fundamental

More information

Chapter 3. Iteration

Chapter 3. Iteration Chapter 3 Iteration Iteration Iteration is the form of program control that allows us to repeat a section of code. For this reason this form of control is often also referred to as repetition. The programming

More information

CHAPTER 3 JAVA GUI PROGRAMMING REVISION TOUR - I. The smallest individual unit a program is known as a Token. Java has following types of tokens:

CHAPTER 3 JAVA GUI PROGRAMMING REVISION TOUR - I. The smallest individual unit a program is known as a Token. Java has following types of tokens: CHAPTER 3 JAVA GUI PROGRAMMING REVISION TOUR - I TOKENS The smallest individual unit a program is known as a Token. Java has following types of tokens: Keywords Identifiers Literals Punctuators/Separators

More information

PROGRAMMING FUNDAMENTALS

PROGRAMMING FUNDAMENTALS PROGRAMMING FUNDAMENTALS Q1. Name any two Object Oriented Programming languages? Q2. Why is java called a platform independent language? Q3. Elaborate the java Compilation process. Q4. Why do we write

More information

C212 Early Evaluation Exam Mon Feb Name: Please provide brief (common sense) justifications with your answers below.

C212 Early Evaluation Exam Mon Feb Name: Please provide brief (common sense) justifications with your answers below. C212 Early Evaluation Exam Mon Feb 10 2014 Name: Please provide brief (common sense) justifications with your answers below. 1. What is the type (and value) of this expression: 5 * (7 + 4 / 2) 2. What

More information

CHAPTER 2.2 CONTROL STRUCTURES (ITERATION) Dr. Shady Yehia Elmashad

CHAPTER 2.2 CONTROL STRUCTURES (ITERATION) Dr. Shady Yehia Elmashad CHAPTER 2.2 CONTROL STRUCTURES (ITERATION) Dr. Shady Yehia Elmashad Outline 1. C++ Iterative Constructs 2. The for Repetition Structure 3. Examples Using the for Structure 4. The while Repetition Structure

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

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

CSC128 FUNDAMENTALS OF COMPUTER PROBLEM SOLVING Chapter 4: Repetition Control Structure

CSC128 FUNDAMENTALS OF COMPUTER PROBLEM SOLVING Chapter 4: Repetition Control Structure Learning Objectives At the end of this chapter, student should be able to: Understand the requirement of a loop Understand the Loop Control Variable () Use increment (++) and decrement ( ) operators Program

More information

AIMMS Function Reference - Date Time Related Identifiers

AIMMS Function Reference - Date Time Related Identifiers AIMMS Function Reference - Date Time Related Identifiers This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com Aimms 3.13 Date-Time

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

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

ARRAYS(II Unit Part II)

ARRAYS(II Unit Part II) ARRAYS(II Unit Part II) Array: An array is a collection of two or more adjacent cells of similar type. Each cell in an array is called as array element. Each array should be identified with a meaningful

More information

Java Applets. Last Time. Java Applets. Java Applets. First Java Applet. Java Applets. v We created our first Java application

Java Applets. Last Time. Java Applets. Java Applets. First Java Applet. Java Applets. v We created our first Java application Last Time v We created our first Java application v What are the components of a basic Java application? v What GUI component did we use in the examples? v How do we write to the standard output? v An

More information

Conditionals. For exercises 1 to 27, indicate the output that will be produced. Assume the following declarations:

Conditionals. For exercises 1 to 27, indicate the output that will be produced. Assume the following declarations: Conditionals For exercises 1 to 27, indicate the output that will be produced. Assume the following declarations: final int MAX = 25, LIMIT = 100; int num1 = 12, num2 = 25, num3 = 87; 1. if (num1 < MAX)

More information

OPERATING MANUAL FOR AUTOMATIC SCHOOL BELL Ringing bell in manual mode: When unit is at Home Screen, showing date and time on

OPERATING MANUAL FOR AUTOMATIC SCHOOL BELL Ringing bell in manual mode: When unit is at Home Screen, showing date and time on OPERATING MANUAL FOR AUTOMATIC SCHOOL BELL Ringing bell in manual mode: When unit is at Home Screen, showing date and time on the screen press sift key. Screen will change as shown below MANUAL MODE INC=ON

More information

Downloaded from

Downloaded from SURE SHOT QUESTIONS Long Questions:- Subject:- Informatics Practices Class- XII 1. Deb Bastralaya has developed a GUI application for their company as shown below The company accepts payments in 3 modes-

More information

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

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

More information

A control structure refers to the way in which the Programmer specifies the order of executing the statements

A control structure refers to the way in which the Programmer specifies the order of executing the statements Control Structures A control structure refers to the way in which the Programmer specifies the order of executing the statements The following approaches can be chosen depending on the problem statement:

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

D.A.V PUBLIC SCHOOLS, RANCHI ZONE FIRST SUMMATIVE ASSESSMENT CLASS - XI COMPUTER SCIENCE

D.A.V PUBLIC SCHOOLS, RANCHI ZONE FIRST SUMMATIVE ASSESSMENT CLASS - XI COMPUTER SCIENCE D.A.V PUBLIC SCHOOLS, RANCHI ZONE FIRST SUMMATIVE ASSESSMENT 2011-2012 CLASS - XI COMPUTER SCIENCE Q1. Input a number and then print the sum of the digits. [4] Q2. Input a number and then print its reverse.

More information

SCHEDULED PROGRAMMES/COURSES APRIL 2017 MARCH 2018 (MIND KINGSTON / MANDEVILLE CAMPUSES & MONTEGO BAY)

SCHEDULED PROGRAMMES/COURSES APRIL 2017 MARCH 2018 (MIND KINGSTON / MANDEVILLE CAMPUSES & MONTEGO BAY) SCHEDULED PROGRAMMES/ IL CH 2 SCHEDULED PROGRAMMES/ IL CH Award Categories Certificate Advanced Records (Modules 1 5)** Auditing Fundamentals Level 1: Modules 1 4 (NEW) Budget Preparation & Effective Corporate

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

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

CS141 Programming Assignment #4

CS141 Programming Assignment #4 Due Monday, Oct 31. CS141 Programming Assignment #4 1- Write a program to read in 10 numbers and compute the average, maximum and minimum values (using both while and for loop). Solution 1: * assignment

More information

UNIVERSITY OF MALTA FACULTY OF INFORMATION AND COMMUNICATION TECHNOLOGY Department of Computer Information Systems

UNIVERSITY OF MALTA FACULTY OF INFORMATION AND COMMUNICATION TECHNOLOGY Department of Computer Information Systems UNIVERSITY OF MALTA FACULTY OF INFORMATION AND COMMUNICATION TECHNOLOGY Department of Computer Information Systems May/June 2015 Assessment Session CIS1111 C Programming for Engineers X June 2015 Examination

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

Name :. Roll No. :... Invigilator s Signature : INTRODUCTION TO PROGRAMMING. Time Allotted : 3 Hours Full Marks : 70

Name :. Roll No. :... Invigilator s Signature : INTRODUCTION TO PROGRAMMING. Time Allotted : 3 Hours Full Marks : 70 Name :. Roll No. :..... Invigilator s Signature :.. 2011 INTRODUCTION TO PROGRAMMING Time Allotted : 3 Hours Full Marks : 70 The figures in the margin indicate full marks. Candidates are required to give

More information

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

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

More information

CS 170 Exam 2. Version: A Spring Name (as in OPUS) (print): Instructions:

CS 170 Exam 2. Version: A Spring Name (as in OPUS) (print): Instructions: CS 170 Exam 2 Version: A Spring 2016 Name (as in OPUS) (print): Section: Seat Assignment: Instructions: Keep your eyes on your own paper and do your best to prevent anyone else from seeing your work. Do

More information

C# Fundamentals. Hans-Wolfgang Loidl School of Mathematical and Computer Sciences, Heriot-Watt University, Edinburgh

C# Fundamentals. Hans-Wolfgang Loidl School of Mathematical and Computer Sciences, Heriot-Watt University, Edinburgh C# Fundamentals Hans-Wolfgang Loidl School of Mathematical and Computer Sciences, Heriot-Watt University, Edinburgh Semester 1 2018/19 H-W. Loidl (Heriot-Watt Univ) F20SC/F21SC 2018/19

More information

INDIAN SCHOOL MUSCAT FINAL TERM EXAMINATION INFORMATICS PRACTICES

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

More information

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

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

More information

DEHRADUN PUBLIC SCHOOL ASSIGNMENT SUBJECT-INFORMATICS PRACTICES (065) CLASS XI

DEHRADUN PUBLIC SCHOOL ASSIGNMENT SUBJECT-INFORMATICS PRACTICES (065) CLASS XI DEHRADUN PUBLIC SCHOOL ASSIGNMENT 2018-19 SUBJECT-INFORMATICS PRACTICES (065) CLASS XI CH-1 HARDWARE CONCEPTS Q1. Arrange the following units of memory in ascending order of their capacity: Terabyte, Petabyte,

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

Accelerating Information Technology Innovation

Accelerating Information Technology Innovation Accelerating Information Technology Innovation http://aiti.mit.edu Cali, Colombia Summer 2012 Lección 03 Control Structures Agenda 1. Block Statements 2. Decision Statements 3. Loops 2 What are Control

More information