Question 1 What best describes the function of the Main meth
Question 1
What best describes the function of the Main method?
Question 2
Why is the Main method \"static\"?
Question 3
Using is a keyword for
Question 4
The key word \"const\" is used to
Question 5
The code \"double radius\"
Question 6
A namespace is used for
Question 7
A class is a
Question 8
Console is
Question 9
WriteLine, ReadLine and ReadKey are
Question 10
Which statement best describes the function of the TryParse method?
Question 11
Which best describes what the if statement is doing?
Question 12
What would allow an exit from the while loop?
Question 13
The following questions do not refer to the picture of the code above:
Which best describes the primary difference between a for and a while loop?
Question 14
The following code is an example of
Question 15
Which best describes what the following code does?
Question 16
What best describes what this code does?
| It is where you put all your code |
Solution
Question 1
What best describes the function of the Main method?
Answer :- It is the name of the class
Question 2
Answer:-Because it is starting point of program it must be loaded into memory automatically.
Question 3
Answer is :-None of the above
Using key used to Name spaces
Question 4
Answer :- declare data type
Question 5
Answer :-declare a variable of data type is double.
Question 6
Answer:-Grouping related code
Question 7
Answer:- description of an objects
Question 8
Answer :- built in objects in system library
Question 9
Answer:- description of console
Question 10
Answer :-It trys to parse the string that is entered into the console.if it can\'t it throws an error
Question 11
Answer :-If the boolean is true it prompts the user to enter a valid radius.
Question 12
Answer:-if is an infinite loop and will naver exit the while
Question 14
Answer:-An Array
Question 15
answer:-Makes an array of 10 integers
Question 16
Answer:-B
divided by 2=0


