marinathepichu
Quiz von , erstellt am more than 1 year ago

Quiz am Quiz 2 [Object-Oriented Programming], erstellt von marinathepichu am 09/04/2016.

2570
1
0
marinathepichu
Erstellt von marinathepichu vor etwa 8 Jahre
Schließen

Quiz 2 [Object-Oriented Programming]

Frage 1 von 20

1

What are the three main features of object-oriented programming? (pick 3)

Wähle eine oder mehr der folgenden:

  • abstraction

  • encapsulation

  • inheritance

  • methods

  • polymorphism

  • recursion

Erklärung

Frage 2 von 20

1

A(n) _______ is a type that references a method.

Wähle eine der folgenden:

  • modifier

  • accessor

  • class

  • delegate

Erklärung

Frage 3 von 20

1

A class that does not provide a complete implementation must be declared with the keyword _________.

Wähle eine der folgenden:

  • abstract

  • static

  • inc

  • delegate

Erklärung

Frage 4 von 20

1

You are writing a code to handel events in your protram. You define a delegate named RectangleHandler like this:

public delegate void RectangleHandler(Rectangle rect);

you also create a variable of the RectangleHandler type as follows:

RectangleHandler handler;

Later in the program, you need to add a method named DisplayArea to the methodinvocation list of the handler variable. The signature of the DisplayArea method matches the signature of the RectangleHandler method. Any code that you write should not affect any existing event-handling code. Given this restriction, which of the following codes should you write?

Wähle eine der folgenden:

  • handler = DisplayArea;

  • handler = new RectangleHandler(DisplayArea);

  • hander -= DisplayArea;

  • handler += DisplayArea;

Erklärung

Frage 5 von 20

1

A(n) _______ is a blueprint of an object.

Wähle eine der folgenden:

  • class

  • method

  • variable

  • flowchart

Erklärung

Frage 6 von 20

1

You are writing code for a class named Product. You need to make sure that the data members of the class are initialized to their correct values as soon as you create an object of the Product class. The initialization code should be always executed. What should you do?

Wähle eine der folgenden:

  • Create a constructor in the Product class to initialize data members.

  • Create an event in the Product class to initialize data members.

  • Create a static property in the Product class to initialize data members.

  • Create a static method in the Product class to initialize data members.

Erklärung

Frage 7 von 20

1

You want to restrict the access for a method to the containing class or to a class that is derived from the containing class. Which access modifier should you use for this method?

Wähle eine der folgenden:

  • protected

  • private

  • internal

  • public

Erklärung

Frage 8 von 20

1

The _______ keyword refers to the current instance of a class.

Wähle eine der folgenden:

  • this

  • that

  • current

  • thing

Erklärung

Frage 9 von 20

1

You can use ______ to group related classes in order to reduce name collisions.

Wähle eine der folgenden:

  • namespace

  • encapsulation

  • struct

  • private

Erklärung

Frage 10 von 20

1

You defined a class AdvMath that defines advanced mathematical functionality. You plan to make classes that are derived from AdvMath. You do not want the functionality of AdvMath class to be inherited into derived classes. What keyword should you use to define the AdvMath class?

Wähle eine der folgenden:

  • private

  • internal

  • abstract

  • sealed

Erklärung

Frage 11 von 20

1

You are creating a new class named Circle. You write the following code:

class Circle: IComparable
{

public double Radius{ get; set; }

public double GetArea()
{

return Radius*Radius*3.14159

}

public int CompareTo(object obj)
{

// some code will go here...

}

}

Wähle eine der folgenden:

  • /************************************************

    public int CompareTo(object obj)
    {

    Circle target = (Circle)obj;
    double diff = this.GetArea() - target.GetArea();
    if(diff ==0)
    return 0;
    else if (diff > 0)
    return 1;
    else return -1;

    }
    /*******************************************************

  • /************************************************

    public int CompareTo(object obj)
    {

    Circle target = (Circle)obj;

    if(this==target)
    return 1;
    else if (diff > 0)
    return -1;
    else return 0;

    }
    /*******************************************************

  • /************************************************

    public int CompareTo(object obj)
    {

    Circle target = (Circle)obj;
    double diff = this.GetArea() - target.GetArea();
    if(diff ==0)
    return 1;
    else if (diff > 0)
    return -1;
    else return 0;

    }
    /*******************************************************

  • /************************************************

    public int CompareTo(object obj)
    {

    Circle target = (Circle)obj;

    if(this==target)
    return 0;
    else if (diff > 0)
    return 1;
    else return -1;

    }
    /*******************************************************

Erklärung

Frage 12 von 20

1

Which of the following class elements should you use to define the behavior of a class?

Wähle eine der folgenden:

  • method

  • event

  • property

  • delegate

Erklärung

Frage 13 von 20

1

You can use the _____ keyword to declare a member that belongs to the class itself rather than to a specific object.

Wähle eine der folgenden:

  • static

  • public

  • private

  • limited

Erklärung

Frage 14 von 20

1

You can use the ______ operator to check whether it is legal to cast one type to another type.

Wähle eine der folgenden:

  • is

  • try

  • castTo

  • =

Erklärung

Frage 15 von 20

1

INCOMPLETE

The Draw() method in the Square class should provide new functionality but also hide the Polygon class implementation of the Draw() method. Which line of code would accomplish this?

Wähle eine der folgenden:

  • INCORRECT

    public static void Draw()

  • INCORRECT

    public virtual void Draw()

  • public new void Draw()

  • public override void Draw()

Erklärung

Frage 16 von 20

1

INCOMPLETE

You need to provide query functionality to several of your classes. Each class's algorithm for the query will likely be different. Also, not all the classes have an "is-a" relationship with each other. How should you support this functionality?

Wähle eine der folgenden:

  • INCORRECT


    Have all the classes inherit from an abstract base class and override the base-class method to provide their own query functionality.

  • Create a common interface that is implemented by all the classes.

  • Have all the classes inherit from a base classes that provides the query functionality.

  • Add the query functionality to a base class with the public access modifier.

Erklärung

Frage 17 von 20

1

INCOMPLETE

You are writn code for a new method named Process:

void Process (object o)
{
//code goes here...
}

The code received a parameter of type object. You need to cast this object into the type Rectangle. At times, the value of o that is passed to the method might not be a valid Rectangle value. You need to make sure that the code does not generate any System.InvalidCastExpection errors while doing the conversion. Which of the following lines of code should you use inside the Process method to accomplish this goal?

Wähle eine der folgenden:

  • INCORRECT

    Rectangle r = o is Rectangle;

  • Rectangle r = (o != null) ? o as Rectangle: (Rectangle) o;

  • Rectangle r = o as Rectangle;

  • Rectangle r = Rectangle) o;

Erklärung

Frage 18 von 20

1

INCOMPLETE

Classes that want to support comparison must implement the IComparable interface and then provide a body for the _______ method.

Wähle eine der folgenden:

  • INCORRECT

    ==

  • CompareTo

  • Main

  • isA

Erklärung

Frage 19 von 20

1

INCOMPLETE

In a class, you defined a method called Render. This method provides functionality to render bitmap files on a the screen. You would like the derived classes to supersede this functionality to support the rendering of additional image formats. You also want the Render method of the derived classes to be executed even if a derived class is cast as the base class. Which keyword should you use with the definition of the Render method in the base class?

Wähle eine der folgenden:

  • INCORRECT

    abstract

  • INCORRECT

    overrides

  • new

  • virtual

Erklärung

Frage 20 von 20

1

INCOMPLETE

Which of the following are value types (not reference types)? choose all that apply.

Wähle eine oder mehr der folgenden:

  • float

  • struct

  • INCORRECT

    string

  • INCORRECT

    class

  • int

  • method

  • INCORRECT

    delegate

Erklärung