web technology Online Quiz - 137
Description: web technology Online Quiz - 137 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: web technology |
Which of the following is true about SOAP?
SOAP doesn't define a message exchange pattern
Characteristics of the Web Services programming model.
Where is the correct place to insert a JavaScript in HTML Page?
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?
How do you put a message in the browser's status bar?
How can you find a client's browser name?
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?
An external JavaScript must contain the tag?
How do you write a conditional statement for executing some code if "i" is equal to 5?
- abstract class C1{ public void m1(){ //1 }} abstract class C2{ public void m2(){ //2 }}
interface I{ void f1(); // 1 public void f2(); // 2 protected void f3(); // 3 private void f4(); // 4 abstract void f5(); // 5 }
abstract class vehicle{ abstract public void speed(); } class car extends vehicle{ public static void main (String args[]) { vehicle ob1; ob1=new car(); //1 }}
class command { public static void main (String[] a1) { System.out.println(a1.length()); //1 System.out.println(a1[0]); //2 System.out.println(a1); //3 //2 }}
abstract class A {} // 1 transient class B {} // 2 private class C {} // 3 static class D {} // 4 Which of these declarations will not produce a compile-time error?
- What does CSS stand for?