C# Test 1

0%

Is it possible to use several inheritances in C#?

Correct! Wrong!

Explanation:
Multiple inheritance is not supported in C# because the developers believe it adds too much complexity to the language while delivering too little benefit. In C#, classes can only inherit from one parent class, which is referred to as single inheritance.

Interoperability with partially or fully dynamically typed languages and frameworks is available in which C# release?

Correct! Wrong!

Explanation:
Microsoft has released the Visual Studio 2010 runtime and development environment version 4.0. Interoperability with partially or fully dynamically typed languages and frameworks, such as the Dynamic Language Runtime and COM, is a primary priority of C# 4.0.

Which CLR component enables a.net program to communicate with a COM application?

Correct! Wrong!

Explanation:
The COM task allocator is used by the COM marshaller to allocate and free memory.

Which.NET collection class allows for the use of a unique key to access elements?

Correct! Wrong!

Explanation:
The Hashtable class represents a collection of key-value pairs that are grouped according to the key's hash code. It accesses the elements in the collection using the key.
When you need to access elements by key and can determine a useful key value, you utilize a hash table. There is a key/value pair for each item in the hash table. The key is used to gain access to the collection's items.

Which of the following is executed by the actual.Net code?

Correct! Wrong!

Explanation:
MSIL (Microsoft Intermediate Language) is a language that is produced by a variety of compilers (C#, VB,.NET, and so on). The lLDasm (Intermediate Language Disassembler) software included in the.NET Framework SDK (FrameworkSDKBinildasm.exe) allows users to view MSlL code in a human-readable format.

Who said C# was a "clone" of Java?

Correct! Wrong!

Explanation:
C# was dubbed a replica of Java by James Gosling, the founder of the Java programming language, and Bill Joy, its creator. Microsoft created it as a.NET program in the year 2000.

Which CLR component allows MSIL to be converted into native code for the operating system?

Correct! Wrong!

Explanation:
After a program starts, the JIT compiler runs and compiles the code. A JIT compiler, to put it another way, compiles code on the fly, or in other words, just in time. The compiled code, also known as bytecode sequences, is converted into native code, which is a faster and more understandable machine language.

Is it possible to run several catch blocks for a single try statement?

Correct! Wrong!

Explanation:
No, multiple catch blocks for the same try statement are not possible. This is because the catch statement is only performed once in the event of an exception.

Which.NET type does the C# keyword "int" map to?

Correct! Wrong!

Explanation:
.Int32 value type supports signed integers with values ranging from negative 2,147,483,648 (represented by the Int32. MinValue constant) to positive 2,147,483,647 (represented by the Int32. MaxValue constant).

Premium Tests $49/mo
FREE Feb-2024