programming languages Online Quiz - 39
Description: programming languages Online Quiz - 39 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
chmod command?
env command reports information on active processes?
who command displays information about the current status of system.
cu command is used for communications over a modem or direct line with another Unix system..
Which of the following is not a C# keyword?
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.
Which of these string definitions will prevent escaping on backslashes in C#?
Can multiple catch blocks be executed for a single try statement? In other words can code inside multiple catch blocks be executed?
How can you sort the elements of the array in descending order?
What are the OOPS Concepts
Does C++ support Funcations
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. }}