-
-
How you refer the parent class in VB.Net
A) ParentB) MyBaseC) Super
-
How do you add Web Methods in VB.Net
A) Add keyword to Method signatureB) Add [WebMethod] on top of the Method SignatureC) Add {WebMethod} on top of the Method Signature
-
Web services can handle any type of data that can be serialized
A) TrueB) False
-
Which of the following protocol is used in WebServices?
A) HTTPB) SOAPC) WSDLExplanation: Sipmle Object Access Protocol is used for web services
-
What is the full form WSDL
A) Web Services Description LanguageB) Web Services Development LanguageC) Web Site Development Language
-
The tool provided with .Net framework to register assemblies for use by COM is
A) RegasmB) Regsvr32C) ILDASM
-
How do you determine if a check box is selected or not in Vb.Net
A) Using Value PropertyB) Using CheckState PropertyC) Using Option PropertyExplanation: ChsekState is gives the whether checkbox is selected or not.Value was there in VB6
-
Which of the method is used to display the form as modal
A) Activate ( )B) Show( )C) Showdialog( )
-
Which is the base class for TypedDataset
A) DataReaderB) DatasetC) DataAdapter
-
How do we refer a namespace to an VB.Net project
A) With the help of Using KeywordB) With the help of Imports keywordC) With the help of Inherits keyword
-
-
What is the transport protocol used to call a webservice
Skill/Topic: BeginnerA) HTTPB) SOAPC) TCPD) SMTP
-
A web application running on multiple servers is called as
Skill/Topic: BeginnerA) WebFormB) WebfarmC) Website
-
To add a custom control to a Web form we have to register with
Skill/Topic: BeginnerA) TagPrefixB) Name space of the dll that is referencedC) AssemblynameD) All of the above
-
-
-
-
-
-
-
What is a bug? What types of bugs do you know?
Bug is a error during execution of the program. There are two types of bugs: syntax and logical.