What is the correct JavaScript syntax to insert a comment that has more than one line?
//This comment has ...//
/This comment has .../
What is the correct way to write a JavaScript array?
var txt = new Array(1:"app",2:"cop,3:"top")
var txt = new Array("app","cop","top")
var txt = new Array:1=("tim")2=("cop")3=("top")
var txt = new Array="app","cop","top"
How do you round the number 7.25, to the nearest integer?
round(7.25)
rnd(7.25)
Math.round(7.25)
Math.rnd(7.25)
Main advantage of SOAP are
architectural independent
language independent
based on http
none of the above
Main principles of SOA are
reuse
modularity
componentization
granularity
only first and second option
Web services platform elements:
SOAP,UDDI,WSDL
XML,XSD,WSDL
RPC,SOAP,http
all the above
first and second
Basic Web service platform is
soap,WSDl,uddi
XML and HTTP
SOAP,RPC,XML
all of the above
WSDL contains following components
type
message
portType
binding
operations
error messages
In SOA do we need to build systems from scratch ?
True
False