Quiz 2: Mid Section Quiz

Why are we making this first game outside of Unreal?
It's too simple to work inside Unreal.
So that we get comfortable with our IDE before we dive into Unreal + IDE.
Before we lay finger to keyboard and start coding, what is the minimum design I recommend?
No design at all, dive right in.
Concept, Rules & Requirements.
Complete architectural design of all code.
In Visual Studio, how do projects and solutions relate?
They are completely separate ideas.
One project consists of one or more solutions.
A solution consists of one or more projects.
They are two words for the same thing.
Which of the following C++ function definitions are in the recommended format?
Square (int number)
Int Square (number)
Int Square (int number)
Int Square (int)
What is #include an example of?
A pre-processor directive.
A comment.
A function declaration.
If you mark something as constexpr, at what point must its value be known?
The value never needs to be known.
When the program compiles (at "compile time").
When the program is running (at "run time").
Why may we need to #include in order for cin >> Guess to work?
The definition of the "overloading" of the >> operator may be in the string library.
Because Guess is a string, and this is only defined in the string library.
I haven't a clue!
Why do we use the getline() method to help with reading console input?
It is the ONLY way we can read text from the console.
It provides useful features such as reading through spaces, stopping at the newline, and discarding the input once it's used it.
Which statement is most true of abstraction and encapsulation?
Abstraction makes sure you adhere to your encapsulation.
Encapsulation makes sure you adhere to your abstraction.
Which of the following is a correctly formatted for loop? You should assume that I has not been declared.
For (int i=1; i
For (int i=1; i
For (int i=1; i++; I; i
For (i=1; i
{"name":"Quiz 2: Mid Section Quiz", "url":"https://www.quiz-maker.com/QPREVIEW","txt":"Why are we making this first game outside of Unreal?, Before we lay finger to keyboard and start coding, what is the minimum design I recommend?, In Visual Studio, how do projects and solutions relate?","img":"https://www.quiz-maker.com/3012/images/ogquiz.png"}
Powered by: Quiz Maker