• 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/18

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;

18 Cards in this Set

  • Front
  • Back
End of file-
A value of -1 read from the file stream.
File-
Acollection of related data stored on a persistent medium.
File position-
The point in a file stream where reading or writing last occurred.
File Stream
A file as a sequence of characters.
Line Terminator-
The carriage return and line feed characters at the end of each line in a file.
Persistent
Lasting
Sequential Access File-
Reading or writing one character after another or one line after another in a file.
Stream-
A sequence of characters.
FileInfo class-
Used for creating an object associated with a specific file. Properties include Exists, Length, and FullName. Methods include Create(), CopyTo(), and Delete.
FileMode-
Visual Basic .NET enumerated type with members that include Open, Create, OpenOrCreate, and Append
FileStream class-
used for creating a stream object for a specific file. File modes include Open, CreateNew, OpenOrCreate, and Append. Properties include Length and Position. Methods include Close().
Imports-
Statement used to include a namespace in an application.
Keys-
Visual Basic .Net enumerated type with members that correspond to key names.
OpenFileDialog control-
Used to add an application component that displays the Open dialog box. Properties include Name and FileName. Methods include ShowDialog().
StreamReader class-
Used for creating a stream object for reading characters and lines of text from a file. Methods include Peek(), Read(), Readline(), and Close().
StreamWriter class-
Used for creating a stream object for writing characters and lines of text to a file. Methods include Write(), Writeline(), and Close().
SaveFileDialog control-
Used to add an application component that displays the Save As dialog box. Porperties include Name and FileName. Methods include ShowDialog().
TextBox control
Used to create a control class object that can display multiple lines of text. Properties include Dock, ReadOnly, Multiline, WordWrap, and ScrollBars. Events include KeyPress.