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
Look at the following code sample:
enum Flavor { Vanilla, Strawberry, Chocolate }
The identifiers Vanilla, Strawberry, and Chocolate, which appear inside the braces, are known as ____________.
(Multiple Choice)
4.8/5
(36)
The char data type provides several methods for testing the value of a character.
(True/False)
4.8/5
(39)
Which one of the following character testing methods would you use to determine if a character is a number in the range 0 through 9?
(Multiple Choice)
4.7/5
(44)
A string object's ToUpper method converts the first character in the string to uppercase.
(True/False)
4.9/5
(41)
In C#, string objects have a method named ____________ that is used to tokenize the string.
(Multiple Choice)
4.8/5
(29)
A variable of the char data type can hold up to 256 characters at a time.
(True/False)
4.9/5
(34)
Look at the following code sample:
enum Flavor { Vanilla, Strawberry, Chocolate }
Flavor iceCreamFlavor;
Which one of the following statements assigns the value Flavor.Vanilla to the iceCreamFlavor variable?
(Multiple Choice)
4.7/5
(40)
A(n) ____________ is a data type you can create that contains one or more variables known as fields.
(Multiple Choice)
4.9/5
(32)
The ____________ method returns true if a string object ends with a substring value or false otherwise.
(Multiple Choice)
4.7/5
(37)
When the data in a spreadsheet is exported using the ____________ file format, each row is written to a line, and the values of the cells are separated by commas.
(Multiple Choice)
4.8/5
(45)
When you declare an enumerated type, the enumerators are assigned integer values, starting with 0.
(True/False)
4.8/5
(38)
You can specify the values to be assigned to the enumerators in an enumerated data type.
(True/False)
4.9/5
(37)
The ____________ can be used to retrieve a specific set of characters from a string.
(Multiple Choice)
4.9/5
(37)
Once you have created an instance of a structure, you can access its fields using the dot operator (a period).
(True/False)
4.8/5
(43)
Look at the following code sample:
string tree = "Pear";
Char letter = tree[3];
Which one of the following values is stored in the letter variable?
(Multiple Choice)
4.8/5
(34)
In code, you can determine the number of images that are stored in an ImageList control by getting the value of the control's ____________ property.
(Multiple Choice)
4.9/5
(38)
When you call a string object's Split method, the method extracts tokens from the string and returns them as an array of strings.
(True/False)
4.9/5
(39)
You cannot perform comparison operations directly on structure objects.
(True/False)
4.9/5
(37)
The ____________ method inserts a string into another string.
(Multiple Choice)
4.8/5
(43)
Showing 61 - 80 of 87
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)