• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/17

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

17 Cards in this Set

  • Front
  • Back
A house is to a blueprint as a(n) ___________ is to a class.
object
Every class declaration contains keyword ______________ followed immediately by the class’s name.
class
Operator ____________ creates an object of the class specified to the right of the keyword.
new
Each parameter must specify both a(n) _________ and a(n) ___________ .
type and name
By default, classes that are not explicitly declared in a namespace are implicitly placed in the ____________.
global namespace
When each object of a class maintains its own copy of an attribute, the field that represents the attribute is also known as a(n) __________________.
instance variable
C# provides three simple types for storing real numbers— _______________, _____________ and _____________.
float, double and decimal
Variables of type double represent __________ floating-point numbers.
double-precision
Convert method ___________ returns a decimal value.
ToDecimal
Keyword public is a(n) ___________.
access modifier
Return type ___________ indicates that a method will not return any information when it completes its task.
void
Console method _______________ reads characters until a newline character is encountered, then returns those characters (not including the newline) as a string.
ReadLine
A(n) ______________ is not required if you always refer to a class with its fully qualified class name.
using directive
Variables of type float represent _______________ floating-point numbers.
single-precision
The format specifier ____________ is used to display values in a monetary format.
C
Types are either __________ types or ___________ types.
value types or reference types
For a(n) ______________ , the compiler automatically generates a private instance variable and set and get accessors.
auto-implemented property