61A Homework 0

Due by 11:59pm on Thursday, 9/5.

Scoring. This homework is worth 0 points, as it exists only to familiarize you with the submission process. However, it will count toward your early submission bonus point for homework if you turn it in at least 24 hours before the deadline.

Submission. You will submit this assignment as a part of Lab 1. For more information, see the online submission instructions.

Q1. Implement the following functions:

def my_first_name():
    """Return your first name as a string.
    >>> my_first_name() != 'PUT YOUR FIRST NAME HERE'
    True
    """
    return 'PUT YOUR FIRST NAME HERE'

def my_last_name():
    """Return your last name as a string.
    >>> my_last_name() != 'PUT YOUR LAST NAME HERE'
    True
    """
    return 'PUT YOUR LAST NAME HERE'

def my_sid():
    """Return a number that is your student ID. Return 0 if you don't have one.
    >>> my_sid() != 99999999
    True
    """
    return 99999999

def my_email():
    """Return your email address as a string.
    >>> my_email() != 'oski@berkeley.edu'
    True
    """
    return 'oski@berkeley.edu'

def my_lab_section():
    """Return the number of the lab you most often attend.
    >>> 11 <= my_lab_section() <= 44
    True
    """
    return 0

def my_login():
    """Return your login as a string.
    >>> my_login() != 'cs61a-??'
    True
    """
    return 'cs61a-??'