1 Which of these expressions describe a part of multithreading?
Parallel execution of code
Thread Interruption
Thread Synchronization
Thread Waiting
All of the above
2 Which of the following statements is true?
C# implicitly converts from floating-point data type to byte.
Decimal data type stores 128-bit.
The default initialization value of a decimal variable is 1.0.
All of the above
3 Which of the following statements is true?
Designer view shows the properties associated with a control
Solution Explorer shows all the files and resources used in a project
Microsoft Visual Studio is a powerful and versatile Integrated Development
Environment (IDE)
Some of the important components of the Microsoft Visual Studio are Code view,
Designer view, Solution Explorer, Toolbox, Properties, and Error List
All of the above
4 bool flag = true;
Double d = flag;
The above conversion executes without throwing any error.
True