Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @echo off
  2. title SCIENCE FINAL REVIEW
  3. echo --------------------------------------------------------------------
  4. echo Welcome!
  5. echo --------------------------------------------------------------------
  6. echo All questions must be answered with a single capital letter.
  7. echo For true or false questions, possible answers are T or F.
  8. echo For multiple choice questions, possible answers are A, B, C, or D.
  9. echo --------------------------------------------------------------------
  10. pause
  11. goto 1
  12. :yes
  13. cls
  14. echo ********************************************************************
  15. echo Correct!
  16. echo ********************************************************************
  17. pause
  18. cls
  19. echo .
  20. goto %next%
  21. :no
  22. cls
  23. echo ####################################################################
  24. echo Incorrect! Try again.
  25. echo ####################################################################
  26. pause
  27. cls
  28. echo .
  29. goto %question%
  30. :1
  31. set question=1
  32. set next=2
  33. cls
  34. echo An aquifer is made of permiable rock.
  35. echo True [T]
  36. echo False [F]
  37. set /p answer2=Answer:
  38. if %answer1%==T goto yes
  39. if not %answer1%==T goto no
  40. :2
  41. set question=2
  42. set next=2
  43. cls
  44. echo A hot spring uses pressure from underground heat to push up water.
  45. echo True [T]
  46. echo False [F]
  47. set /p answer2=Answer:
  48. if %answer2%==T goto yes
  49. if not %answer2%==T goto no
  50. :3
  51. set question=3
  52. set next=4
  53. cls
  54. echo 97% of water on Earth is fresh and flowing.
  55. echo True [T]
  56. echo False [F]
  57. set /p answer3=Answer:
  58. if %answer3%==F goto yes
  59. if not %answer3%==F goto no
  60. :4
  61. set question=4
  62. set next=5
  63. cls
  64. echo What is point-source pollution?
  65. echo [A] Pollution from cities.
  66. echo [B] Pollution from specific places
  67. echo [C] Pollution from people.
  68. echo [D] Pollution from cars.
  69. set /p answer4=Answer:
  70. if %answer4%==B goto yes
  71. if not %answer4%==B goto no
  72. :5
  73. set question=5
  74. set next=6
  75. cls
  76. echo Which unit is used to measure harmful substances in water?
  77. echo [A] Parts Per Trillion
  78. echo [B] Parts Per Billion
  79. echo [C] Parts Per Million
  80. echo [D] Parts per Thousand.
  81. set /p answer4=Answer:
  82. if %answer5%==C goto yes
  83. if not %answer5%==C goto no
  84. :6
  85. set question=6
  86. set next=7
  87. cls
  88. echo Septic systems use many methods similar to sewage systems.
  89. echo True [T]
  90. echo False [F]
  91. set /p answer6=Answer:
  92. if %answer6%==T goto yes
  93. if not %answer6%==T goto no
  94. :7
  95. set question=7
  96. set next=8
  97. cls
  98. echo Removing salt from water is known as _________.
  99. echo [A] Desaltification
  100. echo [B] Desalination
  101. echo [C] Unsalifying
  102. echo [D] Rewatering
  103. set /p answer7=Answer:
  104. if %answer7%==B goto yes
  105. if not %answer7%==B goto no
  106. :8
  107. set question=8
  108. set next=9
  109. cls
  110. echo The fish farming industry is known as ________________.
  111. echo [A] Aquaculture
  112. echo [B] Waterfarming
  113. echo [C] Ocean growth
  114. echo [D] Fish producing
  115. set /p answer8=Answer:
  116. if %answer8%==A goto yes
  117. if not %answer8%==A goto no
  118. :9
  119. set question=9
  120. set next=8
  121. cls
  122. echo Water quality is not regulated.
  123. echo True [T]
  124. echo False [F]
  125. set /p answer9==Answer:
  126. if %answer9%==F goto yes
  127. if not %answer9%==F goto no
  128. :10
  129. set question=10
  130. set next=11
  131. cls
  132. echo Some countries import all or most of their water.
  133. echo True [T]
  134. echo False [F]
  135. set /p answer10=Answer:
  136. if %answer10%=T goto yes
  137. if not %answer10%=T goto no
  138. :11
  139. set question=11
  140. set next=12
  141. cls
  142. echo Dams have no negative effects on the ecosystem.
  143. echo True [T]
  144. echo False [F]
  145. set /p answer11=Answer:
  146. if %answer10%=F goto yes
  147. if not %answer10%=F goto no
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement