programming languages Online Quiz - 133
Description: programming languages Online Quiz - 133 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Which of the following cannot be used as a modifier for instance variables while defining a class?
What is the output of the program?
What is the output of the program?
can versioning concept applicable to Private assemblies?
Does XML replace HTML?
Data element is an example of
Which data type cannot be used to define parameters
What is the system field for the current date?
Which of the following describe the internal representation of a type D data?
Within the source code of a function module errors are handled via the keyword.
Which dictionary structure contains system fields?
Class C { public static void main(String[] args) { int[]a1[]=new int[3][3]; //3 int a2[4]={3,4,5,6}; //4 int a2[5]; //5 }} What is the result of attempting to compile and run the program ?.
class C{ int i; public static void main (String[] args) { int i; //1 private int a = 1; //2 protected int b = 1; //3 public int c = 1; //4 System.out.println(a+b+c); //5 }}