0% found this document useful (0 votes)
346 views1 page

Computer Science Sample Paper 1 Class 9

This document contains a summative assessment test for Class 9 Computer Science students. It includes multiple choice, true/false, short answer, and programming questions that assess students' knowledge of concepts like menu controls, loops, shortcut keys, and creating executable files in Visual Basic. The test has 10 multiple choice questions worth 1 mark each, 6 true/false questions worth 1 mark each, 8 short answer questions worth between 1-3 marks each, and programming questions worth between 2-5 marks involving writing code to print numbers, create menus, and more.

Uploaded by

Sarthak Аlurkar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
346 views1 page

Computer Science Sample Paper 1 Class 9

This document contains a summative assessment test for Class 9 Computer Science students. It includes multiple choice, true/false, short answer, and programming questions that assess students' knowledge of concepts like menu controls, loops, shortcut keys, and creating executable files in Visual Basic. The test has 10 multiple choice questions worth 1 mark each, 6 true/false questions worth 1 mark each, 8 short answer questions worth between 1-3 marks each, and programming questions worth between 2-5 marks involving writing code to print numbers, create menus, and more.

Uploaded by

Sarthak Аlurkar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Downloaded from www.studiestoday.

com
Bal Bharati Public School, Pitampura
Class-9(2014-15)
Computer Science (Summative Assesment-1)
MM:50 T.A.1.5 Hr.
Q-1 Fill in the blanks: (1x10=10)
1. _____ is the bar below the title bar where the drop-down menus are situated.
2. A Select Case structure works with a single test expression that is evaluated _____, at the top of the structure.
3. Menu controls are created using _____.
4. A _____ is used when you have to repeat a statement or block of statements number of times.
5. Access key is also called _____.
6. In Do while loop, the loop will continue till the condition remain _____.
7. When _____ is clicked, a new menu control is inserted directly above the currently selected control.
8. _____ statement inside For Next structure is used to provide an alternate way to exit.
9. EXE stand for _____.
10. An _____ loop does not terminate.
Q-2 State True or False: (1x6=6)
1. The default value of Step value is 2.
2. Crtl + E is the shortcut key to open menu editor.
3. In Do … loop While the condition is checked at the end.
4. Disabled commands are inactive and grey.
5. Caption is the name used in code to refer to the menu control.
6. We cannot run the exe file from run option in start button.
Q-3 Define: (2x4=8)
1. Shortcut keys.
2. If-then-elseif.
3. Separator bar.
4. For … Next.
Q-4 Differentiate between the following: (2x2=4)
1. Right arrow and left arrow in bottom half of menu editor.
2. Visible and Enabled in top half of menu editor.
Q-5 Give the output for the following: (2x2=4)
1. Private Sub Command1_click()
For I = 500 to 100 step -100
Print I
Next
End Sub
2. Private Sub Command1_click()
Dim school as string
school=”bbps”
Do while school=”bbps”
Print “Temple of learning”
loop
End Sub
Q-6 Write the steps to make an exe file. (2)
Q-7 Write a program for the following: (3x2=6)
1. To print first five odd numbers on the form.
2. Print First 10 multiples of 7.
Q-8 Create following menu and on click of each menu command appropriate code should be written: (5x2=10)

Downloaded from www.studiestoday.com

You might also like