The setTimeout() belongs to which object?
1.Element
2.Window
3. Location
4.None of the mentioned
Posted Date:-2022-01-21 02:52:20
What does validate() method of ActionForm returns?
1.ActionErrors
2. ActionForward
3.ActionMapping
4.ActionError
Posted Date:-2022-01-21 01:56:26
What is the easy way add extra Functionality in CMS?
1.Using Plugins/Extensions
2.Downloading New Theme
3. By going to coding portion
4.Making your own theme
Posted Date:-2022-01-21 02:50:43
What scripting language is jQuery written in?
1.VBScript
2.C++
3.JavaScript
4.C#
Posted Date:-2022-01-21 01:58:33
Which is a language for finding information in an XML document?
1. Xpath
2. XSLT
3.Xlink
4.Xpointer
Posted Date:-2022-01-21 02:48:56
Which of the following array represents an array with strings as index?
1. Numeric Array
2.Associative Array
3.Multidimentional Array
4.Normal Array
Posted Date:-2022-01-21 02:52:47
XML Schemas consist of:
1.properties and methods.
2. elements and attributes.
3.structure and data.
4.tables and relationships.
Posted Date:-2022-01-21 02:58:31
_____ JavaScript statements embedded in an HTML page can respond to user events such as mouse-clicks, form input, and page navigation.
1.Client-side
2.Server-side
3.Local
4.Native
Posted Date:-2022-01-21 02:40:20
---- is a specification for a distributed registry of web services.
1.WSDL
2.UDDI
3.SOAP
4.None of these
Posted Date:-2022-01-21 01:35:16
------- is simple and extensible.
1.WSDL
2.UDDI
3.SOAP
4.None of these
Posted Date:-2022-01-21 01:38:00
--------allows you to get around firewalls.
1.WSDL
2.UDDI
3.SOAP
4.None of these
Posted Date:-2022-01-21 01:38:26
--------is among the simplest and most foolproof web service approaches thatmakes iteasy for computers to call procedures on other computers.
1.XML-RPC
2.UDDI
3.SOAP
4.WSDL
Posted Date:-2022-01-21 01:41:36
--------is platform independent.
1. WSDL
2.UDDI
3.SOAP
4.None of these
Posted Date:-2022-01-21 01:37:20
--------uses WSDL to describe interfaces to web services.
1.WSDL
2.UDDI
3.SOAP
4.None of these
Posted Date:-2022-01-21 01:36:34
--------will be developed as a W3C standard.
1.WSDL
2.UDDI
3.SOAP
4.None of these
Posted Date:-2022-01-21 01:38:55
-------is an open industry initiative enabling businesses to discover eachother anddefine how they interact over the Internet
1.WSDL
2.UDDI
3.SOAP
4.None of these
Posted Date:-2022-01-21 01:36:57
-------is Language and Platform independent
1.WSDL
2. UDDI
3.SOAP
4.None of these
Posted Date:-2022-01-21 01:40:24
-------permits programs to make function or procedure calls across anetwork.
1.XML-RPC
2. UDDI
3. SOAP
4.WSDL
Posted Date:-2022-01-21 01:41:59
-------web services can be written inany programming language and executed in anyplatform
1.WSDL
2.UDDI
3.SOAP
4.None of these
Posted Date:-2022-01-21 01:40:47
------client specifies a procedure name and parameters in the XMLrequest, and the server returns either a fault or a response in the XMLresponse.
1. XML-RPC
2.UDDI
3.SOAP
4.WSDL
Posted Date:-2022-01-21 01:52:08
------has no notion of objects and no mechanism for includinginformation that uses other XML vocabulary.
1.XML-RPC
2.UDDI
3.SOAP
4.WSDL
Posted Date:-2022-01-21 01:52:30
------is designed to communicate via Internet.
1.WSDL
2.UDDI
3. SOAP
4. None of these
Posted Date:-2022-01-21 01:40:02
------is platform independent, open framework
1.WSDL
2.UDDI
3. SOAP
4.None of these
Posted Date:-2022-01-21 01:35:43
------uses WSDL othermechanism to discover the service.
1. WSDL
2.UDDI
3. SOAP
4. None of these
Posted Date:-2022-01-21 01:41:12
-----is a format for sending messages.
1.WSDL
2.UDDI
3.SOAP
4.None of these
Posted Date:-2022-01-21 01:39:37
-----is an XML-based protocol for exchanging information betweencomputers
1. WSDL
2.UDDI
3.SOAP
4.None of these
Posted Date:-2022-01-21 01:39:17
-----is language independent.
1.WSDL
2.UDDI
3. SOAP
4.None of these
Posted Date:-2022-01-21 01:37:40
-----uses a small XML vocabulary to describe the nature of requestsand responses.
1. XML-RPC
2.UDDI
3.SOAP
4. WSDL
Posted Date:-2022-01-21 01:51:43
----can communicate via SOAP, CORBA, and Java RMI Protocol.
1.WSDL
2.UDDI
3. SOAP
4.None of these
Posted Date:-2022-01-21 01:36:03
A PHP script should start with ___ and end with ___:
1.< php >
2.< ? php ?>
3.< ? ? >
4.< ?php ? >
Posted Date:-2022-01-21 01:55:58
AJAX made popular by
1.Microsoft
2. IBM
3.Google
4.SunMicrosystem
Posted Date:-2022-01-21 02:01:47
All variables in PHP start with which symbol?
1.$
2.&
3. !
4.*
Posted Date:-2022-01-21 02:41:13
AngularJS applications are a mix of . . . . .
1.HTML and PHP
2.HTML and CrossScript
3.HTML and AngularScript
4.HTML and JavaScript
Posted Date:-2022-01-21 02:45:51
Correct way to declare object in JS
1.var x = {firstName:”John”, lastName:”Doe”};
2.x = obj(firstName:”John”, lastName:”Doe”)
3.Both of above
4.None of above
Posted Date:-2022-01-21 02:47:24
Elements from the HTML namespace are displayed as they would in ………
1. DHTML
2.XML
3.HTML
4.DXML
Posted Date:-2022-01-21 02:56:32
How can we create instance of http module?
1.var http = require(“http”)
2.var http = new require(“http”)
3.var http = new http()
4.new mod()
Posted Date:-2022-01-21 01:57:09
How Node based web servers are different from traditional web servers?
1.Node based server process request much faster than traditional server.
2.Node based server uses a single threaded model and can services much larger number of requests than traditional server like Apache HTTP Server.
3. There is no much difference between the two.
4.data based server
Posted Date:-2022-01-21 02:54:59
Implict object config is instance of which class?
1. javax.servlet.ServletContext
2.javax.servlet.ServletConfig
3.javax.servlet.Context
4.javax.servlet.Application
Posted Date:-2022-01-21 02:54:18
PHP is an example of ___________ scripting language.
1.Server-side
2.Client-side
3. Browser-side
4.In-side
Posted Date:-2022-01-21 02:41:42
We'll show how to deploy the Java class to a SOAP server using the WASPdeployment tool
1. yes
2.no
3. can not say
4.None of these
Posted Date:-2022-01-21 01:52:55
What is the correct way to create a function in PHP?
1.function myFunction()
2.create myFunction()
3.new_function myFunction()
4.del myfunction()
Posted Date:-2022-01-21 02:51:17
What is the property textContent?
1.Sets the textual content of a node
2.Returns the textual content of a node
3.Both a and b
4.None of the mentioned
Posted Date:-2022-01-21 02:44:16
What is the work of the form control elements in the HTML DOM?
1.User Interface elements
2.User Interface elements
3.Debugging elements
4.Collecting elements
Posted Date:-2022-01-21 02:44:50
What makes Ajax unique?
1.It works as a stand-alone Web-development tool.
2.It works the same with all Web browsers.
3.It uses C++ as its programming language.
4.It makes data requests asynchronously.
Posted Date:-2022-01-21 02:51:50
What sever support AJAX ?
1.WWW
2.SMTP
3.HTTP
4. SNMP
Posted Date:-2022-01-21 01:55:31
What WSDL stands for?
1.Web Services Description Language
2.Web Services Direction Language
3. Wired Services Description Language
4.Web Services Dialect Language
Posted Date:-2022-01-21 01:59:03
Which attribute of JSP page directive defines the MIME type of the HTTP response
1. Import
2.Extends
3.contentType
4.info
Posted Date:-2022-01-21 02:48:22
Which JSP Action tags is used to include the content of another resource, like jsp, html or servlet?
1.jsp:plugin
2.jsp:include
3.jsp:forward
4. jsp:useBean
Posted Date:-2022-01-21 02:00:44
Which of the following code is used to get names of the attributes in servlet
1.response.getAttributeNames()
2. request.getAttributeNames()
3.Header.getAttributeNames()
4.None of the above.
Posted Date:-2022-01-21 02:43:46
which of the following is not a JSP Action Tag
1.jsp:forward
2. jsp:include
3.jsp:useBean
4.Jsp:import
Posted Date:-2022-01-21 02:40:44
Which of the following is the Web application equivalent to querySelectorAll()?
1.#()
2.&()
3.$()
4.None of the mentioned
Posted Date:-2022-01-21 02:57:58
Which of the following layer in Web Service Protocol Stack is responsible for encoding messages in a common XML format so that messages can be understood at either end?
1.Service Transport
2.XML Messaging
3.Service Description
4.Service Discovery
Posted Date:-2022-01-21 01:57:59
Which of the following method can be used to read parameters names in JSP?
1. request.getParameter()
2.response.getParameter()
3. request.getParameterNames()
4.response.getParameterNames()
Posted Date:-2022-01-21 02:53:48
Which of the following type of variables have only two possible values either true or false?
1.Integers
2.Doubles
3. booleans
4.Strings
Posted Date:-2022-01-21 02:45:21
Which one of the following lines need to be uncommented or added in the php.ini file so as to enable mysqli extension?
1.extension=php_mysqli.dll
2. extension=mysql.dll
3.extension=php_mysqli.dl
4.extension=mysqli.dl
Posted Date:-2022-01-21 02:57:35
Which relational database does WordPress use?
1.MySQL
2.Oracle
3.PostgresSQL
4.MS SQLServer Show Answer
Posted Date:-2022-01-21 02:55:57
Which statement is true?
1.All the statements are true
2. All XML elements must have a closing tag
3. All XML elements must be lower case
4.All XML documents must have a DTD
Posted Date:-2022-01-21 02:57:09
WordPress is used to create………
1.Website
2.Application
3.System Program
4. Operating System Show Answer
Posted Date:-2022-01-21 02:55:29