Test Slides

Jed Rembold

Thursday, January 6, 2021

Announcements

  • Welcome to CS-151: Intro to Programming with Python!
  • Things to do:
    • Access the course webpage at http://www.willamette.edu/~jjrembold/classes/cs151/cs151/
      • Also link to from WISE
    • Read over the full syllabus
    • Get yourself a copy of the book
    • Make sure you can find and access the class forum on Discord
    • Bring phone or computer for polling questions in the future

Slide header 2

We will use a theorem

\[\sum_i^{10} 5i^2 + 4\]

  • here I will
  • include some more things
  • that I want
    • including some finer points
      • like this
    • and this

Code Test!

Here we have some code:

>>> A = 10
>>> A
10
>>> int(23.45)
23
>>> type(A)
int
>>> # this is a comment! 123
>>> for i in range(5):
        print(i)
0
1
2
3
4
>>> for i in range(5):
        print(i)
0
1
2
3
4
>>> print("yay this works!")
yay this works!

Code Animation

>>> print(10+3)

Code Animation

>>> print(10+3)
13

Extra inline test

What about if I want code inline like this: print(10)? How can that work?

Box Tests

This is a test

This is yet another test

Poll Test

Something vertical:

  1. Option 1
  2. Option 2
  3. Hilariously, this is Option 3
  4. Who is coming up with these?


And then something horizontal:

  1. Option 1
  2. Option 2
  3. Option 3
  4. COW

Table Test

Number Type Description
1 Fire Tis hot
2 Water Tis soggy
3 Earth Comprised of the might of the Earth, this specimen has no flashy characteristics
4 Wind Breezy

SQL Syntax

SELECT * FROM teachers WHERE salary > 40000;

INSERT INTO teachers
VALUES
    ('Betty', 'Baker HS', 30000),
    ('Hank', 'Baker MS', 45000);
// reveal.js plugins // Added plugins