0

programming languages Online Quiz - 39

Description: programming languages Online Quiz - 39
Number of Questions: 20
Created by:
Tags: programming languages
Attempted 0/20 Correct 0 Score 0

chmod command?

  1. To change the group of a file or directory

  2. To change permissions on a file

  3. To display information about mounted filesystems

  4. Tells the status of local networked machines


Correct Option: B

tar command?

  1. compresses a file and returns the original file with .z extension

  2. to backup the file systems

  3. creates an archive of files into a single file

  4. will initiate an interactive conversation with user


Correct Option: C

env command reports information on active processes?

  1. True

  2. False


Correct Option: B

who command displays information about the current status of system.

  1. True

  2. False


Correct Option: A

cu command is used for communications over a modem or direct line with another Unix system..

  1. True

  2. False


Correct Option: A
  1. The switch & case statement

  2. ?: (ternary operator)

  3. The #endif statement

  4. The nestedif statement


Correct Option: A
  1. A class may inherit several interfaces, A class may inherit only one abstract class

  2. An abstract class may only contain incomplete methods (abstract methods)

  3. An interface may contain complete or incomplete methods

  4. A class implementing an abstract class has to implement all the methods of the abstract class, but the same is not required in the case of an interface


Correct Option: A

If a method is marked as protected internal who can access it?

  1. Access is limited to the current assembly

  2. Access is limited to the containing class or types derived from the containing class.

  3. Access is limited to the current assembly or types derived from the containing class.

  4. Access is limited to the containing type


Correct Option: C

The default type of enum is integer and has a default value 1.

  1. True

  2. False

  3. Sometimes

  4. None


Correct Option: B

Which of these string definitions will prevent escaping on backslashes in C#?

  1. string s = #"Test string";

  2. string s = ."Test string";

  3. string s = @"Test string";

  4. string s = &"Test string";


Correct Option: C

Can multiple catch blocks be executed for a single try statement? In other words can code inside multiple catch blocks be executed?

  1. No

  2. In certain conditions

  3. Yes

  4. None


Correct Option: A

How can you sort the elements of the array in descending order?

  1. By calling ReverseSort()

  2. By calling SortReverse()

  3. By calling Descend()

  4. By calling Sort() and then Reverse() methods


Correct Option: D

What is the name given to the type of assembly that contains localized resources?

  1. Spoke

  2. Satellite

  3. Sputnik

  4. Hub


Correct Option: B

What are the OOPS Concepts

  1. Abstraction

  2. Encapsulation

  3. Structures

  4. POP


Correct Option: A,B

what is diff between c++ and cobol

  1. POP

  2. OOPS

  3. Strucutres

  4. Pointers


Correct Option: B,D

Does C++ support Funcations

  1. True

  2. False


Correct Option: A

Will C++ supports Structures

  1. True

  2. False


Correct Option: A
  1. 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. }}
  1. b=m;

  2. m=b;

  3. d =i;

  4. b1 =i;


Correct Option: A
- Hide questions