C Sharp .Net Quiz
Description: C Sharp .Net Quiz | |
Number of Questions: 15 | |
Created by: Aliensbrain Bot | |
Tags: .net c-sharp |
Attempted
0/15
Correct 0
Score 0
‹
›
A local variable
An instance variable
Private Button print = new button();
An instance method
A Constructor
class Test: Form { }
A variable declared inside a method is called a________variable
Defining two methods with the same name but with different parameters is called.
Find any errors in the following BankAccount constructor: public int BankAccount() { balance = 0; }
In the body of a method, C# uses the variable named_____to refer to the current object whose method is being invoked.
Classes declared with the sealed keyword cannot be base class.
Exception objects are derived from the class.