[go: up one dir, main page]

0% found this document useful (0 votes)
18 views4 pages

Developing Applications - Visual Basic - Worksheet - C

The document is a reinforcement worksheet for Class 8 students focusing on developing applications. It includes multiple-choice questions, true/false statements, and tasks related to Visual Basic programming concepts and GUI controls. Students are required to demonstrate their understanding of programming elements through various exercises.

Uploaded by

avinash.duseja
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)
18 views4 pages

Developing Applications - Visual Basic - Worksheet - C

The document is a reinforcement worksheet for Class 8 students focusing on developing applications. It includes multiple-choice questions, true/false statements, and tasks related to Visual Basic programming concepts and GUI controls. Students are required to demonstrate their understanding of programming elements through various exercises.

Uploaded by

avinash.duseja
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/ 4

The City School Network-SR

Reinforcement Worksheet 2022-23


Worksheet: C

Topic: Developing Applications

Name: ____________________________ Class: 8 Section: ______________

Q.1 Circle the correct answer for each question. [10]


i) A computer program is a collection of _____________that performs a specific task when executed by
a computer.
a) Languages b) Instructions c) Statements
ii) IDE is used to develop computer programs, as well as _____________.
a) Websites b) Mobile Apps c) Both A & B
iii) The ____________ panel allows you to define various properties of the currently selected element on
the design view.
a) Properties b) Text Property c) Name property
iv) The ____________ which defines the title of the selected element in our program design window.
a) Properties b) Text Property c) Name property
v) The Form we have created is initially empty and to make it purposeful we add elements also
called ____________.
a) Objects b) Controls c) Both A & B
vi) __________ shortcut key is used to execute the program in debugging mode.
a) F3 b) F4 c) F5
vii) Every Program needs to do calculations and show results. This is only possible with the use of
____________.

a) Variables b) Controls c) Constants

viii) ___________is a keyword used to declare a new variable in Visual Basic Program.
a) Lib b) Def c) Dim
ix) The variable that can be accessible by all controls within the form called ___________.
a) Private variable b) Public Variable c) String Variable

x) ______________ buttons are similar to Radio Buttons, where the user can select more than one item
in a group of options.
a) Check Box b) Text Box c) Combo Box
Q.2 Read the following statements and categorize them as True or False. [10]

S# Statement True / False

i IDE stands for Internal Design Environment.

ii Text Property Window defines the name of the selected


element in our program code window.

iii In Python program, Indentation refers to the spaces at the


beginning of a code line.

iv Radio Button is one of the popular ways of limiting the user


to pick one option.

v Public variables are the variables that are accessible only to


a certain part of the program or code.

vi In Visual Basic / Visual Studio, we can declare a variable by


a key word Dif.

vii The value range of the Byte data Type in Visual Basic / Visual
Studio is between 0 through 255.

viii The symbols like = > < used between two variables or values
are called conditional or relational operators.

Decision-making statements allow specifying one or more


ix conditions to be executed if the condition is determined to be
True.

x Logical Operators are similar to Boolean expressions that


return Boolean result.
Q.3 Write the name of the following Visual basic Elements / Controls. [06]

GUI Controls Name Definition


Q.4 Write the Code for the following calculator. [14]

You might also like