Web Services and ASP.NET Fundamentals
Test your knowledge of web services including SOAP, REST, WSDL, and Axis, along with ASP.NET Web Forms development concepts including user controls, page lifecycle, and validation.
Questions
What is the last stage of the Web forms lifecycle?
- Init
- PreRender
- InitComplete
- Page_unload
- LoadComplete
How does ASP.NET stores SessionID's default?
- In Cache
- In Cookies
- In A Global Variable
- In URL
Do i need IIS to develop a Web application in ASP.NET 2.0?
- True
- False
What namespaces does the Web Page belong in the .NET Framework class hierarchy?
- System.Web.Control
- System.Web.RootBuilder
- System.Web.UserControl
- System.Web.UI.Page
What Data types do the RangeValidator control Support?
- Interger,String and Date
- Interger,String and float
- Interger,String and bool
- Decimal,String and Date
What base class do all Web Forms Inherit from?
- Window class
- Web class
- Form class
- Page class
What DataType is returned in IsPostback property?
- bit
- boolean
- int
- string
What is the extension of a web user control file?
- .Asmx
- .Ascx
- .Aspx
- .Aucx
How do you register a user control?
- Add Tag prefix, Tag name
- Add Source, Tag prefix
- Add Src, Tagprefix, Tagname
- None of these
What is WSDL
- Its a protocol for calling services
- Its a registry for discovering services
- Its an xml file for defining the methods that can be called over the web.
- None of the above
How many number of parts are there in a SOAP document ?
- 3
- 4
- 5
- 6
A Web service is a function/method exposed on the web
- True
- False
It doesn't matter for the client, the technology in which the web service has been implemented
- True
- False
A web service is called over which of the following protocols, please select the correct options
- SOAP
- Http
- RMI-IIOP
- RPC
What are advantages of writing web services as compared to other native ways like EJB, COM/DCOM and CORBA.
- Open Standard
- Secure
- Text Based Response
- All of Them
REST webservices don't require any wrapper around Http to communicate, the way SOAP based web services do ?
- True
- False
What is Axis ?
- A Web service
- A tool to generate Web services from java classes.
- A tool to generate web service stubs.
- All of the above.
Axis 2 can be used to generate both SOAP and REST web services
- True
- False
How many different types of parsers are available to parse XMLs ?
- 2
- 3
- 4
- None of the above
SAX is an event based parser
- True
- False