Programming, Data Types, Control Structures –
Questions With Proper Solutions
Save
Practice questions for this set
Learn 1 /7 Study using Learn
After the code block.
Choose an answer
During the execution of a for loop,
What is a 'program' in computer
1 2 does the update step execute before
science?
or after the code block runs?
What is the second step in the
What is the primary event triggered
3 4 Program Development Process after
when a user clicks a Button control?
analyzing the problem?
Don't know?
Terms in this set (50)
What is a 'program' in computer A set of coded instructions that enables a machine to
science? perform a desired sequence of operations.
, What tool translates human-readable A compiler
source code into object code?
What programming paradigm relies Event-Driven Programming
on triggers such as clicking a mouse?
What is the very first step in the Analyze the problem (understand inputs, outputs,
Program Development Process? and relationships)
What is the second step in the Design the logic
Program Development Process after
analyzing the problem?
Which window in Visual Studio The Toolbox
contains the UI controls to drag and
drop onto your interface?
Which control is used to insert an PictureBox
image onto a form?
Which property should you change to .Visible
False to hide a label when the
program first runs?
Which control is best for selecting Radio Button
only one option from a mutually
exclusive list?
What control is used to visually group Group Box
other controls together?
What property should you set to True .ReadOnly
to make a TextBox read-only?
What C# code syntax changes the this.BackColor = Color.Red;
background color of the current form
to red?