Isds 505 - Study guides, Class notes & Summaries
Looking for the best study guides, study notes and summaries about Isds 505? On this page you'll find 78 study documents about Isds 505.
Page 4 out of 78 results
Sort by
-
ISDS 505 Final Ch 12 Rated A+
- Exam (elaborations) • 5 pages • 2024
-
Available in package deal
-
- $11.99
- + learn more
ISDS 505 Final Ch 12 Rated A+ 
Labels, Buttons, and CheckBoxes are all ________________________. 
a. GUI objects 
b. Controls 
c. widgets 
d. all of these d. all of these 
All Control objects descend from ________________________ . 
a. Form 
b. Component 
c. ButtonBase 
d. all of these b. Component 
Which of the following is most like a RadioButton? 
a. ListControl 
b. CheckedListBox 
c. PictureBox 
d. Button d. Button 
Which of the following is not a commonly used Co...
-
ISDS 505 Final Ch 10 Graded A+
- Exam (elaborations) • 5 pages • 2024
-
Available in package deal
-
- $10.99
- + learn more
ISDS 505 Final Ch 10 Graded A+ 
Specific types of objects assume features of more general classes through ____________________. 
a. polymorphism 
b. inheritance 
c. encapsulation 
d. structure ️b. inheritance 
Which of the following is not a benefit of using inheritance when creating a new class? 
a. You save computer memory because when you create objects of the new class, storage is not 
required for parent class fields 
b. You reduce the chance of errors, because the parent c...
-
ISDS 505 Final Ch 13 (All Answers Are Correct 100%)
- Exam (elaborations) • 3 pages • 2024
- Available in package deal
-
- $8.49
- + learn more
In C#, events are _____________________________ . 
a. Boolean objects 
b. handled by catch blocks 
c. triggered by actions 
d. only used in GUI programs correct answers c. triggered by actions 
 
A delegate is an object that contains a reference to a(n) _____________________________ . 
a. object 
b. method 
c. class 
d. Control correct answers b. method 
 
C# delegates provide a way for a program to _____________________________ . 
a. take alternative courses that are not determined unt...
-
ISDS 505 Final Ch 10 (with 100% Error-free Answers)
- Exam (elaborations) • 3 pages • 2024
- Available in package deal
-
- $8.99
- + learn more
Specific types of objects assume features of more general classes through ____________________. 
a. polymorphism 
b. inheritance 
c. encapsulation 
d. structure correct answers b. inheritance 
 
Which of the following is not a benefit of using inheritance when creating a new class? 
a. You save computer memory because when you create objects of the new class, storage is not required for parent class fields 
b. You reduce the chance of errors, because the parent class methods have already b...
-
ISDS 505 Final Ch 13 Rated A+ 2024
- Exam (elaborations) • 5 pages • 2024
-
Available in package deal
-
- $10.99
- + learn more
ISDS 505 Final Ch 13 Rated A+ 2024 
In C#, events are _____________________________ . 
a. Boolean objects 
b. handled by catch blocks 
c. triggered by actions 
d. only used in GUI programs ️c. triggered by actions 
A delegate is an object that contains a reference to a(n) _____________________________ . 
a. object 
b. method 
c. class 
d. Control ️b. method 
C# delegates provide a way for a program to _____________________________ . 
a. take alternative courses that are ...
As you read this, a fellow student has made another $4.70
-
ISDS 505 Midterm Study Guide|Complete Questions with Correct Answers Graded A+
- Exam (elaborations) • 7 pages • 2024
-
- $11.29
- + learn more
ISDS 505 Midterm Study Guide|Complete Questions with Correct Answers Graded A+ 
In Object-oriented programming language, the ability to create methods that act appropriately depending on the context is called _________. 
 
inheritance 
instance 
encapsulation 
polymorphism 
polymorphism 
in "using System;", what is "System" referring to? 
 
variable 
class 
namespace 
method 
namespace 
Which of the following is NOT a valid C# identifier 
 
this 
_order 
a1 
a 
this 
Which of the following p...
-
ISDS 505 Exam 1 |Questions with 100% Correct Answers
- Exam (elaborations) • 24 pages • 2024
-
- $10.49
- + learn more
ISDS 505 Exam 1 |Questions with 100% Correct Answers 
Which of the following is NOT a valid C# identifier 
Select one: 
a. _order 
b. a 
c. this 
d. a1 
c. this 
What is NOT considered a keyword by the C# language? 
Select one: 
a. catch 
b. global 
c. implicit 
d. static 
b. global 
In Object-oriented programming language, the ability to create methods that act appropriately depending on the context is called _________. 
Select one: 
a. inheritance 
b. encapsulation 
c. instance 
d. polymorphi...
-
ISDS 505 Exam 1 Questions With Highest Ratings || Fully Solved
- Exam (elaborations) • 30 pages • 2024
-
- $11.99
- + learn more
Which of the following is NOT a valid C# identifier 
Select one: 
a. _order 
b. a 
c. this 
d. a1 - Correct Answer c. this 
 
What is NOT considered a keyword by the C# language? 
Select one: 
a. catch 
b. global 
c. implicit 
d. static - Correct Answer b. global 
 
In Object-oriented programming language, the ability to create methods that act appropriately depending on the context is called _________. 
Select one: 
a. inheritance 
b. encapsulation 
c. instance 
d. polymorphism - Correct An...
-
ISDS 505 Midterm 1 Chapter 5 Loops Terms (with 100% Errorless Solutions)
- Exam (elaborations) • 3 pages • 2024
- Available in package deal
-
- $8.49
- + learn more
A structure that allows repeated execution of a block statement is called a correct answers loop 
 
The body of a while loop can consist of either: correct answers a single statement or a block of statements within curly braces 
 
A loop that never ends is called a correct answers infinite loop 
 
Which of the following is not required of a loop control variable in a correctly working loop? 
 
a. It is reset to its initial value before the loop ends 
b. It is initialized before the loop starts. ...
-
ISDS 505 Midterm 1 Chapter 6 Using Arrays Rated A+
- Exam (elaborations) • 5 pages • 2024
-
Available in package deal
-
- $11.49
- + learn more
ISDS 505 Midterm 1 Chapter 6 Using Arrays Rated A+ 
In an array, every element has the same data type 
The operator used to create objects is new 
Which of the following correctly declares an array of six integers? 
a. int array[6]; 
b. int[] array = 6; 
c. int[6] array; 
d. int[] array = new int[6]; d. int[] array = new int[6]; 
If you define an array to contain 10 elements, then the highest array subscript you can 
use is _____________________. 9 
Initializing an array is ___________...
How did he do that? By selling his study resources on Stuvia. Try it yourself! Discover all about earning on Stuvia