web technology Online Quiz - 137
Description: web technology Online Quiz - 137 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: web technology |
Attempted
0/20
Correct 0
Score 0
‹
›
SOAP doesn't define a message exchange pattern
How do you create a function?
What is the correct JavaScript syntax to insert a comment ?
How do you round the number 10.75, to the nearest integer?
var d=new Date(); theDay=d.getDay(); switch (theDay) { case 2: document.write("Today is Saturday"); break; case 4: document.write("Finally Friday"); break; case 5: document.write("Super Saturday"); break; case 6: document.write("Sleepy Sunday"); default: document.write("I'm looking forward to this weekend!"); } If today is Saturday, what will be out of the above snippet
What is the correct way to write a JavaScript array?
What is the syntax which will display the image on the screen for 5 seconds?
- abstract class C1{ public void m1(){ //1 }} abstract class C2{ public void m2(){ //2 }}