ANSWERS 100% ACCURATE
class Airplane {
private:
int customerCapacity;
string _Manufacturer;
public:
Airplane (int capacity, string manufacturer);
int load_Customers(Customer *);
};
Which of the following are style errors for the code on Line 7?
A. variables should be public
B. method names should be separated by hyphens
C. indentation
D. class name should be lowercase
E. variable name should be uppercase
F. variable should have trailing underscore
G. variable should have no underscore
H. method Airplane should be private
I. variable name should be separated by underscore
J. variable name should be lowercase
K. variable name should not be separated
L. Spacing between elements
M. method names should be lower case
N. order of access restrictions
O. method names should be CamelCase - ANSWER - O
Using a debugger can find all defects in code.
A. True
B. False - ANSWER - B
What is created to allow a compiler to temporarily stop processing code that is being
executed to allow for the developer to see current state?
A. Debugging break
B. Debugging
C. Pause
D. Stoppoint
E. Breakpoint - ANSWER - E
, Commits should happen only at the end of a daily coding session.
A. True
B. False - ANSWER - B
Only one line of code should change per commit.
A. True
B. False - ANSWER - B
Test obligations come from Structural Analysis, that is, from the code itself.
A. True
B. False - ANSWER - B
Tests which meet the code coverage criteria can still be poor tests.
A. True
B. False - ANSWER - A
New processes/reports are able to be added to the Jenkins Pipeline through plug-ins.
A. True
B. False - ANSWER - A
Continuous Integration alerts to submitting developer of build or test failure, but cannot
remove the code committed.
A. True
B. False - ANSWER - B
Commit messages are only helpful to you at the time you make them.
A. True
B. False - ANSWER - B
Branching aids developers seeking to work on the same code simultaneously.
A. True
B. False - ANSWER - A
Project materials are stored in a remote repository through the WebHook functionality.
A. True
B. False - ANSWER - B