SlideShare ist ein Scribd-Unternehmen logo
1 von 4
Downloaden Sie, um offline zu lesen
page-97-100
matter-multiple choice questions
chapter 3 gui programming
book :- information practices central board
page 225-226(q1-9), 228-234(q1-19),
MULTIPLE CHOICE QUESTIONS
1. What will be the output of the program given below, Which number is printed twice?
int sum1 = 3;
sum1++;
jTextField1.setText (“ ” + sum1);
++sum1;
jTextfield2.setText(“ “ + sum1);
jTextfield3.setText (“” + (++ sum1));
jTextfield4.setText (“ ” + sum1++));
jTextfield5.setText (“ ”+sum1));
a. 5 b. 6
c. 4 d. 7
2. Consider the following code snippet:
int anumber= 14;
if (anumber >= 10) {
if (anumber = = 10)
jLabe11.setText (“first string”);
else jLabe11.setText (“second string”);
jLabe12.setText (“third string”);
What will be the output when anumber = 14
b. first string b. second string
c. first string d. second string
third string third string
3. What value for above will print EXCATLY 20 lines to standard output:
int count = 0;
while (count++ < x) {
jTextField.setText (“Line” + count);
}
c. 0 b. 5
c . 10 d. 11
4. What will be the value of total after the loop finishes execution.
int total = 0; // must be initialized before the for (int count= 5; count <= 10; count++)
{
total + = count;
}
jTextField1.setText (“The total is” + total);
a. 10 b. 16
c. 45 d. 36
5. What’s wrong with the while statement?
while ( ( ctr < 5) && (ctr > 30) )
a the logical operator && cannot be used in a test condition.
b the while loop is an exit-condition loop.
c the test condition is always false.
d the test condition is always true.
6. If there is more than one statement in the block of a for loop, which of the following must be
placed at the beginning and the ending of the loop block?
a. parentheses() b. French curly braces {}
c. brackets [] d. arrows <>
7. Given the following information:
int a = 11;
int b= 22;
int c = 33;
int d = 11;
Which of the following statements are true:
1. a == b
2. b!= d
3. c <= b
4. a <c
5. a==d
6. c > a
7. a >= c
a 1), 4) & 7) b 2), 4), 5) & 6)
c 2), 4), 6) & 7) d 3), 5), 6) & 7)
8. The statement i++; is equivalent to
a i = I + 1; b i = i + 1
c i = i – 1 d i - - ;
ANSWER THE FOLLOWING QUESTIONS
1. Explain the following terms:
a) IDE
b) Inspector Window
c) Form
2. Differentiate between :
a) TextField and TextArea
b) ComboBox and ListBox
c) get Text() and set Text()
3. What is the significance of the following properties in TextArea?
LineWrap WrapStyleWord
4. What are List type controls used for?
5. How would you determine weather a combo box is editable or not?
6. List difference selection modes of a list
7. What is a button group? Which controls is generally used with a buttongroup.
8. Write and explain two methods each of check box and radio button.

Weitere ähnliche Inhalte

Was ist angesagt?

(Www.entrance exam.net)-tcs placement sample paper 2
(Www.entrance exam.net)-tcs placement sample paper 2(Www.entrance exam.net)-tcs placement sample paper 2
(Www.entrance exam.net)-tcs placement sample paper 2
Pamidimukkala Sivani
 
7segment scetch
7segment scetch7segment scetch
7segment scetch
Bang Igo
 
POTW #1 Solution
POTW #1 SolutionPOTW #1 Solution
POTW #1 Solution
amcafee3
 

Was ist angesagt? (13)

(Www.entrance exam.net)-tcs placement sample paper 2
(Www.entrance exam.net)-tcs placement sample paper 2(Www.entrance exam.net)-tcs placement sample paper 2
(Www.entrance exam.net)-tcs placement sample paper 2
 
substring & subSquence & find problem solving
substring & subSquence & find problem solving substring & subSquence & find problem solving
substring & subSquence & find problem solving
 
All I Needed for Functional Programming I Learned in High School Algebra
All I Needed for Functional Programming I Learned in High School AlgebraAll I Needed for Functional Programming I Learned in High School Algebra
All I Needed for Functional Programming I Learned in High School Algebra
 
Data Structure - 2nd Study
Data Structure - 2nd StudyData Structure - 2nd Study
Data Structure - 2nd Study
 
Chapter 3 2
Chapter 3 2Chapter 3 2
Chapter 3 2
 
7segment scetch
7segment scetch7segment scetch
7segment scetch
 
Newton's method for MATLAB Code
Newton's method for MATLAB CodeNewton's method for MATLAB Code
Newton's method for MATLAB Code
 
White-Box Testing on Methods
White-Box Testing on MethodsWhite-Box Testing on Methods
White-Box Testing on Methods
 
CLASS XII COMPUTER SCIENCE MONTHLY TEST PAPER
CLASS XII COMPUTER SCIENCE MONTHLY TEST  PAPERCLASS XII COMPUTER SCIENCE MONTHLY TEST  PAPER
CLASS XII COMPUTER SCIENCE MONTHLY TEST PAPER
 
Gate level minimization (1st update)
Gate level minimization (1st update)Gate level minimization (1st update)
Gate level minimization (1st update)
 
Generating code from dags
Generating code from dagsGenerating code from dags
Generating code from dags
 
POTW #1 Solution
POTW #1 SolutionPOTW #1 Solution
POTW #1 Solution
 
FSOFT - Test Java Exam
FSOFT - Test Java ExamFSOFT - Test Java Exam
FSOFT - Test Java Exam
 

Andere mochten auch

Sql queries interview questions
Sql queries interview questionsSql queries interview questions
Sql queries interview questions
Pyadav010186
 

Andere mochten auch (7)

Sql interview questions and answers
Sql interview questions and  answersSql interview questions and  answers
Sql interview questions and answers
 
Oracle Complete Interview Questions
Oracle Complete Interview QuestionsOracle Complete Interview Questions
Oracle Complete Interview Questions
 
Sql queries interview questions
Sql queries interview questionsSql queries interview questions
Sql queries interview questions
 
10 Insightful Quotes On Designing A Better Customer Experience
10 Insightful Quotes On Designing A Better Customer Experience10 Insightful Quotes On Designing A Better Customer Experience
10 Insightful Quotes On Designing A Better Customer Experience
 
How to Build a Dynamic Social Media Plan
How to Build a Dynamic Social Media PlanHow to Build a Dynamic Social Media Plan
How to Build a Dynamic Social Media Plan
 
Learn BEM: CSS Naming Convention
Learn BEM: CSS Naming ConventionLearn BEM: CSS Naming Convention
Learn BEM: CSS Naming Convention
 
SEO: Getting Personal
SEO: Getting PersonalSEO: Getting Personal
SEO: Getting Personal
 

Ähnlich wie 12th information Practices multiple choice questions CBSE INDIA

Sample Exam Questions on Python for revision
Sample Exam Questions on Python for revisionSample Exam Questions on Python for revision
Sample Exam Questions on Python for revision
afsheenfaiq2
 
09 a1ec01 c programming and data structures
09 a1ec01 c programming and data structures09 a1ec01 c programming and data structures
09 a1ec01 c programming and data structures
jntuworld
 
Class xi sample paper (Computer Science)
Class xi sample paper (Computer Science)Class xi sample paper (Computer Science)
Class xi sample paper (Computer Science)
MountAbuRohini
 
IP Sample paper 2 Class XI
IP Sample paper 2 Class XI IP Sample paper 2 Class XI
IP Sample paper 2 Class XI
Poonam Chopra
 
ExamName___________________________________MULTIPLE CH.docx
ExamName___________________________________MULTIPLE CH.docxExamName___________________________________MULTIPLE CH.docx
ExamName___________________________________MULTIPLE CH.docx
gitagrimston
 
Lab Manual IV (1).pdf on C++ Programming practice
Lab Manual IV (1).pdf on C++ Programming practiceLab Manual IV (1).pdf on C++ Programming practice
Lab Manual IV (1).pdf on C++ Programming practice
ranaibrahim453
 
Mcs 10 104 compiler design dec 2014
Mcs 10 104 compiler design dec 2014Mcs 10 104 compiler design dec 2014
Mcs 10 104 compiler design dec 2014
Sreeju Sree
 

Ähnlich wie 12th information Practices multiple choice questions CBSE INDIA (20)

Cbse marking scheme 2006 2011
Cbse marking scheme 2006  2011Cbse marking scheme 2006  2011
Cbse marking scheme 2006 2011
 
Sample Exam Questions on Python for revision
Sample Exam Questions on Python for revisionSample Exam Questions on Python for revision
Sample Exam Questions on Python for revision
 
09 a1ec01 c programming and data structures
09 a1ec01 c programming and data structures09 a1ec01 c programming and data structures
09 a1ec01 c programming and data structures
 
Class xi sample paper (Computer Science)
Class xi sample paper (Computer Science)Class xi sample paper (Computer Science)
Class xi sample paper (Computer Science)
 
IP Sample paper 2 Class XI
IP Sample paper 2 Class XI IP Sample paper 2 Class XI
IP Sample paper 2 Class XI
 
15CS664- Python Application Programming- Question bank 1
15CS664- Python Application Programming- Question bank 115CS664- Python Application Programming- Question bank 1
15CS664- Python Application Programming- Question bank 1
 
Review version 4
Review version 4Review version 4
Review version 4
 
Informatics practises 12th CBSE INDIA 2012-2013 MAIN EXAM paper
Informatics practises 12th CBSE INDIA 2012-2013 MAIN EXAM paperInformatics practises 12th CBSE INDIA 2012-2013 MAIN EXAM paper
Informatics practises 12th CBSE INDIA 2012-2013 MAIN EXAM paper
 
Computer Science(083) Python Pre Board Exam 1 Sample Paper Class 12
Computer Science(083) Python Pre Board Exam 1 Sample Paper Class 12Computer Science(083) Python Pre Board Exam 1 Sample Paper Class 12
Computer Science(083) Python Pre Board Exam 1 Sample Paper Class 12
 
MATLAB Questions and Answers.pdf
MATLAB Questions and Answers.pdfMATLAB Questions and Answers.pdf
MATLAB Questions and Answers.pdf
 
Computer science ms
Computer science msComputer science ms
Computer science ms
 
ExamName___________________________________MULTIPLE CH.docx
ExamName___________________________________MULTIPLE CH.docxExamName___________________________________MULTIPLE CH.docx
ExamName___________________________________MULTIPLE CH.docx
 
Adobe
AdobeAdobe
Adobe
 
Lab Manual IV (1).pdf on C++ Programming practice
Lab Manual IV (1).pdf on C++ Programming practiceLab Manual IV (1).pdf on C++ Programming practice
Lab Manual IV (1).pdf on C++ Programming practice
 
Revision1 C programming
Revision1 C programmingRevision1 C programming
Revision1 C programming
 
LDCQ paper Dec21 with answer key_62cb2996afc60f6aedeb248c1d9283e5.pdf
LDCQ paper Dec21 with answer key_62cb2996afc60f6aedeb248c1d9283e5.pdfLDCQ paper Dec21 with answer key_62cb2996afc60f6aedeb248c1d9283e5.pdf
LDCQ paper Dec21 with answer key_62cb2996afc60f6aedeb248c1d9283e5.pdf
 
Mcs 10 104 compiler design dec 2014
Mcs 10 104 compiler design dec 2014Mcs 10 104 compiler design dec 2014
Mcs 10 104 compiler design dec 2014
 
C test
C testC test
C test
 
White box-sol
White box-solWhite box-sol
White box-sol
 
Ec2203 digital electronics questions anna university by www.annaunivedu.org
Ec2203 digital electronics questions anna university by www.annaunivedu.orgEc2203 digital electronics questions anna university by www.annaunivedu.org
Ec2203 digital electronics questions anna university by www.annaunivedu.org
 

Kürzlich hochgeladen

Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
PECB
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Krashi Coaching
 

Kürzlich hochgeladen (20)

Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 

12th information Practices multiple choice questions CBSE INDIA

  • 1. page-97-100 matter-multiple choice questions chapter 3 gui programming book :- information practices central board page 225-226(q1-9), 228-234(q1-19), MULTIPLE CHOICE QUESTIONS 1. What will be the output of the program given below, Which number is printed twice? int sum1 = 3; sum1++; jTextField1.setText (“ ” + sum1); ++sum1; jTextfield2.setText(“ “ + sum1); jTextfield3.setText (“” + (++ sum1)); jTextfield4.setText (“ ” + sum1++)); jTextfield5.setText (“ ”+sum1)); a. 5 b. 6 c. 4 d. 7 2. Consider the following code snippet: int anumber= 14; if (anumber >= 10) { if (anumber = = 10) jLabe11.setText (“first string”); else jLabe11.setText (“second string”); jLabe12.setText (“third string”); What will be the output when anumber = 14 b. first string b. second string c. first string d. second string third string third string
  • 2. 3. What value for above will print EXCATLY 20 lines to standard output: int count = 0; while (count++ < x) { jTextField.setText (“Line” + count); } c. 0 b. 5 c . 10 d. 11 4. What will be the value of total after the loop finishes execution. int total = 0; // must be initialized before the for (int count= 5; count <= 10; count++) { total + = count; } jTextField1.setText (“The total is” + total); a. 10 b. 16 c. 45 d. 36 5. What’s wrong with the while statement? while ( ( ctr < 5) && (ctr > 30) ) a the logical operator && cannot be used in a test condition. b the while loop is an exit-condition loop. c the test condition is always false. d the test condition is always true. 6. If there is more than one statement in the block of a for loop, which of the following must be placed at the beginning and the ending of the loop block? a. parentheses() b. French curly braces {} c. brackets [] d. arrows <> 7. Given the following information: int a = 11; int b= 22;
  • 3. int c = 33; int d = 11; Which of the following statements are true: 1. a == b 2. b!= d 3. c <= b 4. a <c 5. a==d 6. c > a 7. a >= c a 1), 4) & 7) b 2), 4), 5) & 6) c 2), 4), 6) & 7) d 3), 5), 6) & 7) 8. The statement i++; is equivalent to a i = I + 1; b i = i + 1 c i = i – 1 d i - - ; ANSWER THE FOLLOWING QUESTIONS 1. Explain the following terms: a) IDE b) Inspector Window c) Form 2. Differentiate between : a) TextField and TextArea b) ComboBox and ListBox c) get Text() and set Text() 3. What is the significance of the following properties in TextArea? LineWrap WrapStyleWord 4. What are List type controls used for? 5. How would you determine weather a combo box is editable or not? 6. List difference selection modes of a list
  • 4. 7. What is a button group? Which controls is generally used with a buttongroup. 8. Write and explain two methods each of check box and radio button.