Please enable JavaScript to use CodeHS


Utah Computer Programming 1 and 2

Lessons

  1. Karel in Python

    1. 1.1 Introduction to Programming With Karel

    2. Description
    3. Objective
    4. 1.2 More Basic Karel

    5. Description
    6. Objective
    7. 1.3 Karel Can't Turn Right

    8. Description
    9. Objective
    10. 1.4 Functions in Karel

    11. Description
    12. Objective
    13. 1.5 Top Down Design and Decomposition in Karel

    14. Description
    15. Objective
    16. 1.6 Commenting Your Code

    17. Description
    18. Objective
    19. 1.7 Abstraction

    20. Description
    21. Objective
    22. 1.8 Super Karel

    23. Description
    24. Objective
    25. 1.9 For Loops

    26. Description
    27. Objective
    28. 1.10 If Statements

    29. Description
    30. Objective
    31. 1.11 If/Else Statements

    32. Description
    33. Objective
    34. 1.12 While Loops in Karel

    35. Description
    36. Objective
    37. 1.13 Control Structures Example

    38. Description
    39. Objective
    40. 1.14 Debugging Strategies

    41. Description
    42. Objective
    43. 1.15 Algorithms

    44. Description
    45. Objective
    46. 1.16 Ultra Karel

    47. Description
    48. Objective
    49. 1.17 Karel Challenges

    50. Description
    51. Objective
    52. 1.18 Introduction to Programming Quiz

    53. Description
    54. Objective
  2. Basic Python and Console Interaction

    1. 2.1 Printing in Python

    2. Description
    3. Objective
    4. 2.2 Variables and Types

    5. Description
    6. Objective
    7. 2.3 User Input

    8. Description
    9. Objective
    10. 2.4 Mathematical Operators

    11. Description
    12. Objective
    13. 2.5 String Operators

    14. Description
    15. Objective
    16. 2.6 Comments

    17. Description
    18. Objective
    19. 2.7 Programming Languages

    20. Description
    21. Objective
    22. 2.8 Basic Python and Console Interaction Quiz

    23. Description
    24. Objective
  3. Project: Mad Libs

    1. 3.1 Project: Mad Libs

    2. Description
    3. Objective
  4. Conditionals

    1. 4.1 Booleans

    2. Description
    3. Objective
    4. 4.2 If Statements

    5. Description
    6. Objective
    7. 4.3 Comparison Operators

    8. Description
    9. Objective
    10. 4.4 Logical Operators

    11. Description
    12. Objective
    13. 4.5 Floating Point Numbers and Rounding

    14. Description
    15. Objective
    16. 4.6 Conditionals Quiz

    17. Description
    18. Objective
  5. Project: Quiz Game

    1. 5.1 Project: Quiz Game

    2. Description
    3. Objective
  6. Looping

    1. 6.1 While Loops

    2. Description
    3. Objective
    4. 6.2 For Loops

    5. Description
    6. Objective
    7. 6.3 Break and Continue

    8. Description
    9. Objective
    10. 6.4 Nested Control Structures

    11. Description
    12. Objective
    13. 6.5 Looping Quiz

    14. Description
    15. Objective
  7. Project: Password Authenticator

    1. 7.1 Project: Password Authenticator

    2. Description
    3. Objective
  8. Roles in a Software Development Team

    1. 8.1 Software Engineer

    2. Description
    3. Objective
    4. 8.2 QA Engineer

    5. Description
    6. Objective
    7. 8.3 Designer

    8. Description
    9. Objective
    10. 8.4 Project Manager

    11. Description
    12. Objective
  9. Functions and Exceptions

    1. 9.1 Functions

    2. Description
    3. Objective
    4. 9.2 Functions and Parameters

    5. Description
    6. Objective
    7. 9.3 Namespaces in Functions

    8. Description
    9. Objective
    10. 9.4 Functions and Return Values

    11. Description
    12. Objective
    13. 9.5 Exceptions

    14. Description
    15. Objective
    16. 9.6 Functions & Exceptions Quiz

    17. Description
    18. Objective
  10. Strings

    1. 10.1 Indexing

    2. Description
    3. Objective
    4. 10.2 Slicing

    5. Description
    6. Objective
    7. 10.3 Immutability

    8. Description
    9. Objective
    10. 10.4 Strings and For Loops

    11. Description
    12. Objective
    13. 10.5 The in Keyword

    14. Description
    15. Objective
    16. 10.6 String Methods

    17. Description
    18. Objective
    19. 10.7 Strings Quiz

    20. Description
    21. Objective
  11. Project: The Game of Pig

    1. 11.1 Project: The Game of Pig

    2. Description
    3. Objective
  12. Creating and Altering Data Structures

    1. 12.1 Tuples

    2. Description
    3. Objective
    4. 12.2 Lists

    5. Description
    6. Objective
    7. 12.3 For Loops and Lists

    8. Description
    9. Objective
    10. 12.4 List Methods

    11. Description
    12. Objective
    13. 12.5 Creating and Altering Data Structures Quiz

    14. Description
    15. Objective
  13. Extending Data Structures

    1. 13.1 2d Lists

    2. Description
    3. Objective
    4. 13.2 List Comprehensions

    5. Description
    6. Objective
    7. 13.3 Packing and Unpacking

    8. Description
    9. Objective
    10. 13.4 Dictionaries

    11. Description
    12. Objective
    13. 13.5 Extending Data Structures Quiz

    14. Description
    15. Objective
  14. Project: Guess the Word

    1. 14.1 Project: Guess the Word

    2. Description
    3. Objective
  15. File I/O

    1. 15.1 What is File I/O

    2. Description
    3. Objective
    4. 15.2 Reading Character from File

    5. Description
    6. Objective
    7. 15.3 Reading Line from File

    8. Description
    9. Objective
    10. 15.4 Reading All Lines from File

    11. Description
    12. Objective
    13. 15.5 Writing to File

    14. Description
    15. Objective
    16. 15.6 Move File Pointer Position

    17. Description
    18. Objective
    19. 15.7 File I/O Quiz

    20. Description
    21. Objective
  16. Classes and Objects

    1. 16.1 Classes and Objects

    2. Description
    3. Objective
    4. 16.2 Methods

    5. Description
    6. Objective
    7. 16.3 Built-In Methods

    8. Description
    9. Objective
    10. 16.4 Operator Overloading

    11. Description
    12. Objective
    13. 16.5 Class Variables vs. Instance Variables

    14. Description
    15. Objective
  17. Exploring CS Careers

    1. 17.1 Computer Science Careers

    2. Description
    3. Objective
    4. 17.2 Explore a Career

    5. Description
    6. Objective
  18. Midterm

    1. 18.1 Midterm

    2. Description
    3. Objective
  19. Final Exam

    1. 19.1 Final Exam

    2. Description
    3. Objective