Tag: web technology

Questions Related to web technology

  1. ListGrid

  2. DynamicForm

  3. PropertySheet

  4. DSRequest


Correct Option: D
  1. Validating a form

  2. Sending a form's contents by email

  3. Storing the form's contents to a database file on the server

  4. None of the above


Correct Option: C

Which is the correct way to create a ListGrid ?

  1. isc.ListGrid.create({ ID:"test", left:50, top:150, width:600, height:400, });

  2. isc.ListGrid.create({ ID:"test"; left:50; top:150; width:600;height:400; });

  3. isc.ListGrid.create({ ID:"test", left:50, top:150, width:600, height:400 });

  4. None


Correct Option: C

What is the output for the below code ? class A implements Runnable{ public void run(){ System.out.println(Thread.currentThread().getName()); } } public class Test { public static void main(String... args) { A a = new A(); Thread t = new Thread(a); Thread t1 = new Thread(a); t.setName("t"); t1.setName("t1"); t.setPriority(10); t1.setPriority(-3); t.start(); t1.start(); } }

  1. t t1

  2. t1 t

  3. t t

  4. Compilation succeed but Runtime Exception


Correct Option: D