Air Traffic Control

0
Answered
0
Correct
0%
Accuracy
Question 1 Easy Mcq

Analyze the following code snippet for creating a stored procedure in SQL Server 2008:CREATE PROCEDURE Person.GetEmployees@LastName nvarchar(50),@FirstName nvarchar(50)ASSET NOCOUNT ONSELECT FirstName, LastName, JobTitle, DepartmentFROM Person.EmployeeDepartmentWHERE FirstName = @FirstName AND LastName = @LastNameGOWhich of the following is a valid code to execute the GetEmployees stored procedure?

Question 2 Easy Mcq

Which of the following data types are supported by SQL Server 2008?

Question 3 Easy Mcq

Which of the following is true about Radar Altimeter (RA)?

Question 4 Easy Mcq

The unaccelerated stall speed of a fixed-wing aircraft is 80 knots. What would its approximate stall speed be under a load factor of 2G?

Question 5 Easy Mcq

What is the minimum age limit to obtain a student pilot certificate?

Question 6 Easy Mcq

Fill in the blanks. Due to the _______ effect of the background music, the _______ of the play did not seem very long.

Question 7 Easy Mcq

If a commercial pilot certificate was issued to a person in the year 2012, then according to the FAA (Federal Aviation Administration) regulations, which of the following is true about the expiry date of the given commercial pilot certificate?

Question 8 Easy Mcq

The output of a Transact SQL query using the GROUPING function of SQL Server 2008 is of __________ return type

Question 9 Easy Mcq

What is the return type of the value returned by @@DATEFIRST in SQL Server 2008?

Question 10 Easy Mcq

According to the FAA (Federal Aviation Administration) Regulations, what should be the maximum authorized indicated airspeed of an aircraft when operating in a VFR corridor designated through class B airspace?

Question 11 Easy Mcq

Which of the following commands is used to run a Transact-SQL script file by using sqlcmd?

Question 12 Easy Mcq

What is the default value of the SORT_IN_TEMPDB clause of the relational_index_option specified at the time of creation of an index on a table in SQL Server 2008?

Question 13 Easy Mcq

Which of the following figures is indicating the "Slow down" signal?

Question 14 Easy Mcq

A is daughter of B. B is son of C. What is the relationship between A and C?

Question 15 Easy Mcq

At or above what speed does an airplane risk hydroplaning at touchdown if the tire pressure is 49 PSI?

Question 16 Easy Mcq

Which of the following is the standard specification fuel used by most of the countries in commercial airplane engines?

Question 17 Easy Mcq

Among five software companies, Mars pays higher wages to its employees than what Venus pays, but its wages are not as much as those paid by Jupiter. Uranus pays more than what Earth pays, but still not as much as what Venus pays to its employees. Who among them pays the least to its employees?

Question 18 Easy Mcq

Which of the following namespaces is used to manage the audit configuration programmatically in SQL Server 2008?

Question 19 Easy Mcq

The stalling speed VS1indicates _______________.

Question 20 Easy Mcq

Which of the following are the primary flight control surfaces of an airplane?

Question 21 Easy Mcq

When square of a number is increased by 3, then the resulting value becomes equal to four times the original number. Find the number(s).

Question 22 Easy Mcq

An identifier denoting a global temporary object in SQL Server 2008 starts with a ______ sign.

Question 23 Easy Mcq

Which of the following V speeds indicates the stalling speed of an aircraft with flaps extended, landing gear down and spoiler retracted?

Question 24 Easy Mcq

According to FAA (Federal Aviation Administration), unless otherwise authorised by the administrator, no person may operate an aircraft below 10,000 feet mean sea level at an indicated airspeed of more than ________ knots.

Question 25 Easy Mcq

Which of the following commands is used to save the output to a text file after you run a Transact-SQL script using sqlcmd?

Question 26 Easy Mcq

Which of the following default passwords is used by sqlcmd if -P option is used at the end of the command prompt without a password?

Question 27 Easy Mcq

Which of the following is a valid code to change the index created on a column of a table to page compression?

Question 28 Easy Mcq

Analyze the following code snippet:DECLARE @myDate DATETIME2SELECT @myDate = "2009/10/08 12:35:29.2348 +12:15"SELECT @myDate AS "@myDate"What is the output of the above code?

Question 29 Easy Mcq

Which of the following data types can be specified as SPARSE?

Question 30 Easy Mcq

What range is supported by the TIME data type in SQL Server 2008?

Question 31 Easy Mcq

Which of the following V speeds represents the speed indicated by the red mark in the airspeed indicator shown above?

Question 32 Easy Mcq

Which of the following is NOT indicated by the airspeed indicator shown above?

Question 33 Easy Mcq

How many audit action groups are available for a server in SQL Server 2008 to perform different actions on audit data?

Question 34 Easy Mcq

The international Cospas-Sarsat SAR (Search and Rescue) satellite system has ceased satellite processing of __________________ MHz frequency beacons on or after February 2009.

Question 35 Easy Mcq

How important is consistency while offering customer service to different people?

Question 36 Easy Mcq

Analyze the following code which uses the TOP clause of SQL Server 2008:USE PersonGODECLARE @p AS intSELECT @p=10SELECT TOP(@p)FROM EmployeeGOWhat Will be the output of the above code?

Question 37 Easy Mcq

Which of the following is a valid syntax of the ALTER SERVER AUDIT statement used to enable a server audit?

Question 38 Easy Mcq

Which of the following permissions are required to create a view in SQL Server 2008?

Question 39 Easy Mcq

Fill in the blanks.Except for those below the age of twenty five, the drinks were _______ for everyone at the dinner.

Question 40 Easy Mcq

Multiple CHECK constraints can be applied to a single column and a single CHECK constraint can be applied to multiple columns in SQL Server 2008.

Question 41 Easy Mcq

Which of the following is/are the reasons for the development of ACARS (Aircraft Communications Addressing and Reporting System)?

Question 42 Easy Mcq

What is the default timeout for login to sqlcmd while you try to connect to a server?

Question 43 Easy Mcq

Which of the following compression features have been introduced in SQL Server 2008 that were NOT supported by SQL Server 2005?

Question 44 Easy Mcq

Find the value of the following expression:(15*15)+(25*25)

Question 45 Easy Mcq

If 75% of 1/3 of a number is 25, then the number is:

Question 46 Easy Mcq

Analyze the following code used to update a Common Table Expression:USE demodbGODECLARE @a TABLE (ID int, Value int);DECLARE @b TABLE (ID int, Value int);INSERT @a VALUES (1, 10), (2, 20);INSERT @b VALUES (1, 100),(2, 200);WITH cte AS (SELECT * FROM @a)UPDATE cteSET Value = b.ValueFROM cte AS aINNER JOIN @b AS b ON b.ID = a.IDSELECT * FROM @aGOWhat Will be the output of the above code?

Question 47 Easy Mcq

What is the default maximum precision of decimal data type in SQL Server 2008?

Question 48 Easy Mcq

All MDX, DMX and XML/A errors are displayed in the Error List window of the SQL Server 2008. Management Studio.

Question 49 Easy Mcq

Which of the following is used to comment a portion of an SQL Server 2008 script?

Question 50 Easy Mcq

Suppose you create a stored procedure and save it in the database with "sp_" prefix. Which of the following statements is true regarding the execution of the stored procedure?

Showing 50 of 94 questions