Certification Questions

Q:

You would like to use the command line to end an application that a Terminal Services client is running. What command can you use?

A) Tscon B) Tsprof
C) Tsend D) Tskill
 
Answer & Explanation Answer: D) Tskill

Explanation:

Tskill ends a process. Since you want to stop an application, this is the command you would use.

Report Error

View Answer Report Error Discuss

0 1511
Q:

What is the default optimization setting for the Server service on Windows 2000 Server computers?

A) Minimize memory used B) Balance
C) Maximize data throughput for file sharing D) Maximize data throughput for network applications
 
Answer & Explanation Answer: C) Maximize data throughput for file sharing

Explanation:

The Maximize data throughput for file sharing setting is the default setting , and is appropriate for Windows 2000 Server computers that are functioning primarily  as file servers. The Maximize data throughput for network applicatons setting is the preffered setting for domain controllers.

Report Error

View Answer Report Error Discuss

0 3121
Q:

You use two sites on your Windows 2000 network. You decide you want to manually specify a particular domain controller in each site that will be used for intersite replication. What should you do?

A) Create a site link to connect the two domain controllers B) Designate the desired domain controller in each site as a bridge-head server
C) Configure the desired domain controller in each site to be a global catalog server D) Create a new connection object for the desired domain controller in each site
 
Answer & Explanation Answer: B) Designate the desired domain controller in each site as a bridge-head server

Explanation:

The server that is designated as the bridgehead server is used for intersite replication.

Report Error

View Answer Report Error Discuss

0 1941
Q:

You are choosing a Windows 2000 operating system to use on a new computer at your company. This new computer will be a heavily used SQL server in your enterprise network environment. which operating system should you choose?

A) Windows 2000 professional B) Windows 2000 Server
C) Windows 2000 Advanced Server D) Windows 2000 Datacenter Server
 
Answer & Explanation Answer: C) Windows 2000 Advanced Server

Explanation:

Windows 2000 Advanced Server is optimized for use on servers (such as SQL servers) in an enterprise network environment.

Report Error

View Answer Report Error Discuss

0 1856
Q:

A subquery in an sql select statement.

Answer

A Subquery or Inner query or a Nested query is a query within another SQL query and embedded within the WHERE clause.


Subqueries are most frequently used with the SELECT statement. The basic syntax is as follows::


SELECT column_name [, column_name ]
FROM table1 [, table2 ]
WHERE column_name OPERATOR
(SELECT column_name [, column_name ]
FROM table1 [, table2 ]
[WHERE])



A subquery is used to return data that will be used in the main query as a condition to further restrict the data to be retrieved.


Subqueries can be used with the SELECT, INSERT, UPDATE, and DELETE statements along with the operators like =, <, >, >=, <=, IN, BETWEEN, etc.


 


There are a few rules that subqueries must follow −


 


1. Subqueries must be enclosed within parentheses.


2. A subquery can have only one column in the SELECT clause, unless multiple columns are in the main query for the subquery to compare its selected columns.


3. An ORDER BY command cannot be used in a subquery, although the main query can use an ORDER BY. The GROUP BY command can be used to perform the same function as the ORDER BY in a subquery.


4. Subqueries that return more than one row can only be used with multiple value operators such as the IN operator.


5. The SELECT list cannot include any references to values that evaluate to a BLOB, ARRAY, CLOB, or NCLOB.


6. A subquery cannot be immediately enclosed in a set function.


7. The BETWEEN operator cannot be used with a subquery. However, the BETWEEN operator can be used within the subquery.

Report Error

View answer Workspace Report Error Discuss

0 1577
Q:

The SQL keyword BETWEEN is used:

A) for ranges B) as a wildcard
C) to limit the columns displayed D) All the above
 
Answer & Explanation Answer: A) for ranges

Explanation:

In SQL, BETWEEN Keyword is used for ranges like Number Ranges, Date Ranges, etc...

Report Error

View Answer Report Error Discuss

0 2372
Q:

Data integrity constraints are used to

A) Ensure that duplicate records are not entered into the table B) Prevent users from changing the values stored in the table
C) Control who is allowed access to the data D) Improve the quality of data entered for a specific property like table column
 
Answer & Explanation Answer: D) Improve the quality of data entered for a specific property like table column

Explanation:

Integrity constraints are used to ensure accuracy and consistency of data in a relational database. Data integrity is handled in a relational database through the concept of referential integrity. Many types of integrity constraints play a role in referential integrity (RI).

 

Hence, Data integrity constraints are used to Improve the quality of data entered for a specific property i.e, table column.

Report Error

View Answer Report Error Discuss

0 2488
Q:

What is an Extension of Entity Type?

Answer

The collections of entities of a particular Entity Type are grouped together into an entity set.

Report Error

View answer Workspace Report Error Discuss

0 1576