Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
Visual C#
Quiz 8: More About Processing Data
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 21
Multiple Choice
The ____________ method removes specified characters from a string.
Question 22
Multiple Choice
A(n) ____________ is an object you can create that contains one or more variables known as fields.
Question 23
Multiple Choice
Before you can use a structure to store data, you must create a(n) ____________ of the structure in memory.
Question 24
Multiple Choice
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?
Question 25
Multiple Choice
Before tokenizing a string, you should use the ____________ method to remove leading and/or trailing white-space characters and prevent them from being included in the first and last tokens.
Question 26
Multiple Choice
In programming terms, ____________ are a series of words or other items of data contained in a string that are separated by spaces, commas, or other characters.
Question 27
Multiple Choice
A(n) ____________ is a data type you can create by specifying a set of symbolic names that belong to that data type.
Question 28
Multiple Choice
Structure objects are normally passed ____________ to a method.
Question 29
Multiple Choice
Assuming that cat1 and cat2 are both instances of the Pet structure, which one of the following statements copies cat1 to cat2?
Question 30
Multiple Choice
In order to compare two structure objects, you must compare the individual ____________ of each object.
Question 31
Multiple Choice
Look at the following code sample that creates an array of Pet structure objects: struct Pet { Public string name; Public int age; Public string type; } Const int SIZE = 4; Pet[] cats = new Pet[SIZE]; Which one of the following statements assigns the string "Pickles" to the name member of cats[2]?
Question 32
Multiple Choice
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?