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?
can versioning concept applicable to Private assemblies?
Does XML replace HTML?
Does XML replace HTML?
What is the basic objects of data dictionary?
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?
If a table doesn't have MANDT as part of the primary key, it is
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?