1 / 12

CS 221 Chapter 2 Excel

CS 221 Chapter 2 Excel. In Excel: A1 = 95 A2 = 95 A3 = 80 A4 = 0 =IF(A1<A2),”T”,”F”). In Excel: A1 = 95 A2 = 95 A3 = 80 A4 = 0 =IF(A1<A2),”T”,”F”). T F CORRECT. In Excel: A1 = 95 A2 = 95 A3 = 80 A4 = 0 =IF(AND(A3<A2,A4>0),”T”,”F”). In Excel: A1 = 95 A2 = 95 A3 = 80

Télécharger la présentation

CS 221 Chapter 2 Excel

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CS 221 Chapter 2 Excel

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

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

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

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

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

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

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

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

  10. Assuming 8000 is the population in 1970, 9000 is the population in 1978, use linear interpolation to estimate the population in 1974: 8200 8250 8400 8500 8600 8750

  11. Assuming 8000 is the population in 1970, 9000 is the population in 1978, use linear interpolation to estimate the population in 1974: 8200 8250 8400 8500 CORRECT 8600 8750

  12. 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 statement • Excel simulates loops by multiple rows

More Related