COGS 18 Mid-term (REQUIRED CONTENT ONLY)
What is computation? Computation is how things are done
Is Python open-source? Yes, Python is open-source and accessible
What are cells? The main organizational structure of the notebook are cells
What are markdown cells? A brief note about Markdown. It's a way to specify all formatting
within the text itself.
How do you italicize text? Italicized text can be specified with an underscore or single
asterisks
How do you make bold text? Bold text requires two underscores or two asterisks
What type of cells allow text Markdown cells NOT code cells
formatting?
What does three Bold and italicize
underscores around text
accomplish?
How are headers specified? Headers are specified with a pound sign #
What happens the more The more pound signs, the
pound signs you add? smaller the header But it's still
larger than just plain text.
Lists are also possible, just use dashes and/or
Are lists possible?
numbers with a dot at the end and space them out
each on a line
What would happen if I Python would order them properly
specified a numbered list
but put the same number
before each list item?
What are code cells for? Whenever you're writing code, you'll want to be sure the cell
is set to be a code cell
What can cells print out? Cells can also have output, that gets printed out below the
cell
What happens if you If you execute a cell with just a variable name in it, it will also
execute a cell with an get printed
already defined variable
, name in it?
What is computation? Computation is how things are done
Is Python open-source? Yes, Python is open-source and accessible
What are cells? The main organizational structure of the notebook are cells
What are markdown cells? A brief note about Markdown. It's a way to specify all formatting
within the text itself.
How do you italicize text? Italicized text can be specified with an underscore or single
asterisks
How do you make bold text? Bold text requires two underscores or two asterisks
What type of cells allow text Markdown cells NOT code cells
formatting?
What does three Bold and italicize
underscores around text
accomplish?
How are headers specified? Headers are specified with a pound sign #
What happens the more The more pound signs, the
pound signs you add? smaller the header But it's still
larger than just plain text.
Lists are also possible, just use dashes and/or
Are lists possible?
numbers with a dot at the end and space them out
each on a line
What would happen if I Python would order them properly
specified a numbered list
but put the same number
before each list item?
What are code cells for? Whenever you're writing code, you'll want to be sure the cell
is set to be a code cell
What can cells print out? Cells can also have output, that gets printed out below the
cell
What happens if you If you execute a cell with just a variable name in it, it will also
execute a cell with an get printed
already defined variable
, name in it?