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?
What is the output of the program?
Does XML replace HTML?
Does XML replace HTML?
Within the source code of a function module errors are handled via the keyword.
Which dictionary structure contains system fields?
Which system field returns the number of records returned after a select?
How many types of tables exists in data dictionary? a) Transparent Table b) Internal Table c) Pool Table d) Hash Table e) Cluster Table f) Master Data Table
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 ?.
interface I{ void f1(); // 1 public void f2(); // 2 protected void f3(); // 3 private void f4(); // 4 } which lines generate compile time errors?
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 }}