Air Traffic Control
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?
Which of the following data types are supported by SQL Server 2008?
Which of the following is true about Radar Altimeter (RA)?
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?
What is the minimum age limit to obtain a student pilot certificate?
Fill in the blanks. Due to the _______ effect of the background music, the _______ of the play did not seem very long.
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?
The output of a Transact SQL query using the GROUPING function of SQL Server 2008 is of __________ return type
What is the return type of the value returned by @@DATEFIRST in SQL Server 2008?
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?
Which of the following commands is used to run a Transact-SQL script file by using sqlcmd?
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?
Which of the following figures is indicating the "Slow down" signal?
A is daughter of B. B is son of C. What is the relationship between A and C?
At or above what speed does an airplane risk hydroplaning at touchdown if the tire pressure is 49 PSI?
Which of the following is the standard specification fuel used by most of the countries in commercial airplane engines?
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?
Which of the following namespaces is used to manage the audit configuration programmatically in SQL Server 2008?
The stalling speed VS1indicates _______________.
Which of the following are the primary flight control surfaces of an airplane?
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).
An identifier denoting a global temporary object in SQL Server 2008 starts with a ______ sign.
Which of the following V speeds indicates the stalling speed of an aircraft with flaps extended, landing gear down and spoiler retracted?
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.
Which of the following commands is used to save the output to a text file after you run a Transact-SQL script using sqlcmd?
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?
Which of the following is a valid code to change the index created on a column of a table to page compression?
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?
Which of the following data types can be specified as SPARSE?
What range is supported by the TIME data type in SQL Server 2008?
Which of the following V speeds represents the speed indicated by the red mark in the airspeed indicator shown above?
Which of the following is NOT indicated by the airspeed indicator shown above?
How many audit action groups are available for a server in SQL Server 2008 to perform different actions on audit data?
The international Cospas-Sarsat SAR (Search and Rescue) satellite system has ceased satellite processing of __________________ MHz frequency beacons on or after February 2009.
How important is consistency while offering customer service to different people?
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?
Which of the following is a valid syntax of the ALTER SERVER AUDIT statement used to enable a server audit?
Which of the following permissions are required to create a view in SQL Server 2008?
Fill in the blanks.Except for those below the age of twenty five, the drinks were _______ for everyone at the dinner.
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.
Which of the following is/are the reasons for the development of ACARS (Aircraft Communications Addressing and Reporting System)?
What is the default timeout for login to sqlcmd while you try to connect to a server?
Which of the following compression features have been introduced in SQL Server 2008 that were NOT supported by SQL Server 2005?
Find the value of the following expression:(15*15)+(25*25)
If 75% of 1/3 of a number is 25, then the number is:
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?
What is the default maximum precision of decimal data type in SQL Server 2008?
All MDX, DMX and XML/A errors are displayed in the Error List window of the SQL Server 2008. Management Studio.
Which of the following is used to comment a portion of an SQL Server 2008 script?
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?