programming languages Online Quiz - 39
Description: programming languages Online Quiz - 39 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Attempted
0/20
Correct 0
Score 0
‹
›
chmod command?
tar command?
env command reports information on active processes?
The statement that is used to replace multiple if statements is called?
Which statement is true about interface and abstract classes?
If a method is marked as protected internal who can access it?
The default type of enum is integer and has a default value 1.
How can you sort the elements of the array in descending order?
What is the name given to the type of assembly that contains localized resources?
What are the OOPS Concepts
Will C++ supports Structures
- class Base{} 2. public class MyCast extends Base{ 3. static boolean b1=false; 4. static int i = -1; 5. static double d = 10.1; 6. public static void main(String argv[]){ 7. MyCast m = new MyCast(); 8. Base b = new Base(); 9. //………..Here 10. }}