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
The FileStream object represents a stream pointing to a file on a disk or network path.
T
What does a FileStream object represent?
A stream pointing to a file on a disk or a network path.
What is an absolute path name?
A path name explicitly specifies a file or directory from a known location.
What kind of path name explicitly specifies a file or directory from a known location - such as the C: drive?
Absolute.
What object represents a stream pointing to a file on a disk or a network path?
FileStream
The FileStream class maintains an internal file pointer that points to the location within the file where the next read or write operation will occur.
T
The following code opens the Data.txt file for read and write access: FileStream aFile=File.OpenRead(“Data.txt”)
F
The FileStream class deals exclusively with what kind of bytes?
raw
What method is the primary means to access data from a file that a FileStream object points to.
FileStream.Read()
Unlike creating a FileStream object, creating a StreamWriter provides you with a similar range of options.
F
When creating a StreamWriter object, you do not have an option to set the FileAccess property, so you will always have read/write privileges to the file.
T
ReadTEndFile() is a useful method for reading entire files so long as they are relatively small.
T
Which is the simplest reading methods?
Read()
Multiple files placed in a single folder for compression is often called a root folder.
F (archive)
One of the main reasons for asynchronous file access is to allow other operations during operations using very large files.
T
What is one of the compression stream classes in the System.IO.Compression namespace?
DeflateStream
The System.Runtime.Serialization.Formatters.Binary namespace contains the BinaryFormatter class which is capable of serializing objects into binary data.
T
Which serialized object method work with streams?
object Deserialize(Stream stream)
The NonSerializable attribute ensures data is not saved when other data is serialized.
T
What is one reason you might not want to serialize an object?
Some objects might contain sensitive data.
The class that helps you filter files is called FileSystemWatcher.
T
When using streams it is difficult to intercept the data as it is saved to disk or loaded.
F
Which three properties must be set before a FileSystemWatcher object can be enabled?
Path, NotifyFilter, Filter
A complete set of data in XML is known as what?
An XML document.
A complete set of data in XML is known as an XML document.
T
Programs that read XML documents and analyze them by examining their individual elements are known as what?
XML Parsers
What are the elements of XML?
Openeing tag, data, closing tag.
Attributes are added within the closing tag of an element.
F
How must a value of an attribute in XML be enclosed?
A single or double quotes.
There’s one exception to the rule that all elements must have a closing element.
T
When using XML, a single element can never be used.
F
A LINQ query starts by declaring a variable to hold the results of the query, which is usually done by declaring a variable with what keyword?
var
How does a LINQ query start?
Declaring a variable to hold the results of the query.
When using LINQ, every query begins with locating the data using the where clause.
F
Once you have locatedsome data of interest with a where clause (or Where() method invocation), LINQ makes it easy to perform further processing.
T
The System.Linq namespace is reference automatically by VS 2012
T
Which clause is commonly used in LINQ to order data?
orderby
often, a query returns more results than you might expect.
T
When using LINQ, what clause is normally used to locate data?
??
LINQ provides a set of aggregate operators that enable you to analyze the results of a query without having to loop through them all.
T
List at least 3 aggregate operators for numeric results.
Count(), Min(), Max()
The Count() aggregate operator is used to give the maximum value in results.
F
What is Aggreagea() used for?
Executing arbitrary code in a manner that enables you to code your own aggregate function.