C Sharp Programming Terms

C Sharp Programming Terms

memorize.aimemorize.ai (lvl 286)
Section 1

Preview this deck

When a user types a value into a TextBox in an executing program, it becomes the value for the ____ property of the TextBox.

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

1

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (252)

Section 1

(50 cards)

When a user types a value into a TextBox in an executing program, it becomes the value for the ____ property of the TextBox.

Front

Text

Back

A program that accepts console input from the user is a (n) ____ program.

Front

Interactive

Back

An expression containing a (n) ____ operator has a Boolean value.

Front

Comparison

Back

A (n) ____ is a synonym for a base class.

Front

Parent class

Back

____ represent(s) information that a method needs to perform its task.

Front

Arguments

Back

The equal sign (=) is the C# assignment operator.

Front

True

Back

____ is the technique of packaging an object's attributes and methods into a cohesive unit that can be used as an undivided entity.

Front

Encapsulation

Back

The ____ behind any program involves executing the various statements and procedures in the correct order to produce the desired results.

Front

Logic

Back

If you make a change to a program and try to rerun it, you get an error message that starts with "Could not copy...". The solution is to ____ and then try again.

Front

Close the previous execution

Back

So much code is needed to create even the simplest of GUI programs that it is far more practical to develop the user interface visually in an IDE.

Front

True

Back

For convenience, the individual operations used in a computer program often are grouped into logical units called ____.

Front

Methods

Back

C# programmers must use Pascal casing when creating method names to produce an executable program.

Front

False

Back

A data item is ____________________ when it cannot be changed after a program is compiled.

Front

Constant

Back

When programmers adopt the style of capitalizing the first letter of all new words in an identifier, even the first one, they call the style ____.

Front

Pascal casing

Back

To change the size of a button on a Form, you can drag the button's ____.

Front

Handles

Back

The environment the user sees is a program's ____.

Front

Interface

Back

If a Button's name is reportButton, then the default name of its Click () method is ____.

Front

reportButton_Click ()

Back

An exception of the ____ class is thrown when an attempt is made to store an element of the wrong type within an array.

Front

System.ArrayTypeMismatchException

Back

You can change a Label's ____ property to display any string of text.

Front

Text

Back

In C#, you use the ____ data type to hold a series of characters.

Front

String

Back

To purposefully override the unifying type in an arithmetic operation, use a (n) ____ by placing the desired result type in parentheses followed by the variable or constant to be cast.

Front

Explicit cast

Back

Operators are used to manipulate values in a program. For example, in the expression X + Y, + is an operator. The values that operators use, such as X and Y, are called ____________________.

Front

Operands

Back

The Visual Studio IDE gives you advanced features such as syntax coloring and automatic statement completion.

Front

True

Back

The C# programming language was developed as an object-oriented and component-oriented language. True

Front

True

Back

Giving a value to a variable, as in the statement someVariable = 5, is called a (n) ___________________.

Front

Assignment

Back

When programmers do not capitalize the first letter of an identifier but do capitalize each new word, they call the style ____________________.

Front

Camel casing

Back

A (n) ____ is a named location in computer memory that can hold different values at different points in time.

Front

Variable

Back

A method ____ includes the method name and information about what will pass into and be returned from a method.

Front

Header

Back

The ____ in the Visual C# IDE main window lies horizontally across the top of the window and includes a File menu from which you open, close, and save projects.

Front

Main menu

Back

A ____ consists of a pair of curly braces containing a number that indicates the desired variable's position in a list that follows the string.

Front

Placeholder

Back

The keyword ____ is used to declare a named constant.

Front

const

Back

Operators that have only one argument, such as the prefix and postfix increment operators, are called ____________________ operators.

Front

Unary

Back

A (n) ____ number is one that contains decimal positions.

Front

Floating-point

Back

You are not required to create a Click () method for a Button.

Front

True

Back

+= is the C# ____ operator; it adds the operand on the right to the operand on the left and assigns it to the operand on the left in one step.

Front

Add and assign

Back

After you write and save a program, you must ____ it into intermediate language.

Front

Compile

Back

The ____ Object class method returns a string that holds the name of the class, just as GetType () does.

Front

ToString

Back

As an alternative to the Convert class methods, you can use a (n) ____ method to convert a string to a number.

Front

Parse()

Back

The order in which controls receive focus from successive Tab key presses is their ____.

Front

Tab order

Back

The Form class contains approximately ____ properties.

Front

100

Back

Programmers sometimes refer to encapsulation as using a ____.

Front

Black box

Back

C# makes implicit conversions when casting one data type to another. When a derived class object is assigned to its ancestor's data type, the conversion can more specifically be called a (n) ________.

Front

Implicit reference conversion

Back

The Exception class overrides ____ to provide a descriptive error message so a user can receive precise information about the nature of any Exception that is thrown.

Front

ToString

Back

Professional programmers usually do not retain the default names for Forms and controls.

Front

True

Back

Programmers use a computer program called a (n)____ to translate their high-level language statements into machine code.

Front

Compiler

Back

The non-conditional Boolean logical inclusive OR operator is written as ____.

Front

|

Back

A class describes the attributes and methods of every object that is a (n) ___, or example, of that class.

Front

Instance

Back

A Button's ____________________ property indicates whether the button is visible.

Front

Visible

Back

In arithmetic operations with operands of dissimilar types, a (n)____ is the automatic conversion of nonconforming operands to a unifying type.

Front

Implicit cast

Back

Named computer memory locations are called ____________________ because they hold values that might vary.

Front

Variables

Back

Section 2

(50 cards)

If you ever find yourself in the midst of executing an infinite loop, you can break out by holding down the ____ key and pressing the C key or the Break (Pause) key.

Front

Ctrl

Back

A (n) ____________________ decision has two possible resulting actions.

Front

Dual-alternative or dual alternative

Back

You can use the conditional ____ operator when you want some action to occur even if only one of two conditions is true.

Front

Or

Back

The list of values provided for an array is a (n) ____________________.

Front

Initializer list

Back

The ____ accessibility modifier limits method access to the class that contains the method.

Front

Private

Back

A Boolean expression is evaluated within every while loop to determine whether the loop body will execute.

Front

True

Back

With ____, if a programmer changes the way in which a method internally works, programs that use that method will not be affected and will not need to be modified.

Front

Implementation hiding

Back

The non-conditional Boolean logical AND operator is written as ____.

Front

&

Back

The do-while loop is a (n) ____ loop.

Front

Posttest

Back

The NOT operator is written as ____.

Front

!

Back

Event-driven GUI programs sometimes require fewer coded loops than their counterpart console applications because some events are determined by the ____ when the program is running.

Front

User's actions

Back

In C#, an error occurs if you reach the end point of the statement list in a case section. This is known as the ____ rule.

Front

No fall through

Back

When you declare objects, their bool fields initialize to ____.

Front

False

Back

If you use the keyword modifier ____, you indicate that a method can be called by referring to the class rather than an object from the class.

Front

Static

Back

Flowchart creators use diamond shapes to indicate alternative courses of action.

Front

True

Back

A loop for which the number of iterations is predetermined is called a (n)____ loop.

Front

Definite

Back

In a switch statement, the keyword return usually terminates each case.

Front

False

Back

In a switch statement, the type of the value in a case label is the ____________________ type.

Front

Governing

Back

In C#, the ____ operator is used as an abbreviated version of the if-else statement.

Front

Conditional

Back

You can improve loop performance by using prefix incrementing.

Front

True

Back

When loop structures are nested, the inner loop must be entirely contained within the outer loop; loops can never overlap.

Front

True

Back

You indicate that a method parameter is an array by placing ____ after the data type in the method's parameter list.

Front

[ ]

Back

The ____ operator is used to create objects.

Front

New

Back

The optional keyword ____ is used prior to any action that should occur if the test expression does not match any case.

Front

Default

Back

A while loop is a (n)____ loop.

Front

Pretest

Back

The conditional OR operator is written as ____.

Front

||

Back

When you use a loop within a loop, you should always think of the ____ loop as the all-encompassing loop.

Front

Outer

Back

The expressions in each part of a compound, conditional Boolean expression are evaluated only as much as necessary to determine whether the entire expression is true or false. This feature is called ____ evaluation.

Front

Short-circuit

Back

When creating a flowchart or pseudocode representation of a task, a ____ structure is one in which one step follows another unconditionally.

Front

Sequence

Back

When loops are nested, each pair contains a (n) ____ loop and an outer loop.

Front

Inner

Back

You cannot use a while loop for indefinite loops.

Front

False

Back

You begin a 'for' statement with the keyword ____ followed by a set of parentheses.

Front

For

Back

An array subscript can be an expression, as long as the expression evaluates to a (n) ____. Integer

Front

Reference

Back

With a ____ loop, you can indicate the starting value for the loop control variable, the test condition that controls loop entry, and the expression that alters the loop control variable, all in one convenient place.

Front

For

Back

Using a (n)____ with a switch statement can often be convenient because it can make the meaning of case label values much clearer.

Front

Enumeration

Back

When a variable is declared inside a loop, it can be referenced only for the duration of the loop body. Once the loop finishes execution, the variable is out of ____________________, which means it is not usable because it has ceased to exist.

Front

Scope

Back

In a switch statement, the keyword ____ starts the switch structure.

Front

Switch

Back

An accumulator variable must be set to ____ before it is used to accumulate a total.

Front

0

Back

When method calls are placed inside other method calls, the calls are ____ method calls.

Front

Nested

Back

When an array passed to a method is passed by ____, the method receives the actual memory address of the array and has access to the actual values in the array elements.

Front

Reference

Back

Programmers often use ____________________, a tool that helps them plan a program's logic by writing plain English statements.

Front

Pseudocode

Back

You can use the conditional ____ operator within a Boolean expression to determine whether two expressions are both true.

Front

(And) &&

Back

A value that a user must supply to stop a loop (for example, 'Y' or 'N') is called a (n)____________________ value.

Front

Sentinel

Back

Often, the value of a loop control variable is not altered by arithmetic, but instead is altered by user input. This type of loop is a (n)____ loop.

Front

Indefinite

Back

Often, totals are ____; that is, summed one at a time in a loop.

Front

Accumulated

Back

The conditional AND operator is written as ____.

Front

&&

Back

You can combine as many AND and OR operators in an expression as needed.

Front

True

Back

You can use a (n)____________________ loop to execute a body of statements continuously as long as some condition continues to be true.

Front

While

Back

A (n)____________________ is a structure that allows repeated execution of a block of statements.

Front

Loop

Back

A (n)____ statement is used to make a single-alternative decision.

Front

If

Back

Section 3

(50 cards)

A method ____________________ is a block of statements that carry out the method's work.

Front

Body

Back

An implicit, or invisible, ____ reference is passed to every instance method and property accessor.

Front

This

Back

Using private fields within classes is an example of ____, a feature found in all object-oriented languages.

Front

Information hiding

Back

The set of contents of an object's instance variables also is known as its ____.

Front

State

Back

If a method does not return a value, its return type is ____________________.

Front

Void

Back

A (n)____________________ is an encapsulated series of statements that carry out a task.

Front

Method

Back

C# supports a ____ statement that you can use to cycle through every array element without using a subscript.

Front

Foreach

Back

A (n) ____________________ is a method that instantiates (creates an instance of) an object.

Front

Instance method

Back

If you do not provide an accessibility modifier for a method, it is private by default.

Front

True

Back

You name an argument in a method call using its parameter name and a ____ before the value.

Front

Semicolon

Back

You cannot use the out or ref keywords when passing an array to a method.

Front

False

Back

A (n) ____ is a device you can use without knowing how it works internally.

Front

Black box

Back

Because the ReadLine () method call can be assigned to a string, its return type is____.

Front

String

Back

Arrays are useful when you need to store just one value in memory at a time.

Front

True

Back

To use the Sort () method, you pass the array name to ____.

Front

Array.Sort ()

Back

If you create a Click () method that responds to button clicks, it will be ____ by default because it is associated with an object that is a Form.

Front

Nonstatic

Back

Only nonstatic methods receive a 'this' reference.

Front

True

Back

A (n)____________________ is an integer contained within square brackets that indicates the position of one of an array's elements.

Front

Subscript or index

Back

The ____ method can find the array position of a requested value in an array that is sorted with its elements in ascending order.

Front

BinarySearch()

Back

When you instantiate an array, you can choose its location in memory.

Front

False

Back

A method's name and parameter list constitute the method's ____.

Front

Signature

Back

____ parameters act as aliases, or pseudonyms, for the same memory location occupied by the original variable being passed to a method.

Front

Reference

Back

Every method has a (n) ____________________, indicating what kind of value the method will return to any other method that calls it.

Front

return type

Back

You use the keyword ____ as a modifier to indicate an output parameter.

Front

Out

Back

The ____ class access modifier means that access is limited to the assembly (a group of code modules compiled together) to which the class belongs.

Front

Internal

Back

An array that you can picture as a column of values, and whose elements you can access using a single subscript, is a ____ array.

Front

Single-dimensional

Back

If a method expects parameters with different types (for example, an int and a string), then passing arguments to the method in reverse order constitutes a ____ error, and the program will not compile.

Front

Syntax

Back

Properties have ____ that specify the statements that execute when a class's fields are accessed.

Front

Accessors

Back

You can distinguish each element from the others in an array with a (n) ____.

Front

Subscript

Back

When you don't know how many arguments you might eventually send to a method, you can declare a (n)____.

Front

Parameter array

Back

A search in which each array element is examined in order is called a ____ search.

Front

Sequential

Back

The ____ method arranges array items in ascending order.

Front

Sort ()

Back

You can easily navigate through arrays using a for or while loop that varies a subscript from 0 to ____.

Front

Array.Length - 1

Back

If you do not provide an access specifier for a class field, its access is ____ by default.

Front

Private

Back

The ____________________ property is a member of the System.Array class and automatically holds an array's length.

Front

Length

Back

The power of arrays becomes apparent when you use subscripts that are variables rather than constant values.

Front

True

Back

A method that uses another is called a ____ of the method it uses.

Front

Client

Back

Instance variables are often called ____ to help distinguish them from other variables you might use.

Front

Fields

Back

A method can return at most one value to a method that calls it.

Front

True

Back

With the foreach statement, you provide a temporary _that automatically holds each array value in turn.

Front

Index holder

Back

Front

Back

The ____ class access modifier means that access is limited to another class to which the class belongs.

Front

Private

Back

A GUI object, such as a Button, is represented as an object that cannot encapsulate any methods.

Front

False

Back

A class that instantiates objects of another prewritten class is known as a class client or class ____.

Front

User

Back

In C#, an array's elements are numbered beginning with 1.

Front

False

Back

The optional declared ____ for a method (for example, public) sets limits as to how other methods can use it.

Front

Accessibility

Back

To more easily incorporate methods into a program, it is common practice to store methods in their own classes and files. Then you can add them into any application that uses them. The resulting compound program is called a (n) ____.

Front

Multifile assembly

Back

In C#, all data types are ____________________.

Front

Objects

Back

A parameter within a method header is called a (n)____ parameter.

Front

Formal

Back

In C#, an array subscript must be a (n)____.

Front

Integer

Back

Section 4

(50 cards)

Programmers say that a button click ____ an event.

Front

Raises

Back

The Exception class contains a read-only property named ____ that contains useful information about an Exception object.

Front

Message

Back

When you write a method that catches an Exception, your method does not have to handle it. Instead, you might choose to ____ the exception to the method that called your method.

Front

Rethrow

Back

An exception of the ____ class is thrown when an ongoing operation is aborted by the user.

Front

System.Data.OperationAbortedException

Back

A superclass contains all the fields and methods of its subclasses as well as its own more specific fields and methods.

Front

False

Back

When you don't know how many arguments you might eventually send to a method, you can declare a (n)____.

Front

Parameter array

Back

Typically, you use the ____ block to perform cleanup tasks that must occur, regardless of whether any errors occurred or were caught.

Front

Finally

Back

Methods with identical names that have identical parameter lists but different return types are ____ methods.

Front

Illegal

Back

The C# language requires that every event must use a delegate type with three parameters.

Front

False

Back

Every class you create in C# derives from a single class named ____.

Front

System.Object

Back

When presented with two classes that have a parent-child relationship, you can tell which class is the base class and which is the derived class by using the two classes in a sentence with the phrase ____.

Front

is a

Back

Setting the ____ property attaches a Control to the side of a container so that the Control stretches when the container's size is adjusted.

Front

Dock

Back

A class's ToString () method is often a useful debugging aid.

Front

True

Back

A (n)____________________ method is one that can be overridden by a method with the same signature in a child class.

Front

Virtual

Back

When you drag multiple Controls onto a Form, blue ____ appear and help you align new Controls with others already in place.

Front

Snap lines

Back

C# has more than 100 defined Exception subclasses.

Front

True

Back

____ objects are GUI widgets the user can click to select an option; any number of these can be selected at the same time.

Front

CheckBox

Back

A (n) ____ data field or method can be used within its own class or in any classes extended from that class, but it cannot be used by "outside" classes.

Front

Protected

Back

____________________ are methods that you can write to add to any type, even if you did not create the original class.

Front

Extension methods

Back

You can assign a derived class object to an object of any of its superclass types. When you do, C# makes a (n) ____ conversion from derived class to base class.

Front

Implicit

Back

When a derived class contains a method that overrides a parent class method, you can use the keyword ____ to access the parent class method from within the derived class.

Front

Base

Back

A (n) ____________________ is any error condition or unexpected behavior in an executing program.

Front

Exception

Back

Inheritance is ____________________, which means a child inherits all the members of all its ancestors.

Front

Transitive

Back

The entire list of parent classes from which a child class is derived constitutes the ______ of the subclass.

Front

Ancestors

Back

The Exception class overrides ____ to provide a descriptive error message so a user can receive precise information about the nature of any Exception that is thrown.

Front

ToString ()

Back

Mouse events can be handled for any Control through an object of the class ____.

Front

MouseEventArgs

Back

A ____ provides the capability to link the user to other sources, such as Web pages or files.

Front

LinkLabel

Back

A ____ is a synonym for a derived class.

Front

Child class

Back

Overloaded methods sharing the same identifier must have the same return type.

Front

False

Back

Each ____ block can "catch" one type of Exception.

Front

Catch

Back

The memory location where the computer stores the list of locations to which the system must return is known as the ____.

Front

Call stack

Back

When you use information hiding by selecting which properties and methods of a class to make public, you are assured that your data will be altered only by the properties and methods you choose and only in ways that you can control.

Front

True

Back

Classes that depend on field names from parent classes are said to be ____ because they are prone to errors.

Front

Fragile

Back

When you use the Visual Studio __________ to create programs, the IntelliSense feature will allow you discover built-in overloaded methods by displaying all versions of the method when you type in the method name and the parameter list opening parenthesis.

Front

IDE

Back

When you write a block of code in which something can go wrong, you can place the code in a (n) ____ block.

Front

Try

Back

____ blocks contain statements that can never execute under any circumstances because the program logic "can't get there."

Front

Unreachable

Back

If you don't write a constructor for a class object, C# writes one for you.

Front

True

Back

In C#, you can use either new or ____ when defining a derived class member that has the same name as a base class member.

Front

Override

Back

A (n) ____ method has no method statements; any class derived from a class that contains one must override it by providing a body.

Front

Abstract

Back

When filling in the items in a MenuStrip control, you can double-click an entry to generate a ____ method that will execute if the user clicks on the entry.

Front

Click ()

Back

A (n) ____ parameter to a method is one for which a value is automatically supplied if you do not explicitly send one as an argument.

Front

Optional

Back

A _________ contains the actions you require when an instance of a class is destroyed—for example, when the instance goes out of scope.

Front

Destructor

Back

The first parameter of an event-handler method is an object named ____________________; it is a reference to the object that generated the event.

Front

Sender

Back

If you are working on a professional project, Microsoft recommends that you use the general Exception class in a catch block.

Front

True

Back

ListBox, ComboBox, and CheckedListBox objects all allow users to select choices from a list. These three classes descend from ____.

Front

ListControl

Back

The set of contents of an object's instance variables also is known as its _______________.

Front

Instantiation

Back

The creators of C# define an infrequent event in code as one that happens in less than ____ percent of all program executions.

Front

30

Back

A (n) ____ is a collection of abstract methods (and perhaps other members) that can be used by any class, as long as the class overrides the abstract method definitions.

Front

Interface

Back

The keyword ____ always refers to the superclass of the class in which you use it.

Front

Base

Back

The term ____________________ refers to any process that is crucial to an organization.

Front

Mission critical

Back

Section 5

(50 cards)

The ____ class provides the definitions for GUI objects.

Front

Control

Back

When a database is added to a Windows Forms project, changes made to the dataset in the program will automatically alter the original database.

Front

False

Back

One of the functions of a (n) _______ is to allow users to create table descriptions.

Front

DBMS

Back

A file's ____ holds the byte number of the next byte to be read.

Front

File position pointer

Back

When you store data in a computer file on a persistent storage device, you ____.

Front

Write to the file

Back

____ is the process of converting objects into streams of bytes.

Front

Serialization

Back

When you write a C# program that stores a value in a variable, you are using temporary storage; the value you store is lost when the program ends or the computer loses power. This type of storage is ____.

Front

`Volatile

Back

____ converts streams of bytes back into objects.

Front

Deserialization

Back

Most organizations store many files that contain the data they need (such as data about employees, customers, and orders) to operate their business. A (n) ____________________ holds a file or, more frequently, a group of files that represents this data.

Front

Database

Back

When you write a program and save it to a disk, you are using temporary storage.

Front

False

Back

The ____ variable is the variable that is used to hold each successive value in the array during a foreach statement.

Front

Iteration

Back

You use the ____ class to change the appearance of printed text on your Forms.

Front

Font

Back

A ____ is any one of the letters, numbers, or other special symbols (such as punctuation marks) that comprise data.

Front

Character

Back

Permanent storage is ____.

Front

Nonvolatile

Back

Keyboard events are also known as ____.

Front

Key events

Back

An event-handler method is also known as a (n) ____.

Front

Event receiver

Back

A (n) __ variable has a data type that is inferred from the expression used to initialize the variable.

Front

Implicitly typed

Back

A ____ is an object you can instantiate on a remote computer so that you can manipulate a reference to the object rather than a local copy of the object.

Front

MarshalByRefObject

Back

The basic form of the SQL command that retrieves selected records from a table is ____.

Front

SELECT-FROM-WHERE

Back

For events that do not use additional information, the .NET Framework has already defined an appropriate delegate type named ____.

Front

EventHandler

Back

You declare a delegate using the keyword ____.

Front

Delegate

Back

A LINQ query body must end with a select clause or a group clause.

Front

True

Back

Each Control has more than 80 public properties.

Front

True

Back

To declare your own event, you use a ____.

Front

Delegate

Back

The process of designing and creating a set of database tables that satisfies user needs and avoids potential problems such as data redundancy is called ____.

Front

Normalization

Back

A value that uniquely identifies a record in a database is called a compound key.

Front

False

Back

When designing a Form, you will usually use the ____ design features in the IDE instead of typing code statements.

Front

Drag-and-drop

Back

____ objects are GUI widgets the user can click to select an option; only one of a group can be selected at a time.

Front

RadioButton

Back

A (n) ____________________ is a Control in which you can display graphics from a bitmap, icon, JPEG, GIF, or other image file type.

Front

PictureBox

Back

When you use an implicitly typed variable, the C# compiler decides on a data type for you. This process is called ____.

Front

Type inference

Back

In a MenuStrip, if you create each main menu item with a (n)____ in front of a unique letter, then the user can press Alt and the given letter to activate the menu choice as an alternative to clicking it with the mouse.

Front

&

Back

Businesses store data in a relationship known as the ____________.

Front

Data hierarchy

Back

When a language is ____ typed, severe restrictions are placed on what data types can be mixed.

Front

Strongly

Back

A LinkLabel is similar to a Label in that it is a parent of Label.

Front

False

Back

When adding a database to a Windows Forms project, a (n)___ object is a temporary set of data stored in your project.

Front

Data set

Back

The ____ Control displays a month calendar when the down arrow is selected.

Front

DateTimePicker

Back

____ occur when a user presses and releases keyboard keys.

Front

Key events

Back

The ListBox provides a Boolean ____ property, which you can set to display items in columns instead of in a straight vertical list.

Front

Multicolumn

Back

When using programs or visiting Internet sites, you encounter and use many other interactive ____________________—elements of graphical interfaces that allow you to interact with programs—such as scroll bars, check boxes, and radio buttons.

Front

Widgets

Back

LINQ includes some ____ operators, like Average (), that produce statistics for groups of data. Aggregate

Front

Back

When data values in a program are stored in memory, they are lost when the program ends.

Front

True

Back

When you size a ListBox so that all the items cannot be displayed at the same time, a scroll bar is provided automatically on the side.

Front

True

Back

A data file is a ____ access file when each record is read in order of its position in the file.

Front

Sequential

Back

A data file is a ___________ access file when each record is read in order of its position in the file.

Front

Sequential

Back

The ____ class provides you with information about directories or folders.

Front

Directory

Back

A ____ is similar to a ListBox but with check boxes appearing to the left of each item.

Front

CheckedListBox

Back

In a LINQ statement, data items also can be grouped; the ____ operator groups data by specified criteria.

Front

Group

Back

The ____ event occurs when the user clicks the mouse within the Control's boundaries.

Front

MouseClick

Back

Temporary storage is usually called computer memory or_____________.

Front

RAM

Back

The operator where is a (n) ____ operator, or one that places a restriction on which data is added to a collection.

Front

Restriction

Back

Section 6

(2 cards)

A key constructed from multiple columns is a ____ key.

Front

Compound

Back

A (n) ____ is an irregularity in a database's design that causes problems.

Front

Anomaly

Back