Assignment 1, due Jan 22Solutions
Part of
the homework for CS:2820, Spring 2016
|
if i < 2, f(i) = i otherwise f(i) = f(i-1) - f(i-2)
A Question: Give the values of f(0) through f(9). (1.0 point)
i | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |
---|---|---|---|---|---|---|---|---|---|---|
f(i) | 0 | 1 | 1 | 0 | -1 | -1 | 0 | 1 | 1 | 0 |
Use your account to sign in to linux.cs.uiowa.edu using either an SSH client or FastX
You can get to FastX with the following link:
— http://fastx.divms.uiowa.edu
Note that FastX just opens a remote Linux desktop. If you use the XFCE
desktop, you can open a terminal window to get to the same command line
interface that you use with an SSH session.
To make an SSH connection directly from a Mac
or Linux system, open a terminal window locally (terminal is an
application, a system utility), then type this command
ssh linux.cs.uiowa.edu -l HawkID
with your HawkID substituted for HawkID in the command.
Access from off-campus requires an additonal parameter. We will discuss this
in class.
It is almost as easy from a PC, where you must
launch either the PuTTY or SecureCRT application
and then fill in a form with the system name and HawkID.
For additional guidance, see:
—
http://www.divms.uiowa.edu/clas_linux/help/start/remote.html
A question:
Use a shell window on the CS Linux machine. Type the following
command:
[HawkID@serv16 ~]$ ~dwjones/object
(Boldface in the above is the command you type, non-bold is the prompt
from the system; type the requested text verbatim, do not change a thing.)
Report the output you got.
If you did not make it all the way to the point where you could
do the above, report how far you got.
(1 point)
Here is a typical result; the date, time and HawkID depend on when it is run and who runs it:
Welcome dwjones. CS:2820 welcome script, Thu Jan 28 10:48:57 CST 2016.
A question: What is the URL for the web page you get to?