Description: programming languages Online Quiz - 24 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Can we create custom components ?
2.Which two languages are used in Flex?
1.Which tag is must for compilation of mxml file?
What is the shortcut key to open the VB macro from excel?
Which window is used to show the values of variables that are in your code?
Complete the code. Sub Demo() X = 4 Y = 5 Z = addNum(X,Y) Msgbox (Z) End Sub Function addNum(X,Y) Ans = X + Y <> End Function
Which keyword is used to prevent the values being changed?
Visual Basic is a
What is the output for the below code ? public class Test { public static void main(String[] args) { Integer i = null; int j = i; System.out.println(j); } }
Which of the below statement is true about Error?
What is the result of executing the following code, using the parameters 0 and 3 ?public void divide(int a, int b) { try { int c = a / b; } catch (Exception e) { System.out.print("Exception "); } finally { System.out.println("Finally");}
What is the output for the below code ? public class Test { public static void main(String... args) { ArrayList list = new ArrayList(); list.add(1); list.add(2); list.add(3); for(int i:list) System.out.println(i); } }
static public class Test { public static void main(String[] args) { char c = 'a'; switch(c){ case 65: System.out.println("one");break; case 'a': System.out.println("two");break; case 3: System.out.println("three"); } } }
Parameter passing in java is pass by reference
Java allows multiple inheritance through
Do finally block get executed if the exception had not occurred?
Is it possible to store multiple data types in System.Array?
________________ refers to formatting data based on locale?
What does the keyword virtual mean in the method definition?
Can you inherit multiple interfaces?