Sunday, September 23, 2012

Search commands in the ribbon
http://www.microsoft.com/en-us/download/details.aspx?id=28559

first quiz, next week
questions will come from end of section quick-checks in New Perspectives book (Computer Concepts), chapter 1, sections A-E.

questions will come from Grauer book (exploring word), chapter 2, multiple choice.

Also, I will give a binary number and ask for the decimal equivalent. e.g. I'll tell you 1100. Tell me what it is in decimal.

end of definition of first quiz.

______

machine language
assembly language

x = 0
while (x < 10)
{
    print "hello";
    x = x + 1;   
}
print "this is the end of the program."

mov x, 0
10:
cmp x, 10
jnz 100
print "hello"
add x, 1
jmp 10

higher level languages (e.g. Fortran, C++, Java)
they let you write something closer to your natural language.

http://xkcd.com/
reuse
http://xkcd.com/792/
strength
http://xkcd.com/936/

rot13
ABCDEFGHIJKLM
NOPQRSTUVWXYZ

hello
uryyb

hello

Homework:
Word, ch 2, hands-on exercise 3. Styles. First watch me in class. You do not need to (eventually) hand this one in, but you should know how to do this.

To hand in (once blackboard is up):
Word, ch 2, practice exercise 2. Queen City Medical Equipment.

Khan Academy: intro to coloring (tutorial 2).
Make the smiley face yellow, with a red nose.
http://www.khanacademy.org/cs/intro-to-coloring/844038377

No comments:

Post a Comment