Report - Responses (2)
Report - Responses (2)
Points: inherits
1/1 extends
inheritable
Not inheritable
Sealed
0
1
-1
Infinite Loop
4
3
3.5
4.5
Points: 1. Integer
1/1
2. Array
3. Single
4. String
5. Long
1, 2, 5
1, 3, 5
2, 4
3, 5
5. What will be the output of below code snippet?
6,7,8,9,10
5,6,7,8,9,10
1,2,3,4,5
1,2,3,4
8. Which of the following .NET components can be used to remove unused references from the managed heap?
1,0
0,1
0,0
1,1
10. What will be the output of below code snippet?
0
IndexOutOfRangeException
Nothing is printed as array is empty
1
13. Which of the following operations requires the relations to be union compatible?
Points: UNION
1/1 INTERSECTION
DIFFERENCE
ALL OF THESE
14. Which data manipulation command is used to combines the records from one or more tables?
Points: SELECT
1/1 PROJECT
JOIN
PRODUCT
Points: ALTER
1/1 CREATE
UPDATE
SELECT
17. What type of join is needed when you wish to include rows that do not have matching values?
Points: Equi-join
1/1
Natural join
Outer join
All of the above.
Points: Combines the output from no more than two queries and must include the same number of columns.
1/1 Combines the output from no more than two queries and does not include the same number of columns.
Combines the output from multiple queries and must include the same number of columns.
Combines the output from multiple queries and does not include the same number of columns.
19. The virtual table that its created by data from the result of an SQL 'Select' statement is called _________
Points: View
1/1 Synonym
Sequence
Transaction
20. The following SQL is which type of join: SELECT CUSTOMER_T. CUSTOMER_ID, ORDER_T. CUSTOMER_ID, NAME,
ORDER_ID FROM CUSTOMER_T,ORDER_T WHERE CUSTOMER_T. CUSTOMER_ID = ORDER_T. CUSTOMER_ID
Points:
1/1 Equi-join
Natural join
Outer join
Cartesian join
Points: DataAnnotations
1/1 Fluent API
DataModel
HtmlHelper
Points: ActionName
1/1 NonAction
ActionVerbs
All of the above
23. Which of the following is a default route pattern in MVC?
Points: "/{action}/{controller}/{id}"
1/1 "{controller}/{id}"
"{controller}/{action}/{id}"
"{controller}/{action}"
Points: ActionGet
1/1 ActionPost
ActionPut
ActionDelete
29. Which of the following method of html helper generates html control based on the data type of specified
property?
Points:
1/1 Html.TextBox()
Html.Password()
Html.Editor()
Html.Display()
30. Bundling allows __________.
Points:
1/1 var count = [1,,3];
What is the observation made?
The omitted value takes "undefined"
This results in an error
This results in an exception
The omitted value takes an integer value
Points: var a = 1;
1/1 document.write(a--);
document.write(a);
00
01
11
10
Points:
1/1 document.write("1 plus 1 is " + 1 + 1);
2
1 plus 1 is 2
1 plus 1 is 11
1 plus 1 is 1 + 1