Exam 8: More About Processing Data
Exam 1: Introduction to Computers and Programming161 Questions
Exam 2: Introduction to Visual C131 Questions
Exam 3: Processing Data174 Questions
Exam 4: Making Decisions77 Questions
Exam 5: Loops, Files, and Random Numbers109 Questions
Exam 6: Modularizing Your Code With Methods61 Questions
Exam 7: Arrays and Lists99 Questions
Exam 8: More About Processing Data87 Questions
Exam 9: Classes and Multiform Projects89 Questions
Exam 10: Inheritance and Polymorphism37 Questions
Exam 11: Databases69 Questions
Select questions type
In C#, ____________ are enclosed in single quotation marks.
(Multiple Choice)
4.8/5
(35)
If integer values are assigned to the enumerators in an enumerated type, then each value must be unique.
(True/False)
4.8/5
(32)
Look at the following code sample:
struct Pet
{
Public string name;
Public int age;
Public string type;
}
Pet hound = new Pet();
Which one of the following statements assigns the string "Beagle" to the hound object's type field?
(Multiple Choice)
4.8/5
(33)
When you pass null as an argument to the Split method, the method tokenizes the string using the comma character as the delimiter.
(True/False)
4.9/5
(34)
If you know the ____________ value for a particular image, you can retrieve that image from the ImageList control and display it in a PictureBox.
(Multiple Choice)
4.9/5
(46)
When you create a structure array, each element of the array is structure instance and the fields of each instance are initialized to 0 or null if the field is a reference variable.
(True/False)
4.9/5
(48)
Look at the following code sample:
struct Pet
{
Public string name;
Public int age;
Public string type;
}
List<Pet> birdList = new List<Pet>();
Pet parrot = new Pet();
Which one of the following statements adds the Pet structure named parrot to the List object named birdList?
(Multiple Choice)
4.8/5
(39)
Showing 81 - 87 of 87
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)