Final Quest Flashcards
Deployment is the process of installing applications to the target systems.
T
The application list describes the application and the permissions required by the application.
F
What is a restriction accompanying ClickOnce deployment?
It cannot be used if you need to install shared components in the global assembly cache.
What is deployment?
The process of installing applications to the target system.
When using ClickOne, where is the application installed?
To the client.
ASP.NET is a technology for dynamically creating web pages with server-side code.
T
On the server system, ASP.Net runtime is NOT needed.
F
What are two of the Page properties?
Request and Response.
What is ASP.NET?
A technology for dynamically creating web pages with server-side code.
What using ASP.NET in what form is code returned to the client?
HTML
You can use Internet Explorer, Opera, Chrome, Firefox, Safari, or any other web browser that supports HTML when using ASP.NET.
T
A stream is an abstract representation of what?
a serial device.
A stream is an abstract representation of a serial device. A serial device is something is something that stores and/or accesses data in a linear manner.
T
System.IO contains the classes for reading and writing data to and from files.
T
What types of streams are used when data is written to some external destination, which can be a physical disk file, a network location, a printer, or another program?
output
The File and Directory utility classes expose many static methods for manipulating, surprisingly enough, files and directories.
T
What do the File and Directory utility classes expose?
Many static mehtods for manipulating files and directories.
Which stream class achieves compression using the Deflate algorithm?
DeflateStream
List three static methods of the file class.
Copy(), Create(), Delete()
The CreateDirectyory() method deletes a specified directory and all files within it.
F
What does the FileInfor object represent?
A file on a disk or network location.
If your application is performing several operations on a file, it makes sense to instantiate a FileInfo object and use its methods.
T
It makes more sense to instantiate a FileInfo to use methods on the static File class if you are making only a single method call.
F
The DirectoryInfo class inherits most of its properties from FileSystemInfo.
T
The DirectoryInfo class works exactly like the FileSystemInfo class.
T
What class does the Directory Info class work like?
FileInfo class.
What class works exactly like the FileInfo class?
DirectoryInfo
Relative path names are relative to a starting location.
T