WPF.Net Online Test 2, Dot Net Question and Answers, .NET Quiz
Finish Quiz
0 of 20 questions completed
Questions:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
Information
WPF.Net Online Test 2, Dot Net Question and Answers, .NET Quiz. Practice Online FOR Dot Net Test and find out how much you score before you appear for your next Dot Net interview and written test. Free WPF .Net Quiz, Online WPF .Net. WPF .Net Online Test-2 Question and Answers. WPF WPF Dot Net Test 2 Free Mock Test. WPF .Net Online Test-2 Question and Answers in PDF. The WPF .Net online mock test paper is free for all students. WPF .Net Online Test is very useful for exam preparation and getting for Rank. WPF .Net Online Test-2 Question and Answers in English. WPF .Net Online Test for topic via String Handling Mode. Here we are providing WPF .Net Online Test in English Now Test your self for “WPF .Net Online Test in English” Exam by using below quiz…
This paper has 20 questions.
Time allowed is 25 minutes.
The WPF .Net Online Test is Very helpful for all students. Now Scroll down below n click on “Start Quiz” or “Start Test” and Test yourself.
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading...
You must sign in or sign up to start the quiz.
You have to finish following quiz, to start this quiz:
Results
0 of 20 questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 points, (0)
Average score |
|
Your score |
|
Categories
- Not categorized 0%
Pos. | Name | Entered on | Points | Result |
---|---|---|---|---|
Table is loading | ||||
No data available | ||||
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- Answered
- Review
-
Question 1 of 20
1. Question
How to see Current User name who using in Oracle?
Correct
[CODE]show user;[/CODE] This comment will give you the details about the user who is currently logged in.
Incorrect
[CODE]show user;[/CODE] This comment will give you the details about the user who is currently logged in.
-
Question 2 of 20
2. Question
What is the Cluster Key?
Correct
The related Columns of the tables are called as a Cluster Key. The cluster key is the indexed using a cluster index and its value is stored only once for multiple tables in cluster.
Incorrect
The related Columns of the tables are called as a Cluster Key. The cluster key is the indexed using a cluster index and its value is stored only once for multiple tables in cluster.
-
Question 3 of 20
3. Question
Which of the following query will show you which constraints is mapped to which table?
Correct
[CODE]Select table_name, index_name from user_constraints. [/CODE] The user_constraints will have all the list of details like which table mapped to which constraints.
Incorrect
[CODE]Select table_name, index_name from user_constraints. [/CODE] The user_constraints will have all the list of details like which table mapped to which constraints.
-
Question 4 of 20
4. Question
Communication between computers across peer-to-peer services. Supports duplex contracts.
Which of the following?Correct
[B]NetTcpBinding [/B] – Communication between WCF applications across computers. Supports duplex contracts and transactions. [B]NetMsmqBinding [/B] – Communication between WCF applications by using queuing. Supports transactions. [B]WSHttpBinding [/B] – Web services with WS-* support. Supports transactions.
Incorrect
[B]NetTcpBinding [/B] – Communication between WCF applications across computers. Supports duplex contracts and transactions. [B]NetMsmqBinding [/B] – Communication between WCF applications by using queuing. Supports transactions. [B]WSHttpBinding [/B] – Web services with WS-* support. Supports transactions.
-
Question 5 of 20
5. Question
What is MDX in SSAS(Microsoft SQL Server Analysis Services) ?
Correct
MDX is an extension to the SQL language which Microsoft utilizes to query and script access to multidimensional data. You can use MDX queries to get at data stored in a SQL Server Analysis Server cube by bringing back facts based on dimensions with hierarchies.
Incorrect
MDX is an extension to the SQL language which Microsoft utilizes to query and script access to multidimensional data. You can use MDX queries to get at data stored in a SQL Server Analysis Server cube by bringing back facts based on dimensions with hierarchies.
-
Question 6 of 20
6. Question
What is the output of this query?
select case when null = null then ‘Yes’ else ‘No’ end as Result;
Correct
Because null always not equal to another null. Null is consider to be a memory reference. So each null will take different reference ID. So NULL will be not equal anytime.
Incorrect
Because null always not equal to another null. Null is consider to be a memory reference. So each null will take different reference ID. So NULL will be not equal anytime.
-
Question 7 of 20
7. Question
The Maximum time span can be set in the Timer in setTimeout(a,b)?
Correct
The setTimeout(a, b) global function is used to run callback a after at least b milliseconds. The actual delay depends on external factors like OS timer granularity and system load. A timer cannot span more than [B]24.8 days.[/B]
Incorrect
The setTimeout(a, b) global function is used to run callback a after at least b milliseconds. The actual delay depends on external factors like OS timer granularity and system load. A timer cannot span more than [B]24.8 days.[/B]
-
Question 8 of 20
8. Question
NPM stands for?
Correct
npm stands for Node Package Manager. npm provides following two main functionalities: Online repositories for node.js packages/modules which are searchable on search.nodejs.org Command line utility to install packages, do version management and dependency management of Node.js packages.
Incorrect
npm stands for Node Package Manager. npm provides following two main functionalities: Online repositories for node.js packages/modules which are searchable on search.nodejs.org Command line utility to install packages, do version management and dependency management of Node.js packages.
-
Question 9 of 20
9. Question
Literal Controls using as?
Correct
The Literal control is used to display text on a page. The text is programmable. This control does not let you apply styles to its content.
Incorrect
The Literal control is used to display text on a page. The text is programmable. This control does not let you apply styles to its content.
-
Question 10 of 20
10. Question
Difference Between Int and Int32?
Correct
Both are the same. Both are derived from System.Int.32 for shorter format we make it as Int. Int32 to specify it was 32bit but by default also it was 32 bit.
Incorrect
Both are the same. Both are derived from System.Int.32 for shorter format we make it as Int. Int32 to specify it was 32bit but by default also it was 32 bit.
-
Question 11 of 20
11. Question
CAS works on Which concepts?
Correct
The [B]CAS [/B] security policy revolves around two key concepts – [B]code groups and permissions[/B] . Each .NET assembly is a member of a particular code group, and each code group is granted the permissions specified in a named permission set
Incorrect
The [B]CAS [/B] security policy revolves around two key concepts – [B]code groups and permissions[/B] . Each .NET assembly is a member of a particular code group, and each code group is granted the permissions specified in a named permission set
-
Question 12 of 20
12. Question
Following which is not type of Authentication?
Correct
There are two types of authentication are ?Windows authentication ?Forms authentication ?Passport authentication
Incorrect
There are two types of authentication are ?Windows authentication ?Forms authentication ?Passport authentication
-
Question 13 of 20
13. Question
Identify the correct Dataset Architecture in .Net
Correct
Data set is the root component in the Disconnected Data Access Architecture. It is an in memory data structure that holds multiple tables, their relations etc. We can perform CRUD on a data set.
Incorrect
Data set is the root component in the Disconnected Data Access Architecture. It is an in memory data structure that holds multiple tables, their relations etc. We can perform CRUD on a data set.
-
Question 14 of 20
14. Question
What will be the output of
Select Patindex(‘%
[m|n|o|p]%’,REVERSE(REVERSE(REVERSE(REVERSE(‘56728745MNO’)))))?Correct
Four times of REVERSE gives the output as “56728745MNO”. The first occurrence of M is at position 9.
Incorrect
Four times of REVERSE gives the output as “56728745MNO”. The first occurrence of M is at position 9.
-
Question 15 of 20
15. Question
What will be the output of alert(20–10)?
Correct
The answer is 30. It is the addition of two numbers. Two times of minus becomes plus. So 20 -(-10) will be 20 + 10 = 30.
Incorrect
The answer is 30. It is the addition of two numbers. Two times of minus becomes plus. So 20 -(-10) will be 20 + 10 = 30.
-
Question 16 of 20
16. Question
What will be the output of
Declare @t table (Record Varchar(20))
Insert Into @t
Select ‘OTHELO’ Union All
Select ‘MAC’ Union All
Select ‘BCDFGT’ Union All
Select ‘Unision’Select *
From @t
Where Record like ‘%[H,A,U]%’Correct
Here we are performing a like search for the characters H,A,U. So we found of H in ‘OTHELO’, A in ‘MAC’ and U in ‘Unision’. Important point to note here is that we can specify the range inside the Like operator.
Incorrect
Here we are performing a like search for the characters H,A,U. So we found of H in ‘OTHELO’, A in ‘MAC’ and U in ‘Unision’. Important point to note here is that we can specify the range inside the Like operator.
-
Question 17 of 20
17. Question
Which of the below operators is used to determine if two strings are identical?
Correct
“==” is the equality operator that determines if the two strings are equal. e.g. string x = “hello”; string y = “hello” Console.WriteLine( x == y ? “Equal”:”Not Equal”); [] is the indexer and cannot be use for comparison. @ is the operator which by passes any special characters e.g. var x = @”C:\myfolder\text.txt” || is the relational OR operator and not a comparison operator.
Incorrect
“==” is the equality operator that determines if the two strings are equal. e.g. string x = “hello”; string y = “hello” Console.WriteLine( x == y ? “Equal”:”Not Equal”); [] is the indexer and cannot be use for comparison. @ is the operator which by passes any special characters e.g. var x = @”C:\myfolder\text.txt” || is the relational OR operator and not a comparison operator.
-
Question 18 of 20
18. Question
How more than one declaration be added in CSS?
Correct
It can be achieved by using a semicolon.
Incorrect
It can be achieved by using a semicolon.
-
Question 19 of 20
19. Question
How Declaration Block declared?
Correct
A catalog of directions within braces consisting of property, colon and value is called declaration block.
Incorrect
A catalog of directions within braces consisting of property, colon and value is called declaration block.
-
Question 20 of 20
20. Question
Who Maintains the CSS Specification?
Correct
World Wide Web Consortium maintains the CSS specifications. They maintain the CSS even the older version to support the project which are mapping the old one.
Incorrect
World Wide Web Consortium maintains the CSS specifications. They maintain the CSS even the older version to support the project which are mapping the old one.