C Sharp Quiz 4 | Englishfreetest.com
Here's the exercise 'C Sharp Quiz 4 | Englishfreetest.com' about Technical Quiz - Technical Tests.
Put your knowledge about all things technology to the test Because everything tech, from computers and the internet to software and big data, changes rapidly on a day-to-day basis, it’s now a must to stay up to date with the technology that dominates our modern day lives. Are you up to speed on what’s going on in the tech industry today? Take our quiz to find out. Test how much you know about technology
You can find more to the lesson and more exercises. Technical Quiz - Technical Tests in here.
Finally, click here to "Test" for start practice exercise .
Content test:
A.Public
B.Private
C. Protected
D. Internal
A. IsFixedSize
B. IsStatic
C. Length
D. None of the above
A.A destructor is a special member function of a class that is executed whenever an object of its class goes out of scope
B.A destructor has exactly the same name as that of the class with a prefixed tilde (~) and it can neither return a value nor can it take any parameters
C. Both of the above
D. None of the above
A.define
B. undef
C.region
D.endregion
A.A member function of a class is a function that has its definition or its prototype within the class definition similar to any other variable
B. It operates on any object of the class of which it is a member, and has access to all the members of a class for that object
C.Both of the above
D. None of the above
A. The null coalescing operator is used with the nullable value types and reference types
B.It is used for converting an operand to the type of another nullable (or not) value type operand, where an implicit conversion is possible
C.If the value of the first operand is null, then the operator returns the value of the second operand, otherwise it returns the value of the first operand
D. All of the above
A.warning
B.region
C.line
D.error
A. It is component oriented
B. It can be compiled on a variety of computer platforms
C.It is a part of .Net Framework
D.All of the above
A.C# provides a special data types, the nullable types, to which you can assign normal range of values as well as null values
B.You can assign true, false, or null in a Nullable variable
C.You can store any value from -2,147,483,648 to 2,147,483,647 or null in a Nullable variable
D.All of the above
A. imports
B.using
C.exports
D.None of the above