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?
Is it possible to store multiple data types in System.Array?
Java allows multiple inheritance through
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); } }
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?
2.Which two languages are used in Flex?
Can we create custom components ?