comp102-spring 2000 mid-term solution

43
COMP 102 -- Final Exam Page 1 of 43 COMP 102: Computer and Programming Fundamentals I Final Examination This exam contains 11 questions in 16 pages. Please count the pages. You have 2 hours to complete this exam. Proble m Your points Max points Proble m Your points Max points 1 7 7 10 2 6 8 9 3 8 9 20 4 4 10 10 5 8 11 12 6 6 Subtot al 39 Subtot al 61 Your total points 100 Please identify yourself: Lecture/Lab section

Upload: kakatang

Post on 22-Nov-2015

17 views

Category:

Documents


0 download

TRANSCRIPT

THE HONG KONG UNIVERSITY OF SCIENCE AND TECHNOLOGY

COMP 102 -- Final Exam Page 1 of 31

COMP 102: Computer and Programming Fundamentals I

Final Examination This exam contains 11 questions in 16 pages. Please count the pages.

You have 2 hours to complete this exam.ProblemYour pointsMax pointsProblemYour pointsMax points

17710

2689

38920

441010

581112

66

Subtotal39Subtotal61

Your total points100

Please identify yourself:

Lecture/Lab sectionName

Student id

Signature

1. (7 points) The following program in the box prints out a multiplication table as shown below. Please fill in the missing codes to make it work properly.(The gaps between each colomns are made of 2 spaces.)

2x2= 4

2x3= 6 3x3= 9

2x4= 8 3x4=12 4x4=16

2x5=10 3x5=15 4x5=20 5x5=25

2x6=12 3x6=18 4x6=24 5x6=30 6x6=36

2x7=14 3x7=21 4x7=28 5x7=35 6x7=42 7x7=49

2x8=16 3x8=24 4x8=32 5x8=40 6x8=48 7x8=56 8x8=64

2x9=18 3x9=27 4x9=36 5x9=45 6x9=54 7x9=63 8x9=72 9x9=81

2.) (6 points in total)

a) (3 points) What is the output to the screen?

int val = 0;if (val = 0)

val = 103;

else val = 104;

cout