Description: programming languages Online Quiz - 133 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
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 }}
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 { 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 ?.
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
Which system field returns the number of records returned after a select?
Which dictionary structure contains system fields?
Within the source code of a function module errors are handled via the keyword.
If a table doesn't have MANDT as part of the primary key, it is
Which of the following describe the internal representation of a type D data?
What is the system field for the current date?
Which data type cannot be used to define parameters
Data element is an example of
What is the basic objects of data dictionary?
Does XML replace HTML?
Does XML replace HTML?
can versioning concept applicable to Private assemblies?
What is the output of the program?
What is the output of the program?
What is the output of the program?
Which of the following cannot be used as a modifier for instance variables while defining a class?