General
Naming
Whitespace
Commenting
Teams
100

What is one purpose from style guides?

What is legible/logical/understandable code?

100

Which of these is not an acceptable variable name: var, 1var, var1, varOne

What is 1var?

100

When should you include whitespace in your code?

What is always?

100

What is commenting?

What is code descriptors?

100

What companies require teamwork?

What is all of them?

200

(T/F) The choice of programming language is very important to the design of a program

What is false?

200

How should we name variables?

What is concise and descriptive?

200

What is one kind of whitespace?

What is tab/new line/space?

200

What are good instances of commenting?

What is when the code is not intuitive (typically when building new functions and classes and/or using loops in unintuitive ways)?

200

What is one way to make debugging in teams easier?

What is generously commenting code?

300

What language had the first need for style guides because of its status as the first computer programming language that was widely used?

What is FORTRAN?

300

When should we comment variables?

What is almost never because the variable should be descriptive on their own?

300

What is Google's limit for amount of characters on a line in your code in C++?

What is 80 characters?

300

What is one form of commenting that can make it easier for the coder?

What is auto-generated ccomments?

300

What should you do when you are coding for a larger project/company to develop legible code?

What is develop a style guide?

M
e
n
u