What is one purpose from style guides?
What is legible/logical/understandable code?
Which of these is not an acceptable variable name: var, 1var, var1, varOne
What is 1var?
When should you include whitespace in your code?
What is always?
What is commenting?
What is code descriptors?
What companies require teamwork?
What is all of them?
(T/F) The choice of programming language is very important to the design of a program
What is false?
How should we name variables?
What is concise and descriptive?
What is one kind of whitespace?
What is tab/new line/space?
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)?
What is one way to make debugging in teams easier?
What is generously commenting code?
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?
When should we comment variables?
What is almost never because the variable should be descriptive on their own?
What is Google's limit for amount of characters on a line in your code in C++?
What is 80 characters?
What is one form of commenting that can make it easier for the coder?
What is auto-generated ccomments?
What should you do when you are coding for a larger project/company to develop legible code?
What is develop a style guide?