Tag: web technology

Questions Related to web technology

  1. a. Use Web protocols

  2. b. Are stateless

  3. c. Are loosely coupled

  4. Use XML as the universal data format

  5. e. a and c only

  6. f. all the above


Correct Option: F
  1. The section

  2. Both the section and the section are correct

  3. The section

  4. The section


Correct Option: B
  1. function:myFunction()

  2. function myFunction()

  3. function=myFunction()

  4. function=myFunction(){ }


Correct Option: B
  1. /This comment has more than one line/

  2. /This comment has more than one line//

  3. //This is a comment


Correct Option: A,D
  1. Math.rand(10.75)

  2. Math.round(10.75)

  3. rnd(10.75)

  4. Math.rnd(10.75)


Correct Option: B
  1. statusbar = "put your message here"

  2. window.status("put your message here")

  3. window.status = "put your message here"

  4. status("put your message here")


Correct Option: C
  1. client.navName

  2. navigator.browser

  3. browser.name

  4. navigator.appName


Correct Option: D
  1. var txt = new Array="tim","kim","jim";

  2. var txt = new Array("tim","kim","jim");

  3. var txt = new Array:1=("tim")2=("kim")3=("jim")

  4. var txt = new Array(1:"tim",2:"kim",3:"jim")


Correct Option: B
  1. setTimeout('run()','50000');

  2. setTimer('run()','5');

  3. setTimeout('run()','500');

  4. setTimeout('run()','5000');


Correct Option: D