studium 0.16.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of studium might be problematic. Click here for more details.

Files changed (887) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +3211 -0
  3. data/bin/ask_exam_question +7 -0
  4. data/bin/check_description_of_these_lectures +7 -0
  5. data/bin/curriculum_module_displayer +7 -0
  6. data/bin/cycle +7 -0
  7. data/bin/d10 +7 -0
  8. data/bin/d100 +7 -0
  9. data/bin/d15 +7 -0
  10. data/bin/d20 +7 -0
  11. data/bin/d25 +7 -0
  12. data/bin/d3 +7 -0
  13. data/bin/d30 +7 -0
  14. data/bin/d5 +7 -0
  15. data/bin/determine_curricula +7 -0
  16. data/bin/display_lecture_url +7 -0
  17. data/bin/exam_registration_at +7 -0
  18. data/bin/exam_statistics +7 -0
  19. data/bin/exams_per_month +9 -0
  20. data/bin/finished_exams_at_this_university +7 -0
  21. data/bin/flashcards +7 -0
  22. data/bin/from_curriculum_id_to_university +9 -0
  23. data/bin/location_to_this_exam_topic.rb +7 -0
  24. data/bin/mandatory_continuous_assessment +7 -0
  25. data/bin/mandatory_upcoming_courses +10 -0
  26. data/bin/n_ECTS +7 -0
  27. data/bin/n_exam_questions_already_answered +16 -0
  28. data/bin/nquestions +7 -0
  29. data/bin/nsolved +7 -0
  30. data/bin/open_last_exam_question_asked_file +7 -0
  31. data/bin/passed_exams +7 -0
  32. data/bin/passed_pr/303/274fungsimmanente_courses +7 -0
  33. data/bin/pdf_for +7 -0
  34. data/bin/random_exam_topic +7 -0
  35. data/bin/report_solved_topics +7 -0
  36. data/bin/return_n_ects_from_this_file +7 -0
  37. data/bin/return_n_questions_solved_in_total +7 -0
  38. data/bin/rti_conflict +7 -0
  39. data/bin/search_for_n_ects +7 -0
  40. data/bin/show_lectures_on_the_commandline +7 -0
  41. data/bin/show_passed_exams_having_this_grade +7 -0
  42. data/bin/show_themes +7 -0
  43. data/bin/solved +9 -0
  44. data/bin/solved_ects +7 -0
  45. data/bin/studienkennzahl +7 -0
  46. data/bin/studium +7 -0
  47. data/bin/studium_skeleton +7 -0
  48. data/bin/ufind +7 -0
  49. data/bin/upcoming_exams +7 -0
  50. data/bin/week_parser +7 -0
  51. data/doc/ECTS_CONSIDERATIONS/ECTS_CONSIDERATIONS.md +82 -0
  52. data/doc/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER.md +44 -0
  53. data/doc/README.gen +3164 -0
  54. data/doc/SQL_database_specification/SQL_database_specification.md +46 -0
  55. data/doc/deprecated_components/deprecated_components.md +46 -0
  56. data/doc/documentation_for_the_file_lecture_information/documentation_for_the_file_lecture_information.md +311 -0
  57. data/doc/elegant_colours/elegant_colours.md +21 -0
  58. data/doc/statistics/yearly_statistics.md +8 -0
  59. data/doc/todo/todo_for_the_graphical_parts_of_the_studium_gem_including_www_related_aspects.md +92 -0
  60. data/doc/todo/todo_for_the_studium_gem.md +55 -0
  61. data/img/STUDIES.png +0 -0
  62. data/lib/studium/autoinclude.rb +7 -0
  63. data/lib/studium/base/base.rb +3229 -0
  64. data/lib/studium/base/colours.rb +246 -0
  65. data/lib/studium/base/commandline_arguments_module/commandline_arguments_module.rb +115 -0
  66. data/lib/studium/base/prototype/prototype.rb +230 -0
  67. data/lib/studium/base/runmode_module/runmode_module.rb +103 -0
  68. data/lib/studium/c/README.md +2 -0
  69. data/lib/studium/c/a.out +0 -0
  70. data/lib/studium/c/obtain_random_entry.c +11 -0
  71. data/lib/studium/check_and_sanitize/README.md +15 -0
  72. data/lib/studium/check_and_sanitize/check_curriculum_for_correct_separation_of_bachelor_and_master.rb +141 -0
  73. data/lib/studium/check_and_sanitize/check_for_all_exam_topics_being_registered.rb +118 -0
  74. data/lib/studium/check_and_sanitize/check_for_correct_themes_of_each_course.rb +100 -0
  75. data/lib/studium/check_and_sanitize/check_for_existing_description_of_this_lecture.rb +194 -0
  76. data/lib/studium/check_and_sanitize/check_important_exams.rb +132 -0
  77. data/lib/studium/check_and_sanitize/check_the_lecture_information_file.rb +166 -0
  78. data/lib/studium/check_and_sanitize/find_duplicate_lectures.rb +124 -0
  79. data/lib/studium/check_and_sanitize/missing_priority_entry.rb +44 -0
  80. data/lib/studium/check_and_sanitize/sanitize_lecture_information.rb +427 -0
  81. data/lib/studium/check_and_sanitize/sanitize_this_string_containing_the_lva_dates.rb +79 -0
  82. data/lib/studium/colours/colours.rb +587 -0
  83. data/lib/studium/colours/sfancy.rb +49 -0
  84. data/lib/studium/colours/sfile.rb +39 -0
  85. data/lib/studium/colours/simp.rb +40 -0
  86. data/lib/studium/colours/use_colours.rb +39 -0
  87. data/lib/studium/colours/use_this_colour_for_exam_questions_and_exam_answers.rb +80 -0
  88. data/lib/studium/commandline/commandline.rb +1839 -0
  89. data/lib/studium/constants/colours.rb +16 -0
  90. data/lib/studium/constants/constants.rb +533 -0
  91. data/lib/studium/constants/curricula_related_constants.rb +504 -0
  92. data/lib/studium/constants/exam_topics.rb +156 -0
  93. data/lib/studium/constants/file_lecture_information.rb +55 -0
  94. data/lib/studium/constants/image_constants.rb +272 -0
  95. data/lib/studium/constants/regexes.rb +58 -0
  96. data/lib/studium/constants/roebe_specific_constants.rb +216 -0
  97. data/lib/studium/constants/standalone_constants.rb +372 -0
  98. data/lib/studium/constants/web_constants.rb +28 -0
  99. data/lib/studium/css/project.css +267 -0
  100. data/lib/studium/curricula/attribute_lecture_to_curriculum/attribute_boku_lecture_to_curriculum.rb +384 -0
  101. data/lib/studium/curricula/attribute_lecture_to_curriculum/attribute_lecture_to_curriculum.rb +238 -0
  102. data/lib/studium/curricula/curricula_from_this_website/curricula_from_this_website.rb +141 -0
  103. data/lib/studium/curricula/curriculum.rb +213 -0
  104. data/lib/studium/curricula/curriculum_as_string.rb +280 -0
  105. data/lib/studium/curricula/curriculum_module_displayer/constants.rb +33 -0
  106. data/lib/studium/curricula/curriculum_module_displayer/curriculum_module_displayer.rb +417 -0
  107. data/lib/studium/curricula/curriculum_module_displayer/initialize.rb +25 -0
  108. data/lib/studium/curricula/curriculum_module_displayer/menu.rb +45 -0
  109. data/lib/studium/curricula/curriculum_module_displayer/reset.rb +74 -0
  110. data/lib/studium/curricula/curriculum_module_displayer/run.rb +20 -0
  111. data/lib/studium/curricula/curriculum_module_displayer/set_use_this_curriculum.rb +93 -0
  112. data/lib/studium/curricula/curriculum_module_displayer/show_and_report.rb +190 -0
  113. data/lib/studium/curricula/determine_curricula/constants.rb +11 -0
  114. data/lib/studium/curricula/determine_curricula/determine_curricula.rb +36 -0
  115. data/lib/studium/curricula/determine_curricula/help.rb +39 -0
  116. data/lib/studium/curricula/determine_curricula/initialize.rb +48 -0
  117. data/lib/studium/curricula/determine_curricula/menu.rb +151 -0
  118. data/lib/studium/curricula/determine_curricula/misc.rb +403 -0
  119. data/lib/studium/curricula/determine_curricula/report.rb +143 -0
  120. data/lib/studium/curricula/determine_curricula/reset.rb +59 -0
  121. data/lib/studium/curricula/determine_curricula/run.rb +19 -0
  122. data/lib/studium/curricula/determine_elective_courses_in_this_curriculum.rb +112 -0
  123. data/lib/studium/curricula/display_bachelor_curricula.rb +90 -0
  124. data/lib/studium/curricula/handle_curricula/README.md +9 -0
  125. data/lib/studium/curricula/handle_curricula/handle_curricula.rb +100 -0
  126. data/lib/studium/curricula/handle_curricula/misc.rb +798 -0
  127. data/lib/studium/curricula/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.rb +323 -0
  128. data/lib/studium/curricula/modules/display_on_the_commandline.rb +319 -0
  129. data/lib/studium/curricula/modules/return_n_ects_in_this_module.rb +75 -0
  130. data/lib/studium/curricula/n_percent_solved_in_this_curriculum.rb +75 -0
  131. data/lib/studium/curricula/prepare_individual_curriculum.rb +304 -0
  132. data/lib/studium/curricula/random_curriculum_creator/random_curriculum_creator.rb +164 -0
  133. data/lib/studium/curricula/show_all_unfinished_courses_of_this_curriculum/show_all_unfinished_courses_of_this_curriculum.rb +116 -0
  134. data/lib/studium/curricula/show_lectures_of_this_curriculum.rb +114 -0
  135. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/show_lectures_of_this_curriculum_id.rb +554 -0
  136. data/lib/studium/curricula/show_solved_percentage_among_the_registered_curricula.rb +87 -0
  137. data/lib/studium/curricula/sorted_individual_curricula.rb +121 -0
  138. data/lib/studium/ects/boku_ects_splitter.rb +128 -0
  139. data/lib/studium/ects/ects_per_university/ects_per_university.rb +179 -0
  140. data/lib/studium/ects/ects_scanner.rb +141 -0
  141. data/lib/studium/ects/ects_to_university_parser.rb +142 -0
  142. data/lib/studium/ects/last_entry_is_curriculum.rb +150 -0
  143. data/lib/studium/ects/n_ects_in_these_lectures.rb +196 -0
  144. data/lib/studium/ects/n_ects_points_in_mandatory_presence_courses.rb +50 -0
  145. data/lib/studium/ects/return_n_ects_from_this_file.rb +59 -0
  146. data/lib/studium/ects/return_n_ects_from_this_url.rb +197 -0
  147. data/lib/studium/ects/search_for_n_ects/OLD_search_for_n_ects.rb +0 -0
  148. data/lib/studium/ects/search_for_n_ects/search_for_n_ects.rb +719 -0
  149. data/lib/studium/ects/show_completed_ects_in_all_curricula.rb +232 -0
  150. data/lib/studium/ects/show_passed_credits_per_curriculum.rb +276 -0
  151. data/lib/studium/ects/simple_total_ects_points.rb +135 -0
  152. data/lib/studium/ects/solved_ects/constants.rb +19 -0
  153. data/lib/studium/ects/solved_ects/reset.rb +51 -0
  154. data/lib/studium/ects/solved_ects/solved_ects.rb +325 -0
  155. data/lib/studium/ects/solved_ects_per_university/reset.rb +25 -0
  156. data/lib/studium/ects/solved_ects_per_university/solved_ects_per_university.rb +106 -0
  157. data/lib/studium/ects/still_missing.rb +129 -0
  158. data/lib/studium/ects/sum_of_ects.rb +144 -0
  159. data/lib/studium/encoding/encoding.rb +109 -0
  160. data/lib/studium/exam_topics/RNAi_siRNA_and_miRNA +100 -0
  161. data/lib/studium/exam_topics/abfall_als_ressource +86 -0
  162. data/lib/studium/exam_topics/advanced_biochemistry +927 -0
  163. data/lib/studium/exam_topics/advanced_biotechnology +234 -0
  164. data/lib/studium/exam_topics/advanced_cellbiology +219 -0
  165. data/lib/studium/exam_topics/advanced_chemistry +527 -0
  166. data/lib/studium/exam_topics/advanced_immunology +152 -0
  167. data/lib/studium/exam_topics/advanced_microbiology +44 -0
  168. data/lib/studium/exam_topics/advanced_topics_in_plant_sciences +109 -0
  169. data/lib/studium/exam_topics/advanced_virology +245 -0
  170. data/lib/studium/exam_topics/ageing +153 -0
  171. data/lib/studium/exam_topics/agrar_ecology +67 -0
  172. data/lib/studium/exam_topics/agrarmarkt +73 -0
  173. data/lib/studium/exam_topics/agrarphysik +35 -0
  174. data/lib/studium/exam_topics/alcohols +31 -0
  175. data/lib/studium/exam_topics/algorithms +77 -0
  176. data/lib/studium/exam_topics/allergie +76 -0
  177. data/lib/studium/exam_topics/allgemeine_genetik +1006 -0
  178. data/lib/studium/exam_topics/allgemeine_mikrobiologie +1008 -0
  179. data/lib/studium/exam_topics/aminoacids +464 -0
  180. data/lib/studium/exam_topics/analytische_chemie_1 +133 -0
  181. data/lib/studium/exam_topics/analytische_chemie_2 +31 -0
  182. data/lib/studium/exam_topics/anatomie +295 -0
  183. data/lib/studium/exam_topics/anorganische_chemie +350 -0
  184. data/lib/studium/exam_topics/anthropologie +138 -0
  185. data/lib/studium/exam_topics/antibodies_and_antigens +791 -0
  186. data/lib/studium/exam_topics/apoptosis +35 -0
  187. data/lib/studium/exam_topics/archaea +112 -0
  188. data/lib/studium/exam_topics/archaeo_viruses +7 -0
  189. data/lib/studium/exam_topics/architecture +8 -0
  190. data/lib/studium/exam_topics/artificial_intelligence +89 -0
  191. data/lib/studium/exam_topics/atomemissionsspektrometrie +6 -0
  192. data/lib/studium/exam_topics/audio +11 -0
  193. data/lib/studium/exam_topics/bacteriophages +266 -0
  194. data/lib/studium/exam_topics/basic_biochemistry +1008 -0
  195. data/lib/studium/exam_topics/basic_biotechnology +1011 -0
  196. data/lib/studium/exam_topics/basic_chemistry +1007 -0
  197. data/lib/studium/exam_topics/basic_virology +1007 -0
  198. data/lib/studium/exam_topics/bauwesen +6 -0
  199. data/lib/studium/exam_topics/betriebssysteme +128 -0
  200. data/lib/studium/exam_topics/betriebswirtschaftslehre +29 -0
  201. data/lib/studium/exam_topics/bioanalytik_und_biosensoren +391 -0
  202. data/lib/studium/exam_topics/biochips +79 -0
  203. data/lib/studium/exam_topics/bioelektrochemie +57 -0
  204. data/lib/studium/exam_topics/biofilms +54 -0
  205. data/lib/studium/exam_topics/bioinformatics +511 -0
  206. data/lib/studium/exam_topics/biological_therapeutics +156 -0
  207. data/lib/studium/exam_topics/biologie +149 -0
  208. data/lib/studium/exam_topics/biomarkers +137 -0
  209. data/lib/studium/exam_topics/biomaterials +90 -0
  210. data/lib/studium/exam_topics/biomembranes +6 -0
  211. data/lib/studium/exam_topics/bionik +65 -0
  212. data/lib/studium/exam_topics/biophysik +34 -0
  213. data/lib/studium/exam_topics/biopolymers +10 -0
  214. data/lib/studium/exam_topics/bioprozesstechnik +149 -0
  215. data/lib/studium/exam_topics/bioressourcenmanagement +78 -0
  216. data/lib/studium/exam_topics/birds +5 -0
  217. data/lib/studium/exam_topics/bodenkunde +384 -0
  218. data/lib/studium/exam_topics/bodenmikrobiologie +40 -0
  219. data/lib/studium/exam_topics/cancerbiology +484 -0
  220. data/lib/studium/exam_topics/cell_cultures +229 -0
  221. data/lib/studium/exam_topics/cellbiology +1011 -0
  222. data/lib/studium/exam_topics/cellular_transport_and_protein_secretion +27 -0
  223. data/lib/studium/exam_topics/cellular_vesicles +11 -0
  224. data/lib/studium/exam_topics/cellulose +6 -0
  225. data/lib/studium/exam_topics/chemische_technologie_anorganischer_stoffe +209 -0
  226. data/lib/studium/exam_topics/chemische_technologie_organischer_stoffe +25 -0
  227. data/lib/studium/exam_topics/chemisches_labor +60 -0
  228. data/lib/studium/exam_topics/chemokines_and_cytokines +45 -0
  229. data/lib/studium/exam_topics/chemotaxis_quorum_sensing_and_motility_in_prokaryotes +116 -0
  230. data/lib/studium/exam_topics/citric_acid_cycle +84 -0
  231. data/lib/studium/exam_topics/clinical_microbiology +516 -0
  232. data/lib/studium/exam_topics/computer_science +308 -0
  233. data/lib/studium/exam_topics/computer_vision_and_computer_graphics +13 -0
  234. data/lib/studium/exam_topics/crispr +51 -0
  235. data/lib/studium/exam_topics/cyanobacteria +44 -0
  236. data/lib/studium/exam_topics/cytogenetics_and_chromosome_biology +579 -0
  237. data/lib/studium/exam_topics/databases_and_sql +126 -0
  238. data/lib/studium/exam_topics/dna_mutation_and_dna_repair +70 -0
  239. data/lib/studium/exam_topics/dna_replication +67 -0
  240. data/lib/studium/exam_topics/ecogenetics +26 -0
  241. data/lib/studium/exam_topics/ecological_agriculture +12 -0
  242. data/lib/studium/exam_topics/ecology +330 -0
  243. data/lib/studium/exam_topics/economy +218 -0
  244. data/lib/studium/exam_topics/electron_microscopy +7 -0
  245. data/lib/studium/exam_topics/elektronenmikroskopie +356 -0
  246. data/lib/studium/exam_topics/elektrophorese +132 -0
  247. data/lib/studium/exam_topics/elektrotechnik_und_elektrizit/303/244t +42 -0
  248. data/lib/studium/exam_topics/elisa +55 -0
  249. data/lib/studium/exam_topics/embryologie_und_entwicklung +650 -0
  250. data/lib/studium/exam_topics/endospores_and_spores +104 -0
  251. data/lib/studium/exam_topics/enzymes_and_cofactors +393 -0
  252. data/lib/studium/exam_topics/epigenetik +187 -0
  253. data/lib/studium/exam_topics/erste_hilfe +174 -0
  254. data/lib/studium/exam_topics/ethik +143 -0
  255. data/lib/studium/exam_topics/evolution_and_evolutionary_genetics +367 -0
  256. data/lib/studium/exam_topics/excel +7 -0
  257. data/lib/studium/exam_topics/fish +19 -0
  258. data/lib/studium/exam_topics/fluorescence_microscopy +10 -0
  259. data/lib/studium/exam_topics/food_microbiology_and_food_biotechnology +92 -0
  260. data/lib/studium/exam_topics/forensik +11 -0
  261. data/lib/studium/exam_topics/forstwirtschaft +53 -0
  262. data/lib/studium/exam_topics/fortgeschrittene_genetik +643 -0
  263. data/lib/studium/exam_topics/fortgeschrittene_gentechnik +218 -0
  264. data/lib/studium/exam_topics/fortgeschrittene_physik +6 -0
  265. data/lib/studium/exam_topics/fungi +119 -0
  266. data/lib/studium/exam_topics/genetische_krankheiten +198 -0
  267. data/lib/studium/exam_topics/genexpression +1008 -0
  268. data/lib/studium/exam_topics/genomics_and_metagenomics +280 -0
  269. data/lib/studium/exam_topics/gentechnik_und_praktische_biochemie +954 -0
  270. data/lib/studium/exam_topics/geochemistry +67 -0
  271. data/lib/studium/exam_topics/geography +9 -0
  272. data/lib/studium/exam_topics/geologie_und_mineralogie +624 -0
  273. data/lib/studium/exam_topics/geometrie +56 -0
  274. data/lib/studium/exam_topics/geschichte +95 -0
  275. data/lib/studium/exam_topics/gluconeogenesis +72 -0
  276. data/lib/studium/exam_topics/glycogen +45 -0
  277. data/lib/studium/exam_topics/glycolysis +118 -0
  278. data/lib/studium/exam_topics/glykomik +121 -0
  279. data/lib/studium/exam_topics/glyoxylatzyklus +31 -0
  280. data/lib/studium/exam_topics/grassland_cultivation +32 -0
  281. data/lib/studium/exam_topics/hormone +148 -0
  282. data/lib/studium/exam_topics/html +8 -0
  283. data/lib/studium/exam_topics/human_ecology +8 -0
  284. data/lib/studium/exam_topics/hygiene +224 -0
  285. data/lib/studium/exam_topics/imaging_and_microscopy +267 -0
  286. data/lib/studium/exam_topics/immunanalytik +94 -0
  287. data/lib/studium/exam_topics/immunologie +1011 -0
  288. data/lib/studium/exam_topics/informatik +117 -0
  289. data/lib/studium/exam_topics/innate_immunity +42 -0
  290. data/lib/studium/exam_topics/insekten +64 -0
  291. data/lib/studium/exam_topics/insulin_and_diabetes +57 -0
  292. data/lib/studium/exam_topics/java +618 -0
  293. data/lib/studium/exam_topics/javascript +20 -0
  294. data/lib/studium/exam_topics/klima +6 -0
  295. data/lib/studium/exam_topics/kryptographie +9 -0
  296. data/lib/studium/exam_topics/landtechnik +26 -0
  297. data/lib/studium/exam_topics/lebensmittel_und_getr/303/244nke +223 -0
  298. data/lib/studium/exam_topics/lebensmitteltechnologie +16 -0
  299. data/lib/studium/exam_topics/light_microscopy +19 -0
  300. data/lib/studium/exam_topics/linux_and_unix +36 -0
  301. data/lib/studium/exam_topics/lipids +141 -0
  302. data/lib/studium/exam_topics/macroeconomics +39 -0
  303. data/lib/studium/exam_topics/marketing +7 -0
  304. data/lib/studium/exam_topics/mathematics +297 -0
  305. data/lib/studium/exam_topics/medizin_und_biomedizinische_technik +254 -0
  306. data/lib/studium/exam_topics/medizinische_chemie_und_pharmazie +437 -0
  307. data/lib/studium/exam_topics/messtechnik_und_regeltechnik +104 -0
  308. data/lib/studium/exam_topics/metabolismus +478 -0
  309. data/lib/studium/exam_topics/meteorologie_und_atmosph/303/244re +120 -0
  310. data/lib/studium/exam_topics/microbial_ecology +36 -0
  311. data/lib/studium/exam_topics/microcontrollers +11 -0
  312. data/lib/studium/exam_topics/mikrobielle_lebensgemeinschaften +54 -0
  313. data/lib/studium/exam_topics/mikrobielle_physiologie +285 -0
  314. data/lib/studium/exam_topics/mitochondria +40 -0
  315. data/lib/studium/exam_topics/mixed +287 -0
  316. data/lib/studium/exam_topics/molecular_biology_of_plants +272 -0
  317. data/lib/studium/exam_topics/molekulare_medizin +133 -0
  318. data/lib/studium/exam_topics/nanotechnologie +453 -0
  319. data/lib/studium/exam_topics/nature_conservation_and_biodiversity +244 -0
  320. data/lib/studium/exam_topics/naturstoffe +9 -0
  321. data/lib/studium/exam_topics/netzwerke +63 -0
  322. data/lib/studium/exam_topics/neurobiology +307 -0
  323. data/lib/studium/exam_topics/nucleotide_sequencing +41 -0
  324. data/lib/studium/exam_topics/nutztierethologie +11 -0
  325. data/lib/studium/exam_topics/object_oriented_modeling +14 -0
  326. data/lib/studium/exam_topics/obstbau +249 -0
  327. data/lib/studium/exam_topics/organische_chemie +1007 -0
  328. data/lib/studium/exam_topics/organische_chemie_2 +136 -0
  329. data/lib/studium/exam_topics/paleobiology +39 -0
  330. data/lib/studium/exam_topics/parasitic_diseases_and_molecular_infection_biology +336 -0
  331. data/lib/studium/exam_topics/patent_law +55 -0
  332. data/lib/studium/exam_topics/pathologie +731 -0
  333. data/lib/studium/exam_topics/pcr +155 -0
  334. data/lib/studium/exam_topics/pentosephosphatweg +61 -0
  335. data/lib/studium/exam_topics/peroxisomes_glycosomes_and_lysosomes +66 -0
  336. data/lib/studium/exam_topics/pflanzenanatomie +261 -0
  337. data/lib/studium/exam_topics/pflanzenbau +24 -0
  338. data/lib/studium/exam_topics/pflanzenschutz +35 -0
  339. data/lib/studium/exam_topics/pflanzenwissenschaften +1009 -0
  340. data/lib/studium/exam_topics/pharmaceutical_biotechnology +251 -0
  341. data/lib/studium/exam_topics/physik +446 -1
  342. data/lib/studium/exam_topics/physikalische_chemie +79 -0
  343. data/lib/studium/exam_topics/physiology_and_histology +536 -0
  344. data/lib/studium/exam_topics/phytochemie +33 -0
  345. data/lib/studium/exam_topics/plant_biotechnology +131 -0
  346. data/lib/studium/exam_topics/plant_breeding +64 -0
  347. data/lib/studium/exam_topics/plant_development +50 -0
  348. data/lib/studium/exam_topics/populationsgenetik +138 -0
  349. data/lib/studium/exam_topics/posttranslationale_modifikation_von_proteinen +197 -0
  350. data/lib/studium/exam_topics/projektmanagement +220 -0
  351. data/lib/studium/exam_topics/prokaryote_genetics +562 -0
  352. data/lib/studium/exam_topics/protein_engineering +35 -0
  353. data/lib/studium/exam_topics/proteolyse +38 -0
  354. data/lib/studium/exam_topics/proteomik +41 -0
  355. data/lib/studium/exam_topics/protozoans +24 -0
  356. data/lib/studium/exam_topics/prozesstechnik +95 -0
  357. data/lib/studium/exam_topics/psychologie +18 -0
  358. data/lib/studium/exam_topics/python +372 -0
  359. data/lib/studium/exam_topics/quality_management +266 -0
  360. data/lib/studium/exam_topics/rechtsgrundlagen +123 -0
  361. data/lib/studium/exam_topics/research_topics_in_immunobiology +42 -0
  362. data/lib/studium/exam_topics/rna_and_dna +519 -0
  363. data/lib/studium/exam_topics/rna_seq +13 -0
  364. data/lib/studium/exam_topics/robotics +12 -0
  365. data/lib/studium/exam_topics/ruby +238 -0
  366. data/lib/studium/exam_topics/ruby_on_rails +63 -0
  367. data/lib/studium/exam_topics/scientific_writing_and_publishing +38 -0
  368. data/lib/studium/exam_topics/semisynthese_von_proteinen_und_nukleotiden +120 -0
  369. data/lib/studium/exam_topics/sexualbiologie +183 -0
  370. data/lib/studium/exam_topics/signal_transduction_and_laser_systems +212 -0
  371. data/lib/studium/exam_topics/sozialbiologie +9 -0
  372. data/lib/studium/exam_topics/splicing_exons_and_introns +65 -0
  373. data/lib/studium/exam_topics/statistik +268 -0
  374. data/lib/studium/exam_topics/stemcells +181 -0
  375. data/lib/studium/exam_topics/stickstofffixierung +91 -0
  376. data/lib/studium/exam_topics/structural_bioinformatics +54 -0
  377. data/lib/studium/exam_topics/strukturbiologie +423 -0
  378. data/lib/studium/exam_topics/system_biology_and_synthetic_biology +108 -0
  379. data/lib/studium/exam_topics/systematische_zoologie +439 -0
  380. data/lib/studium/exam_topics/technical_ecology +144 -0
  381. data/lib/studium/exam_topics/technische_chemie +208 -0
  382. data/lib/studium/exam_topics/technische_grundlagen_der_informatik +39 -0
  383. data/lib/studium/exam_topics/technische_mikrobiologie +393 -0
  384. data/lib/studium/exam_topics/technisches_zeichnen +5 -0
  385. data/lib/studium/exam_topics/the_bacterial_cell_wall +98 -0
  386. data/lib/studium/exam_topics/the_c_plus_plus_programming_language +531 -0
  387. data/lib/studium/exam_topics/the_c_programming_language +133 -0
  388. data/lib/studium/exam_topics/the_cellcycle +98 -0
  389. data/lib/studium/exam_topics/the_european_union +121 -0
  390. data/lib/studium/exam_topics/the_interferon_system +39 -0
  391. data/lib/studium/exam_topics/the_microbiome +164 -0
  392. data/lib/studium/exam_topics/the_universe +31 -0
  393. data/lib/studium/exam_topics/theoretische_chemie +5 -0
  394. data/lib/studium/exam_topics/theoretische_informatik +161 -0
  395. data/lib/studium/exam_topics/thermodynamics +21 -0
  396. data/lib/studium/exam_topics/tierzucht +139 -0
  397. data/lib/studium/exam_topics/toxikologie +453 -0
  398. data/lib/studium/exam_topics/transcription +185 -0
  399. data/lib/studium/exam_topics/translation_ribosomes_and_translational_control +154 -0
  400. data/lib/studium/exam_topics/umweltbiotechnologie +64 -0
  401. data/lib/studium/exam_topics/umweltchemie +233 -0
  402. data/lib/studium/exam_topics/urbanism_and_traffic +19 -0
  403. data/lib/studium/exam_topics/urea_cycle +56 -0
  404. data/lib/studium/exam_topics/vaccines_and_vaccination +250 -0
  405. data/lib/studium/exam_topics/vectors_and_gene_therapy +247 -0
  406. data/lib/studium/exam_topics/verfahrenstechnik +37 -0
  407. data/lib/studium/exam_topics/verhaltensbiologie +56 -0
  408. data/lib/studium/exam_topics/veterinary_medicine +10 -0
  409. data/lib/studium/exam_topics/vitamine +32 -0
  410. data/lib/studium/exam_topics/wasserkunde +138 -0
  411. data/lib/studium/exam_topics/weinbau +86 -0
  412. data/lib/studium/exam_topics/wissenschaft +20 -0
  413. data/lib/studium/exam_topics/yeast +104 -0
  414. data/lib/studium/exam_topics/zoologie +334 -0
  415. data/lib/studium/exams/afterburn/afterburn.rb +304 -0
  416. data/lib/studium/exams/ask_exam_from_the_upcoming_exams_pool.rb +150 -0
  417. data/lib/studium/exams/ask_exam_question/ask_exam_question.rb +2757 -0
  418. data/lib/studium/exams/ask_exam_topic_question.rb +112 -0
  419. data/lib/studium/exams/ask_question_from_alias.rb +141 -0
  420. data/lib/studium/exams/ask_question_from_any_of_the_still_missing_lectures.rb +130 -0
  421. data/lib/studium/exams/ask_question_from_grouped_themes.rb +141 -0
  422. data/lib/studium/exams/ask_question_from_last_topic.rb +91 -0
  423. data/lib/studium/exams/ask_random_question.rb +195 -0
  424. data/lib/studium/exams/autoinclude.rb +7 -0
  425. data/lib/studium/exams/average_grade/average_grade.rb +402 -0
  426. data/lib/studium/exams/csv/create_csv_passed_exams_file.rb +217 -0
  427. data/lib/studium/exams/cycle.rb +291 -0
  428. data/lib/studium/exams/dataset/dataset.rb +128 -0
  429. data/lib/studium/exams/designate_ten_random_exam_topics/designate_ten_random_exam_topics.rb +88 -0
  430. data/lib/studium/exams/exam/exam.rb +130 -0
  431. data/lib/studium/exams/exam_bubble/exam_bubble.rb +445 -0
  432. data/lib/studium/exams/exam_bubble/menu_for_the_main_loop.rb +111 -0
  433. data/lib/studium/exams/exam_question/README.md +3 -0
  434. data/lib/studium/exams/exam_question/exam_question.rb +427 -0
  435. data/lib/studium/exams/exam_registration_at/constants.rb +49 -0
  436. data/lib/studium/exams/exam_registration_at/exam_registration_at.rb +242 -0
  437. data/lib/studium/exams/exam_registration_at/help.rb +46 -0
  438. data/lib/studium/exams/exam_registration_at/menu.rb +81 -0
  439. data/lib/studium/exams/exam_registration_at/report_and_show.rb +133 -0
  440. data/lib/studium/exams/exam_registration_at/reset.rb +54 -0
  441. data/lib/studium/exams/exam_statistics_from_this_file/exam_statistics_from_this_file.rb +119 -0
  442. data/lib/studium/exams/exam_topics.rb +194 -0
  443. data/lib/studium/exams/exams.rb +20 -0
  444. data/lib/studium/exams/exams_per_month/exams_per_month.rb +2429 -0
  445. data/lib/studium/exams/exams_this_week.rb +182 -0
  446. data/lib/studium/exams/fix_exam_dates.rb +121 -0
  447. data/lib/studium/exams/frozen.rb +36 -0
  448. data/lib/studium/exams/last_exams/last_exams.rb +398 -0
  449. data/lib/studium/exams/lectures_without_exam_entry.rb +137 -0
  450. data/lib/studium/exams/mandatory_continuous_assessment/mandatory_continuous_assessment.rb +1359 -0
  451. data/lib/studium/exams/move_all_unsolved_exam_questions_to_the_top_of_the_file.rb +173 -0
  452. data/lib/studium/exams/move_the_last_exam_question_to_the_top_of_the_file/move_the_last_exam_question_to_the_top_of_the_file.rb +111 -0
  453. data/lib/studium/exams/n_exams_in_these_topics.rb +477 -0
  454. data/lib/studium/exams/next_exam.rb +107 -0
  455. data/lib/studium/exams/next_exams.rb +378 -0
  456. data/lib/studium/exams/open_exam_associated_url/open_exam_associated_url.rb +154 -0
  457. data/lib/studium/exams/open_last_exam_question_asked_file/constants.rb +15 -0
  458. data/lib/studium/exams/open_last_exam_question_asked_file/initialize.rb +29 -0
  459. data/lib/studium/exams/open_last_exam_question_asked_file/open_last_exam_question_asked_file.rb +110 -0
  460. data/lib/studium/exams/push_solved_questions_on_top.rb +180 -0
  461. data/lib/studium/exams/questions_solved_from_day_to_day/questions_solved_from_day_to_day.rb +374 -0
  462. data/lib/studium/exams/remote_ftp_url.rb +52 -0
  463. data/lib/studium/exams/repeat_last_question.rb +78 -0
  464. data/lib/studium/exams/report_total_amount_of_questions_and_answers_for.rb +116 -0
  465. data/lib/studium/exams/show_all_passed_exams_of_this_university.rb +252 -0
  466. data/lib/studium/exams/show_backlog_of_exams/show_backlog_of_exams.rb +116 -0
  467. data/lib/studium/exams/show_next_exams_for.rb +133 -0
  468. data/lib/studium/exams/show_themes/constants.rb +28 -0
  469. data/lib/studium/exams/show_themes/menu.rb +61 -0
  470. data/lib/studium/exams/show_themes/misc.rb +537 -0
  471. data/lib/studium/exams/show_themes/reset.rb +62 -0
  472. data/lib/studium/exams/show_themes/show_themes.rb +27 -0
  473. data/lib/studium/exams/show_upcoming_exams/show_upcoming_exams.rb +1375 -0
  474. data/lib/studium/exams/solve_all_questions_from_this_topic.rb +114 -0
  475. data/lib/studium/exams/solved/constants.rb +32 -0
  476. data/lib/studium/exams/solved/help.rb +24 -0
  477. data/lib/studium/exams/solved/initialize.rb +55 -0
  478. data/lib/studium/exams/solved/menu.rb +41 -0
  479. data/lib/studium/exams/solved/reset.rb +28 -0
  480. data/lib/studium/exams/solved/solved.rb +326 -0
  481. data/lib/studium/exams/timetable/constants.rb +142 -0
  482. data/lib/studium/exams/timetable/timetable.rb +450 -0
  483. data/lib/studium/exams/unsolve_all_questions_from_this_topic.rb +163 -0
  484. data/lib/studium/exams/upcoming_exams/upcoming_exams.rb +556 -0
  485. data/lib/studium/exams/upcoming_exams_at_the_boku/constants.rb +23 -0
  486. data/lib/studium/exams/upcoming_exams_at_the_boku/html.rb +64 -0
  487. data/lib/studium/exams/upcoming_exams_at_the_boku/upcoming_exams_at_the_boku.rb +194 -0
  488. data/lib/studium/exams/upcoming_exams_dataset.rb +247 -0
  489. data/lib/studium/exams/upcoming_registered_exams/upcoming_registered_exams.rb +257 -0
  490. data/lib/studium/exams/upload_exam_topics.rb +360 -0
  491. data/lib/studium/graphviz/README.md +4 -0
  492. data/lib/studium/graphviz/bachelor_vector_based_strategies.dot +160 -0
  493. data/lib/studium/graphviz/master_vector_based_strategies.dot +46 -0
  494. data/lib/studium/gui/gtk3/README.md +1 -0
  495. data/lib/studium/gui/gtk3/ask_exam_question/ask_exam_question.config +6 -0
  496. data/lib/studium/gui/gtk3/ask_exam_question/ask_exam_question.rb +760 -0
  497. data/lib/studium/gui/gtk3/ask_exam_question/manifest.yml +12 -0
  498. data/lib/studium/gui/gtk3/control_panel/control_panel.rb +39 -0
  499. data/lib/studium/gui/gtk3/curriculum_viewer/curriculum_viewer.rb +513 -0
  500. data/lib/studium/gui/gtk3/ects_per_university/ects_per_university.rb +217 -0
  501. data/lib/studium/gui/gtk3/exam_question_widget/exam_question_widget.rb +1889 -0
  502. data/lib/studium/gui/gtk3/expand_time_range/expand_time_range.rb +34 -0
  503. data/lib/studium/gui/gtk3/information_about_a_lecture/information_about_a_lecture.rb +34 -0
  504. data/lib/studium/gui/gtk3/lecture_information/lecture_information.rb +200 -0
  505. data/lib/studium/gui/gtk3/show_upcoming_exams/show_upcoming_exams.rb +34 -0
  506. data/lib/studium/gui/java/exam_question/ExamQuestion$1.class +0 -0
  507. data/lib/studium/gui/java/exam_question/ExamQuestion.class +0 -0
  508. data/lib/studium/gui/java/exam_question/ExamQuestion.java +215 -0
  509. data/lib/studium/gui/javafx/exam_question_widget/exam_question_widget.rb +58 -0
  510. data/lib/studium/gui/jruby/exam_question_widget/exam_question_widget.rb +317 -0
  511. data/lib/studium/gui/libui/ask_exam_question/ask_exam_question.rb +349 -0
  512. data/lib/studium/gui/shared_code/control_panel/control_panel_module.rb +314 -0
  513. data/lib/studium/gui/shared_code/exam_question_widget/exam_question_widget_module.rb +39 -0
  514. data/lib/studium/gui/shared_code/expand_time_range/expand_time_range.css +0 -0
  515. data/lib/studium/gui/shared_code/expand_time_range/expand_time_range_module.rb +190 -0
  516. data/lib/studium/gui/shared_code/information_about_a_lecture/information_about_a_lecture_module.rb +180 -0
  517. data/lib/studium/gui/shared_code/show_upcoming_exams/show_upcoming_exams_module.rb +206 -0
  518. data/lib/studium/images/libui_ask_exam_question.png +0 -0
  519. data/lib/studium/images/outdated.png +0 -0
  520. data/lib/studium/images/small_logos/DNA.png +0 -0
  521. data/lib/studium/images/small_logos/README.md +2 -0
  522. data/lib/studium/images/small_logos/solved.png +0 -0
  523. data/lib/studium/images/studies_favicon.png +0 -0
  524. data/lib/studium/java/README.md +5 -0
  525. data/lib/studium/java/studium/AskExamQuestion.java +461 -0
  526. data/lib/studium/java/studium/Base.java +123 -0
  527. data/lib/studium/java/studium/Constants.java +122 -0
  528. data/lib/studium/java/studium/EnsureThatTheLogDirectoryExists.java +57 -0
  529. data/lib/studium/java/studium/Mkdir.java +13 -0
  530. data/lib/studium/java/studium/OpenLastExamQuestionurlLinkViaTheBrowser.java +90 -0
  531. data/lib/studium/java/studium/ReturnNQuestionsSolvedInTotal.java +69 -0
  532. data/lib/studium/java/studium/Solved.java +112 -0
  533. data/lib/studium/java/studium/Test.java +60 -0
  534. data/lib/studium/java/studium/studium/AskExamQuestion.class +0 -0
  535. data/lib/studium/java/studium/studium/Base.class +0 -0
  536. data/lib/studium/java/studium/studium/Constants.class +0 -0
  537. data/lib/studium/java/studium/studium/EnsureThatTheLogDirectoryExists.class +0 -0
  538. data/lib/studium/java/studium/studium/Mkdir.class +0 -0
  539. data/lib/studium/java/studium/studium/OpenLastExamQuestionurlLinkViaTheBrowser.class +0 -0
  540. data/lib/studium/java/studium/studium/ReturnNQuestionsSolvedInTotal.class +0 -0
  541. data/lib/studium/java/studium/studium/Solved.class +0 -0
  542. data/lib/studium/java/studium/studium/Test.class +0 -0
  543. data/lib/studium/jobs/jobs.rb +80 -0
  544. data/lib/studium/logging/README.md +2 -0
  545. data/lib/studium/logging/ensure_that_the_log_directory_exists.rb +58 -0
  546. data/lib/studium/logging/html_log_directory.rb +42 -0
  547. data/lib/studium/logging/log_directory.rb +112 -0
  548. data/lib/studium/logging/store_last_question_asked_into_file.rb +137 -0
  549. data/lib/studium/parsers/README.md +2 -0
  550. data/lib/studium/parsers/custom_exam_results_parser.rb +209 -0
  551. data/lib/studium/parsers/parse_lva_dates.rb +233 -0
  552. data/lib/studium/parsers/parse_remote_lecture.rb +331 -0
  553. data/lib/studium/project/project.rb +88 -0
  554. data/lib/studium/requires/common_popular_requires.rb +37 -0
  555. data/lib/studium/requires/commonly_used_requires.rb +14 -0
  556. data/lib/studium/requires/require_class_exams_solved.rb +7 -0
  557. data/lib/studium/requires/require_ects_scripts.rb +27 -0
  558. data/lib/studium/requires/require_encoding.rb +7 -0
  559. data/lib/studium/requires/require_the_check_and_sanitize_files.rb +31 -0
  560. data/lib/studium/requires/require_the_curricula_files.rb +28 -0
  561. data/lib/studium/requires/require_the_exam_question_class.rb +7 -0
  562. data/lib/studium/requires/require_the_exams_files.rb +46 -0
  563. data/lib/studium/requires/require_the_logging_files.rb +23 -0
  564. data/lib/studium/requires/require_the_parsers.rb +28 -0
  565. data/lib/studium/requires/require_the_studium_constants.rb +10 -0
  566. data/lib/studium/requires/require_the_studium_project.rb +70 -0
  567. data/lib/studium/requires/require_the_toplevel_methods.rb +27 -0
  568. data/lib/studium/requires/require_the_utility_scripts.rb +34 -0
  569. data/lib/studium/requires/require_upcoming_exams.rb +7 -0
  570. data/lib/studium/requires/require_yaml.rb +7 -0
  571. data/lib/studium/requires/return_remote_homepage_of_this_lecture.rb +7 -0
  572. data/lib/studium/requires/with_GUI.rb +13 -0
  573. data/lib/studium/requires/www_mode.rb +17 -0
  574. data/lib/studium/statistics/README.md +4 -0
  575. data/lib/studium/statistics/best_exam_months.rb +92 -0
  576. data/lib/studium/statistics/curriculum_comparer/curriculum_comparer.rb +386 -0
  577. data/lib/studium/statistics/determine_exam_statistics_from_this_file.rb +142 -0
  578. data/lib/studium/statistics/exam_topics_that_are_about_to_be_completed.rb +119 -0
  579. data/lib/studium/statistics/max_stats.rb +170 -0
  580. data/lib/studium/statistics/new_questions_per_year.rb +147 -0
  581. data/lib/studium/statistics/report_how_many_ects_points_per_curriculum_were_completed.rb +167 -0
  582. data/lib/studium/statistics/report_how_many_exam_questions_were_answered.rb +474 -0
  583. data/lib/studium/statistics/show_exam_statistics.rb +66 -0
  584. data/lib/studium/statistics/show_which_courses_are_in_a_bachelor_or_master_curriculum_respectively.rb +104 -0
  585. data/lib/studium/statistics/top_stats.rb +127 -0
  586. data/lib/studium/toplevel_methods/all_passed_exams.rb +37 -0
  587. data/lib/studium/toplevel_methods/already_solved_this_lecture.rb +101 -0
  588. data/lib/studium/toplevel_methods/available_topics.rb +161 -0
  589. data/lib/studium/toplevel_methods/calculate_pr/303/274fungsimmanente_lectures_from_this_file.rb +55 -0
  590. data/lib/studium/toplevel_methods/copy_the_last_backup_of_file_lecture_information.rb +34 -0
  591. data/lib/studium/toplevel_methods/curriculum_related_code.rb +1038 -0
  592. data/lib/studium/toplevel_methods/does_this_course_require_mandatory_presence.rb +52 -0
  593. data/lib/studium/toplevel_methods/download.rb +161 -0
  594. data/lib/studium/toplevel_methods/e.rb +16 -0
  595. data/lib/studium/toplevel_methods/ects_from_lectures.rb +250 -0
  596. data/lib/studium/toplevel_methods/editor.rb +67 -0
  597. data/lib/studium/toplevel_methods/esystem.rb +29 -0
  598. data/lib/studium/toplevel_methods/filter_away_invalid_questions.rb +77 -0
  599. data/lib/studium/toplevel_methods/find_exam_topic_and_exam_title.rb +3807 -0
  600. data/lib/studium/toplevel_methods/has_this_lecture_been_already_passed_but_the_id_was_changed_lateron.rb +42 -0
  601. data/lib/studium/toplevel_methods/has_this_module_been_completed.rb +208 -0
  602. data/lib/studium/toplevel_methods/install_the_project_on_the_given_hostsystem.rb +32 -0
  603. data/lib/studium/toplevel_methods/is_on_roebe.rb +27 -0
  604. data/lib/studium/toplevel_methods/is_this_exam_topic_included.rb +46 -0
  605. data/lib/studium/toplevel_methods/is_this_homepage_registered.rb +32 -0
  606. data/lib/studium/toplevel_methods/is_this_lecture_a_practical_course.rb +93 -0
  607. data/lib/studium/toplevel_methods/is_this_lecture_registered_in_upcoming_exams.rb +45 -0
  608. data/lib/studium/toplevel_methods/java.rb +32 -0
  609. data/lib/studium/toplevel_methods/lecture_information.rb +108 -0
  610. data/lib/studium/toplevel_methods/lva_numbers.rb +358 -0
  611. data/lib/studium/toplevel_methods/main_dataset.rb +73 -0
  612. data/lib/studium/toplevel_methods/map_input_to_this_curriculum_filename.rb +607 -0
  613. data/lib/studium/toplevel_methods/methods_related_to_files_and_directories.rb +481 -0
  614. data/lib/studium/toplevel_methods/misc.rb +580 -0
  615. data/lib/studium/toplevel_methods/n_questions_available.rb +141 -0
  616. data/lib/studium/toplevel_methods/n_topics_available.rb +63 -0
  617. data/lib/studium/toplevel_methods/names_of_all_solved_exams.rb +77 -0
  618. data/lib/studium/toplevel_methods/note_down_the_start_time_and_how_many_exams_have_been_already_solved.rb +69 -0
  619. data/lib/studium/toplevel_methods/opnn.rb +27 -0
  620. data/lib/studium/toplevel_methods/passed_this_exam_on.rb +105 -0
  621. data/lib/studium/toplevel_methods/read_delay_between_questions_from_file.rb +36 -0
  622. data/lib/studium/toplevel_methods/regexes.rb +90 -0
  623. data/lib/studium/toplevel_methods/registered_for_this_exam.rb +83 -0
  624. data/lib/studium/toplevel_methods/remove_comments.rb +27 -0
  625. data/lib/studium/toplevel_methods/remove_exam_topics_that_were_already_answered.rb +27 -0
  626. data/lib/studium/toplevel_methods/remove_tags.rb +35 -0
  627. data/lib/studium/toplevel_methods/report.rb +439 -0
  628. data/lib/studium/toplevel_methods/return_all_exams_on_this_day.rb +69 -0
  629. data/lib/studium/toplevel_methods/return_dataset_for_this_exam_topic.rb +45 -0
  630. data/lib/studium/toplevel_methods/return_ects_from_this_lecture_stored_in_the_file_lecture_information.rb +194 -0
  631. data/lib/studium/toplevel_methods/return_hash_of_already_solved_lectures.rb +46 -0
  632. data/lib/studium/toplevel_methods/return_last_exam_question.rb +34 -0
  633. data/lib/studium/toplevel_methods/return_lva_number_of_this_lecture.rb +72 -0
  634. data/lib/studium/toplevel_methods/return_n_percent_solved_from_this_topic.rb +90 -0
  635. data/lib/studium/toplevel_methods/return_n_questions_were_answered_for_this_topic.rb +62 -0
  636. data/lib/studium/toplevel_methods/return_proper_university_image.rb +86 -0
  637. data/lib/studium/toplevel_methods/return_question_answer_string_from_this_topic.rb +63 -0
  638. data/lib/studium/toplevel_methods/return_remote_homepage_of_this_lecture.rb +11311 -0
  639. data/lib/studium/toplevel_methods/return_remote_moodle_link_of_this_lecture.rb +2405 -0
  640. data/lib/studium/toplevel_methods/return_sanitized_dataset_from_the_file_lecture_information.rb +110 -0
  641. data/lib/studium/toplevel_methods/return_theme_of_the_next_upcoming_exam.rb +40 -0
  642. data/lib/studium/toplevel_methods/runmode.rb +97 -0
  643. data/lib/studium/toplevel_methods/sanitized_dataset_from_file_passed_exams_per_month.rb +53 -0
  644. data/lib/studium/toplevel_methods/set_last_file_for_exam_questions.rb +64 -0
  645. data/lib/studium/toplevel_methods/set_this_cd_alias_to.rb +92 -0
  646. data/lib/studium/toplevel_methods/spacer.rb +18 -0
  647. data/lib/studium/toplevel_methods/time.rb +297 -0
  648. data/lib/studium/toplevel_methods/total_ects_points_passed.rb +73 -0
  649. data/lib/studium/toplevel_methods/try_to_guess_the_most_likely_lva_id.rb +58 -0
  650. data/lib/studium/toplevel_methods/try_to_return_the_expanded_name_of_this_lecture.rb +64 -0
  651. data/lib/studium/toplevel_methods/unfinished.rb +51 -0
  652. data/lib/studium/toplevel_methods/url.rb +106 -0
  653. data/lib/studium/toplevel_methods/verbose_truth.rb +36 -0
  654. data/lib/studium/toplevel_methods/when_was_this_lecture_passed.rb +54 -0
  655. data/lib/studium/toplevel_methods/word_wrap.rb +56 -0
  656. data/lib/studium/toplevel_methods/write_into_file_related_functionality.rb +197 -0
  657. data/lib/studium/toplevel_methods/yes_or_no_ja_oder_nein.rb +33 -0
  658. data/lib/studium/universities_in_austria/README.md +2 -0
  659. data/lib/studium/universities_in_austria/boku/README.md +4 -0
  660. data/lib/studium/universities_in_austria/boku/boku_/303/266ffnungszeiten.rb +28 -0
  661. data/lib/studium/universities_in_austria/boku/show_three_pillars_of_these_lectures.rb +110 -0
  662. data/lib/studium/universities_in_austria/boku/three_pillars.rb +237 -0
  663. data/lib/studium/universities_in_austria/tu_vienna/README.md +6 -0
  664. data/lib/studium/universities_in_austria/tu_vienna/tu_ferien.rb +42 -0
  665. data/lib/studium/universities_in_austria/tu_vienna/tu_/303/266ffnungszeiten.rb +34 -0
  666. data/lib/studium/university_course/university_course.rb +409 -0
  667. data/lib/studium/utility_scripts/attribute_lectures_to_university/attribute_lectures_to_university.rb +375 -0
  668. data/lib/studium/utility_scripts/audio_stats.rb +171 -0
  669. data/lib/studium/utility_scripts/auto_stud/auto_stud.rb +252 -0
  670. data/lib/studium/utility_scripts/auto_stud/constants.rb +18 -0
  671. data/lib/studium/utility_scripts/auto_stud/initialize.rb +23 -0
  672. data/lib/studium/utility_scripts/auto_stud/misc.rb +18 -0
  673. data/lib/studium/utility_scripts/autopurge_this_lecture_date.rb +93 -0
  674. data/lib/studium/utility_scripts/average_grade_of_this_curriculum.rb +155 -0
  675. data/lib/studium/utility_scripts/blocked_courses.rb +146 -0
  676. data/lib/studium/utility_scripts/calendar/README.md +2 -0
  677. data/lib/studium/utility_scripts/calendar/calendar.rb +251 -0
  678. data/lib/studium/utility_scripts/calendar/misc.rb +35 -0
  679. data/lib/studium/utility_scripts/check_description_of_these_lectures.rb +221 -0
  680. data/lib/studium/utility_scripts/course_registrations/course_registrations.rb +98 -0
  681. data/lib/studium/utility_scripts/courses/courses.rb +177 -0
  682. data/lib/studium/utility_scripts/create/README.md +2 -0
  683. data/lib/studium/utility_scripts/create/webpage_of_university.rb +129 -0
  684. data/lib/studium/utility_scripts/create/webpage_of_university_BOKU.rb +61 -0
  685. data/lib/studium/utility_scripts/create/webpage_of_university_TU.rb +60 -0
  686. data/lib/studium/utility_scripts/create/webpage_of_university_UniWien.rb +60 -0
  687. data/lib/studium/utility_scripts/create_database/create_database.rb +106 -0
  688. data/lib/studium/utility_scripts/current_lectures_belonging_to_both_bachelor_and_master_curriculum.rb +113 -0
  689. data/lib/studium/utility_scripts/currently_participating_in_these_lectures/currently_participating_in_these_lectures.rb +104 -0
  690. data/lib/studium/utility_scripts/display_lecture_url/display_lecture_url.rb +176 -0
  691. data/lib/studium/utility_scripts/expand_time_range/expand_time_range.rb +521 -0
  692. data/lib/studium/utility_scripts/finished_exams_at_this_university/finished_exams_at_this_university.rb +173 -0
  693. data/lib/studium/utility_scripts/foreign_language_percentage/constants.rb +23 -0
  694. data/lib/studium/utility_scripts/foreign_language_percentage/foreign_language_percentage.rb +149 -0
  695. data/lib/studium/utility_scripts/foreign_language_percentage/help.rb +31 -0
  696. data/lib/studium/utility_scripts/foreign_language_percentage/initialize.rb +25 -0
  697. data/lib/studium/utility_scripts/foreign_language_percentage/menu.rb +158 -0
  698. data/lib/studium/utility_scripts/foreign_language_percentage/report.rb +62 -0
  699. data/lib/studium/utility_scripts/foreign_language_percentage/reset.rb +50 -0
  700. data/lib/studium/utility_scripts/foreign_language_percentage/run.rb +19 -0
  701. data/lib/studium/utility_scripts/generate_spreadsheet/generate_spreadsheet.rb +354 -0
  702. data/lib/studium/utility_scripts/generate_spreadsheet/misc.rb +144 -0
  703. data/lib/studium/utility_scripts/holidays/holidays.rb +156 -0
  704. data/lib/studium/utility_scripts/homepage_of_these_courses/homepage_of_these_courses.rb +125 -0
  705. data/lib/studium/utility_scripts/lectures_attributed_to_universities/lectures_attributed_to_universities.rb +336 -0
  706. data/lib/studium/utility_scripts/lva_dates_of_the_important_courses.rb +111 -0
  707. data/lib/studium/utility_scripts/lva_nummer/lva_nummer.rb +431 -0
  708. data/lib/studium/utility_scripts/mandatory_lectures_in_this_month/mandatory_lectures_in_this_month.rb +316 -0
  709. data/lib/studium/utility_scripts/moodle/moodle.rb +213 -0
  710. data/lib/studium/utility_scripts/name_of_this_lva_id/name_of_this_lva_id.rb +110 -0
  711. data/lib/studium/utility_scripts/new_stud.rb +324 -0
  712. data/lib/studium/utility_scripts/next_week/next_week.rb +103 -0
  713. data/lib/studium/utility_scripts/not_yet_registered/not_yet_registered.rb +120 -0
  714. data/lib/studium/utility_scripts/open_last_exam_question_url_link_via_the_browser.rb +76 -0
  715. data/lib/studium/utility_scripts/passed_ects_per_year/passed_ects_per_year.rb +313 -0
  716. data/lib/studium/utility_scripts/passed_pr/303/274fungsimmanente_courses/passed_pr/303/274fungsimmanente_courses.rb +181 -0
  717. data/lib/studium/utility_scripts/pdf/README.md +2 -0
  718. data/lib/studium/utility_scripts/pdf/create_pdf_file_for_this_exam_topic.rb +355 -0
  719. data/lib/studium/utility_scripts/pdf/hexapdf_support.rb +50 -0
  720. data/lib/studium/utility_scripts/preparatory_meetings/preparatory_meetings.rb +317 -0
  721. data/lib/studium/utility_scripts/priority/priority.rb +164 -0
  722. data/lib/studium/utility_scripts/priority_points/priority_points.rb +263 -0
  723. data/lib/studium/utility_scripts/publish_my_exams/publish_my_exams.rb +174 -0
  724. data/lib/studium/utility_scripts/regexes/README.md +1 -0
  725. data/lib/studium/utility_scripts/regexes/generate_regex.rb +314 -0
  726. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_available_moodle_links.rb +55 -0
  727. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_registered_lectures.rb +48 -0
  728. data/lib/studium/utility_scripts/report_outdated_timetable_entries/report_outdated_timetable_entries.rb +142 -0
  729. data/lib/studium/utility_scripts/report_whether_this_lecture_is_registered_in_the_file_lecture_information/report_whether_this_lecture_is_registered_in_the_file_lecture_information.rb +128 -0
  730. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/individual_resolve_practical_courses_date_conflicts.rb +254 -0
  731. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/resolve_practical_courses_date_conflicts.rb +265 -0
  732. data/lib/studium/utility_scripts/scrape_remote_university_url.rb +138 -0
  733. data/lib/studium/utility_scripts/semester_schedule_creator/semester_container.rb +144 -0
  734. data/lib/studium/utility_scripts/semester_schedule_creator/semester_schedule_creator.rb +374 -0
  735. data/lib/studium/utility_scripts/semesterplaner/semesterplaner.rb +311 -0
  736. data/lib/studium/utility_scripts/set_aliases_based_on_this_file.rb +97 -0
  737. data/lib/studium/utility_scripts/show_all_passed_master_lectures/show_all_passed_master_lectures.rb +126 -0
  738. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/show_conflicting_lva_lectures.rb +1385 -0
  739. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/constants.rb +23 -0
  740. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/menu.rb +63 -0
  741. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/reset.rb +33 -0
  742. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/run.rb +50 -0
  743. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/show_descriptions_of_lectures_belonging_to_this_module.rb +145 -0
  744. data/lib/studium/utility_scripts/show_lecturers/show_lecturers.rb +147 -0
  745. data/lib/studium/utility_scripts/show_lectures/show_lectures.rb +910 -0
  746. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_language/show_lectures_fitting_to_this_language.rb +121 -0
  747. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_theme/show_lectures_fitting_to_this_theme.rb +105 -0
  748. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/show_lectures_on_the_commandline.rb +3167 -0
  749. data/lib/studium/utility_scripts/show_lectures_on_this_day/show_lectures_on_this_day.rb +150 -0
  750. data/lib/studium/utility_scripts/show_lva_dates_of_this_lecture/show_lva_dates_of_this_lecture.rb +182 -0
  751. data/lib/studium/utility_scripts/show_mixed_bachelor_master_courses/show_mixed_bachelor_master_courses.rb +92 -0
  752. data/lib/studium/utility_scripts/show_outdated_lva_dates/show_outdated_lva_dates.rb +214 -0
  753. data/lib/studium/utility_scripts/show_passed_exams_having_this_grade/show_passed_exams_having_this_grade.rb +91 -0
  754. data/lib/studium/utility_scripts/show_solved_english_lectures/show_solved_english_lectures.rb +139 -0
  755. data/lib/studium/utility_scripts/steop/README.md +4 -0
  756. data/lib/studium/utility_scripts/steop/show_all_steop_lectures.rb +93 -0
  757. data/lib/studium/utility_scripts/steop/steop_lectures_in_this_curriculum.rb +284 -0
  758. data/lib/studium/utility_scripts/steop/steop_lva_dates.rb +119 -0
  759. data/lib/studium/utility_scripts/studienkennzahl/studienkennzahl.rb +116 -0
  760. data/lib/studium/utility_scripts/studium_skeleton/studium_skeleton.rb +242 -0
  761. data/lib/studium/utility_scripts/stundenplan.rb +600 -0
  762. data/lib/studium/utility_scripts/sync_studium_relevant_entries_one_level_downwards.rb +217 -0
  763. data/lib/studium/utility_scripts/ufind/ufind.rb +106 -0
  764. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/constants.rb +26 -0
  765. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/run.rb +20 -0
  766. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/upcoming_mandatory_presence_courses.rb +187 -0
  767. data/lib/studium/utility_scripts/video_lecture_downloader/video_lecture_downloader.rb +107 -0
  768. data/lib/studium/utility_scripts/week_parser/constants.rb +23 -0
  769. data/lib/studium/utility_scripts/week_parser/help.rb +32 -0
  770. data/lib/studium/utility_scripts/week_parser/menu.rb +59 -0
  771. data/lib/studium/utility_scripts/week_parser/misc.rb +373 -0
  772. data/lib/studium/utility_scripts/week_parser/reset.rb +65 -0
  773. data/lib/studium/utility_scripts/week_parser/run.rb +18 -0
  774. data/lib/studium/utility_scripts/week_parser/show.rb +236 -0
  775. data/lib/studium/utility_scripts/week_parser/week_parser.rb +49 -0
  776. data/lib/studium/utility_scripts/weekday_parser.rb +155 -0
  777. data/lib/studium/utility_scripts/weekly_schedule.rb +198 -0
  778. data/lib/studium/utility_scripts/wochenplanung/wochenplanung.rb +267 -0
  779. data/lib/studium/version/version.rb +46 -0
  780. data/lib/studium/www/exams/exams.cgi +54 -0
  781. data/lib/studium/www/fast_ask_exam_question/fast_ask_exam_question.cgi +156 -0
  782. data/lib/studium/www/handle_curricula/handle_curricula.cgi +154 -0
  783. data/lib/studium/www/next_generation_exam_question_trainer/next_generation_exam_question_trainer.cgi +112 -0
  784. data/lib/studium/www/next_generation_exam_question_trainer/solved.cgi +26 -0
  785. data/lib/studium/www/sinatra/app.rb +231 -0
  786. data/lib/studium/www/sinatra/curriculum_displayer/curriculum_displayer.rb +162 -0
  787. data/lib/studium/www/sinatra/misc.rb +115 -0
  788. data/lib/studium/www/statistics/statistics.cgi +82 -0
  789. data/lib/studium/www/upcoming_exams/upcoming_exams.cgi +36 -0
  790. data/lib/studium/yaml/ad_hoc_trainer/README.md +2 -0
  791. data/lib/studium/yaml/ad_hoc_trainer/exam_topics.md +22 -0
  792. data/lib/studium/yaml/allowed_themes_for_courses/allowed_themes_for_courses.yml +348 -0
  793. data/lib/studium/yaml/array_allowed_entries_for_the_file_lecture_information/array_allowed_entries_for_the_file_lecture_information.yml +71 -0
  794. data/lib/studium/yaml/available_exam_topics/available_exam_topics.yml +234 -0
  795. data/lib/studium/yaml/backlog_of_exams.yml +37 -0
  796. data/lib/studium/yaml/colours/custom_colours.yml +50 -0
  797. data/lib/studium/yaml/colours/use_colours.yml +1 -0
  798. data/lib/studium/yaml/current_exams.yml +30 -0
  799. data/lib/studium/yaml/curricula/README.md +39 -0
  800. data/lib/studium/yaml/curricula/bachelor/bachelor_agrarwissenschaften_033255.yml +147 -0
  801. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_basisblock_033630.yml +71 -0
  802. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_botanik_033630.yml +100 -0
  803. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_ecology_033630.yml +74 -0
  804. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_mikrobiologie_und_genetik_033630.yml +122 -0
  805. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_molekulare_biologie_033630.yml +106 -0
  806. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_zoologie_033630.yml +87 -0
  807. data/lib/studium/yaml/curricula/bachelor/bachelor_chemie_033662.yml +165 -0
  808. data/lib/studium/yaml/curricula/bachelor/bachelor_dummy_curriculum.yml +182 -0
  809. data/lib/studium/yaml/curricula/bachelor/bachelor_elektrotechnik_und_informationstechnik_033235.yml +13 -0
  810. data/lib/studium/yaml/curricula/bachelor/bachelor_forstwirtschaft_033225.yml +115 -0
  811. data/lib/studium/yaml/curricula/bachelor/bachelor_informatik_033521.yml +136 -0
  812. data/lib/studium/yaml/curricula/bachelor/bachelor_ktww_033231.yml +84 -0
  813. data/lib/studium/yaml/curricula/bachelor/bachelor_lmbt_033217.yml +121 -0
  814. data/lib/studium/yaml/curricula/bachelor/bachelor_medizinische_informatik_033533.yml +283 -0
  815. data/lib/studium/yaml/curricula/bachelor/bachelor_molekularbiologie_033665.yml +95 -0
  816. data/lib/studium/yaml/curricula/bachelor/bachelor_nutrition_science_033638.yml +119 -0
  817. data/lib/studium/yaml/curricula/bachelor/bachelor_pharmazie_033305.yml +170 -0
  818. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_chemie_033290.yml +131 -0
  819. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_informatik_033535.yml +23 -0
  820. data/lib/studium/yaml/curricula/bachelor/bachelor_ubrm_033227.yml +142 -0
  821. data/lib/studium/yaml/curricula/bachelor/bachelor_verfahrenstechnik_033273.yml +167 -0
  822. data/lib/studium/yaml/curricula/bachelor/bachelor_wirtschaftsinformatik_033526.yml +29 -0
  823. data/lib/studium/yaml/curricula/experimental/bachelor_informatik_in_den_lebenswissenschaften.yml +137 -0
  824. data/lib/studium/yaml/curricula/individual/bachelor_formale_logik.yml +88 -0
  825. data/lib/studium/yaml/curricula/individual/bachelor_informatik_und_molekulare_biologie.yml +1161 -0
  826. data/lib/studium/yaml/curricula/individual/bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +1157 -0
  827. data/lib/studium/yaml/curricula/individual/master_bioinformatics_and_nanobiotechnology_in_molecular_medicine.yml +306 -0
  828. data/lib/studium/yaml/curricula/individual/master_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +741 -0
  829. data/lib/studium/yaml/curricula/master/master_bioinformatik_066875.yml +75 -0
  830. data/lib/studium/yaml/curricula/master/master_biologie_molekulare_mikrobiologie_mikrobielle_oekologie_und_immunbiologie_066830.yml +78 -0
  831. data/lib/studium/yaml/curricula/master/master_biologische_chemie_066863.yml +66 -0
  832. data/lib/studium/yaml/curricula/master/master_dummy_curriculum.yml +197 -0
  833. data/lib/studium/yaml/curricula/master/master_genetik_und_entwicklungsbiologie_066877.yml +89 -0
  834. data/lib/studium/yaml/curricula/master/master_lmbt_066418.yml +112 -0
  835. data/lib/studium/yaml/curricula/master/master_molecular_biology_066865.yml +72 -0
  836. data/lib/studium/yaml/curricula/master/master_molekulare_biologie_066834.yml +151 -0
  837. data/lib/studium/yaml/curricula/master/master_pharmazie_066605.yml +176 -0
  838. data/lib/studium/yaml/curricula/master/master_technische_chemie_066490.yml +123 -0
  839. data/lib/studium/yaml/curricula/outdated/master_bioinformatics_and_molecular_biotechnology_including_aspects_from_molecular_medicine.yml +438 -0
  840. data/lib/studium/yaml/curricula/outdated/master_food_science_and_plant_biotechnology.yml +31 -0
  841. data/lib/studium/yaml/curricula.yml +562 -0
  842. data/lib/studium/yaml/daily_questions_solved/daily_questions_solved.yml +1849 -0
  843. data/lib/studium/yaml/default_delay.yml +4 -0
  844. data/lib/studium/yaml/default_encoding.yml +1 -0
  845. data/lib/studium/yaml/directory_to_the_exam_topics.yml +0 -0
  846. data/lib/studium/yaml/editor.yml +1 -0
  847. data/lib/studium/yaml/exams/next_exams_to_do.md +9 -0
  848. data/lib/studium/yaml/file_for_exam_questions.yml +1 -0
  849. data/lib/studium/yaml/german/README.md +2 -0
  850. data/lib/studium/yaml/german/german_to_english_month_names.yml +16 -0
  851. data/lib/studium/yaml/grouped_themes/grouped_themes.yml +258 -0
  852. data/lib/studium/yaml/holidays/holidays.yml +201 -0
  853. data/lib/studium/yaml/important_exams.yml +274 -0
  854. data/lib/studium/yaml/inscription_dates_of_universities.yml +60 -0
  855. data/lib/studium/yaml/lecture_aliases.yml +138 -0
  856. data/lib/studium/yaml/lecture_information/lecture_information.yml +63818 -0
  857. data/lib/studium/yaml/log_dir.yml +1 -0
  858. data/lib/studium/yaml/main_topic/main_topic.yml +11 -0
  859. data/lib/studium/yaml/max_stats.yml +256 -0
  860. data/lib/studium/yaml/meta_themes +1 -0
  861. data/lib/studium/yaml/mitbelegung/README.md +4 -0
  862. data/lib/studium/yaml/mitbelegung/mitbelegung.yml +21 -0
  863. data/lib/studium/yaml/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.yml +363 -0
  864. data/lib/studium/yaml/n_total_questions.yml +1 -0
  865. data/lib/studium/yaml/rename_konsole_tab.yml +1 -0
  866. data/lib/studium/yaml/semester_planner/README.md +4 -0
  867. data/lib/studium/yaml/semester_planner/semester_planner.yml +189 -0
  868. data/lib/studium/yaml/show_topic.yml +1 -0
  869. data/lib/studium/yaml/statistics/lecture_information.yml +1 -0
  870. data/lib/studium/yaml/statistics/max_stats.yml +239 -0
  871. data/lib/studium/yaml/statistics/statistics.yml +77 -0
  872. data/lib/studium/yaml/week/01_monday.yml +25 -0
  873. data/lib/studium/yaml/week/02_tuesday.yml +68 -0
  874. data/lib/studium/yaml/week/03_wednesday.yml +63 -0
  875. data/lib/studium/yaml/week/04_thursday.yml +20 -0
  876. data/lib/studium/yaml/week/05_friday.yml +31 -0
  877. data/lib/studium/yaml/week/06_saturday.yml +16 -0
  878. data/lib/studium/yaml/week/07_sunday.yml +0 -0
  879. data/lib/studium/yaml/week/README.md +10 -0
  880. data/lib/studium.rb +5 -0
  881. data/studium.gemspec +82 -0
  882. data/test/testing_colourized_question_and_answer.rb +18 -0
  883. data/test/testing_studium.rb +244 -0
  884. data/test/testing_studium_base_class.rb +31 -0
  885. data/test/testing_the_file_lecture_information.rb +18 -0
  886. data/test/testing_time_component.rb +29 -0
  887. metadata +1101 -0
@@ -0,0 +1,268 @@
1
+ # =========================================================================== #
2
+ # === Statistik tag (Stat tag)
3
+ #
4
+ # Biostatistik tag, Biostat tag.
5
+ # =========================================================================== #
6
+
7
+ - Ist ein Ball, der in die Luft geworfen wird und danach auf den Boden fällt, ein Beispiel für ein <one>Zufallsexperiment</one>? <one>Nein</one>: <two>ein Ball, der nach oben geworfen wird, fällt immer zu Boden</two>.
8
+ - Was ist ein <one>Konfidenzintervall</one>? Ein <one>Konfidenzintervall</one> <two>gibt die Präzision der Lageschätzung eines Parameters an</two>, zum Beispiel des Mittelwert.
9
+ - In der Statistik: <one>das Gegenteil von</one> <two>repräsentativ</two> (einer Datenmenge) ist ... ? <one>Verzerrt</one>.
10
+ - A <one>boxplot</one> always has a <two>m</two> ... A: <one>Median</one>.
11
+ - Nenne ein sinnvolles Beispiel für eine <one>Teilerhebung</one>. A: <one>Crashuntersuchungen</one> an einem Automobil.
12
+ - <one>Womit</one> beschäftigt sich die <two>deskriptive Statistik</two>? Mit der <one>Beschreibung und Darstellung von Daten</one>.
13
+ - What is meant with the term <one>specious precision</one>? This refers to <one>numbers that are presented with more precision than they really have</one>.
14
+ - Das <one>Säulendiagramm</one> ist eigentlich eine Variante des ... ? <one>Stabdiagramms</one>.
15
+ - Die <one>ANOVA</one> wird auch ... genannt. A: <one>einfaktorielle Varianzanalyse</one>.
16
+ - Die <one>Stichprobe</one> ist eine beschränkte Auswahl aus der ... ? <one>Grundgesamtheit</one>.
17
+ - Nenne ein konkretes, übliches Beispiel für eine <one>Intervallskala</one>. A: <one>Jahreszahlen</one>, also zum Beispiel 1967, 1979 etc ...
18
+ - Die am häufigsten untersuchte Datenmenge in der Statistik ist ... ? Die <one>Stichprobe</one>.
19
+ - <one>Wieviel Prozent der Daten</one> liegen im <two>Interquartilsabstand</two>? <one>50%</one>.
20
+ - In der Statistik: <one>das Gegenteil von repräsentativ ist ... </one>? <one>Verzerrt</one>.
21
+ - <one>Primärstatistik</one> bedeutet, dass die Daten eigens für den Untersuchungszweck erhoben werden. Nenne jeweils einen Vorteil und jeweils einen Nachteil von Primärstatistiken. A: (1) <one>Vorteil</one>: Daten können optimal auf den Forschungszweck abgestimmt werden (2) <one>Nachteil</one>: hoher Aufwand an <two>Geld</two> und <two>Zeit</two>
22
+ - In der Statistik: das <one>Quartil Q2</one> korrespondiert zu welch anderem Wert? Zum <one>Median</one>.
23
+ - Setzt der <one>Schnelltest nach Tukey</one> eine <two>Normalverteilung der Daten</two> voraus? <one>Nein</one>.
24
+ - Ob es einen Zusammenhang zwischen zwei kategorischen Variablen gibt sehen wir anhand eines ... ? <one>Chi-Quadrat-Tests</one>.
25
+ - <one>s²</one> in der Statistik wird auch ... genannt. A: Die <one>Varianz</one>.
26
+ - Wie können wir <one>Ausreißer</one> in der Statistik möglichst einfach definieren? Dies sind einzelne sehr abweichende Werte.
27
+ - Eine <one>bimodale Häufigkeitsverteilung</one> ist oft ein Hinweis auf eine H...? Heterogenität der Daten. Dies ist eher schlecht.
28
+ - In der Statistik: andere Bezeichnung für den <one>P-Wert</one>? Dies ist der <one>Wahrscheinlichkeitswert</one>.
29
+ - Andere Bezeichnung für ein <one>Konfidenzintervall</one>? <one>Vertrauensintervall</one>.
30
+ - Does statistics <one>prove</one> anything? <one>No</one> - but <two>it suggests a relationship</two>.
31
+ - Bei einem <one>Boxplot</one>: <two>wo</two> finden wir das obere Quartil? Das obere Quartil, das 25% der Werte enthält, geht von der oberen horizontalen Trennlinie bis hin zum Median (dem mittleren horizontalen Trennstrich).
32
+ - What is the job of <one>descriptive statistics</one>? To <one>describe variability in the data</one>.
33
+ - Stichwort: <one>Quantile</one>. Diese besitzen welche <two>Wahrscheinlichkeit</two>? Eine bestimmte <one>Unterschreitungswahrscheinlichkeit</one>.
34
+ - <one>Deskriptive Statistik</one> versus "induktive Statistik": wer von diesen beiden Disziplinen verwendet "Stochastik"? Die <one>induktive Statistik</one>.
35
+ - <one>Die schließende Statistik</one> möchte aus den Daten Rückschlüsse auf ... ziehen. A: <one>Rückschlüsse</one> auf die Mechanismen ziehen, die die Daten erzeugt haben. Dies kann dann für Vorhersagen für die Zukunft verwendet werden.
36
+ - Die zwei wichtigsten Kenngrößen in der deskriptiven Statistik sind ... ? (1) Lage (2) Streuung
37
+ - Gibt es <one>„statistische Beweise“</one>? <one>Nein</one>.
38
+ - Was ist der <one>Interquartilbereich</one>? Das ist <one>der Bereich</one> zwischen dem 1. Quartil (Q1) und dem 3. Quartil (Q3).
39
+ - Die <one>geschichtete Zufallsstichprobe</one> wird in der englischsprachigen Literatur wie genannt? <one>Stratified random sample</one>.
40
+ - Nenne <one>zwei wichtige statistische Kennwerte</one>, die für jeden Datensatz gelten (und unterscheidbar sind). A: (1) die <one>Lage</one> (2) die <one>Streuung</one>
41
+ - Bei einem Boxplot: wo finden wir den Median? Dies ist der horizontale Trennstich, der sich genau in der Mitte befindet.
42
+ - <one>Wann</one> sind <two>induktive statistische Methoden</two> erforderlich? Wenn die Ergebnisse nicht beliebig oft wiederholbar sind.
43
+ - Bei einem <one>box-whisker plot</one>: was stellen die <two>Enden</two>, also die <three>whiskers</three> dar? Den <one>maximalen</one> beziehungsweise den <one>minimalen Wert</one>.
44
+ - Ist <one>der Median</one> <two>auch ein Quantil</two>? <one>Ja</one>.
45
+ - Der <one>Kolmogorow-Smirnow-Test</one> (<two>KS-Test</two>) ist ein statistischer Test auf Übereinstimmung zweier ... ? <one>Wahrscheinlichkeitsverteilungen</one>.
46
+ - <one>Stichproben</one> <two>sollen was repräsentieren</two>, allgemein? Die <one>Gesamtheit</one>.
47
+ - Nenne eine besondere Form der Normalverteilung. A: Die <one>Standardnormalverteilung</one>.
48
+ - In der Statistik: ist das <one>Vermögen</one> (der Menschen) <two>schief verteilt</two>? <one>Ja</one>.
49
+ - Is the <one>standard deviation</one> always smaller than the <two>variance</two>? <one>Yes</one>, <two>since it is the squareroot of the variance</two>, which, by simple logic alone, must always be smaller than the variance.
50
+ - Warum benötigen wir die <one>whiskers</one> <two>in einem Boxplot</two>? Um herauszufinden <one>ob wir Ausreißer haben</one>.
51
+ - Das <one>Schätzen von Parametern</one> mit Hilfe von Konfidenzintervallen wird ... genannt. A: <one>Intervallschätzung</one>.
52
+ - Andere Bezeichnung für den <one>Pearsons Koeffizienten</one>. A: <one>Produkt-Moment-Korrelationskoeffizient</one>.
53
+ - In der Statistik: was gilt beim Produktzeichen <one>II</one>? Das <one>die Werte miteinander multipliziert werden</one>.
54
+ - In statistics: does the <one>data</one> <two>have to be ordered</two> if we wish to point at a quartile in that data? <one>Yes</one> - usually from smallest to largest.
55
+ - Sind <one>Rangtests</one> <two>trennschärfer</two> als parametrische Tests? <one>Nein</one>.
56
+ - Statistik ist die Wissenschaft, aus ...? <one>Aus Daten zu lernen</one>.
57
+ - Bei einem <one>boxplot</one>: der untere Bereich des boxplots zeigt was an? Den <one>Beginn des 1. Quantils</one>.
58
+ - In der <one>Statistik</one>: <two>eine Auswahl aus einer Population heißt ... </two>? <one>Stichprobe</one>.
59
+ - Nenne <one>zwei Beispiele</one> für <two>Streuungsmaße</two>. A: (1) <one>Varianz</one> (2) <one>Standardabweichung</one>
60
+ - In der Statistik: kann es auch <one>mehrere Modalwerte</one> geben? <one>Ja</one>, <two>wenn mehrere Werte gleich häufig vorkommen</two>.
61
+ - Das <one>Stabdiagramm</one> <two>ist welch anderem Diagramm ähnlich</two>? Dem <one>Säulendiagramm</one>. Der Unterschied ist das die Säulen in einem Stabdiagramm sehr dünn gezeichnet werden.
62
+ - Treten bei einem <one>Zufallsexperiment</one> alle Ergebnisse mit der gleichen Wahrscheinlichkeit auf, so nennt man dies ... ? Ein <one>Laplace-Experiment</one>. URL: https://de.wikipedia.org/wiki/Wahrscheinlichkeitstheorie#Laplace-Experimente
63
+ - Ein <one>boxplot</one> hat <two>welche drei Komponenten</two>? (1) <one>Range Max</one> (2) <one>Range Midpoint</one> (3) <one>Range Min</one>
64
+ - Nenne <one>zwei verschiedene Arten der Erhebung in der Statistik</one>. A: (1) <one>Beobachtung</one> (2) <one>Experiment</one>
65
+ - In der Statistik verwendet man das Wort <one>robust</one>. <two>Was ist mit diesem Begriff gemeint</two>? Dies bezeichnet <one>Resilienz gegenüber Ausreißer</one>.
66
+ - Kann man <one>in der beschreibenden Statistik</one> <two>zwei verschiedene Datenreihen analysieren</two>? <one>Ja</one> - man kann Zusammenhänge zwischen verschiedenen Datenreihen erklären. Jeder Datensatz kann (immer) mit Hilfe der beschreibenden Statistik eingeordnet werden.
67
+ - Bei <one>verbundenen Stichproben</one> könnten wir <two>welches statistische Verfahren verwenden</two>? Den <one>t-Test</one>.
68
+ - Was gilt am <one>Medianwert</one>? Hier liegt <one>die Hälfte der Stichprobe</one> (oder der Population) <two>darüber</two> beziehungsweise <two>darunter</two>.
69
+ - Why are <one>boxplots</one> so useful? <one>Boxplots</one> are <two>one of the clearest ways of showing a trend in a given dataset</two>.
70
+ - Nenne einen <one>konkreten Anwendungsfall für ein logistisches Regressionsmodell</one>. A: Die <one>Habitatmodellierung</one>.
71
+ - Nur <one>Falsifikatoren</one> <two>führen zu einer Kontradiktion</two>. Gib ein Beispiel für diese Aussage. A: <one>Ich lüge immer</one>.
72
+ - Was ist mit dem Begriff <one>Prädiktor</one> in der Statistik gemeint? Dies betrifft den Fall wenn wir Variablen haben, und aus diesen Variablen eine Vorhersage ableiten möchten. In diesem Falle werden diese Variablen auch <one>Prädiktor-Variablen</one> genannt.
73
+ - Die <one>t-Verteilung</one> <two>benötigt unbedingt welchen Parameter</two>? Die <one>Freiheitsgrade v</one>.
74
+ - Was meinen wir mit dem Begriff Regression in der Statistik? Eine Regression in der Statistik beschreibt den Zusammenhang zwischen zwei oder mehr Variablen.
75
+ - Ist die <one>Poisson-Verteilung</one> eine Wahrscheinlichkeitsverteilung? <one>Ja</one>.
76
+ - Andere Bezeichnung für eine <one>nicht-schiefe Verteilung</one> in der Statistik? <one>Symmetrische Verteilung</one>.
77
+ - Den <one>Median</one> sollten wir bei Datensätzen gegenüber dem Mittelwert dann bevorzugen wenn dieser Datensatz ... hat. A: <one>Ausreißer</one>.
78
+ - In der Statistik: der <one>t-Test</one> <two>wird wann verwendet</two>? Wenn wir die Mittelwerte von maximal zwei Gruppen miteinander vergleichen möchten.
79
+ - Kann die <one>Wahrscheinlichkeit</one> <two>größer als 1</two> sein? <one>Nein</one>.
80
+ - Was meinen wir mit einer <one>Sekundärstatistik</one>? Eine <one>Sekundärstatistik</one> ist <two>eine statistische Untersuchung</two>, bei der <three>bereits bestehende Daten zur Untersuchung herangezogen werden</three>.
81
+ - Der erste Schritt in der Datenanalyse ist meistens ... ? Die <one>Datenaufbereitung</one>.
82
+ - Kann aus <one>Regressionsgeraden</one> über den beobachteten Bereich hinaus extrapoliert werden? <one>Nein</one>.
83
+ - <one>Kontingenztafeln</one> stellen ein effizientes Mittel zur Analyse .... welcher Daten vor? <one>multivariater nominaler Daten</one>.
84
+ - Für die <one>angewandte Statistik</one>: <two>was ist der Ausgangspunkt</two>? Die <one>Probleme der realen Wirklichkeit</one>.
85
+ - Nenne einen Zusammenhang zwischen <one>Statistik</one> und <one>Ernährung</one>. A: <one>BMI</one> versus <one>Bauchumfang</one>.
86
+ - <one>1 ppm</one> ist <two>10 hoch ... </two>? <one>10⁻⁶</one>.
87
+ - Nicht jede statistische Auswertung ist für jede Art von Merkmal sinnvoll. <one>Nenne ein Beispiel für eine sinnlose statistische Auswertung</one>. A: Der Mittelwert von <one>Farben</one>.
88
+ - Der <one>Interquartilsabstand</one> beschreibt letzten Endes was? <one>Ob</one> die Daten streuen.
89
+ - Eine <one>Stichprobe</one>, <two>wenn genügend ...</two>, lässt in guter Näherung die Bestimmung beliebiger Ereigniswahrscheinlichkeiten zu. A: <one>groß</one>.
90
+ - In der Statistik: was meinen wir mit der <one>Dezile</one>? Eine Dezile ist dann gegeben wenn wir <one>den Datensatz</one> (die Verteilung) in <two>10 gleiche Teile</two> zerlegen.
91
+ - Unter einem <one>Fehler 1. Art</one> versteht man in der Statistik ... ? Das <one>Ablehnen einer wahren Nullhypothese</one>.
92
+ - Bei einem <one>Box-Whisker-Plot</one>: <two>was dient als Streuungsmaß</two>? Die <one>Quartile</one>.
93
+ - Nenne <one>zwei wichtige, allgemeine Kenngrößen in der Statistik</one>. A: (1) der <one>Mittelwert</one> (2) die <one>Streuung</one>
94
+ - Nenne einen <one>Vorteil</one> wenn wir den <two>geometrischen Mittelwert</two> verwenden mögen. A: Bei der Berechnung der <one>mittleren Zuwachsrate</one>.
95
+ - Die Zahl <one>0,000261</one> besitzt <two>wieviele signifikante Stellen</two>? <one>3</one>.
96
+ - Zum Berechnen des <one>95% Konfidenzintervalls</one> muss <two>der Standardfehler mit ... multipliziert werden</two>. A: <one>1.96</one>.
97
+ - Die <one>Streuung</one> (in der Statistik) kann allgemein <two>welche zwei Möglichkeiten</two> umfassen? (1) <one>große Streuung</one> (2) <one>kleine Streuung</one>
98
+ - Andere Bezeichnung für <one>Merkmal</one> in der Statistik? <one>Variable</one>.
99
+ - Ein <one>Säulendiagramm</one> ist <two>eine optische Modifikation des ... diagramms</two>. A: <one>Stabdiagramm</one>. URL: https://de.wikipedia.org/wiki/S%C3%A4ulendiagramm
100
+ - In der Statistik: <one>wie</one> werden <two>Quantile</two> bestimmt? Durch Auszählen aus einer geordneten Liste.
101
+ - In der Statistik: <one>welche drei Arten existieren</one>, um einen mittleren Wert anzugeben? (1) <one>Mittelwert</one> (2) <one>Medianwert</one> (3) <one>Modalwert</one>
102
+ - Der Anteil verbleibender "unerklärter" Zufallsvariabilität wird in der Statistik wie genannt? Dies ist das <one>Ignoranzniveau</one>.
103
+ - Statistik ist <one>der Weg zur</one> ... ? <one>Datenanalyse</one>.
104
+ - Nenne ein Beispiel für <one>eine Technik der explorativen Datenanalyse</one> (aus der Statistik). A: <one>Box-Plots</one>.
105
+ - In der Statistik gibt es <one>EDA</one>. <two>Wofür steht diese (englischsprachige) Abkürzung</two>? <one>Exploratory data analysis</one>.
106
+ - In der Statistik: anderer Begriff für eine <one>reale Beobachtung</one>? Eine <one>Stichprobe</one>.
107
+ - <one>Mehrstufige Zufallsexperimente</one> kann man mithilfe eines ... veranschaulichen. A: <one>Baumdiagramms</one>.
108
+ - Andere Bezeichnung für die <one>Biostatistik</one>? <one>Biometrie</one>.
109
+ - Müssen wir bei der Berechnung des <one>0.05-Quantils</one> runden? <one>Ja</one>. Wir müssen <two>aufrunden</two>, auf die nächste ganze Zahl.
110
+ - Was heisst <one>multimodal</one>? <one>Mehrgipfelig</one>. URL: https://www.statsoft.de/glossary/M/MultimodalDistribution.htm
111
+ - In der Statistik: die <one>häufigsten Quantile</one> sind ... ? Die <one>Quartile</one>. URL: https://de.wikipedia.org/wiki/Quantil_(Wahrscheinlichkeitstheorie)#Besondere_Quantile
112
+ - Andere Bezeichnung für die <one>Urliste</one>? <one>Protokoll</one>.
113
+ - Die Schnittmenge der beiden Mengen <one>A = {2,3,c,d}</one> und <one>B = {3,7,a,b,c}'</one> ist ... ? <one>{3,c}</one>.
114
+ - Nenne ein Skalenniveau bei dem die Bildung einer Rangfolge möglich ist. A: Das <one>ordinale Skalenniveau</one>.
115
+ - Nenne ein Beispiel für eine <one>monetäre Größe</one>. A: Die <one>Kredithöhe</one>.
116
+ - In der Statistik gibt es den <one>p-Wert</one>. Wieso dieser Name? Dies kommt aus dem Englischen, p für <one>probability</one>.
117
+ - Wie stehen <one>Standardabweichung</one> und <one>Varianz</one> zueinander in Beziehung? Die <one>Standardabweichung</one> ist die <two>Wurzel aus der Varianz</two>.
118
+ - Was meinen wir mit einer <one>repräsentativen Stichprobe</one>? Wenn wir von Untersuchungsergebnissen der Stichprobe auf die <one>Grundgesamtheit</one> schliessen können.
119
+ - Anderes Wort für <one>induktive Statistik</one>? <one>Beurteilende Statistik</one>.
120
+ - In der Statistik: der Wert <one>xmed</one>, auch der <one>Median</one> genannt, verhält sich wie zu geordneten Werten? Der Median teilt die geordnete Werte in <one>zwei gleich große Teile</one>.
121
+ - Wie nennen wir den Teil der Statistik, der von einer <one>Teilgesamtheit</one> auf eine <two>übergeordnete Gesamtheit</two> schliesst? Dies ist die <one>Induktive Statistik</one>. URL: https://de.wikipedia.org/wiki/Mathematische_Statistik
122
+ - Welches Teilgebiet aus der Statistik beschäftigt sich mit der <one>graphischen Aufbereitung von quantitativen Daten</one>? Die <one>deskriptive Statistik</one>. URL: https://de.wikipedia.org/wiki/Deskriptive_Statistik
123
+ - Andere Bezeichnung für den <one>Zentralwert</one> in der Statistik? <one>Median</one>. URL: https://de.wikipedia.org/wiki/Median
124
+ - <two>Wo</two>, aus dem Alltag, mögen wir ein Beispiel für ein <one>Stengel-Blatt Diagramm</one> sehen? Zum Beispiel <one>bei Straßenbahnfahrplänen</one>.
125
+ - Nennen den wichtigsten Unterschied zwischen <one>qualitativen Daten</one> und <one>quantitativen Daten</one>. A: Quantitative Daten lassen sich zählen, so zum Beispiel das <one>Alter einer Person</one>, in Jahren.
126
+ - Nenne ein Beispiel für einen <one>Punktschätzer</one>. A: Zum Beispiel der <one>Mittelwert</one>.
127
+ - Nenne einen Vorteil des getrimmten Mittels gegenüber dem Mittelwert. A: Das getrimmte Mittel ist nicht mehr so anfällig für Ausreißer wie der Mittelwert, da extrem große und kleine Werte nicht miteinbezogen werden.
128
+ - Die <one>Abhängigkeit</one> von zwei, drei oder mehr Variablen kann durch die Analyse von ... untersucht werden? Von <one>Kontingenztafeln</one>.
129
+ - Wird beim <one>geometrischen Mittel</one> aufsummiert? Nein - die Merkmalswerte werden miteinander <deepskyblue>multipliziert</deepskyblue>.
130
+ - Möglichst einfach erklärt: wie berechnen wir den <one>Interquartilsabstand</one>? Wir nehmen die <one>Differenz</one> zwischen dem 3. Quartil (Q3) und dem 1. Quartil (Q1).
131
+ - Which person said <one>"There are lies, damned lies and then there are statistics."</one>? <one>Benjamin Disraeli</one>. URL: https://en.wikipedia.org/wiki/Benjamin_Disraeli
132
+ - <one>Wie</one> wird häufig mit Statistik getäuscht? Durch <one>Veränderung der Skalierung</one>.
133
+ - Anderer Begriff für ein <one>zufälliges Ereignis</one>? Ein <one>nicht genau vorhersagbarares Ereignis</one>.
134
+ - Was ist <one>Biostatistik</one>? Dies ist die Lehre von der empirischen Erkenntnisgewinnung in der Medizin.
135
+ - <one>Quantile</one> sind Werte mit einer bestimmten ... ? <one>Unterschreitungswahrscheinlichkeit</one>.
136
+ - Andere Bezeichnung für ein <one>Konfidenzintervall</one> in der Statistik? <one>Vertrauensintervall</one>.
137
+ - What are <one>quantitative variables</one>? These are values of variables which are <one>numeric</one>, and reflect an exact amount.
138
+ - Worum geht es bei der <one>Biostatistik</one>? Die Biostatistik befasst sich mit der Gewinnung, Darstellung und Analyse molekularbiologischer Daten.
139
+ - Give another word for a <one>boxplot</one>. A: The <one>Box-Whisker-Plot</one>.
140
+ - Um den <one>Interquartilsabstand</one> zu berechnen, benötigen wir welch anderen Wert zuvor? Den <one>Median</one>.
141
+ - Mit der Größe einer Stichprobe steigt die ... der Daten. A: Die <one>Zuverlässigkeit</one> der Daten.
142
+ - <one>Streuplot</one> auf englisch? <one>Scatter plot</one>.
143
+ - Ist der <one>Interquartilsabstand</one> (<three>"interquartile range"</three>) anfällig für Ausreißer? Nein, <one>eher nicht</one>.
144
+ - Ist der <one>Interquartilsabstand</one> (englisch: <two>interquartile range, IQR</two>) anfällig für Ausreißer? Eher nein.
145
+ - Der <one>Interquartilsabstand</one> ist wenig anfällig für ...? <one>Ausreißer</one>.
146
+ - Nenne ein Beispiel für ein <one>Intervallskaliertes Merkmal</one>. A: Die <one>Temperatur</one>, in Grad Celsius.
147
+ - Andere Bezeichnung für <one>Zuverlässigkeit</one> in der Statistik? <one>Reliabilität</one>.
148
+ - Nenne einen <one>historischen</one> Vorläufer der Statistik, wieso Statistik benötigt wurde. A: Herrscher <cadetblue>im Mittelalter</cadetblue> benötigten Daten über die Bevölkerung, wie die Zahl <one>wehrfähiger Männer</one> oder <one>steuerpflichtiger Personen</one>.
149
+ - Um herauszufinden <one>wie genau ein Messwert ist</one>: welche statistische Methode können wir hier einsetzen? Die <one>Standardabweichung</one>. URL: https://de.wikipedia.org/wiki/Standardabweichung
150
+ - Die möglichen Werte eines Merkmals (in der Statistik) werden wie genannt? Dessen <one>Ausprägungen</one>.
151
+ - Vor der Durchführung einer <one>empirischen Studie</one> ist es erforderlich, dass wir ... was tun? Das wir eine <one>theoretisch gut begründete Hypothese</one> formulieren.
152
+ - Was ist mit dem Begriff <one>sekundärstatistisch</one> gemeint? Dies ist wenn wir auf bereits vorhandene Daten zurückgreifen. Sekundärstatistische Erhebungen sind häufig billiger und schneller als primärstatistische Erhebungen.
153
+ - Give another name for the <one>entire population</one> in statistics. A: The <one>census</one>. URL: https://en.wikipedia.org/wiki/Census
154
+ - Viele biologische Datensätze weisen eine <one>rechts-schiefe Verteilung</one> auf. Nenne eine Transformation die geeignet ist, um solche Datenverteilungen näherungsweise zu <two>normalisieren</two>. A: Die <one>Wurzel-Transformation</one> x Wurzel-aus(x)
155
+ - Welcher Begriff ist oft ein Synonym zum Begriff <one>Biostatistik</one>? <one>Biometrie</one>. URL: https://de.wikipedia.org/wiki/Biometrie
156
+ - Andere Bezeichnung für <one>Hypothesen</one> in der Statistik. A: <one>Strukturierte Vermutungen</one>.
157
+ - Bei der Beschreibung von Verteilungen stellt sich häufig welche zentrale Frage? <two>Wo</two> <one>liegt das Zentrum der Daten</one>.
158
+ - Angenommen wir haben <two>zwei Populationen</two>, die die gleichen Mittelwerte vorweisen. Sie besitzen jedoch unterschiedliche Standardabweichungen. Was bedutetet das dann für die Population, die eine grössere <one>Standardabweichung</one> σ besitzt? Diese Population hat eine breitere Verteilung als die andere Population.
159
+ - Andere Bezeichnung für <one>bimodal</one>? <one>Zweigipflig</one>.
160
+ - Für den Statistiker: welchen Vorteil mag ein <one>Experiment</one> liefern? Man kann bestimmte Faktoren, wie das Alter, kontrollieren.
161
+ - In der Statistik: was gibt die <one>Varianz</one> an? Die <two>Varianz</two> gibt <one>die mittlere quadratische Abweichung der Ergebnisse um ihren Mittelwert an</one>.
162
+ - In statistics: <one>the entire population</one> is also known as ... ? The <one>census</one>. URL: https://en.wikipedia.org/wiki/Census
163
+ - Andere Bezeichnung für <one>Verzerrung</one> in der Statistik? <one>Bias</one>.
164
+ - Nenne ein konkretes Beispiel für eine <one>Verhältnisskala</one>. A: Das <one>Einkommen</one>.
165
+ - Woraus besteht ein <one>Boxplot</one>? Er besteht immer aus einem <one>Rechteck</one>, eben der sogenannten <two>Box</two>, sowie zwei Linien, die dieses Rechteck verlängern (den "whiskers").
166
+ - Why do we use <one>Quantiles</one> in Biostatistic? Quantiles are useful to <one>measure the scatter</one>.
167
+ - Was ist eine <one>Vollerhebung</one>? Dies ist wenn wir alle Mitglieder der "Grundgesamtheit" befragen.
168
+ - Um die <one>Standardabweichung</one> zu berechnen müssen wir zuerst welchen anderen Wert berechnen? Den <one>Mittelwert</one> einer Population.
169
+ - Das <one>arithmetische Mittel</one> verkleidet oft eine große ... ? <one>Ungleichheit</one>.
170
+ - Nenne ein Beispiel für eine <one>ordinale Merkmalsverteilung</one> in der Statistik. A: Die <one>Noten</one> von <two>1-5</two>.
171
+ - <one>Die Theorie der quantitativen Beschreibung unsicherer Ereignisse</one> wird ... genannt. A: <one>Stochastik</one>.
172
+ - Wie berechnen wir den <one>Median</one> wenn wir eine <two>gerade Anzahl an Werten</two> haben? Wir berechnen den <one>Mittelwert</one> aus den <two>beiden zentralen Einzelwerten</two>.
173
+ - A. W. für die <one>Wahrscheinlichkeitslehre</one>? <one>Stochastik</one>. URL: https://de.wikipedia.org/wiki/Stochastik
174
+ - In statistics in a <one>boxplot</one>, real datasets will display surprisingly high maximums or surprisingly low minimums. How are these called? <one>Outliers</one>. URL: https://en.wikipedia.org/wiki/Outlier
175
+ - Wieso heisst die <cadetblue>Induktive Statistik</cadetblue> so? <two>Da sie aus den Beobachtungen der Stichprobe auf die Grundgesamtheit schließt</two>; dies ist ein <one>induktives Vorgehen</one>.
176
+ - Nenne ein Beispiel für ein <one>unsinniges, arithmetisches Mittel</one>. A: Der <one>Mittelwert aus 5 Hunden und 3 Katzen</one>.
177
+ - Nenne ein Beispiel für einen Prozess, der prinzipiell <one>indeterministisch</one> erfolgt. A: Aus der <one>Quantenmechanik</one> der <two>radioaktive Zerfall</two>.
178
+ - Was meinen wir mit dem Begriff <one>Lage der Daten</one> in der Statistik? Dies zeigt an, in welchem Bereich sich Daten häufen.
179
+ - Deutscher Name für einen <one>boxplot</one>? <one>Kastengrafik</one>.
180
+ - <one>Statistics is not about numbers</one>; it is about ... ? <two>data</two> - aka <one>numbers in context</one>.
181
+ - Nenne ein konkretes Beispiel für die eine charakteristische Teilmenge in einer Population. A: <one>Alle Frauen</one>.
182
+ - Andere Bezeichnung für <one>einfache Testverfahren</one> in der Statistik? <one>Univariate Testverfahren</one>.
183
+ - Je mehr <one>Falsifikatoren</one>, desto mehr ... ? <one>Informationsgehalt</one>.
184
+ - Wie nennen wir <one>Suchen</one> in der Statistik? <one>Exploration</one>.
185
+ - Wie nennen wir <one>eine Stichprobe, die die Population nicht korrekt abbildet</one>? <one>Verfälscht</one>.
186
+ - Anderer Begriff für eine <one>Urliste</one>? <one>Primärdaten</one>.
187
+ - Beim Erstellen eines <one>Histogramms</one>, was muss mit den Daten geschehen? Die Daten müssen in <one>Klassen</one> (englisch: <two>bins</two>) eingeteilt werden.
188
+ - Nach <one>Popper</one> sind ... die Grundlage für wissenschaftliche Hypothesen. A: <one>Falsifikatoren</one>.
189
+ - Andere Bezeichnung für den <one>Median</one>? <one>Zentralwert</one>. URL: https://de.wikipedia.org/wiki/Median
190
+ - Was meinen wir mit einer <one>Universalhypothese</one>? Dies ist <one>eine Aussage, die für alle gültig ist</one>.
191
+ - An <one>ANOVA test</one> can tell us what? If the <one>results are significant overall</one>.
192
+ - Was ist die <one>Population</one> in der Statistik? Dies ist <one>die Gesamtheit aller gleichartigen Objekte</one>, die hinsichtlich eines Merkmales untersucht werden.
193
+ - A <one>boxplot</one> has five values. The lower one may be called <three>lower extreme</three>, and the middle one can be called the "median", but how is the value called between these two other values? The <one>lower quartile</one>.
194
+ - In statistics: if we wish to explore <one>the joint performance of several variables</one>, which strategy may be used in general here? The <one>multivariate approach</one>.
195
+ - <one>Probability</one> studies ... ? <one>Randomness</one>.
196
+ - Wieso können <one>statistische Kennwerte</one> hilfreich sein? Da wir durch sie die charakteristischen Eigenschaften von Daten sehen - und dies einen guten Einblick in die Datenstruktur erlaubt.
197
+ - Was ist mit einem <one>diskreten Merkmal</one> gemeint? Dies sind Merkmale mit endlichen Ausprägungen, sprich: sie können abgezählt werden und sind nicht unendlich.
198
+ - What is a <one>boxplot</one>? In <one>descriptive statistics</one>, a boxplot is a convenient way of graphically depicting groups of numerical data through their quartiles.
199
+ - Nenne drei <one>Teilgebiete der Statistik</one>. A: (1) <one>Deskriptive Statistik</one> (2) <one>Explorative Statistik</one> (3) <one>Angewandte Statistik</one>
200
+ - Was meinen wir mit <one>Q0.10</one> in der Statistik? Dies ist das <one>0.10-Quantile</one>; der Wert, der die unteren 10% der Daten von den oberen 90% trennt.
201
+ - Wie nennen wir den Zweig der Statistik, der aus der <one>Stochastik</one> hervorging? Dies ist die <one>schließende Statistik</one>.
202
+ - Was ist der <one>Rang</one> in der Statistik? Dies ist die Position einer Beobachtung, wenn alle Beobachtungswerte der Größe nach geordnet und durchnummeriert vorliegen.
203
+ - Was ist der <one>Modalwert</one> in der Statistik? Dies ist das Merkmal, das in der Urliste <two>am häufigsten auftritt</two>; also <one>der Wert mit der grössten Wahrscheinlichkeit</one>.
204
+ - Was ist eine <one>unimodale Häufigkeitsverteilung</one>? Dies ist <one>eine Häufigkeitsverteilung mit nur einem Gipfel</one>. Ein Beispiel dafür ist die <two>Normalverteilung</two>.
205
+ - In der Statistik gibt es sogenannte <one>Freiheitsgrade</one>. Nenne zwei Werte die die Freiheitsgrade reduzieren können. A: (1) der <one>Mittelwert</one> (2) die <one>Standardabweichung</one>
206
+ - Was meinen wir mit dem <one>direkten Schluss</one> in der Statistik? Das wir von einer bekannten Grundgesamtheit auf das Verhalten von Stichproben schliessen können.
207
+ - In der Statistik: wie nennen wir ein <one>kausal nicht erklärbares Ereignis</one>? <one>Zufall</one>.
208
+ - Nenne ein Beispiel für eine <one>kategorische dichotome Variable</one>. A: Das <one>Geschlecht</one>.
209
+ - Der <one>t-Test</one> wird meistens eingesetzt um ... ? Um <one>den Mittelwert zweier Gruppen zu vergleichen</one>.
210
+ - Englisch für eine <one>Zufallsstichprobe</one>? <royalblue>Random sample</royalblue>.
211
+ - Für die angewandte Statistik ist was genau das <one>zentrale Objekt</one>? <one>Real erhobene Daten</one>.
212
+ - In der Statistik: besagt <one>die Nullhypothese</one> das eine Differenz zwischen zwei Gruppen vorliegt, oder das keine Differenz vorliegt? Die Nullhyopthese nimmt an, das zwischen den beide Gruppen KEINE Differenz vorliegt.
213
+ - Bei einem <one>deterministischen Weltbild</one> in der Statistik liegt vom Weg X -> nach X, was? Ein <one>Kausalprozess</one>.
214
+ - In der Statistik: das Gegenteil von <one>diskreten Merkmalen</one> sind ... ? <one>Stetige Merkmale</one>.
215
+ - Nenne ein konkretes Beispiel für eine <one>Nominalskala</one>. A: Das <one>Geschlecht</one> (männlich oder weiblich).
216
+ - Andere Bezeichnung für eine <one>Normalverteilung</one>. A: <one>Gaußsche Verteilung</one>.
217
+ - Wodurch ist die <one>Normalverteilung</one> charakterisiert? Durch die <one>Standardabweichung</one>.
218
+ - In der Statistik: der <one>Mittelwert</one> wird häufig bei jenen Daten herangezogen, die .... zeigen. A: Eine <one>Normalverteilung</one>.
219
+ - Was sind <one>kategorische Variablen</one>? Dies sind Variable bei denen nur bestimmte Werte vorliegen können.
220
+ - Was ist das <one>arithmetische Mittel</one>, als Formel? Dies ist <one>die Summe aller Messwerte, geteilt durch die Anzahl aller Messwerte</one>.
221
+ - Nenne ein Beispiel für eine <one>unsinnige Statistik</one>. A: Wenn <one>2.3 Menschen</one> (von 10) an Krebs <one>versterben</one>; 0.3 Menschen gibt es nicht.
222
+ - Nenne einen wichtigen Unterschied zwischen <one>Nominalskala</one> und <one>Ordinalskala</one>. A: Die <one>Ordinalskala kann geordnet werden</one>.
223
+ - In der Statistik: wie nennen wir eine <one>Übereinstimmung mit einem vorgegebenen Modell</one>? <one>Regression</one>.
224
+ - In der Biostatistik und quantitativen Biologie, was ist ein <one>Factor</one> (Definition auf englisch)? Something which might have an effect.
225
+ - Was sollte man bei der <one>Auswahl einer Stichprobe</one> beachten? Die <one>Stichprobe</one> sollte ein <two>möglichst getreues Abbild der Gesamtpopulation</two> sein.
226
+ - Nenne ein Beispiel für ein <one>Lagemaß</one> in der Statistik. A: Das <one>arithmetische Mittel</one>.
227
+ - Andere Bezeichnung für <one>klassierte Merkmale</one> in der Statistik? <one>Gruppierte Merkmale</one>.
228
+ - Nenne ein Beispiel für ein <one>ordinalskaliertes Merkmal</one>. A: <one>Schulnoten</one>.
229
+ - Was meinen wir mit dem Begriff <one>Primärstatistik</one>? Primärstatistik bedeutet, dass die Daten eigens für den Untersuchungszweck erhoben werden.
230
+ - Umfang der Erhebung - nenne <one>zwei Kategorien</one> hier. A: (1) die <one>Vollerhebung</one> (2) die <one>Teilerhebung</one>
231
+ - Gib ein konkretes Beispiel für <one>Merkmalsausprägung</one> an. A: Das <one>Geschlecht</one>: es hat primär zwei verschiedene Zustände, und zwar weiblich oder männlich, wenn wir Sonderfälle ausnehmen.
232
+ - In der <one>deskriptiven Statistik</one> charakterisieren wir ... ? <one>Stichproben</one>.
233
+ - Was meinen wir mit einem <one>Quantil</one>? Die ist ein <one>Schwellenwert</one> - ein bestimmter Anteil der Werte ist kleiner als das Quantil, der Rest ist größer.
234
+ - Anderer Begriff für das <lightgreen>0.5-Quantil</lightgreen>? Dies ist der <one>Median</one>.
235
+ - Was meinen wir mit <one>diskreten Merkmalen</one> in der Statistik? Dies sind abzählbare, unendlich viele Ausprägungen eines Merkmals.
236
+ - Wie bezeichnen wir die <one>Streuung der Häufigkeitsverteilung</one>? Den <one>Standardfehler</one>.
237
+ - Beim Test einer Hypothese liegt <one>ein Fehler 1. Art</one> vor, wenn ... zurückgewiesen wird. A: Die <one>Nullhypothese</one>.
238
+ - Was ist ein <one>Histogramm</one>? Ein Histogramm ist <one>eine grafische Darstellung der Häufigkeitsverteilung kardinal skalierter Merkmale</one>.
239
+ - Womit beschäftigt sich die <one>deskriptive Statistik</one>? Sie charakterisiert <one>Stichproben</one>.
240
+ - In der Statistik: das <one>Histogramm</one> wird für ... Merkmale benutzt. A: Für <one>kontinuierliche Merkmale</one>.
241
+ - In der Statistik: wenn wir den <one>Median</one> ermitteln möchten, und eine gerade Anzahl von Werten haben, wo liegt der Median dann? <one>Genau in der Mitte zwischen den beiden mittleren Werten</one>.
242
+ - Anderes Wort für <one>Gültigkeit</one> in der Statistik? <one>Validität</one>.
243
+ - In der Statistik: wie nennen wir die <one>Ausgangshypothese</one> H0 noch? Dies ist die <one>Nullhypothese</one>.
244
+ - Stichwort in der Statistik - das <one>gemeinsame Auftreten zweier Merkmalen</one>? <one>Kontingenz</one>.
245
+ - There are <one>three kinds of lies</one>. A: <one>"lies, damned lies, and statistics"</one>. (<two>Benjamin Disraeli</two>)
246
+ - Die drei wichtigsten Kennwerte in der Statistik, alle jeweils mit dem Buchstaben <one>M</one> beginnend, sind ... ? (1) <one>Modus</one> (2) <one>Median</one> (3) <one>Mittelwert</one>
247
+ - In der Statistik: anderer Begriff für <one>eingipfelig</one>? <one>Unimodal</one>.
248
+ - Eine <one>Faustregel bei signifikanten Stellen</one>: Das Ergebnis einer Addition/Subtraktion bekommt genauso viele Nachkommastellen wie die Zahl mit ... ? den <one>wenigsten Nachkommastellen</one>.
249
+ - Was ist die <one>Inferenzstatistik</one>? Die Inferenzstatistik trifft Wahrscheinlichkeitsaussagen über bestimmte Werte, wie zum Beispiel Populationswerten.
250
+ - Anderer Begriff für die <one>Grundgesamtheit</one> in der Statistik. A: Die <one>Population</one>.
251
+ - Nenne ein Beispiel für das <one>nominale Niveau</one> in der Statistik. A: Das Geschlecht eines Tiers - also "Weibchen" und <one>Männchen</one>.
252
+ - Welcher Buchstabe beziehungsweise welches Symbol wird für den Begriff <one>Median</one> verwendet? <one>Z</one>.
253
+ - Der <one>Modalwert D</one> ist was? Der <one>Modalwert</one> ist <two>der Wert der am häufigsten auftritt</two>.
254
+ - Was meinen wir mit <one>Randomisierung</one> in der Statistik? Dies meint das die einzelnen Probanden in einer Studie zufällig auf die Behandlungsgruppen verteilt werden.
255
+ - Englisch für den Begriff <one>Primärstatistik</one>? <one>Field Research</one>.
256
+ - Was hat jede <one>Verhältnisskala</one>? Einen <one>echten Nullpunkt</one>.
257
+ - Nenne zwei <one>Vorteile</one> einer Sekundärstatistik. A: (1) <one>geringere Kosten</one> (2) <one>rasche Verfügbarkeit</one>
258
+ - In statistics: why do we often just study a <one>sample</one>? Because it is often too costly to study the entire population, so we may just take a <one>representative sample</one>.
259
+ - What do we mean with the term <one>Homoscedasticity</one>? <one>Homogeneity of variance</one>.
260
+ - Bei der <one>systematischen Zufallsauswahl</one> wird allgemein gesehen was genau ausgewählt? Jedes x-te Objekt wird hier ausgewählt.
261
+ - Was meinen wir mit einer <one>Totalerhebung</one>? Dies ist dann gegeben wenn alle Fälle der Grundgesamtheit untersucht werden.
262
+ - In der Statistik versteht man unter einem Fehler 1. Art ... ? Das <one>Ablehnen einer wahren Nullhypothese</one>.
263
+ - Was ist das Ziel der <one>beurteilenden Statistik</one>? Diese geht der Frage nach, ob beobachtete Erscheinungen nur als Zufallsergebnisse gelten können oder typisch sind.
264
+ - Warum ist Statistik aus Sicht der Psychologie interessant? Da Statistik <one>beeinflussen</one> kann.
265
+ - How could we define the term <one>statistics</one>? Statistics is about understanding the role that variability plays in drawing conclusions based on data.
266
+ - Was meinen wir mit einem <one>Quartil</one>? Dies ist wenn wir einen Datensatz in <one>vier gleiche Teile</one> unterteilen.
267
+ - In der Statistik: wie nennen wir einen Fehler 1. Art noch? Dies ist ein <one>α-Fehler</one>.
268
+ - Anderer Begriff für <one>Lage</one> in der Statistik? Die <one>zentrale Tendenz</one>.
@@ -0,0 +1,181 @@
1
+ # =========================================================================== #
2
+ # === STEMCELLS (stem tag, stemtag)
3
+ #
4
+ # Alles über Stammzellen.
5
+ #
6
+ # Tissue engineering will also be collected here, but we may put this into
7
+ # a separate file at a later point in time.
8
+ #
9
+ # Stem cells tag.
10
+ # =========================================================================== #
11
+
12
+ - Name <one>three different 'types' of stem cells</one>. A: (1) embryonic stem cells (2) IPS (3) adult stem cells, such as mesenchymal stem cells
13
+ - Name four different <one>cell sources</one> for tissue regeneration. A: (1) adipose tissue (2) umbilical cord (3) <one>amniotic membrane</one> (4) <one>blood</one>
14
+ - How many <one>different cell types</one> can be found in human adults? About <one>210</one>.
15
+ - <one>Which human tissue</one> may be a <two>true syncytium</two>? The <one>skeletal muscle</one>. These are a multinucleate cell which resulted from multiple cell fusions of uninuclear cells.
16
+ - The most famous, and <one>well-studied tissue-specific stem cells</one> <two>are the ... </two>? The <one>hematopoietic system</one> aka the <two>blood-forming</two> cells.
17
+ - <one>Platelets</one> <two>arise from which cell</two>? <one>Megakaryocytes</one>. URL: https://en.wikipedia.org/wiki/Megakaryocyte
18
+ - The <one>best known stem cells</one> are ... ? The <one>haemopoietic stem cells</one>.
19
+ - Are <one>cells</one> <two>taken from the 8-cell morula</two> <three>totipotent</three>? Usually they are.
20
+ - From <one>somatic cells</one> to <two>ES-like stem cells</two> via ... (one word only)? <two>Reprogramming</two>.
21
+ - Name two cell types that can divide after differentiation. A: (1) fibroblasts (2) <one>liver cells</one>
22
+ - <one>Differentiation in stem cells</one> not only means that certain genes are expressed, but also that ... ? <one> certain genes are inactivated</one>.
23
+ - <one>How</one> are the individual cells in a <two>cardiac muscle</two> called? <one>Cardiomyocytes</one>.
24
+ - <one>Mouse myoblast cells</one> <two>in a cell culture</two> will continue to divide until what manual step can be taken? We can <one>remove growth factors</one>; then these myoblasts will no longer divide.
25
+ - Name <one>two tissues</one> in the human body that can regenerate regularly. A: (1) <one>blood</one> (2) <one>skin</one>
26
+ - Must <one>stem cells</one> be able to <two>produce differentiated progeny</two>? <one>Yes</one>, <two>by definition</two>.
27
+ - In mammals: <one>which three muscle types</one> can be distinguished? (1) skeletal muscle (2) smooth muscle (3) <one>cardiac muscle</one>
28
+ - The archetypical example for an <one>adult multipotent stem cell</one> is ... ? The <one>hematopoietic stem cell</one>.
29
+ - Name the three major characteristics of the <one>adult stem cells</one>. A: (1) lifelong ability to self-renew (2) extensive proliferation (3) differentiation of progeny into multiple lineages
30
+ - The two most important features of stem cells are ... ? (1) <one>self-renewal</one> (2) <one>potency</one>
31
+ - <one>Self-renewing tissues in a mammal</one>: who is the <three>speed-champion</three> here, aka <three>the fastest at it</three>? The <one>gut</one>; or more accurately, the <two>lining of the small intestine</two>.
32
+ - G9a has a key role in maintaining the self-renewal and tumor-initiating capacities of cancer stem cells (CSCs). What type of enzyme is G9a? G9a is a <two>histone methyltransferase</two>.
33
+ - <one>Tissue homeostasis</one> can be compared to a ... ? <one>river</one>.
34
+ - Nenne <one>eine Quelle für die Gewinnung von adulten Stammzellen</one>. A: <one>Nabelschnurblut</one>.
35
+ - For <one>informed consent</one> in stem cell research: <two>what testing</two> to be done on the donors is especially important? <one>Histocompatibility testing</one>.
36
+ - The first cloned mammalian animal that lived to adulthood was ... ? Dolly, the sheep.
37
+ - When we refer to <one>nuclear transfer</one>, in cell biology and tissue engineering, what do we usually really mean? This actually refers to <one>somatic cell nuclear transfer</one>.
38
+ - Name a fairly interesting advantage adult stem cells may have over embryonic stem cells. A: There are no ethical problems in regards to obtaining adult stem cells.
39
+ - Name an important support cell for stem cells. A: The <one>nurse cells</one>.
40
+ - What do we mean with the term <one>ES cells</one>? <one>Embryonic stem cells</one>.
41
+ - Which <one>two types of pluripotent stem cells</one> exist? (1) The <one>embryonic stem cells</one> (<two>ESC</two>) (2) The <one>induced pluripotent stem cells</one> (<two>iPSC</two>)
42
+ - Give an example, in humans, for <one>pluripotent cells</one>. A: The <one>embryonic stem cells</one>.
43
+ - Do <one>embryonic stem cells</one> maintain their pluripotent state without DNA methylation? <one>Yes</one>.
44
+ - <one>Stem cells</one> are roughly categorized into <two>which three categories</two>? (1) <one>ESCs</one>: <two>embryonic stem cells</two> (2) <one>MSCs</one>: <two>mesenchymal stem cells</two> (3) <one>iPSCs</one>: <two>induced pluripotent stem cells</two>
45
+ - The human <one>central nervous system</one> (CNS) contains about how many neurons? <one>10¹¹ (100 billion) neurons</one>.
46
+ - For <one>stem cell research</one>: why may it be useful to consider learning more about the vascular system? Because <one>larger tissue engineered constructs need oxygen, nutrients, and thus, ultimately, also a</one> <two>vascular system</two>.
47
+ - <one>Yamanaka</one> <two>won the Nobel Prize in Physiology or Medicine</two> <three>in which year</three>? In the year <one>2012</one>.
48
+ - How do <one>cancer stem cells</one> arise? Through <one>mutational transformation of normal stem cells</one>.
49
+ - Besitzen <one>humane, induzierte, pluripotente Stammzellen</one> ein <two>vollständiges Entiwcklungspotenzial</two>? <one>Ja</one>.
50
+ - Give an example for a perversion of tissue engineering. A: An <one>ear on a mouse</one>.
51
+ - Is <one>cell differentiation</one> reversible? In some cases it is; but <one>in general it is not</one>.
52
+ - For <one>asymmetric cell division</one> in <two>stem cells</two>, <three>which two models can be distinguished</three>? (1) <one>divisional asymmetry</one> (2) <one>environmental asymmetry</one>
53
+ - <one>Which cell</one> is <two>'typical'</two> among all cells in the body? This is a trick question - <one>there is no universal representative cell that we could call 'typical'</one>.
54
+ - <one>What</one> determines specialization of cells? The <one>regulation of gene expression</one>.
55
+ - There is <one>one tumor type</one> that contains a mixture of differentiated cells. <two>What is its name</two>? <one>Teratocarcinoma</one>.
56
+ - <one>Induced pluripotent stem cells (iPSCs)</one> <two>were discovered by Takahashi and Yamanaka</two> <three>in what year</three>? <one>2006</one>.
57
+ - In <one>stem cell therapy</one>: an alternative to <two>whole-cell therapy</two> is to make use of ... ? <one>Exosomes</one>.
58
+ - <one>Epidermal stem cells</one> produce ... ? <one>keratinocytes</one>.
59
+ - <one>Myelin</one> is <two>what kind of complex</two>? Myelin is a <one>protein-lipid complex</one>.
60
+ - <one>Oligopotent cells</one>: <two>give a specific example for such a cell</two>. A: These cells can differentiate into only a few cells, such as <one>myeloid cells</one> or <one>lymphoid cells</one>.
61
+ - <one>Shinya Yamanaka</one> <two>verwendete welche virale Gruppe</two> um induzierte, pluripotente Stammzellen zu gewinnen? <one>Lentiviren</one> - es wurden daher <two>lentivirale Expressionsvektoren</two> verwendet.
62
+ - Name <one>two features</one> that <two>stem cells</two> <three>must have</three>. A: (1) <one>self-renewal capacity</one> (2) <one>potency</one>
63
+ - Are <one>smooth muscles</one> <two>striated</two>? <one>No</one>, they are <one>non-striated</one>.
64
+ - Name <one>two different strategies</one> how a particular pattern of active and inactive genes can be transmitted to, and maintained by, daughter cells. A: (1) make use of chromatin structure as a memory system (2) make use of a protein, such as a transcription factor like the myoD protein
65
+ - <one>Why</one> are <one>induced stem cells</one> considered so useful? Because <one>they may find use in regenerative medicine</one>.
66
+ - Sind <one>humane, pluripotente Stammzellen</one> <two>immortal</two>? <one>Prinzipiell ja</one> - <two>sie sind unendlich vermehrbar</two>.
67
+ - From a molecular biology point of view: <one>how do pluripotent stem cells maintain their pluripotent state</one>? They express an important network of transcription factors which are necessary for maintaining this state.
68
+ - <one>Transplantation of stem cell population</one>, may be either of ... <two>which three possibilities</two>? (1) autologous (2) <one>syngeneic</one> (3) <one>allogeneiuc</one>
69
+ - Usually the stem cell number in a human being remains somewhat constant. But there may be occasions where the number of stem cells have to be expanded. Name two reasons as to why this may be necessary. A: (1) during normal growth of the organism (2) following injury
70
+ - In the human body: <one>hematopoietic stem cells</one> are often found adjacent to ... ? <one>Blood vessels</one>.
71
+ - <one>Mesenchymal stem cells</one> (<two>MSC</two>) were first discovered where? In <one>bone marrow</one>.
72
+ - <one>How</one> are the cells in the heart called that <two>initiate action potentials</two>? <one>Pacemaker cells</one>.
73
+ - Um <one>iPS-Zellen</one> zu induzieren verwendete man im Jahre 2012 <two>welche vier wichtigen Transkriptionsfaktoren</two>? (1) <one>OCT4</one> (2) <one>SOX2</one> (3) <one>c-MYC</one> (4) <one>KLF4</one>
74
+ - Give a general <two>definition</two> of a <one>stem cell</one> that is the most characteristic one. A: Stemm cells are cells that show <one>self-renewal capacity</one>, that is, <two>infinite cellular division</two>.
75
+ - How many transcription factors are necessary to transform human skin cells into cells that act like embryonic stem cells? <one>Four</one> (<two>4</two>) only.
76
+ - <one>Shinya Yamanaka</one>'s Gruppe konnte im Jahre <two>2006</two> <three>welche somatischen Zellen</three> in pluripotente Stammzellen umprogrammieren? <one>Fibroblasten</one>.
77
+ - Gibt es <one>humane, immortale embryonale Stammzellen</one>? Ja.
78
+ - Bei Stammzellen: was ist mit dem Begriff <one>immortal</one> gemeint? Das <one>diese Stammzellen prinzipiell unendlich vermehrbar sind</one>.
79
+ - Can we turn <one>ES Cells</one> into <two>Insulin Producing Cells</two>? Yes.
80
+ - In stem cell science: what is meant with the abbreviation <one>EG cells</one>? This refers to <one>Embryonic germ cells</one>.
81
+ - Name a role that <one>astrocytes</one> have. A: Astrocytes <one>produce substances that are tropic to neurons</one>.
82
+ - How do <one>cardiomyocytes</one> communicate with one another? Via <one>gap junctions</one>.
83
+ - In stem cells: what is meant with the expression <one>the degree of plasticity</one>? This means whether a differentiated cell can change into another cell type. This is possible in an adult human, but is a rare event.
84
+ - Do <one>teratocarcinomas</one> contain tissues from <two>all three germ layers</two>? Yes.
85
+ - Between a <one>stem cell</one> and a <two>mature effector cell</two> we can find ... ? The <one>transient amplifying cells</one>.
86
+ - Give an example for a specific event that may <one>induce cell proliferation</one> followed by differentiation. A: <one>Trauma</one>.
87
+ - For <one>angiogenesis</one>: the first growth factor to be produced is ... ? <one>bFGF - basic Fibroblast Growth Factor</one>.
88
+ - <one>HPCs</one> are ... ? <one>Hematopoietic progenitor cells</one>.
89
+ - <one>Tumor stem cells</one> may show that there is a correlation between ... ? Sem cells and tumorigenesis.
90
+ - The <one>neoplastic proliferation of cancer stem cells</one> is likely to be driven by ... ? By <one>mutations that inappropriately activate pathways that promote the self-renewal of normal stem cells</one>.
91
+ - For <one>divisional asymmetry</one>, which happens during <two>pre cell-division</two>, how is the cell fate determined? Via <one>asymmetric localization of cell fate determinants</one>.
92
+ - The <one>epigenetic landscape</one> was coined by ... ? <one>Waddington</one>. URL: https://en.wikipedia.org/wiki/C._H._Waddington#Epigenetic_landscape
93
+ - Name a very unusual source for <one>human stem cells</one>. A: <one>Cadavers</one>.
94
+ - <one>EC cells</one> are a type of <two>pluripotent stem cells</two> derived from ... ? <one>Teratocarcinoma</one>.
95
+ - Give an example for <one>undifferentiated cells from the embryo</one>. A: <one>Embryonic stem cells</one>.
96
+ - Name a <one>transcription factor</one> that is <two>essential for muscle differentiation</two>. A: <one>myoD</one>.
97
+ - If you get a <one>lung</one> from another patient who has been a heavy smoker, why may you very quickly die soon afterwards, due to cancer? Because there already were injured/cancerous cells in that smoking person; after transplantation you get a lot of drugs that inhibit the immune system, which is why cancer will spread more rapidly in the "new" transplanted person's body.
98
+ - Give an example for a <one>unipotent</one> stem cell in the human body. A: The <one>muscle stem cells</one>.
99
+ - The <one>immediate environment</one> of a stem cell is called ... ? Its <one>niche</one>.
100
+ - <one>Mouse iPSCs</one> were generated by Shinya Yamanaka, using which 4 factors? (1) Oct4 (2) Klf4 (3) <one>Sox2</one> (4) <one>c-Myc</one>
101
+ - There is a Yin/Yang situation in regards to cell division in general. When cells enter the final stages of differentation, what may be the Yang situation here? They lose their ability to proliferate.
102
+ - How much of the weight of <one>bones in humans</one> is made up of <two>living cells</two>, in percent? About <one>15%</one>.
103
+ - Name the <one>two broad categories of smooth muscle cells</one>. A: (1) <one>unitary</one> (2) <one>multiunit</one>
104
+ - <one>Which animals</one> are used in <three>stem cell research</three> in order to test human cancer? <one>Immunodeficient mice</one>.
105
+ - What is meant with the term <one>embryonal tumors</one>, in stem cell research? This refers to <one>tumors derived from embryonic cells</one>.
106
+ - When we speak of a <one>stem cell</one>, we typically mean which stem cell? The <one>hematopoeitic stem cell</one>.
107
+ - There are <one>some stem cells</one> that do not undergo continuous division, but are kept in reserve to deal with tissue regeneration, when required. Give an example for this. A: The <one>muscle satellite cells</one>.
108
+ - <one>Chondrocytes</one> were, in the year 1997, first transplanted utilizing a polymer-cell construct to produce tissue-engineered cartilage in the shape of a human ear, in which organism? In a mouse - the <one>ear on a mouse</one> project.
109
+ - A <one>multiunit smooth muscle</one> can, for example, be found <two>where in the human body</two>? In the <one>iris of the human eye</one>.
110
+ - How many cells of the <one>bone marrow</one> are stem cells? <one>1</one> out of <two>50.000 to 100.000</two>.
111
+ - <two>Which filament</two> provides the backbone for <one>muscle contraction</one>? <one>Actin filaments</one>.
112
+ - If we would have to list <two>a single gene</two>, which one would it be that would designate a cell to be a <one>stem cell</one>? The gene <one>ABCG2</one>/<one>Bcrp1</one>.
113
+ - <one>Cells derived from stem cells</one> that proliferate for a limited number of cycles are called ... ? <one>Progenitor cells</one>.
114
+ - Give a specific example in <one>stem cell research</one> for treating medical conditions, aside from limb regeneration. A: The generation of pancreatic insulin-producing cells, in order to treat type I diabetes.
115
+ - Give a specific example for a <one>macroglia</one> cell. A: The <one>Schwann cells</one>.
116
+ - If we wish to destroy most of the hematopoietic cells, such as to treat leukemia, what could we do? We could apply a <one>large dose of x-rays</one>.
117
+ - <one>iPSCs</one> is short for ... ? <one>Induced pluripotent stem cells</one>.
118
+ - Name the four main families of cell adhesion molecules (move this to cellbiology once the stem-cell exam has been passed). A: (1) Integrins (2) Immunoglobulins (3) Cadherins (4) <one>Selectins</one>
119
+ - Name <one>a common stem cell biomarker</one>, via the <two>CD nomenclature</two>. A: <one>CD34</one>. URL: https://en.wikipedia.org/wiki/CD34
120
+ - Name a <two>limitation</two> of the potential of <one>embryonic stem cells</one>. A: They do not give rise to <one>extraembryonic tissue</one> such as those of the <two>placenta</two>.
121
+ - The <one>parent science</one> of stem cell biology is ... ? <one>Developmental biology</one>.
122
+ - Can the <one>differentiation of vertebrate skeletal striated muscle</one> be studied in the cell culture? Yes.
123
+ - In mammals, what may be common to most cells, from a structural cell biology point of view? The <one>organelles</one>.
124
+ - Why is <one>the clinical application of iPS cells</one> <two>restricted</two>? Because of their <one>tumorigenic potential</one>.
125
+ - Most of the key genes in development require <one>which general class of transcription factors</one> for their expression? <one>Activators</one>.
126
+ - There are two main types of glia cells in the human body. Which ones are these? (1) <one>microglia</one> (2) <one>macroglia</one>
127
+ - Are <one>smooth muscles</one> organized as a syncytium? No - they exist as <one>individual cells</one>.
128
+ - Wie können wir den Begriff <one>progenitor cells</one> übersetzen? <one>Vorläufer Zellen</one>.
129
+ - <one>Skeletal muscles</one> show what kind of <two>coupling</two>? <one>Eexcitation-contraction coupling</one>.
130
+ - The human body has about <one>how many different cell types</one>? About <one>210</one>.
131
+ - Name a cell surface glycoprotein, CD-designation, that can be found on <one>human hematopoietic stem cells</one> (HSCs). A: The cell surface glycoprotein <one>CD34</one>.
132
+ - <one>Fused myoblasts</one> are also called ... ? <one>Myotubes</one>. URL: https://en.wikipedia.org/wiki/Myogenesis
133
+ - Can <one>label‐retaining behavior</one> be considered to be a characteristic of stem cells? Yes. This can be used via <one>BrdU</one>.
134
+ - What do we mean with the term <one>potency</one>? This means to have <one>a high possibility</one> for differentiation into <two>different cell types</two>.
135
+ - Which important property do stem cells have that other cells lack? They are all able to <one>divide asymmetrically</one>.
136
+ - A key member of the pluripotency group is <one>which POU‐domain transcription factor</one>? <one>Oct-4</one>. URL: https://de.wikipedia.org/wiki/Oct-4
137
+ - A <one>stem cell</one> could become a stem cell, after a cell division, or it could become ... ? A <one>specialized cell</one>, such as a neuron.
138
+ - <two>Which biomarker</two> could be used, to some extent, to assume that this may be <one>a stem cell marker</one>? The presence of <one>telomerase</one>.
139
+ - Give another name for the <one>inner cell mass</one>. A: <one>Embryoblast</one>.
140
+ - For a cell: the first step in differentiation is ... ? For a cell to become committed - aka determine to becoming a particular cell type.
141
+ - How do we call the cells that form <one>the intermediates</one> between stem cells and terminally differentiated cells? <one>Progenitor cells</one>.
142
+ - How do we call <one>the division-style of stem cells</one>? <one>Asymmetrical</one>.
143
+ - When was the <one>stem cell niche concept</one> first introduced? In <one>1978</one>. ULR: https://en.wikipedia.org/wiki/Stem-cell_niche
144
+ - Is there a gene product which is found in all stem cells and not in non‐stem cell? No.
145
+ - What is meant with the term <one>cell-replacement therapy</one>? This refers to <one>the restoration of tissue function by the introduction of new healthy cells</one>.
146
+ - What is, sort of, <one>the opposite of cell differentiation</one>? <one>Transdifferentiation</one>.
147
+ - Name the three main <one>potencies</one> of stem cells. A: (1) <one>pluripotency</one> (2) <one>multipotency</one> (3) <one>unipotency</one>
148
+ - In stem cells: name four points that an Informed Consent Donation Form must include or must require, from the point of view of the <one>donor</one>. A: (1) the <two>donor</two> <one>must not be at high risk of transmitting infectious diseases</one> (2) the <two>donor</two> <one>must complete a medical evaluation questionnaire</one> (3) the <one>HLA type</one>, <one>blood group</one>, and IDM of the <two>donor</two> <one>must be made available to international registries and transplant centers</one> (4) the <one>risks of haematopoietic stem cell donation</one> must be explained and understood
149
+ - In <one>stem cell terminology</one>: what comes before the <three>phenotypic modification</three>? <one>Transcriptional modification</one>.
150
+ - Where may we be most likely to find <one>megakaryocytes</one>? In the <one>bone marrow</one> (when these cells are mature).
151
+ - In stem cell science, name three <one>-potent</one> words, starting with the strongest one. A: (1) <one>totipotent</one> (2) <one>pluripotent</one> (3) <one>multipotent</one>
152
+ - Which person created <one>iPS</one> ("induced pluripotent stem") cells? <one>Shinya Yamanaka</one>.
153
+ - <one>Cartilage tissue</one> consists of which cell type? <one>Chondrocytes</one>. URL: https://en.wikipedia.org/wiki/Chondrocyte
154
+ - Are <one>myoblasts</one> differentiated? By definition not really - they will divide upon stimulation via growth factors, but they are not yet differentiated (e. g. to be muscle cells).
155
+ - <one>Mamallian striated skeletal muscle</one> originate from ... ? <one>Undifferentiated embryonic mesodermal cells</one>.
156
+ - What cells stand for <one>multipotent MSCs</one>? These are <one>multipotent Mesenchymal stem cells</one>.
157
+ - How can we define <one>tissue engineering</one>? Tissue engineering refers to the use of a combination of cells, engineering and materials methods, and suitable biochemical and physico-chemical factors to improve or replace biological functions.
158
+ - Give an example for an <one>unipotent stem cell</one>. A: The <one>muscle stem cells</one>. URL: https://www.nature.com/subjects/muscle-stem-cells
159
+ - Can <one>human stem cells</one> be recovered from cadavers? Yes - <one>up to 20h post mortem</one>.
160
+ - What do we mean with a <one>tripotent stem cell</one>? One that <one>can give rise to three progeny cells</one>.
161
+ - Is there <one>a typical cell in the human body</one>? Not really.
162
+ - Name an important biological limit in <one>tissue engineering</one>. A: For a tissue to grow beyond a certain size, new blood vessel supply is vital, as otherwise the tissue would become <one>hypoxic</one>.
163
+ - In <one>stem cells</one>: what does <three>potency</three> mean? This refers to <one>the number of possible fates open to a cell</one>.
164
+ - A molecular marker which is known to be required for stem cell function is <one>LGR5</one>. This is an accessory receptor for which signaling molecules? For the <one>Wnt family</one> of signaling molecules.
165
+ - Give another name for <one>self-renewal capacity</one>. A: <one>Infinite cellular division</one>.
166
+ - <one>Stem cells</one> give rise to? They give rise to <one>specialized cells</one>.
167
+ - <one>Pluripotent stem cells</one> may give rise to almost all cell types, except for ... ? The <one>trophectoderm of the placenta</one>.
168
+ - In the bone marrow, we can find the <one>HSC cells</one>, the <one>Hematopoietic stem cells</one>. How many cells in the bone marrow are HSC cells? About <one>1</one> in <two>10.000</two>.
169
+ - What are <one>transit amplifying cells</one>? These cells arise from the stem cells and divide a finite number of times until they become differentiated.
170
+ - The abbreviation <one>HSCs</one> is short for ... ? <one>Hematopoietic stem cells</one>.
171
+ - Name <one>two important properties of ES cells</one>. A: (1) <one>rapid proliferation</one> (2) <one>pluripotency</one>
172
+ - <one>Stem cells</one> can do which two essential <three>cell-division types</three>? (1) <one>symmetric cell division</one> (2) <one>asymmetric cell division</one>
173
+ - What is the <one>key feature in cell differentiation</one>? The <one>pattern of gene activation</one>.
174
+ - What do we mean with <one>potency</one> in stem cell technology? Potency specifies the "differentiation potential", which is the potential to differentiate into different cell types of the stem cell. Some stem cells have more abilities or possibilities for differentiation than others.
175
+ - Name a technique with which we could <one>isolate hematopoietic stem cells</one>. A: We could use <one>flow cytometry</one> - and specific (monoclonal) antibodies.
176
+ - Differentiate between <one>autologous transplantation</one> and <one>allogeneic transplantation</one>. A: (1) <one>autologous</one> is when the donor is the same as the recipient. (2) <one>allogeneic</one> is when the donor is NOT the same as the recipient.
177
+ - Name a <one>cell-based therapy</one> based on stem-cell research. A: <one>Matrix-associated chondrocyte implantation</one>.
178
+ - Give another, fancier name for <one>stem cells</one>. A: <one>Miracle cells</one>.
179
+ - <one>Which cells</one> create the <two>bone matrix</two>? <one>Osteoblasts</one>. URL: https://en.wikipedia.org/wiki/Osteoblast []
180
+ - If <one>fibroblasts</one> receive <two>myoD</two>, <three>what will happen</three>? They will <one>develop into muscle cells</one>. []
181
+ - For the reprogramming of somatic nuclei during nuclear transfer, in the course of reproductive cloning, we may fuse the donor cell with an enucleated oocylte. What usually happen s after that? Electrical pulses have to be applied.