Question 116
Which three are valid SQL keywords? (Choose three.)
Question 117
You are creating a variable for an application.
You need to store data that has the following characteristics in this variable:
- Consists of numbers and characters
- Includes numbers that have decimal points
Which data type should you use?
Question 118
You execute the following code.
How many times will the word Hello be printed?
Question 119
You are developing a C# program.
You write the following code:
- int x = 10
- int y = ++x
- int x = y++;
What will be the variable z after all the above statements are executed?
Question 120
You are developing a Windows application.
The user needs to work with multiple windows of the application at the same time and needs a simplified interface.
The application needs to be compatible with different display configurations, such as multiple monitors.
Which of the following interfaces should you create?
