Exam 8: More About Processing Data

arrow
  • Select Tags
search iconSearch Question
flashcardsStudy Flashcards
  • Select Tags

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
close modal

Filters

  • Essay(0)
  • Multiple Choice(0)
  • Short Answer(0)
  • True False(0)
  • Matching(0)