0% found this document useful (0 votes)
5 views13 pages

Event-Driven Programming MCQ PDF

The document is a comprehensive guide on Event-Driven Programming, detailing its principles and application development focusing on user interactions and events. It includes resources such as 11 chapters, 1094 verified questions, and flashcards to aid learning, along with sample questions from various chapters. The recommended textbook for the course is 'Starting out with Visual C# 2012 3rd Edition' by Tony Gaddis.

Uploaded by

le2ovx1ufa
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)
5 views13 pages

Event-Driven Programming MCQ PDF

The document is a comprehensive guide on Event-Driven Programming, detailing its principles and application development focusing on user interactions and events. It includes resources such as 11 chapters, 1094 verified questions, and flashcards to aid learning, along with sample questions from various chapters. The recommended textbook for the course is 'Starting out with Visual C# 2012 3rd Edition' by Tony Gaddis.

Uploaded by

le2ovx1ufa
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/ 13

Event-Driven Programming MCQ

PDF

https://quizplus.com/study-set/1362
11 Chapters
1094 Verified Questions
Event-Driven Programming
MCQ PDF
Cou
Event-Driven Programming focuses on the design and development of applications that

respond to user actions, sensor outputs, or other external and internal events. This course

introduces the fundamental concepts behind event-driven architectures, emphasizing

the role of event handlers, listeners, and callbacks in interactive software systems.

Students will learn how to implement graphical user interfaces, manage input devices,

and coordinate asynchronous operations. Practical assignments will involve building

real-world applications, such as desktop or web-based projects, to reinforce the

understanding of how events drive program flow and system responsiveness.

Recommended Textbook
Starting out with Visual C# 2012 3rd Edition by Tony Gaddis

Available Study Resources on Quizplus


11 Chapters
1094 Verified Questions
1094 Flashcards
Source URL: https://quizplus.com/study-set/1362

Page 2
Chapter 1: Introduction to Computers and Programming
Available Study Resources on Quizplus for this Chatper
161 Verified Questions
161 Flashcards
Source URL: https://quizplus.com/quiz/27177

Sample Questions
Q1) Each byte is divided into eight smaller storage locations known as ____________.
A) nibbles
B) pixels
C) bits
D) words
Answer: C

Q2) In Visual Studio, a window cannot float if its Auto Hide feature is turned on.
A)True
B)False
Answer: True

Q3) The programs that control and manage the basic operations of a computer are
generally referred to as ____________.
A) application software
B) RAM
C) system software
D) output devices
Answer: C

To view all questions and flashcards with answers, click on the resource link above.

Page 3
Chapter 2: Introduction to Visual C
Available Study Resources on Quizplus for this Chatper
131 Verified Questions
131 Flashcards
Source URL: https://quizplus.com/quiz/27178

Sample Questions
Q1) Changing the form's Text property will change the form's name.
A)True
B)False
Answer: False

Q2) In the Designer, the PictureBox tool is located in the CommonControls group of the
Toolbox.
A)True
B)False
Answer: True

Q3) The ____________ property can be used to change the form's width and height
in pixels.
A) Area
B) Resolution
C) Size
D) Rectangle
Answer: C

Q4) Ending a programming statement with a semicolon is not required in C#.


A)True
B)False
Answer: False

To view all questions and flashcards with Page 4 click on the resource link above.
answers,
Chapter 3: Processing Data
Available Study Resources on Quizplus for this Chatper
174 Verified Questions
174 Flashcards
Source URL: https://quizplus.com/quiz/27179

Sample Questions
Q1) After a variable has been declared, you can use the + operator to store a value in the
variable.
A)True
B)False
Answer: False

Q2) A variable's ____________ is the time period during which the variable exists in
memory while the program is executing.
A) span
B) lifetime
C) instance
D) latency
Answer: B

Q3) Parts of a mathematical expression may be grouped with ____________ to force


some operations to be performed before others.
A) parentheses
B) double quotation marks
C) braces
D) semicolons
Answer: A

To view all questions and flashcards with answers, click on the resource link above.

Page 5
Chapter 4: Making Decisions
Available Study Resources on Quizplus for this Chatper
77 Verified Questions
77 Flashcards
Source URL: https://quizplus.com/quiz/27180

Sample Questions
Q1) When the user selects an item in a ListBox, the item is stored in the ListBox's
____________ property.
A) Checked
B) SelectedValue
C) DataSelection
D) SelectedItem

Q2) Because the TryParse methods return either, they are commonly called as the
Boolean expression in an if statement.
A)True
B)False

Q3) ____________ works by automatically deselecting any other items in the same
group when a single item is selected.
A) multiple selection
B) mutually inclusive selection
C) mutually exclusive selection
D) monographic selection

Q4) You cannot compare string variables with string literals.


A)True
B)False

To view all questions and flashcards with answers, click on the resource link above.
Page 6
Chapter 5: Loops, Files, and Random Numbers
Available Study Resources on Quizplus for this Chatper
109 Verified Questions
109 Flashcards
Source URL: https://quizplus.com/quiz/27181

Sample Questions
Q1) When keeping a running total, the accumulator variable can start with any value and
still contain the correct total when the loop finishes.
A)True
B)False

Q2) The second expression that appears in the loop header of the for loop is the
_____________, which is a Boolean expression that controls the execution of the loop.
A) test expression
B) update expression
C) initialization expression
D) control expression

Q3) When the WriteLine method writes data to a file, it writes a null character
immediately following the data.
A)True
B)False

Q4) In general, there are three types of files: text, binary, and bitmap.
A)True
B)False

To view all questions and flashcards with answers, click on the resource link above.

Page 7
Chapter 6: Modularizing Your Code With Methods
Available Study Resources on Quizplus for this Chatper
61 Verified Questions
61 Flashcards
Source URL: https://quizplus.com/quiz/27182

Sample Questions
Q1) The contents of variables and the values of expressions can be passed as
arguments to a method.
A)True
B)False

Q2) Default arguments must be literals or constants.


A)True
B)False

Q3) You can write methods that return any type of data.
A)True
B)False

Q4) You have to write the data type for each parameter variable that is declared in a
parameter list.
A)True
B)False

Q5) When you pass an argument to a method, the argument's data type must be
____________ with the receiving parameter's data type.
A) assignment compatible
B) user friendly
C) data bound
D) memory mapped
Page 8
To view all questions and flashcards with answers, click on the resource link above.
Chapter 7: Arrays and Lists
Available Study Resources on Quizplus for this Chatper
99 Verified Questions
99 Flashcards
Source URL: https://quizplus.com/quiz/27183

Sample Questions
Q1) Because subscript numbering starts at 0, the subscript of the last element in an array
is 1 less than the total number of elements in the array.
A)True
B)False

Q2) You can create an array to hold any one type of value.
A)True
B)False

Q3) The storage locations in an array are known as ____________.


A) values
B) sectors
C) compartments
D) elements

Q4) What special value are the elements of an array of reference type objects set to by
default?
A) 0
B) void
C) -1
D) null

To view all questions and flashcards with answers, click on the resource link above.

Page 9
Chapter 8: More About Processing Data
Available Study Resources on Quizplus for this Chatper
87 Verified Questions
87 Flashcards
Source URL: https://quizplus.com/quiz/27184

Sample Questions
Q1) Enumerators and enum variables can be compared directly with ____________
values.
A) int
B) decimal
C) double
D) string

Q2) ____________ are spaces that appear at the end of a string.


A) Hanging spaces
B) Trailing spaces
C) Padded spaces
D) Reverse tabs

Q3) The ____________ method returns the lowercase equivalent of a character.


A) char.IsLower
B) char.ToLower
C) this.Lowercase
D) this.char.Convert

Q4) You cannot perform comparison operations directly on structure objects.


A)True
B)False

To view all questions and flashcards with answers, click on the resource link above.
Page 10
Chapter 9: Classes and Multiform Projects
Available Study Resources on Quizplus for this Chatper
89 Verified Questions
89 Flashcards
Source URL: https://quizplus.com/quiz/27185

Sample Questions
Q1) If you need to make a property read only, you simply do not write a get accessor for
the property.
A)True
B)False

Q2) In Visual Studio, you can easily switch your view to another form by double-clicking
the form's entry in the ____________ window.
A) Solution Explorer
B) Code
C) Designer
D) Data Sources

Q3) A constructor that accepts arguments is known as a(n) ____________.


A) parameterized constructor
B) alternate constructor
C) constructor method
D) aliased constructor

Q4) When an accessor contains only a single statement, many programmers prefer to
write the entire accessor in one line of code.
A)True
B)False

To view all questions and flashcards with answers, click on the resource link above.
Page 11
Chapter 10: Inheritance and Polymorphism
Available Study Resources on Quizplus for this Chatper
37 Verified Questions
37 Flashcards
Source URL: https://quizplus.com/quiz/27186

Sample Questions
Q1) If the base class does not have a parameterless constructor, the derived class
constructor must use the notation: base(parameterList) to call one of the base class's
parameterized constructors.
A)True
B)False

Q2) When designing an object-oriented program, the best approach is to write a base
class to hold all the general data about an object and then write derived classes for
each specific type of object.
A)True
B)False

Q3) When an "is a" relationship exists between objects, it means that the specialized
object has all of the characteristics of the general object, plus additional characteristics
that make it special.
A)True
B)False

Q4) If the derived class introduces additional methods, properties, or fields, as base
class reference variable cannot access them.
A)True
B)False

To view all questions and flashcards with answers, click on the resource link above.
Page 12
Chapter 11: Databases
Available Study Resources on Quizplus for this Chatper
69 Verified Questions
69 Flashcards
Source URL: https://quizplus.com/quiz/27187

Sample Questions
Q1) ____________ is automatically installed on your system when you install Visual
Studio or Visual Studio Express.
A) Oracle
B) DB2
C) MySQL
D) Microsoft SQL Server Express Edition

Q2) In SQL, you use the ____________ to retrieve the rows in a table.
A) Fetch statement
B) Get expression
C) Select statement
D) Row keyword

Q3) In SQL, strings are enclosed in ____________, not double quotes.


A) single quotes
B) underscores
C) asterisks
D) brackets

Q4) The data that is stored in a database is organized into one or more tables.
A)True
B)False

To view all questions and flashcards with answers, click on the resource link above.
Page 13

You might also like