Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
C# Programming
Quiz 3: C Programming: Collections, Delegates, and Object-Oriented Concepts
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 21
Multiple Choice
C# supports a technique known as________, which allows a method to specify explicitly the name of the interface it is implementing.
Question 22
Multiple Choice
The reason that C# does not support multiple inheritances is because of ______.
Question 23
Multiple Choice
_______ is a set of devices through which a user communicates with a system using interactive set of commands.
Question 24
Multiple Choice
Exponential formatting character ('E' or 'e') converts a given value to string in the form of _______.
Question 25
Multiple Choice
The ______ are the Graphical User Interface (GUI) components created for web based interactions..
Question 26
Multiple Choice
In Microsoft Visual Studio, ______ technology and a programming language such as C# is used to create a Web based application.
Question 27
Multiple Choice
The controls available in the tool box of the ______ are used to create the user interface of a web based application.
Question 28
Multiple Choice
Web Forms consists of a _______ and a _________ .
Question 29
Multiple Choice
The ______ parentheses that follow _____ indicate that no information is passed to Main() .
Question 30
Multiple Choice
The scope of a variable depends on the ____________ and _________.
Question 31
Multiple Choice
Which of the following statements is correct about the C#.NET code snippet given below?class Student s1, s2; // Here 'Student' is a user-definedclass. s1 = new Student() ;s2 = new Student() ;
Question 32
Multiple Choice
Which of the following can be facilitated by the Inheritance mechanism?1 Use the existing functionality of base class.2 Overrride the existing functionality of base class.3 Implement new functionality in the derived class.4 Implement polymorphic behaviour.5 Implement containership.
Question 33
Multiple Choice
Which of the following should be used to implement a 'Has a' relationship between two entities?
Question 34
Multiple Choice
Which of the following should be used to implement a 'Like a' or a 'Kind of' relationship between two entities?
Question 35
Multiple Choice
How can you prevent inheritance from a class in C#.NET ?
Question 36
Multiple Choice
A class implements two interfaces each containing three methods. The class contains no instance data. Which of the following correctly indicate the size of the object created from this class?