programming languages Online Quiz - 24
Description: programming languages Online Quiz - 24 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Can you inherit multiple interfaces?
What does the keyword virtual mean in the method definition?
________________ refers to formatting data based on locale?
Is it possible to store multiple data types in System.Array?
Java allows multiple inheritance through
Parameter passing in java is pass by reference
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"); } } }
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); } }
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");}
Which of the below statement is true about Error?
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); } }
Visual Basic is a
Which keyword is used to prevent the values being changed?
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 window is used to show the values of variables that are in your code?
What is the shortcut key to open the VB macro from excel?
1.Which tag is must for compilation of mxml file?
Can we create custom components ?