WCF.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
WCF.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 WCF Dot Net Quiz, Online WCF .Net, online Test Quiz 2. WCF Dot Net Online Test-2 Question and Answers. WCF Dot Net Online Test 2 Question and Answers in PDF. The WCF .Net online mock test paper is free for all students. WCF .Net Online Test is very useful for exam preparation and getting for Rank. WCF .Net Online Test-2 Question and Answers in English. WCF .Net Online Test for topic via String Handling Mode. Here we are providing WCF .Net Online Test in English Now Test your self for “WCF .Net Online Test in English” Exam by using below quiz…
This paper has 20 questions.
Time allowed is 25 minutes.
The WCF .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
In WCF, binding of web services with federated security is ?
Correct
WSFederationHttpBinding is used with federated security and also transaction support of web services in WCF.
Incorrect
WSFederationHttpBinding is used with federated security and also transaction support of web services in WCF.
-
Question 2 of 20
2. Question
In WCF, Binding of web services that supports duplex contract and transaction is ?
Correct
WSDualHttpBinding supports both duplex contract as well as transaction support in WCF.
Incorrect
WSDualHttpBinding supports both duplex contract as well as transaction support in WCF.
-
Question 3 of 20
3. Question
In WCF, the default type of binding is ?
Correct
BasicHttpBinding is the default binding in WCF. We can change it in the
section of WCF service. Incorrect
BasicHttpBinding is the default binding in WCF. We can change it in the
section of WCF service. -
Question 4 of 20
4. Question
In WCF, the type of contract used to define the data types passing on a service is ?
Correct
Data Contract is used to define the coming and going data types in a service which may be implicit or explicit. It is used for transporting and receiving the object data between the WCF client and WCF service.
Incorrect
Data Contract is used to define the coming and going data types in a service which may be implicit or explicit. It is used for transporting and receiving the object data between the WCF client and WCF service.
-
Question 5 of 20
5. Question
In WCF, the type of contract used to define the method of a service is ?
Correct
Operation Contract is the WCF attribute used to define a methods of a class/interface/service which are accessible by external systems.
Incorrect
Operation Contract is the WCF attribute used to define a methods of a class/interface/service which are accessible by external systems.
-
Question 6 of 20
6. Question
In WCF, the type of contract used to define a class or an Interface is ?
Correct
Service Contract is the WCF attribute used to define a class or interface. It also describes the service provider’s operation.
Incorrect
Service Contract is the WCF attribute used to define a class or interface. It also describes the service provider’s operation.
-
Question 7 of 20
7. Question
What is the Extension of WCF service?
Correct
WCF service has .SVC extension. When we create ant WCF service,then default extension would be .svc. WCF is an advanced version of Web-service as it deals with tcp/ip,named-pipe as well.It’s full form is Windows Communication Foundation.We have a OperationContract attribute for Interface.
Incorrect
WCF service has .SVC extension. When we create ant WCF service,then default extension would be .svc. WCF is an advanced version of Web-service as it deals with tcp/ip,named-pipe as well.It’s full form is Windows Communication Foundation.We have a OperationContract attribute for Interface.
-
Question 8 of 20
8. Question
In WCF, which binding is used for cross-machine communication or WCF-to-WCF communication?
Correct
TCP Binding is mainly used for cross machine communication.
Incorrect
TCP Binding is mainly used for cross machine communication.
-
Question 9 of 20
9. Question
You are developing WCF service which read message from a system transactional dead-letter queue. which URI should you specify in the endpoint configuration settings of the service ?
Correct
Used system$DeadXact for read messages from a system transactional dead-letter queue, where /system$DeadLetter for read messages from a system non-transactional dead-letter queue.
Incorrect
Used system$DeadXact for read messages from a system transactional dead-letter queue, where /system$DeadLetter for read messages from a system non-transactional dead-letter queue.
-
Question 10 of 20
10. Question
You have a class name OrderService that include two methods to reject and process order. you need to expose the orderservice class as a wcf service and ensure it support one or more inheritance. what must you do ?
Correct
Apply an OperationContract Attribute to each method to expose the desire functionality
Incorrect
Apply an OperationContract Attribute to each method to expose the desire functionality
-
Question 11 of 20
11. Question
Which two in-built binding elements are required to use while implementing custom binding in you wcf service ?
Correct
Encoding (Text, binary, Message Transmission Optimization Mechanism (MTOM), custom) and Transport (TCP, HTTP, HTTPS, named pipes,P2P,MSMQ, Custom) both are required, while remaining are optional
Incorrect
Encoding (Text, binary, Message Transmission Optimization Mechanism (MTOM), custom) and Transport (TCP, HTTP, HTTPS, named pipes,P2P,MSMQ, Custom) both are required, while remaining are optional
-
Question 12 of 20
12. Question
You want to use performance monitor to track the no of rejected messages in your developed WCF application.
Correct
Identified the no of rejected messages for the service. Calls Faulted or Calls Faulted per second performance object, track Number of calls that returned as faults.
Incorrect
Identified the no of rejected messages for the service. Calls Faulted or Calls Faulted per second performance object, track Number of calls that returned as faults.
-
Question 13 of 20
13. Question
Which standard binding you would be use if your service will hosted on the same computer as the client ?
Correct
Named pipe binding uses named pipe as transport for same machine communication using an efficient binary encoding method. Basic binding exposes a service like an prior asmx web service
Incorrect
Named pipe binding uses named pipe as transport for same machine communication using an efficient binary encoding method. Basic binding exposes a service like an prior asmx web service
-
Question 14 of 20
14. Question
Which of the following properties you should enable, so can your service will expose its metadata through HTTP-GET
Correct
httpGetEnabled property is part of serviceMetadata element set true. So client can access your service metaData. behaviors element contains all behaviors related to a service.
Incorrect
httpGetEnabled property is part of serviceMetadata element set true. So client can access your service metaData. behaviors element contains all behaviors related to a service.
-
Question 15 of 20
15. Question
Which of the following represent the .net attribute from System.Servicemodel namespace that you will use while define a new Service Contract ?
Correct
At a minimum, you will nned the ServiceContractAttribute to declare the contract and OperationcontractAttribute to declare any operations in that service contract.
Incorrect
At a minimum, you will nned the ServiceContractAttribute to declare the contract and OperationcontractAttribute to declare any operations in that service contract.
-
Question 16 of 20
16. Question
Which message encoding format/s is/are available in WCF?
Correct
Binary is used for Speed, MTOM is used for Large data, Text is used for interoperability.
Incorrect
Binary is used for Speed, MTOM is used for Large data, Text is used for interoperability.
-
Question 17 of 20
17. Question
Which is/are available Instance Mode/s in WCF?
Correct
WCF binds an incoming message request to a particular service instance, It is necessary because application’s needs are different.
Incorrect
WCF binds an incoming message request to a particular service instance, It is necessary because application’s needs are different.
-
Question 18 of 20
18. Question
You are developing a web service that will be accessed by Clients might be running JavaScript or the .NET Framework.
you need to Create the data access layer with the least amount of development effort.Correct
You can create a WCF data services data access layer in only a few minutes. ASP.NET web service that provided access to an underlying database, it would require far more programming than using WCF data services.
Incorrect
You can create a WCF data services data access layer in only a few minutes. ASP.NET web service that provided access to an underlying database, it would require far more programming than using WCF data services.
-
Question 19 of 20
19. Question
You are developing data access service that access by several types of clients (non-.net or .net) to access a back-end database server running Microsoft SQL Server. Which approach should you use?
Correct
WCF web services provide a great deal of flexibility, and they support using multiple binding types.
Incorrect
WCF web services provide a great deal of flexibility, and they support using multiple binding types.
-
Question 20 of 20
20. Question
What is/are the type/s of Messaging pattern/s in WCF?
Correct
Messaging pattern describe how programs exchange messages with service, it must conform to one of Simplex, Duplex and Request Reply patterns in order for it to successfully communicate with the destination program.
Incorrect
Messaging pattern describe how programs exchange messages with service, it must conform to one of Simplex, Duplex and Request Reply patterns in order for it to successfully communicate with the destination program.