-
class MyClass IFace
-
class MyClass; IFace
-
class MyClass: IFace
-
class MyClass {IFace}
eQuiz - Multiple choice test on C # - part 2
We will continue with part 2 of the small test series on C #, there will be 15 questions in total with no time to answer each sentence.
-
Question 16: The correct header for a class intended to be used is:
-
Question 17: For class to use interface it must:
-
Inheriting the characteristics of the interface
-
Contains methods like interfaces
-
Create an interface object
-
All the answers above
-
-
Question 18: Any class directly or indirectly expand the following class:
-
System
-
Object
-
Drawing
-
Console
-
-
Question 19: Composition concept determines that you can:
-
Compile good code with C #.
-
Compose C # projects with different objects.
-
Reduce errors by rewriting during programming.
-
All the answers above.
-
-
Question 20: Polymorphism occurs when methods of subclasses
-
Override parent class methods but still maintain deployment.
-
Maintain the same return type and parameters as the parent class, but the implementation is different.
-
There are return types and parameters different from the parent class.
-
Is virtual.
-
-
Question 21: To export multidimensional array values, Console.WriteLines (___):
-
myArray [1] [3];
-
myArray [1,3];
-
myArray {1} {3};
-
myArray (1), (3);
-
-
Question 22: All methods in abstract base class must be declared abstract.
-
It's correct
-
False
-
-
Question 23: Methods that are abstractly declared in the base class must show the deployment at the time of declaration.
-
- It's correct
-
- False
-
-
Question 24: Code:
public class B: A {}-
- Define a class that derives all methods of A.
-
- Define a class that instructs the protected and public methods of A.
-
- Cod
- Both A and B.
- e on error.
-
-
Question 25: Suppose that: public class B: A {public B (int i): base (i) {}} compile and run correctly, what can we conclude about constructors in class A?
-
- A constructor takes parameters of type i.
-
- This is just the default constructor.
-
- A constructor takes a parameter of type int.
-
- A and B
-
-
Question 26: The classes declared with the sealed keyword cannot be the base class?
-
It's correct
-
False
-
-
Question 27: A method . an exception when the method detects a problem occurs.
-
- Try
-
- Catche
-
- Throw
-
- A and B
-
-
Question 28: Exception objects are derived from class?
-
- Try
-
- Catch
-
- Exception
-
- Event
-
-
Question 29: An abstract class .
-
- May contain instance variables
-
- May contain a constructor
-
- Can expand another class
-
- All the answers above.
-
-
Question 30: A block . with code can throw an exception.
-
- Try
-
- Catch
-
- Exception
-
- A and B
-
5 ★ | 1 Vote
Read More
- eQuiz - Multiple choice test on JDBC - Part 1
- eQuiz - VB.NET testing test - Part 2
- eQuiz - Multiple choice test on OSI Model - part 2
- Test on JAVA test P7
- JAVA test on P4
- JAVA test on P6
- JAVA test test P1
- eQuiz - Multiple choice test on OSI Model - part 1
- Test on JAVA test P5
- JAVA test on P3
- eQuiz - Multiple choice test on HTML knowledge
- Test on JAVA P10 test
- eQuiz - Multiple choice test on Java Swing Practice - Part 2
- Testing test on JAVA P2