cs 221 chapter 2 excel

12
CS 221 Chapter 2 Excel

Upload: urielle-jenkins

Post on 30-Dec-2015

20 views

Category:

Documents


1 download

DESCRIPTION

CS 221 Chapter 2 Excel. In Excel: A1 = 95 A2 = 95 A3 = 80 A4 = 0 =IF(A1

TRANSCRIPT

Page 1: CS 221 Chapter 2 Excel

CS 221 Chapter 2 Excel

Page 2: CS 221 Chapter 2 Excel

In Excel:A1 = 95A2 = 95A3 = 80A4 = 0=IF(A1<A2),”T”,”F”)

Page 3: CS 221 Chapter 2 Excel

In Excel:A1 = 95A2 = 95A3 = 80A4 = 0=IF(A1<A2),”T”,”F”)

1.T2.F CORRECT

Page 4: CS 221 Chapter 2 Excel

In Excel:A1 = 95A2 = 95A3 = 80A4 = 0=IF(AND(A3<A2,A4>0),”T”,”F”)

Page 5: CS 221 Chapter 2 Excel

In Excel:A1 = 95A2 = 95A3 = 80A4 = 0=IF(AND(A3<A2,A4>0),”T”,”F”)

1.T2.F CORRECT

Page 6: CS 221 Chapter 2 Excel

In Excel:A1 = 95A2 = 95A3 = 80A4 = 0=IF(OR(A1<>A2,A4<=0),”T”,”F”)

Page 7: CS 221 Chapter 2 Excel

In Excel:A1 = 95A2 = 95A3 = 80A4 = 0=IF(OR(A1<>A2,A4<=0),”T”,”F”)

1.T CORRECT2.F

Page 8: CS 221 Chapter 2 Excel

In Excel:A1 = 95A2 = 95A3 = 80A4 = 0=IF(AND(OR(A2<A3,A4<=0),A1>=A3),”T”,”F”)

Page 9: CS 221 Chapter 2 Excel

In Excel:A1 = 95A2 = 95A3 = 80A4 = 0=IF(AND(OR(A2<A3,A4<=0),A1>=A3),”T”,”F”)

1.T CORRECT2.F

Page 10: CS 221 Chapter 2 Excel

Assuming 8000 is the population in 1970, 9000 is the population in 1978, use linear interpolation to estimate the population in 1974:

8200825084008500 86008750

Page 11: CS 221 Chapter 2 Excel

Assuming 8000 is the population in 1970, 9000 is the population in 1978, use linear interpolation to estimate the population in 1974:

8200825084008500 CORRECT86008750

Page 12: CS 221 Chapter 2 Excel

Other Excel subjects to know:

Variables in Excel are kept in cells, addressed by cell addresses (not names as in Matlab)Like Matlab, Excel has a built-in IF statementExcel simulates loops by multiple rows