studium 0.10.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


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

Files changed (882) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +1982 -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/d10 +7 -0
  7. data/bin/d100 +7 -0
  8. data/bin/d15 +7 -0
  9. data/bin/d20 +7 -0
  10. data/bin/d25 +7 -0
  11. data/bin/d3 +7 -0
  12. data/bin/d30 +7 -0
  13. data/bin/d5 +7 -0
  14. data/bin/determine_curricula +7 -0
  15. data/bin/exam_registration_at +7 -0
  16. data/bin/exam_statistics +7 -0
  17. data/bin/exams_per_month +9 -0
  18. data/bin/finished_exams_at_this_university +7 -0
  19. data/bin/flashcards +7 -0
  20. data/bin/mandatory_continuous_assessment +7 -0
  21. data/bin/mandatory_upcoming_courses +7 -0
  22. data/bin/n_exam_questions_already_answered +16 -0
  23. data/bin/nquestions +7 -0
  24. data/bin/nsolved +7 -0
  25. data/bin/open_last_exam_question_asked_file +7 -0
  26. data/bin/passed_pr/303/274fungsimmanente_courses +7 -0
  27. data/bin/return_n_ects_from_this_file +7 -0
  28. data/bin/show_lectures_on_the_commandline +7 -0
  29. data/bin/show_themes +7 -0
  30. data/bin/solved +9 -0
  31. data/bin/solved_ects +7 -0
  32. data/bin/studienkennzahl +7 -0
  33. data/bin/studium +7 -0
  34. data/bin/studium_skeleton +7 -0
  35. data/bin/ufind +7 -0
  36. data/bin/upcoming_exams +7 -0
  37. data/bin/week_parser +7 -0
  38. data/doc/ECTS_CONSIDERATIONS.md +81 -0
  39. data/doc/HOW_TO_ADAPT_THIS_PROJECT.md +43 -0
  40. data/doc/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER.md +47 -0
  41. data/doc/README.gen +1965 -0
  42. data/doc/TODO_FOR_STUDIUM_GEM.md +113 -0
  43. data/doc/deprecated_components.md +24 -0
  44. data/doc/documentation_for_the_file_lecture_information.md +294 -0
  45. data/doc/elegant_colours.md +20 -0
  46. data/img/STUDIES.png +0 -0
  47. data/lib/studium.rb +5 -0
  48. data/lib/studium/autoinclude.rb +7 -0
  49. data/lib/studium/base/base.rb +84 -0
  50. data/lib/studium/base/cliner.rb +58 -0
  51. data/lib/studium/base/colours.rb +307 -0
  52. data/lib/studium/base/commandline_arguments.rb +64 -0
  53. data/lib/studium/base/constants.rb +34 -0
  54. data/lib/studium/base/curriculum.rb +329 -0
  55. data/lib/studium/base/directory_to_the_exam_topics.rb +23 -0
  56. data/lib/studium/base/editor.rb +28 -0
  57. data/lib/studium/base/encoding.rb +36 -0
  58. data/lib/studium/base/esystem.rb +23 -0
  59. data/lib/studium/base/minimal_prototype.rb +66 -0
  60. data/lib/studium/base/misc.rb +854 -0
  61. data/lib/studium/base/mode.rb +92 -0
  62. data/lib/studium/base/obtain.rb +145 -0
  63. data/lib/studium/base/opnn.rb +46 -0
  64. data/lib/studium/base/prototype.rb +92 -0
  65. data/lib/studium/base/readlines.rb +55 -0
  66. data/lib/studium/base/replace.rb +110 -0
  67. data/lib/studium/base/reset.rb +77 -0
  68. data/lib/studium/base/run.rb +17 -0
  69. data/lib/studium/base/src_dir_at_home.rb +20 -0
  70. data/lib/studium/base/time.rb +634 -0
  71. data/lib/studium/base/unicode.rb +95 -0
  72. data/lib/studium/base/word_wrap.rb +58 -0
  73. data/lib/studium/boku/README.md +4 -0
  74. data/lib/studium/boku/boku_biotechnology_all_master_lectures.rb +142 -0
  75. data/lib/studium/boku/boku_/303/266ffnungszeiten.rb +29 -0
  76. data/lib/studium/boku/show_three_pillars_of_these_lectures.rb +96 -0
  77. data/lib/studium/boku/three_pillars.rb +232 -0
  78. data/lib/studium/check_and_sanitize/README.md +11 -0
  79. data/lib/studium/check_and_sanitize/check_curriculum_for_correct_separation_of_bachelor_and_master.rb +149 -0
  80. data/lib/studium/check_and_sanitize/check_for_all_exam_topics_being_registered.rb +107 -0
  81. data/lib/studium/check_and_sanitize/check_for_existing_description_of_this_lecture.rb +197 -0
  82. data/lib/studium/check_and_sanitize/check_the_lecture_information_file.rb +171 -0
  83. data/lib/studium/check_and_sanitize/missing_priority_entry.rb +44 -0
  84. data/lib/studium/check_and_sanitize/sanitize_this_string_containing_the_lva_dates.rb +79 -0
  85. data/lib/studium/colours/colours.rb +570 -0
  86. data/lib/studium/colours/sfancy.rb +40 -0
  87. data/lib/studium/colours/sfile.rb +35 -0
  88. data/lib/studium/colours/simp.rb +38 -0
  89. data/lib/studium/colours/use_this_colour_for_exam_questions_and_exam_answers.rb +76 -0
  90. data/lib/studium/commandline/commandline.rb +25 -0
  91. data/lib/studium/commandline/constants.rb +16 -0
  92. data/lib/studium/commandline/help.rb +152 -0
  93. data/lib/studium/commandline/initialize.rb +27 -0
  94. data/lib/studium/commandline/menu.rb +760 -0
  95. data/lib/studium/commandline/misc.rb +707 -0
  96. data/lib/studium/commandline/reset.rb +24 -0
  97. data/lib/studium/commandline/run.rb +20 -0
  98. data/lib/studium/constants/boku_wien.rb +52 -0
  99. data/lib/studium/constants/constants.rb +25 -0
  100. data/lib/studium/constants/delay.rb +28 -0
  101. data/lib/studium/constants/editor.rb +28 -0
  102. data/lib/studium/constants/exam_topics.rb +183 -0
  103. data/lib/studium/constants/file_constants.rb +875 -0
  104. data/lib/studium/constants/image_constants.rb +216 -0
  105. data/lib/studium/constants/last_question_asked.rb +38 -0
  106. data/lib/studium/constants/lecture_types_that_are_mandatory_continuous_assessment.rb +47 -0
  107. data/lib/studium/constants/misc.rb +163 -0
  108. data/lib/studium/constants/namespace.rb +14 -0
  109. data/lib/studium/constants/newline.rb +14 -0
  110. data/lib/studium/constants/regexes.rb +35 -0
  111. data/lib/studium/constants/return_file_for_this_curriculum.rb +411 -0
  112. data/lib/studium/constants/roebe.rb +173 -0
  113. data/lib/studium/constants/time.rb +52 -0
  114. data/lib/studium/constants/tu_wien.rb +39 -0
  115. data/lib/studium/constants/uni_wien.rb +24 -0
  116. data/lib/studium/constants/unicode.rb +27 -0
  117. data/lib/studium/constants/week.rb +138 -0
  118. data/lib/studium/constants/www_constants.rb +23 -0
  119. data/lib/studium/curricula/curriculum.rb +199 -0
  120. data/lib/studium/curricula/curriculum_as_string.rb +279 -0
  121. data/lib/studium/curricula/curriculum_module_displayer/constants.rb +38 -0
  122. data/lib/studium/curricula/curriculum_module_displayer/curriculum_module_displayer.rb +417 -0
  123. data/lib/studium/curricula/curriculum_module_displayer/initialize.rb +25 -0
  124. data/lib/studium/curricula/curriculum_module_displayer/menu.rb +45 -0
  125. data/lib/studium/curricula/curriculum_module_displayer/reset.rb +77 -0
  126. data/lib/studium/curricula/curriculum_module_displayer/run.rb +20 -0
  127. data/lib/studium/curricula/curriculum_module_displayer/set_use_this_curriculum.rb +93 -0
  128. data/lib/studium/curricula/curriculum_module_displayer/show_and_report.rb +190 -0
  129. data/lib/studium/curricula/determine_curricula/constants.rb +16 -0
  130. data/lib/studium/curricula/determine_curricula/determine_curricula.rb +36 -0
  131. data/lib/studium/curricula/determine_curricula/help.rb +39 -0
  132. data/lib/studium/curricula/determine_curricula/initialize.rb +48 -0
  133. data/lib/studium/curricula/determine_curricula/menu.rb +138 -0
  134. data/lib/studium/curricula/determine_curricula/misc.rb +402 -0
  135. data/lib/studium/curricula/determine_curricula/report.rb +131 -0
  136. data/lib/studium/curricula/determine_curricula/reset.rb +62 -0
  137. data/lib/studium/curricula/determine_curricula/run.rb +19 -0
  138. data/lib/studium/curricula/determine_elective_courses_in_this_curriculum.rb +112 -0
  139. data/lib/studium/curricula/display_bachelor_curricula.rb +89 -0
  140. data/lib/studium/curricula/mitteilungsbl/303/244tter.rb +336 -0
  141. data/lib/studium/curricula/modules/display_on_the_commandline.rb +316 -0
  142. data/lib/studium/curricula/modules/return_n_ects_in_this_module.rb +74 -0
  143. data/lib/studium/curricula/n_percent_solved_in_this_curriculum.rb +75 -0
  144. data/lib/studium/curricula/random_curriculum_creator.rb +171 -0
  145. data/lib/studium/curricula/show_lectures_of_this_curriculum.rb +114 -0
  146. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/constants.rb +16 -0
  147. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/initialize.rb +27 -0
  148. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/menu.rb +35 -0
  149. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/misc.rb +242 -0
  150. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/report.rb +140 -0
  151. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/reset.rb +67 -0
  152. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/show_lectures_of_this_curriculum_id.rb +37 -0
  153. data/lib/studium/curricula/show_solved_percentage_among_the_registered_curricula.rb +87 -0
  154. data/lib/studium/ects/boku_ects_splitter.rb +127 -0
  155. data/lib/studium/ects/ects_parser.rb +179 -0
  156. data/lib/studium/ects/ects_per_university.rb +140 -0
  157. data/lib/studium/ects/ects_scanner.rb +141 -0
  158. data/lib/studium/ects/ects_to_university_parser.rb +148 -0
  159. data/lib/studium/ects/erledigt.rb +131 -0
  160. data/lib/studium/ects/last_entry_is_curriculum.rb +147 -0
  161. data/lib/studium/ects/n_ects_in_these_lectures.rb +185 -0
  162. data/lib/studium/ects/n_ects_points_in_mandatory_presence_courses.rb +50 -0
  163. data/lib/studium/ects/noch_zu_absolvieren.rb +172 -0
  164. data/lib/studium/ects/return_n_ects_from_this_file.rb +58 -0
  165. data/lib/studium/ects/return_n_ects_from_this_url.rb +202 -0
  166. data/lib/studium/ects/search_for_n_ects.rb +540 -0
  167. data/lib/studium/ects/show_completed_ects_in_all_curricula.rb +210 -0
  168. data/lib/studium/ects/show_passed_credits_per_curriculum.rb +254 -0
  169. data/lib/studium/ects/simple_total_ects_points.rb +143 -0
  170. data/lib/studium/ects/solved_ects/constants.rb +24 -0
  171. data/lib/studium/ects/solved_ects/reset.rb +54 -0
  172. data/lib/studium/ects/solved_ects/solved_ects.rb +325 -0
  173. data/lib/studium/ects/solved_ects_per_university/reset.rb +25 -0
  174. data/lib/studium/ects/solved_ects_per_university/solved_ects_per_university.rb +106 -0
  175. data/lib/studium/ects/still_missing.rb +133 -0
  176. data/lib/studium/ects/sum_of_ects.rb +150 -0
  177. data/lib/studium/encoding/encoding.rb +150 -0
  178. data/lib/studium/exam_topics/RNAi_siRNA_and_miRNA +79 -0
  179. data/lib/studium/exam_topics/abfall_als_ressource +86 -0
  180. data/lib/studium/exam_topics/advanced_biochemistry +762 -0
  181. data/lib/studium/exam_topics/advanced_biotechnology +192 -0
  182. data/lib/studium/exam_topics/advanced_cellbiology +25 -0
  183. data/lib/studium/exam_topics/advanced_chemistry +453 -0
  184. data/lib/studium/exam_topics/advanced_microbiology +44 -0
  185. data/lib/studium/exam_topics/advanced_topics_in_plant_sciences +51 -0
  186. data/lib/studium/exam_topics/advanced_virology +52 -0
  187. data/lib/studium/exam_topics/ageing +101 -0
  188. data/lib/studium/exam_topics/agrar_ecology +61 -0
  189. data/lib/studium/exam_topics/agrarmarkt +70 -0
  190. data/lib/studium/exam_topics/agrarphysik +35 -0
  191. data/lib/studium/exam_topics/alcohols +29 -0
  192. data/lib/studium/exam_topics/algorithms +49 -0
  193. data/lib/studium/exam_topics/allergie +73 -0
  194. data/lib/studium/exam_topics/allgemeine_genetik +1006 -0
  195. data/lib/studium/exam_topics/allgemeine_mikrobiologie +855 -0
  196. data/lib/studium/exam_topics/aminoacids +417 -0
  197. data/lib/studium/exam_topics/analytische_chemie_1 +131 -0
  198. data/lib/studium/exam_topics/analytische_chemie_2 +31 -0
  199. data/lib/studium/exam_topics/anatomie +248 -0
  200. data/lib/studium/exam_topics/anorganische_chemie +289 -0
  201. data/lib/studium/exam_topics/anthropologie +115 -0
  202. data/lib/studium/exam_topics/antibodies_and_antigens +747 -0
  203. data/lib/studium/exam_topics/apoptosis +35 -0
  204. data/lib/studium/exam_topics/archaea +41 -0
  205. data/lib/studium/exam_topics/architecture +8 -0
  206. data/lib/studium/exam_topics/artificial_intelligence +81 -0
  207. data/lib/studium/exam_topics/audio +10 -0
  208. data/lib/studium/exam_topics/bacteriophages +224 -0
  209. data/lib/studium/exam_topics/basic_biochemistry +1008 -0
  210. data/lib/studium/exam_topics/basic_biotechnology +1011 -0
  211. data/lib/studium/exam_topics/basic_chemistry +1007 -0
  212. data/lib/studium/exam_topics/basic_virology +955 -0
  213. data/lib/studium/exam_topics/bauwesen +6 -0
  214. data/lib/studium/exam_topics/betriebssysteme +125 -0
  215. data/lib/studium/exam_topics/betriebswirtschaftslehre +29 -0
  216. data/lib/studium/exam_topics/bioanalytik_und_biosensoren +381 -0
  217. data/lib/studium/exam_topics/biochips +78 -0
  218. data/lib/studium/exam_topics/bioelektrochemie +56 -0
  219. data/lib/studium/exam_topics/biofilms +22 -0
  220. data/lib/studium/exam_topics/bioinformatics +475 -0
  221. data/lib/studium/exam_topics/biological_therapeutics +152 -0
  222. data/lib/studium/exam_topics/biologie +134 -0
  223. data/lib/studium/exam_topics/biomarkers +106 -0
  224. data/lib/studium/exam_topics/biomaterials +46 -0
  225. data/lib/studium/exam_topics/biomembranes +6 -0
  226. data/lib/studium/exam_topics/bionik +65 -0
  227. data/lib/studium/exam_topics/biophysik +34 -0
  228. data/lib/studium/exam_topics/biopolymers +10 -0
  229. data/lib/studium/exam_topics/bioprozesstechnik +139 -0
  230. data/lib/studium/exam_topics/bioressourcenmanagement +78 -0
  231. data/lib/studium/exam_topics/bodenkunde +345 -0
  232. data/lib/studium/exam_topics/bodenmikrobiologie +40 -0
  233. data/lib/studium/exam_topics/cancerbiology +441 -0
  234. data/lib/studium/exam_topics/cell_cultures +154 -0
  235. data/lib/studium/exam_topics/cellbiology +962 -0
  236. data/lib/studium/exam_topics/cellular_transport_and_protein_secretion +27 -0
  237. data/lib/studium/exam_topics/chemische_technologie_anorganischer_stoffe +208 -0
  238. data/lib/studium/exam_topics/chemisches_labor +59 -0
  239. data/lib/studium/exam_topics/chemotaxis_and_motility_in_prokaryotes +74 -0
  240. data/lib/studium/exam_topics/citric_acid_cycle +70 -0
  241. data/lib/studium/exam_topics/clinical_microbiology +486 -0
  242. data/lib/studium/exam_topics/computer_graphics +5 -0
  243. data/lib/studium/exam_topics/computer_science +269 -0
  244. data/lib/studium/exam_topics/crispr +25 -0
  245. data/lib/studium/exam_topics/cyanobacteria +37 -0
  246. data/lib/studium/exam_topics/cytogenetics_and_chromosome_biology +506 -0
  247. data/lib/studium/exam_topics/databases_and_sql +105 -0
  248. data/lib/studium/exam_topics/dna_mutation_and_dna_repair +33 -0
  249. data/lib/studium/exam_topics/dna_replication +53 -0
  250. data/lib/studium/exam_topics/ecogenetics +27 -0
  251. data/lib/studium/exam_topics/ecological_agriculture +12 -0
  252. data/lib/studium/exam_topics/ecology +313 -0
  253. data/lib/studium/exam_topics/economy +210 -0
  254. data/lib/studium/exam_topics/elektronenmikroskopie +353 -0
  255. data/lib/studium/exam_topics/elektrophorese +88 -0
  256. data/lib/studium/exam_topics/elektrotechnik +8 -0
  257. data/lib/studium/exam_topics/elisa +54 -0
  258. data/lib/studium/exam_topics/embryologie_und_entwicklung +541 -0
  259. data/lib/studium/exam_topics/endospores_and_spores +92 -0
  260. data/lib/studium/exam_topics/enzymes_and_cofactors +327 -0
  261. data/lib/studium/exam_topics/epigenetik +177 -0
  262. data/lib/studium/exam_topics/ethik +125 -0
  263. data/lib/studium/exam_topics/evolution_and_evolutionary_genetics +323 -0
  264. data/lib/studium/exam_topics/excel +7 -0
  265. data/lib/studium/exam_topics/fish +19 -0
  266. data/lib/studium/exam_topics/fluorescence_microscopy +7 -0
  267. data/lib/studium/exam_topics/food_microbiology_and_food_biotechnology +17 -0
  268. data/lib/studium/exam_topics/forensik +11 -0
  269. data/lib/studium/exam_topics/forstwirtschaft +52 -0
  270. data/lib/studium/exam_topics/fortgeschrittene_genetik +429 -0
  271. data/lib/studium/exam_topics/fortgeschrittene_gentechnik +189 -0
  272. data/lib/studium/exam_topics/fortgeschrittene_physik +6 -0
  273. data/lib/studium/exam_topics/fungi +78 -0
  274. data/lib/studium/exam_topics/genetische_krankheiten +150 -0
  275. data/lib/studium/exam_topics/genexpression +1008 -0
  276. data/lib/studium/exam_topics/genomics_and_metagenomics +205 -0
  277. data/lib/studium/exam_topics/gentechnik_und_praktische_biochemie +863 -0
  278. data/lib/studium/exam_topics/geochemistry +66 -0
  279. data/lib/studium/exam_topics/geography +5 -0
  280. data/lib/studium/exam_topics/geologie_und_mineralogie +610 -0
  281. data/lib/studium/exam_topics/geschichte +94 -0
  282. data/lib/studium/exam_topics/gluconeogenesis +34 -0
  283. data/lib/studium/exam_topics/glycolysis +95 -0
  284. data/lib/studium/exam_topics/glykomik +42 -0
  285. data/lib/studium/exam_topics/glyoxylatzyklus +23 -0
  286. data/lib/studium/exam_topics/grassland_cultivation +32 -0
  287. data/lib/studium/exam_topics/hormone +122 -0
  288. data/lib/studium/exam_topics/html +7 -0
  289. data/lib/studium/exam_topics/human_ecology +8 -0
  290. data/lib/studium/exam_topics/hygiene +191 -0
  291. data/lib/studium/exam_topics/imaging_and_microscopy +224 -0
  292. data/lib/studium/exam_topics/immunanalytik +88 -0
  293. data/lib/studium/exam_topics/immunologie +888 -0
  294. data/lib/studium/exam_topics/informatik +95 -0
  295. data/lib/studium/exam_topics/innate_immunity +20 -0
  296. data/lib/studium/exam_topics/insekten +30 -0
  297. data/lib/studium/exam_topics/insulin_and_diabetes +55 -0
  298. data/lib/studium/exam_topics/java +440 -0
  299. data/lib/studium/exam_topics/javascript +10 -0
  300. data/lib/studium/exam_topics/klima +6 -0
  301. data/lib/studium/exam_topics/landtechnik +27 -0
  302. data/lib/studium/exam_topics/lebensmittel +206 -0
  303. data/lib/studium/exam_topics/lebensmitteltechnologie +16 -0
  304. data/lib/studium/exam_topics/linux +5 -0
  305. data/lib/studium/exam_topics/lipids +95 -0
  306. data/lib/studium/exam_topics/macroeconomics +39 -0
  307. data/lib/studium/exam_topics/mathematics +175 -0
  308. data/lib/studium/exam_topics/medizin_und_biomedizinische_technik +250 -0
  309. data/lib/studium/exam_topics/medizinische_chemie_und_pharmazie +397 -0
  310. data/lib/studium/exam_topics/messtechnik_und_regeltechnik +104 -0
  311. data/lib/studium/exam_topics/metabolismus +433 -0
  312. data/lib/studium/exam_topics/microbial_ecology +35 -0
  313. data/lib/studium/exam_topics/mikrobielle_lebensgemeinschaften +34 -0
  314. data/lib/studium/exam_topics/mikrobielle_physiologie +153 -0
  315. data/lib/studium/exam_topics/mixed +289 -0
  316. data/lib/studium/exam_topics/molecular_biology_of_plants +235 -0
  317. data/lib/studium/exam_topics/molekulare_medizin +129 -0
  318. data/lib/studium/exam_topics/nanotechnologie +303 -0
  319. data/lib/studium/exam_topics/nature_conservation_and_biodiversity +165 -0
  320. data/lib/studium/exam_topics/naturstoffe +9 -0
  321. data/lib/studium/exam_topics/netzwerke +32 -0
  322. data/lib/studium/exam_topics/neurobiology +266 -0
  323. data/lib/studium/exam_topics/nucleotide_sequencing +30 -0
  324. data/lib/studium/exam_topics/object_oriented_modeling +14 -0
  325. data/lib/studium/exam_topics/obstbau +234 -0
  326. data/lib/studium/exam_topics/organische_chemie +1007 -0
  327. data/lib/studium/exam_topics/organische_chemie_2 +72 -0
  328. data/lib/studium/exam_topics/paleobiology +33 -0
  329. data/lib/studium/exam_topics/parasitic_diseases_and_molecular_infection_biology +335 -0
  330. data/lib/studium/exam_topics/patent_law +55 -0
  331. data/lib/studium/exam_topics/pathologie +713 -0
  332. data/lib/studium/exam_topics/pcr +133 -0
  333. data/lib/studium/exam_topics/peroxisomes_glycosomes_and_lysosomes +54 -0
  334. data/lib/studium/exam_topics/pflanzenanatomie +240 -0
  335. data/lib/studium/exam_topics/pflanzenbau +24 -0
  336. data/lib/studium/exam_topics/pflanzenschutz +35 -0
  337. data/lib/studium/exam_topics/pflanzenwissenschaften +1009 -0
  338. data/lib/studium/exam_topics/pharmaceutical_biotechnology +250 -0
  339. data/lib/studium/exam_topics/physik +338 -0
  340. data/lib/studium/exam_topics/physikalische_chemie +85 -0
  341. data/lib/studium/exam_topics/physiology_and_histology +485 -0
  342. data/lib/studium/exam_topics/phytochemie +33 -0
  343. data/lib/studium/exam_topics/plant_biotechnology +127 -0
  344. data/lib/studium/exam_topics/plant_breeding +64 -0
  345. data/lib/studium/exam_topics/plant_development +50 -0
  346. data/lib/studium/exam_topics/populationsgenetik +136 -0
  347. data/lib/studium/exam_topics/posttranslationale_modifikation_von_proteinen +186 -0
  348. data/lib/studium/exam_topics/projektmanagement +218 -0
  349. data/lib/studium/exam_topics/prokaryote_genetics +470 -0
  350. data/lib/studium/exam_topics/proteomik +38 -0
  351. data/lib/studium/exam_topics/prozesstechnik +95 -0
  352. data/lib/studium/exam_topics/psychologie +9 -0
  353. data/lib/studium/exam_topics/python +350 -0
  354. data/lib/studium/exam_topics/quality_management +241 -0
  355. data/lib/studium/exam_topics/rechtsgrundlagen +115 -0
  356. data/lib/studium/exam_topics/research_topics_in_immunobiology +42 -0
  357. data/lib/studium/exam_topics/rna_and_dna +362 -0
  358. data/lib/studium/exam_topics/rna_seq +11 -0
  359. data/lib/studium/exam_topics/ruby +131 -0
  360. data/lib/studium/exam_topics/ruby_on_rails +62 -0
  361. data/lib/studium/exam_topics/scientific_writing_and_publishing +38 -0
  362. data/lib/studium/exam_topics/semisynthese_von_proteinen_und_nukleotiden +120 -0
  363. data/lib/studium/exam_topics/sexualbiologie +59 -0
  364. data/lib/studium/exam_topics/signal_transduction_and_laser_systems +136 -0
  365. data/lib/studium/exam_topics/splicing_exons_and_introns +57 -0
  366. data/lib/studium/exam_topics/statistik +202 -0
  367. data/lib/studium/exam_topics/stemcells +87 -0
  368. data/lib/studium/exam_topics/structural_bioinformatics +54 -0
  369. data/lib/studium/exam_topics/strukturbiologie +319 -0
  370. data/lib/studium/exam_topics/system_biology_and_synthetic_biology +87 -0
  371. data/lib/studium/exam_topics/systematische_zoologie +430 -0
  372. data/lib/studium/exam_topics/technical_ecology +144 -0
  373. data/lib/studium/exam_topics/technische_chemie +194 -0
  374. data/lib/studium/exam_topics/technische_grundlagen_der_informatik +22 -0
  375. data/lib/studium/exam_topics/technische_mikrobiologie +403 -0
  376. data/lib/studium/exam_topics/technisches_zeichnen +5 -0
  377. data/lib/studium/exam_topics/the_bacterial_cell_wall +86 -0
  378. data/lib/studium/exam_topics/the_c_plus_plus_programming_language +488 -0
  379. data/lib/studium/exam_topics/the_c_programming_language +128 -0
  380. data/lib/studium/exam_topics/the_cellcycle +65 -0
  381. data/lib/studium/exam_topics/the_european_union +119 -0
  382. data/lib/studium/exam_topics/the_interferon_system +32 -0
  383. data/lib/studium/exam_topics/the_microbiome +163 -0
  384. data/lib/studium/exam_topics/the_universe +6 -0
  385. data/lib/studium/exam_topics/theoretische_chemie +5 -0
  386. data/lib/studium/exam_topics/theoretische_informatik +157 -0
  387. data/lib/studium/exam_topics/tierzucht +94 -0
  388. data/lib/studium/exam_topics/toxikologie +403 -0
  389. data/lib/studium/exam_topics/transcription +26 -0
  390. data/lib/studium/exam_topics/translation_ribosomes_and_translational_control +138 -0
  391. data/lib/studium/exam_topics/umweltbiotechnologie +58 -0
  392. data/lib/studium/exam_topics/umweltchemie +233 -0
  393. data/lib/studium/exam_topics/urbanism_and_traffic +19 -0
  394. data/lib/studium/exam_topics/vaccines_and_vaccination +234 -0
  395. data/lib/studium/exam_topics/vectors_and_gene_therapy +237 -0
  396. data/lib/studium/exam_topics/verfahrenstechnik +32 -0
  397. data/lib/studium/exam_topics/veterinary_medicine +10 -0
  398. data/lib/studium/exam_topics/vitamine +19 -0
  399. data/lib/studium/exam_topics/wasserkunde +141 -0
  400. data/lib/studium/exam_topics/weinbau +59 -0
  401. data/lib/studium/exam_topics/wissenschaft +17 -0
  402. data/lib/studium/exam_topics/yeast +97 -0
  403. data/lib/studium/exam_topics/zoologie +329 -0
  404. data/lib/studium/exams/afterburn.rb +264 -0
  405. data/lib/studium/exams/ask_exam_from_the_upcoming_exams_pool.rb +158 -0
  406. data/lib/studium/exams/ask_exam_question/answer.rb +106 -0
  407. data/lib/studium/exams/ask_exam_question/ask_exam_question.rb +135 -0
  408. data/lib/studium/exams/ask_exam_question/constants.rb +74 -0
  409. data/lib/studium/exams/ask_exam_question/delay.rb +101 -0
  410. data/lib/studium/exams/ask_exam_question/help.rb +72 -0
  411. data/lib/studium/exams/ask_exam_question/initialize.rb +70 -0
  412. data/lib/studium/exams/ask_exam_question/menu.rb +382 -0
  413. data/lib/studium/exams/ask_exam_question/misc.rb +938 -0
  414. data/lib/studium/exams/ask_exam_question/question.rb +77 -0
  415. data/lib/studium/exams/ask_exam_question/reset.rb +103 -0
  416. data/lib/studium/exams/ask_exam_question/run.rb +49 -0
  417. data/lib/studium/exams/ask_exam_topic_question.rb +120 -0
  418. data/lib/studium/exams/ask_question_from_alias.rb +151 -0
  419. data/lib/studium/exams/ask_question_from_any_of_the_still_missing_lectures.rb +133 -0
  420. data/lib/studium/exams/ask_question_from_grouped_themes.rb +141 -0
  421. data/lib/studium/exams/ask_question_from_last_topic.rb +93 -0
  422. data/lib/studium/exams/ask_random_question.rb +190 -0
  423. data/lib/studium/exams/autoinclude.rb +7 -0
  424. data/lib/studium/exams/class.rb +127 -0
  425. data/lib/studium/exams/csv/create_csv_passed_exams_file.rb +225 -0
  426. data/lib/studium/exams/cycle.rb +283 -0
  427. data/lib/studium/exams/dataset.rb +90 -0
  428. data/lib/studium/exams/exam_registration_at/constants.rb +49 -0
  429. data/lib/studium/exams/exam_registration_at/exam_registration_at.rb +254 -0
  430. data/lib/studium/exams/exam_registration_at/help.rb +46 -0
  431. data/lib/studium/exams/exam_registration_at/menu.rb +81 -0
  432. data/lib/studium/exams/exam_registration_at/report.rb +108 -0
  433. data/lib/studium/exams/exam_registration_at/reset.rb +49 -0
  434. data/lib/studium/exams/exam_statistics_from_this_file/exam_statistics_from_this_file.rb +127 -0
  435. data/lib/studium/exams/exam_topics.rb +202 -0
  436. data/lib/studium/exams/exams.rb +18 -0
  437. data/lib/studium/exams/exams_per_month/colours.rb +81 -0
  438. data/lib/studium/exams/exams_per_month/constants.rb +69 -0
  439. data/lib/studium/exams/exams_per_month/dataset.rb +64 -0
  440. data/lib/studium/exams/exams_per_month/exams_per_month.rb +291 -0
  441. data/lib/studium/exams/exams_per_month/help.rb +72 -0
  442. data/lib/studium/exams/exams_per_month/initialize.rb +39 -0
  443. data/lib/studium/exams/exams_per_month/menu.rb +258 -0
  444. data/lib/studium/exams/exams_per_month/open.rb +139 -0
  445. data/lib/studium/exams/exams_per_month/requires.rb +8 -0
  446. data/lib/studium/exams/exams_per_month/reset.rb +115 -0
  447. data/lib/studium/exams/exams_per_month/run.rb +18 -0
  448. data/lib/studium/exams/exams_per_month/sanitize.rb +129 -0
  449. data/lib/studium/exams/exams_per_month/show_and_report.rb +1281 -0
  450. data/lib/studium/exams/exams_this_week.rb +179 -0
  451. data/lib/studium/exams/fix_exam_dates.rb +129 -0
  452. data/lib/studium/exams/last_exams/last_exams.rb +381 -0
  453. data/lib/studium/exams/lectures_without_exam_entry.rb +145 -0
  454. data/lib/studium/exams/mandatory_continuous_assessment/compare.rb +144 -0
  455. data/lib/studium/exams/mandatory_continuous_assessment/constants.rb +18 -0
  456. data/lib/studium/exams/mandatory_continuous_assessment/help.rb +92 -0
  457. data/lib/studium/exams/mandatory_continuous_assessment/initialize.rb +46 -0
  458. data/lib/studium/exams/mandatory_continuous_assessment/mandatory_continuous_assessment.rb +1115 -0
  459. data/lib/studium/exams/mandatory_continuous_assessment/menu.rb +114 -0
  460. data/lib/studium/exams/mandatory_continuous_assessment/misc.rb +61 -0
  461. data/lib/studium/exams/mandatory_continuous_assessment/reset.rb +85 -0
  462. data/lib/studium/exams/mandatory_continuous_assessment/run.rb +33 -0
  463. data/lib/studium/exams/mandatory_continuous_assessment/set_title_of_the_curriculum.rb +181 -0
  464. data/lib/studium/exams/mandatory_continuous_assessment/show_and_report.rb +147 -0
  465. 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 +119 -0
  466. data/lib/studium/exams/n_exams_in_these_topics.rb +408 -0
  467. data/lib/studium/exams/new_questions_per_year.rb +153 -0
  468. data/lib/studium/exams/next_exam.rb +111 -0
  469. data/lib/studium/exams/next_exams.rb +385 -0
  470. data/lib/studium/exams/open_exam_associated_url.rb +158 -0
  471. data/lib/studium/exams/open_last_exam_question_asked_file/constants.rb +20 -0
  472. data/lib/studium/exams/open_last_exam_question_asked_file/initialize.rb +29 -0
  473. data/lib/studium/exams/open_last_exam_question_asked_file/open_last_exam_question_asked_file.rb +112 -0
  474. data/lib/studium/exams/passed_exams/passed_exams.rb +46 -0
  475. data/lib/studium/exams/pruefung.rb +288 -0
  476. data/lib/studium/exams/push_solved_questions_on_top.rb +188 -0
  477. data/lib/studium/exams/question_answer/question_answer.rb +842 -0
  478. data/lib/studium/exams/questions_solved_from_day_to_day.rb +353 -0
  479. data/lib/studium/exams/repeat_last_question.rb +78 -0
  480. data/lib/studium/exams/show_all_passed_exams_of_this_university.rb +260 -0
  481. data/lib/studium/exams/show_backlog_of_exams.rb +125 -0
  482. data/lib/studium/exams/show_next_exams_for.rb +141 -0
  483. data/lib/studium/exams/show_themes/constants.rb +33 -0
  484. data/lib/studium/exams/show_themes/menu.rb +61 -0
  485. data/lib/studium/exams/show_themes/misc.rb +536 -0
  486. data/lib/studium/exams/show_themes/reset.rb +64 -0
  487. data/lib/studium/exams/show_themes/show_themes.rb +27 -0
  488. data/lib/studium/exams/show_upcoming_exams/consider_autogenerating_exam_aliases.rb +170 -0
  489. data/lib/studium/exams/show_upcoming_exams/constants.rb +82 -0
  490. data/lib/studium/exams/show_upcoming_exams/help.rb +33 -0
  491. data/lib/studium/exams/show_upcoming_exams/initialize.rb +71 -0
  492. data/lib/studium/exams/show_upcoming_exams/menu.rb +53 -0
  493. data/lib/studium/exams/show_upcoming_exams/report.rb +195 -0
  494. data/lib/studium/exams/show_upcoming_exams/reset.rb +38 -0
  495. data/lib/studium/exams/show_upcoming_exams/run.rb +20 -0
  496. data/lib/studium/exams/show_upcoming_exams/show_upcoming_exams.rb +494 -0
  497. data/lib/studium/exams/solve_all_questions_from_this_topic.rb +122 -0
  498. data/lib/studium/exams/solved/constants.rb +37 -0
  499. data/lib/studium/exams/solved/help.rb +23 -0
  500. data/lib/studium/exams/solved/menu.rb +35 -0
  501. data/lib/studium/exams/solved/reset.rb +30 -0
  502. data/lib/studium/exams/solved/solved.rb +306 -0
  503. data/lib/studium/exams/steop.rb +99 -0
  504. data/lib/studium/exams/unsolve_all_questions_from_this_topic.rb +170 -0
  505. data/lib/studium/exams/upcoming_exams/constants.rb +20 -0
  506. data/lib/studium/exams/upcoming_exams/help.rb +38 -0
  507. data/lib/studium/exams/upcoming_exams/initialize.rb +27 -0
  508. data/lib/studium/exams/upcoming_exams/menu.rb +79 -0
  509. data/lib/studium/exams/upcoming_exams/misc.rb +360 -0
  510. data/lib/studium/exams/upcoming_exams/reset.rb +37 -0
  511. data/lib/studium/exams/upcoming_exams/run.rb +25 -0
  512. data/lib/studium/exams/upcoming_exams/upcoming_exams.rb +32 -0
  513. data/lib/studium/exams/upcoming_exams_at_the_boku/constants.rb +23 -0
  514. data/lib/studium/exams/upcoming_exams_at_the_boku/html.rb +64 -0
  515. data/lib/studium/exams/upcoming_exams_at_the_boku/upcoming_exams_at_the_boku.rb +194 -0
  516. data/lib/studium/exams/upcoming_exams_dataset.rb +251 -0
  517. data/lib/studium/exams/upload_exam_topics.rb +357 -0
  518. data/lib/studium/flashcards/flashcards.rb +95 -0
  519. data/lib/studium/graphviz/README.md +4 -0
  520. data/lib/studium/graphviz/bachelor_vector_based_strategies.dot +160 -0
  521. data/lib/studium/graphviz/master_vector_based_strategies.dot +46 -0
  522. data/lib/studium/gui/gtk2/constants.rb +52 -0
  523. data/lib/studium/gui/gtk2/exam_card.rb +199 -0
  524. data/lib/studium/gui/gtk2/flip_card.rb +8 -0
  525. data/lib/studium/gui/gtk2/frame.rb +319 -0
  526. data/lib/studium/gui/gtk2/main_box.rb +188 -0
  527. data/lib/studium/gui/gtk2/misc.rb +99 -0
  528. data/lib/studium/gui/gtk2/module_methods.rb +58 -0
  529. data/lib/studium/gui/gtk2/require_gtk_files.rb +25 -0
  530. data/lib/studium/gui/gtk2/run.rb +47 -0
  531. data/lib/studium/gui/gtk2/show_curriculum_entries.rb +186 -0
  532. data/lib/studium/gui/gtk2/simple_widget_question_answer.rb +185 -0
  533. data/lib/studium/gui/gtk2/vbox.rb +748 -0
  534. data/lib/studium/gui/gtk3/README.md +1 -0
  535. data/lib/studium/gui/gtk3/studium_panel.rb +54 -0
  536. data/lib/studium/lectures/show_lectures_on_the_commandline/constants.rb +22 -0
  537. data/lib/studium/lectures/show_lectures_on_the_commandline/determine.rb +630 -0
  538. data/lib/studium/lectures/show_lectures_on_the_commandline/help.rb +44 -0
  539. data/lib/studium/lectures/show_lectures_on_the_commandline/html.rb +599 -0
  540. data/lib/studium/lectures/show_lectures_on_the_commandline/initialize.rb +53 -0
  541. data/lib/studium/lectures/show_lectures_on_the_commandline/konsole.rb +32 -0
  542. data/lib/studium/lectures/show_lectures_on_the_commandline/menu.rb +466 -0
  543. data/lib/studium/lectures/show_lectures_on_the_commandline/misc.rb +598 -0
  544. data/lib/studium/lectures/show_lectures_on_the_commandline/reset.rb +120 -0
  545. data/lib/studium/lectures/show_lectures_on_the_commandline/run.rb +44 -0
  546. data/lib/studium/lectures/show_lectures_on_the_commandline/show.rb +106 -0
  547. data/lib/studium/lectures/show_lectures_on_the_commandline/show_lectures_on_the_commandline.rb +491 -0
  548. data/lib/studium/lectures/show_lectures_on_the_commandline/sorted_individual_curricula.rb +117 -0
  549. data/lib/studium/logging/README.md +2 -0
  550. data/lib/studium/logging/ensure_that_the_log_directory_exists.rb +47 -0
  551. data/lib/studium/logging/html_log_directory.rb +35 -0
  552. data/lib/studium/logging/log_directory.rb +100 -0
  553. data/lib/studium/logging/store_last_question_asked_into_file.rb +138 -0
  554. data/lib/studium/misc/return_remote_homepage_of_this_lecture.rb +8661 -0
  555. data/lib/studium/misc/return_remote_moodle_link_of_this_lecture.rb +1343 -0
  556. data/lib/studium/parsers/README.md +2 -0
  557. data/lib/studium/parsers/custom_exam_results_parser.rb +208 -0
  558. data/lib/studium/parsers/parse_lva_dates.rb +190 -0
  559. data/lib/studium/pdf/README.md +2 -0
  560. data/lib/studium/pdf/create_pdf_file_for_this_exam_topic.rb +277 -0
  561. data/lib/studium/project/project.rb +80 -0
  562. data/lib/studium/requires/common_popular_requires.rb +37 -0
  563. data/lib/studium/requires/commonly_used_requires.rb +13 -0
  564. data/lib/studium/requires/require_class_exams_solved.rb +7 -0
  565. data/lib/studium/requires/require_ects_scripts.rb +25 -0
  566. data/lib/studium/requires/require_encoding.rb +7 -0
  567. data/lib/studium/requires/require_the_exam_scripts.rb +37 -0
  568. data/lib/studium/requires/require_the_studium_constants.rb +14 -0
  569. data/lib/studium/requires/require_the_studium_project.rb +47 -0
  570. data/lib/studium/requires/require_the_utility_scripts.rb +26 -0
  571. data/lib/studium/requires/require_toplevel_methods.rb +26 -0
  572. data/lib/studium/requires/require_upcoming_exams.rb +7 -0
  573. data/lib/studium/requires/require_yaml.rb +7 -0
  574. data/lib/studium/requires/with_GUI.rb +12 -0
  575. data/lib/studium/requires/www_mode.rb +17 -0
  576. data/lib/studium/sinatra/app.rb +225 -0
  577. data/lib/studium/sinatra/misc.rb +111 -0
  578. data/lib/studium/statistics/README.md +4 -0
  579. data/lib/studium/statistics/best_exam_months.rb +81 -0
  580. data/lib/studium/statistics/curriculum_comparer.rb +344 -0
  581. data/lib/studium/statistics/determine_exam_statistics_from_this_file.rb +140 -0
  582. data/lib/studium/statistics/max_stats.rb +171 -0
  583. data/lib/studium/statistics/report_how_many_ects_points_per_curriculum_were_completed.rb +172 -0
  584. data/lib/studium/statistics/report_how_many_exam_questions_were_answered.rb +478 -0
  585. data/lib/studium/statistics/show_exam_statistics.rb +60 -0
  586. data/lib/studium/statistics/top_stats.rb +122 -0
  587. data/lib/studium/steop/README.md +4 -0
  588. data/lib/studium/steop/show_all_steop_lectures.rb +101 -0
  589. data/lib/studium/steop/steop_lectures_in_this_curriculum.rb +291 -0
  590. data/lib/studium/steop/steop_lva_dates.rb +102 -0
  591. data/lib/studium/toplevel_methods/all_passed_exams.rb +35 -0
  592. data/lib/studium/toplevel_methods/already_solved_this_lecture.rb +98 -0
  593. data/lib/studium/toplevel_methods/available_curricula.rb +71 -0
  594. data/lib/studium/toplevel_methods/available_topics.rb +145 -0
  595. data/lib/studium/toplevel_methods/average_grade.rb +141 -0
  596. data/lib/studium/toplevel_methods/calculate_pr/303/274fungsimmanente_lectures_from_this_file.rb +55 -0
  597. data/lib/studium/toplevel_methods/cd.rb +25 -0
  598. data/lib/studium/toplevel_methods/cd_stud.rb +134 -0
  599. data/lib/studium/toplevel_methods/copy_the_last_backup_of_file_lecture_information.rb +27 -0
  600. data/lib/studium/toplevel_methods/determine_local_directory_of_this_lecture.rb +72 -0
  601. data/lib/studium/toplevel_methods/does_this_course_require_mandatory_presence.rb +44 -0
  602. data/lib/studium/toplevel_methods/download.rb +157 -0
  603. data/lib/studium/toplevel_methods/e.rb +16 -0
  604. data/lib/studium/toplevel_methods/ects_from_lectures.rb +251 -0
  605. data/lib/studium/toplevel_methods/editor.rb +64 -0
  606. data/lib/studium/toplevel_methods/esystem.rb +22 -0
  607. data/lib/studium/toplevel_methods/exams_dataset.rb +45 -0
  608. data/lib/studium/toplevel_methods/filter_away_invalid_questions.rb +77 -0
  609. data/lib/studium/toplevel_methods/find_exam_topic_and_exam_title.rb +2771 -0
  610. data/lib/studium/toplevel_methods/from_curriculum_id_to_university.rb +47 -0
  611. data/lib/studium/toplevel_methods/frozen.rb +32 -0
  612. data/lib/studium/toplevel_methods/handle_archive_of_the_exam_questions.rb +136 -0
  613. data/lib/studium/toplevel_methods/has_a_bachelor_or_master_curriculum.rb +84 -0
  614. data/lib/studium/toplevel_methods/has_this_lecture_been_already_passed_but_the_id_was_changed_lateron.rb +41 -0
  615. data/lib/studium/toplevel_methods/has_this_module_been_completed.rb +206 -0
  616. data/lib/studium/toplevel_methods/install_the_project_on_the_given_hostsystem.rb +32 -0
  617. data/lib/studium/toplevel_methods/is_on_roebe.rb +26 -0
  618. data/lib/studium/toplevel_methods/is_this_exam_topic_included.rb +46 -0
  619. data/lib/studium/toplevel_methods/is_this_homepage_registered.rb +31 -0
  620. data/lib/studium/toplevel_methods/is_this_lecture_a_practical_course.rb +100 -0
  621. data/lib/studium/toplevel_methods/is_this_lecture_part_of_the_vector_curriculum.rb +110 -0
  622. data/lib/studium/toplevel_methods/is_this_lecture_registered_in_upcoming_exams.rb +43 -0
  623. data/lib/studium/toplevel_methods/lecture_information.rb +101 -0
  624. data/lib/studium/toplevel_methods/lectures_without_attribution_to_any_curriculum.rb +42 -0
  625. data/lib/studium/toplevel_methods/lva_numbers.rb +339 -0
  626. data/lib/studium/toplevel_methods/main_dataset.rb +73 -0
  627. data/lib/studium/toplevel_methods/map_curriculum_number_to_curriculum_name.rb +97 -0
  628. data/lib/studium/toplevel_methods/methods_related_to_curricula.rb +47 -0
  629. data/lib/studium/toplevel_methods/methods_related_to_files.rb +197 -0
  630. data/lib/studium/toplevel_methods/mkdir.rb +25 -0
  631. data/lib/studium/toplevel_methods/n_questions_available.rb +128 -0
  632. data/lib/studium/toplevel_methods/n_topics_available.rb +63 -0
  633. data/lib/studium/toplevel_methods/name_of_this_curriculum.rb +38 -0
  634. data/lib/studium/toplevel_methods/names_of_all_solved_exams.rb +71 -0
  635. data/lib/studium/toplevel_methods/note_down_the_start_time_and_how_many_exams_have_been_already_solved.rb +70 -0
  636. data/lib/studium/toplevel_methods/opnn.rb +25 -0
  637. data/lib/studium/toplevel_methods/passed_this_exam_on.rb +105 -0
  638. data/lib/studium/toplevel_methods/pristine.rb +69 -0
  639. data/lib/studium/toplevel_methods/read_dataset_from_a_curriculum_file.rb +133 -0
  640. data/lib/studium/toplevel_methods/read_delay_between_questions_from_file.rb +34 -0
  641. data/lib/studium/toplevel_methods/regexes.rb +90 -0
  642. data/lib/studium/toplevel_methods/registered_for_this_exam.rb +62 -0
  643. data/lib/studium/toplevel_methods/remote_url.rb +57 -0
  644. data/lib/studium/toplevel_methods/remove_comments.rb +26 -0
  645. data/lib/studium/toplevel_methods/remove_exam_topics_that_were_already_answered.rb +27 -0
  646. data/lib/studium/toplevel_methods/remove_tags.rb +26 -0
  647. data/lib/studium/toplevel_methods/report.rb +143 -0
  648. data/lib/studium/toplevel_methods/report_all_lectures_matching_this_lecture_type.rb +45 -0
  649. data/lib/studium/toplevel_methods/report_attributed_lectures_to_universities.rb +30 -0
  650. data/lib/studium/toplevel_methods/report_n_ects_per_university.rb +63 -0
  651. data/lib/studium/toplevel_methods/report_n_entries_in_the_file_lecture_information.rb +36 -0
  652. data/lib/studium/toplevel_methods/report_nquestions_of.rb +96 -0
  653. data/lib/studium/toplevel_methods/report_solved_topics.rb +56 -0
  654. data/lib/studium/toplevel_methods/return_all_exams_on_this_day.rb +66 -0
  655. data/lib/studium/toplevel_methods/return_curriculum_of_this_lva_number.rb +82 -0
  656. data/lib/studium/toplevel_methods/return_dataset_for_this_exam_topic.rb +41 -0
  657. data/lib/studium/toplevel_methods/return_dataset_from_this_curriculum_file.rb +150 -0
  658. data/lib/studium/toplevel_methods/return_directory_for.rb +66 -0
  659. data/lib/studium/toplevel_methods/return_div_timetable_of_upcoming_exams.rb +489 -0
  660. data/lib/studium/toplevel_methods/return_ects_from_this_lecture_stored_in_the_file_lecture_information.rb +197 -0
  661. data/lib/studium/toplevel_methods/return_hash_of_already_solved_lectures.rb +41 -0
  662. data/lib/studium/toplevel_methods/return_local_path_of_this_pwdstud.rb +59 -0
  663. data/lib/studium/toplevel_methods/return_lva_number_of_this_lecture.rb +72 -0
  664. data/lib/studium/toplevel_methods/return_n_percent_solved_from_this_topic.rb +75 -0
  665. data/lib/studium/toplevel_methods/return_n_questions_were_answered_for_this_topic.rb +37 -0
  666. data/lib/studium/toplevel_methods/return_proper_university_image.rb +80 -0
  667. data/lib/studium/toplevel_methods/return_question_answer_string_from_this_topic.rb +56 -0
  668. data/lib/studium/toplevel_methods/return_sanitized_dataset_from_the_file_lecture_information.rb +126 -0
  669. data/lib/studium/toplevel_methods/return_theme_of_the_next_upcoming_exam.rb +38 -0
  670. data/lib/studium/toplevel_methods/return_this_curriculum_as_a_string.rb +26 -0
  671. data/lib/studium/toplevel_methods/return_title_from_this_curriculum_file.rb +91 -0
  672. data/lib/studium/toplevel_methods/rinstall2.rb +34 -0
  673. data/lib/studium/toplevel_methods/rti_conflict.rb +29 -0
  674. data/lib/studium/toplevel_methods/runmode.rb +86 -0
  675. data/lib/studium/toplevel_methods/sanitize_this_theme_topic.rb +128 -0
  676. data/lib/studium/toplevel_methods/sanitized_dataset_from_file_passed_exams_per_month.rb +52 -0
  677. data/lib/studium/toplevel_methods/save_all_registered_upcoming_exams.rb +62 -0
  678. data/lib/studium/toplevel_methods/save_file.rb +81 -0
  679. data/lib/studium/toplevel_methods/save_this_delay_between_questions_and_answers.rb +43 -0
  680. data/lib/studium/toplevel_methods/set_last_file_for_exam_questions.rb +64 -0
  681. data/lib/studium/toplevel_methods/set_this_cd_alias_to.rb +86 -0
  682. data/lib/studium/toplevel_methods/show_passed_ects_in_the_individual_bachelor_and_master_curricula.rb +81 -0
  683. data/lib/studium/toplevel_methods/show_passed_exams_having_this_grade.rb +27 -0
  684. data/lib/studium/toplevel_methods/spacer.rb +18 -0
  685. data/lib/studium/toplevel_methods/time.rb +220 -0
  686. data/lib/studium/toplevel_methods/total_ects_points_passed.rb +72 -0
  687. data/lib/studium/toplevel_methods/try_to_guess_the_most_likely_lva_id.rb +57 -0
  688. data/lib/studium/toplevel_methods/try_to_return_the_expanded_name_of_this_lecture.rb +63 -0
  689. data/lib/studium/toplevel_methods/unfinished.rb +51 -0
  690. data/lib/studium/toplevel_methods/url.rb +74 -0
  691. data/lib/studium/toplevel_methods/verbose_truth.rb +21 -0
  692. data/lib/studium/toplevel_methods/when_was_this_lecture_passed.rb +53 -0
  693. data/lib/studium/toplevel_methods/yes_or_no_ja_oder_nein.rb +33 -0
  694. data/lib/studium/tu_vienna/README.md +6 -0
  695. data/lib/studium/tu_vienna/tu_ferien.rb +38 -0
  696. data/lib/studium/tu_vienna/tu_/303/266ffnungszeiten.rb +29 -0
  697. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_boku_lecture_to_curriculum.rb +389 -0
  698. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_lecture_to_curriculum.rb +236 -0
  699. data/lib/studium/utility_scripts/attribute_lectures_to_university/attribute_lectures_to_university.rb +385 -0
  700. data/lib/studium/utility_scripts/audio_stats.rb +176 -0
  701. data/lib/studium/utility_scripts/auto_stud/auto_stud.rb +253 -0
  702. data/lib/studium/utility_scripts/auto_stud/constants.rb +23 -0
  703. data/lib/studium/utility_scripts/auto_stud/initialize.rb +23 -0
  704. data/lib/studium/utility_scripts/auto_stud/misc.rb +18 -0
  705. data/lib/studium/utility_scripts/autopurge_this_lecture_date.rb +101 -0
  706. data/lib/studium/utility_scripts/calendar/README.md +2 -0
  707. data/lib/studium/utility_scripts/calendar/calendar.rb +244 -0
  708. data/lib/studium/utility_scripts/calendar/misc.rb +35 -0
  709. data/lib/studium/utility_scripts/check_description_of_these_lectures.rb +224 -0
  710. data/lib/studium/utility_scripts/clean_up_lecture_date.rb +151 -0
  711. data/lib/studium/utility_scripts/current_lectures_belonging_to_both_bachelor_and_master_curriculum.rb +113 -0
  712. data/lib/studium/utility_scripts/currently_participating_in_these_lectures.rb +104 -0
  713. data/lib/studium/utility_scripts/display_lecture_url.rb +117 -0
  714. data/lib/studium/utility_scripts/expand_time_range.rb +422 -0
  715. data/lib/studium/utility_scripts/find_duplicate_lectures.rb +121 -0
  716. data/lib/studium/utility_scripts/finished_exams_at_this_university.rb +94 -0
  717. data/lib/studium/utility_scripts/foreign_language_percentage/constants.rb +28 -0
  718. data/lib/studium/utility_scripts/foreign_language_percentage/foreign_language_percentage.rb +142 -0
  719. data/lib/studium/utility_scripts/foreign_language_percentage/help.rb +29 -0
  720. data/lib/studium/utility_scripts/foreign_language_percentage/initialize.rb +25 -0
  721. data/lib/studium/utility_scripts/foreign_language_percentage/menu.rb +141 -0
  722. data/lib/studium/utility_scripts/foreign_language_percentage/report.rb +62 -0
  723. data/lib/studium/utility_scripts/foreign_language_percentage/reset.rb +57 -0
  724. data/lib/studium/utility_scripts/foreign_language_percentage/run.rb +19 -0
  725. data/lib/studium/utility_scripts/generate_spreadsheet.rb +349 -0
  726. data/lib/studium/utility_scripts/holidays.rb +143 -0
  727. data/lib/studium/utility_scripts/lecture_downloader.rb +115 -0
  728. data/lib/studium/utility_scripts/lectures_attributed_to_universities.rb +344 -0
  729. data/lib/studium/utility_scripts/lva_nummer.rb +440 -0
  730. data/lib/studium/utility_scripts/mandatory_lectures_in_this_month.rb +321 -0
  731. data/lib/studium/utility_scripts/name_of_this_lva_id.rb +110 -0
  732. data/lib/studium/utility_scripts/new_stud.rb +332 -0
  733. data/lib/studium/utility_scripts/next_week.rb +111 -0
  734. data/lib/studium/utility_scripts/passed_ects_per_year.rb +172 -0
  735. data/lib/studium/utility_scripts/passed_pr/303/274fungsimmanente_courses/passed_pr/303/274fungsimmanente_courses.rb +181 -0
  736. data/lib/studium/utility_scripts/prepare_individual_curriculum.rb +182 -0
  737. data/lib/studium/utility_scripts/priority.rb +126 -0
  738. data/lib/studium/utility_scripts/priority_points.rb +263 -0
  739. data/lib/studium/utility_scripts/publish_my_exams.rb +174 -0
  740. data/lib/studium/utility_scripts/regexes/README.md +2 -0
  741. data/lib/studium/utility_scripts/regexes/generate_regex.rb +278 -0
  742. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_available_moodle_links.rb +54 -0
  743. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_registered_lectures.rb +48 -0
  744. data/lib/studium/utility_scripts/report_outdated_timetable_entries.rb +148 -0
  745. data/lib/studium/utility_scripts/report_total_amount_of_questions_and_answers_for.rb +120 -0
  746. data/lib/studium/utility_scripts/report_whether_this_lecture_is_registered_in_the_file_lecture_information.rb +125 -0
  747. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/individual_resolve_practical_courses_date_conflicts.rb +257 -0
  748. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/resolve_practical_courses_date_conflicts.rb +273 -0
  749. data/lib/studium/utility_scripts/scrape_remote_university_url.rb +146 -0
  750. data/lib/studium/utility_scripts/semester_schedule_creator/semester_container.rb +142 -0
  751. data/lib/studium/utility_scripts/semester_schedule_creator/semester_schedule_creator.rb +381 -0
  752. data/lib/studium/utility_scripts/semesterplaner.rb +289 -0
  753. data/lib/studium/utility_scripts/show_all_lectures.rb +403 -0
  754. data/lib/studium/utility_scripts/show_all_passed_master_lectures.rb +127 -0
  755. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/constants.rb +56 -0
  756. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/do_report_the_upcoming_exams.rb +60 -0
  757. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/help.rb +49 -0
  758. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/initialize.rb +28 -0
  759. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/menu.rb +54 -0
  760. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/misc.rb +214 -0
  761. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/report.rb +118 -0
  762. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/reset.rb +80 -0
  763. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/run.rb +22 -0
  764. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/show_conflicting_lva_lectures.rb +651 -0
  765. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/constants.rb +28 -0
  766. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/menu.rb +62 -0
  767. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/reset.rb +36 -0
  768. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/run.rb +35 -0
  769. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/show_descriptions_of_lectures_belonging_to_this_module.rb +145 -0
  770. data/lib/studium/utility_scripts/show_lecturers/show_lecturers.rb +145 -0
  771. data/lib/studium/utility_scripts/show_lectures/constants.rb +16 -0
  772. data/lib/studium/utility_scripts/show_lectures/help.rb +34 -0
  773. data/lib/studium/utility_scripts/show_lectures/initialize.rb +23 -0
  774. data/lib/studium/utility_scripts/show_lectures/menu.rb +106 -0
  775. data/lib/studium/utility_scripts/show_lectures/misc.rb +582 -0
  776. data/lib/studium/utility_scripts/show_lectures/reset.rb +92 -0
  777. data/lib/studium/utility_scripts/show_lectures/run.rb +27 -0
  778. data/lib/studium/utility_scripts/show_lectures/show_lectures.rb +48 -0
  779. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_language.rb +129 -0
  780. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_theme.rb +100 -0
  781. data/lib/studium/utility_scripts/show_lectures_on_this_day.rb +154 -0
  782. data/lib/studium/utility_scripts/show_lva_dates_of_this_lecture.rb +177 -0
  783. data/lib/studium/utility_scripts/show_outdated_lva_dates.rb +218 -0
  784. data/lib/studium/utility_scripts/show_solved_english_lectures.rb +139 -0
  785. data/lib/studium/utility_scripts/show_the_associated_lectures_for_the_individual_curriculum.rb +285 -0
  786. data/lib/studium/utility_scripts/studienkennzahl.rb +109 -0
  787. data/lib/studium/utility_scripts/studium_skeleton.rb +220 -0
  788. data/lib/studium/utility_scripts/stundenplan.rb +603 -0
  789. data/lib/studium/utility_scripts/sync_studium_relevant_entries_one_level_downwards.rb +221 -0
  790. data/lib/studium/utility_scripts/ufind.rb +101 -0
  791. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/constants.rb +31 -0
  792. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/run.rb +20 -0
  793. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/upcoming_mandatory_presence_courses.rb +179 -0
  794. data/lib/studium/utility_scripts/vorbesprechungen.rb +293 -0
  795. data/lib/studium/utility_scripts/week_parser/constants.rb +28 -0
  796. data/lib/studium/utility_scripts/week_parser/help.rb +32 -0
  797. data/lib/studium/utility_scripts/week_parser/menu.rb +56 -0
  798. data/lib/studium/utility_scripts/week_parser/misc.rb +51 -0
  799. data/lib/studium/utility_scripts/week_parser/reset.rb +55 -0
  800. data/lib/studium/utility_scripts/week_parser/run.rb +18 -0
  801. data/lib/studium/utility_scripts/week_parser/show.rb +242 -0
  802. data/lib/studium/utility_scripts/week_parser/week_parser.rb +362 -0
  803. data/lib/studium/utility_scripts/weekday_parser.rb +159 -0
  804. data/lib/studium/utility_scripts/weekly_schedule.rb +209 -0
  805. data/lib/studium/utility_scripts/wochenplanung.rb +278 -0
  806. data/lib/studium/version/version.rb +46 -0
  807. data/lib/studium/www/curricula_displayer.cgi +170 -0
  808. data/lib/studium/www/curriculum_displayer.rb +162 -0
  809. data/lib/studium/www/exams.cgi +50 -0
  810. data/lib/studium/www/statistics.cgi +55 -0
  811. data/lib/studium/yaml/allowed_themes_for_exams.yml +307 -0
  812. data/lib/studium/yaml/array_allowed_entries_for_the_file_lecture_information.yml +68 -0
  813. data/lib/studium/yaml/backlog_of_exams.yml +35 -0
  814. data/lib/studium/yaml/current_exams.yml +19 -0
  815. data/lib/studium/yaml/curricula.yml +530 -0
  816. data/lib/studium/yaml/curricula/README.md +3 -0
  817. data/lib/studium/yaml/curricula/bachelor_agrarwissenschaften_033255.yml +130 -0
  818. data/lib/studium/yaml/curricula/bachelor_biologie_basisblock_033630.yml +65 -0
  819. data/lib/studium/yaml/curricula/bachelor_biologie_botanik_033630.yml +84 -0
  820. data/lib/studium/yaml/curricula/bachelor_biologie_ecology_033630.yml +74 -0
  821. data/lib/studium/yaml/curricula/bachelor_biologie_mikrobiologie_und_genetik_033630.yml +120 -0
  822. data/lib/studium/yaml/curricula/bachelor_biologie_molekulare_biologie_033630.yml +104 -0
  823. data/lib/studium/yaml/curricula/bachelor_biologie_zoologie_033630.yml +87 -0
  824. data/lib/studium/yaml/curricula/bachelor_chemie_033662.yml +164 -0
  825. data/lib/studium/yaml/curricula/bachelor_dummy_curriculum.yml +135 -0
  826. data/lib/studium/yaml/curricula/bachelor_elektrotechnik_und_informationstechnik_033235.yml +13 -0
  827. data/lib/studium/yaml/curricula/bachelor_forstwirtschaft_033225.yml +105 -0
  828. data/lib/studium/yaml/curricula/bachelor_informatik_033521.yml +130 -0
  829. data/lib/studium/yaml/curricula/bachelor_informatik_und_molekulare_biologie.yml +1144 -0
  830. data/lib/studium/yaml/curricula/bachelor_ktww_033231.yml +84 -0
  831. data/lib/studium/yaml/curricula/bachelor_lmbt_033217.yml +108 -0
  832. data/lib/studium/yaml/curricula/bachelor_medizinische_informatik_033533.yml +200 -0
  833. data/lib/studium/yaml/curricula/bachelor_molekularbiologie_033665.yml +93 -0
  834. data/lib/studium/yaml/curricula/bachelor_nutrition_science_033638.yml +117 -0
  835. data/lib/studium/yaml/curricula/bachelor_pharmazie_033305.yml +170 -0
  836. data/lib/studium/yaml/curricula/bachelor_technische_chemie_033290.yml +129 -0
  837. data/lib/studium/yaml/curricula/bachelor_technische_informatik_033535.yml +23 -0
  838. data/lib/studium/yaml/curricula/bachelor_ubrm_033227.yml +140 -0
  839. data/lib/studium/yaml/curricula/bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +1157 -0
  840. data/lib/studium/yaml/curricula/bachelor_verfahrenstechnik_033273.yml +167 -0
  841. data/lib/studium/yaml/curricula/bachelor_wirtschaftsinformatik_033526.yml +29 -0
  842. data/lib/studium/yaml/curricula/master_bioinformatics_and_molecular_biotechnology_including_aspects_from_molecular_medicine.yml +438 -0
  843. data/lib/studium/yaml/curricula/master_bioinformatik_066875.yml +76 -0
  844. data/lib/studium/yaml/curricula/master_biologie_molekulare_mikrobiologie_mikrobielle_oekologie_und_immunbiologie_066830.yml +78 -0
  845. data/lib/studium/yaml/curricula/master_biologische_chemie_066863.yml +61 -0
  846. data/lib/studium/yaml/curricula/master_dummy_curriculum.yml +137 -0
  847. data/lib/studium/yaml/curricula/master_food_science_and_plant_biotechnology.yml +30 -0
  848. data/lib/studium/yaml/curricula/master_genetik_und_entwicklungsbiologie_066877.yml +90 -0
  849. data/lib/studium/yaml/curricula/master_lmbt_066418.yml +65 -0
  850. data/lib/studium/yaml/curricula/master_molekulare_biologie_066834.yml +142 -0
  851. data/lib/studium/yaml/curricula/master_pharmazie_066605.yml +170 -0
  852. data/lib/studium/yaml/curricula/master_technische_chemie_066490.yml +123 -0
  853. data/lib/studium/yaml/curricula/master_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +741 -0
  854. data/lib/studium/yaml/custom_colours.yml +21 -0
  855. data/lib/studium/yaml/daily_questions_solved.yml +789 -0
  856. data/lib/studium/yaml/default_delay.yml +4 -0
  857. data/lib/studium/yaml/default_encoding.yml +1 -0
  858. data/lib/studium/yaml/directory_to_the_exam_topics.yml +0 -0
  859. data/lib/studium/yaml/editor.yml +1 -0
  860. data/lib/studium/yaml/file_for_exam_questions.yml +1 -0
  861. data/lib/studium/yaml/german/README.md +2 -0
  862. data/lib/studium/yaml/german/german_to_english_month_names.yml +16 -0
  863. data/lib/studium/yaml/grouped_themes.yml +187 -0
  864. data/lib/studium/yaml/holidays.yml +176 -0
  865. data/lib/studium/yaml/important_exams.yml +194 -0
  866. data/lib/studium/yaml/inscription_dates_of_universities.yml +58 -0
  867. data/lib/studium/yaml/lecture_aliases.yml +108 -0
  868. data/lib/studium/yaml/lecture_information.yml +47783 -0
  869. data/lib/studium/yaml/log_dir.yml +1 -0
  870. data/lib/studium/yaml/main_topic.yml +11 -0
  871. data/lib/studium/yaml/max_stats.yml +227 -0
  872. data/lib/studium/yaml/mitteilungsbl/303/244tter.yml +315 -0
  873. data/lib/studium/yaml/n_total_questions.yml +1 -0
  874. data/lib/studium/yaml/participating_in_these_courses.yml +50 -0
  875. data/lib/studium/yaml/rename_konsole_tab.yml +1 -0
  876. data/lib/studium/yaml/show_topic.yml +1 -0
  877. data/lib/studium/yaml/statistics.yml +57 -0
  878. data/lib/studium/yaml/use_colours.yml +1 -0
  879. data/studium.gemspec +79 -0
  880. data/test/testing_studium.rb +244 -0
  881. data/test/testing_time_component.rb +29 -0
  882. metadata +1079 -0
@@ -0,0 +1,5 @@
1
+ # =========================================================================== #
2
+ # === Computer graphics
3
+ # =========================================================================== #
4
+
5
+ - A pixel may be displayed in 2D. How do we call this area typically? This is the <one>display grid</one>.
@@ -0,0 +1,269 @@
1
+ # =========================================================================== #
2
+ # === COMPUTER_FRAGEN
3
+ #
4
+ # Computer tag. Programming Tag. Informatik tag.
5
+ # Inf tag. Betriebssysteme tag.
6
+ # Auch technische Praxis der Informatik.
7
+ # =========================================================================== #
8
+
9
+ - The computer a compiler runs on is called ... ? The <one>host</one>.
10
+ - What is meant with <one>metadata</one>? This essentially refers to <one>data about data</one>.
11
+ - In computer science: what is meant with the <one>multilanguage model</one>? This essentially refers to use a high-level language that is slower, such as Ruby or Python, and combine it with a faster lower-level language, such as C or C++.
12
+ - In computer science: <one>IOU</one> means <two>Intersection Over Union</two>. What is its primary use case specifically? It is <one>used as a metric in image detection technology</one>.
13
+ - A typical computer system may consist of <one>which three components</one>? (1) <one>hardware</one> (2) <one>software</one> (3) <one>data</one>
14
+ - Wozu dienen <one>pipes</one>? Pipes dienen dazu, die Ausgabe eines Befehls als Eingabe für den nachfolgenden Befehl zu nutzen.
15
+ - <one>Arbeitsplatzrechner</one> bezeichnen wir wie, in der englischen Sprache? <one>Personal computer</one>.
16
+ - In the world-wide-web: <one>URI</one> stands short for ... ? <one>Uniform Resource Identifier</one>.
17
+ - The keyword <one>HETATM</one> in PDB files can be used for ...? HETATM is used to identify atoms in small molecules.
18
+ - Give another name for a <one>singleton method</one>. A: A <one>per object method</one>.
19
+ - In <one>CSS</one>: if we have something such as .h1 { color: green }, how do we call the .h1 part? This is <one>the selector</one>.
20
+ - Welche Person entwickelte die erste <one>Chiffriermaschine</one>? <one>Gottfried Wilhelm Leibniz</one>. Er beschrieb die "machina deciphratoria" genauer im Jahre <two>1688</two>.
21
+ - Wofür steht das Code Konstrukt <one>-lt</one> in <three>Bash</three>? <one>Less than</one>. []
22
+ - Was macht der unix Befehl <one>uniq</one>? Er liest eine Eingabe und filtert mehrfach vorkommende Zeilen aus der Ausgabe.
23
+ - What do we mean with the term <one>ransomware</one>? This is an app which demands money via a threat to release private information, or by wiping a device.
24
+ - Is the <one>most significant bit</one> left or right? It is <one>left</one>. []
25
+ - What are the two major guiding principles of <one>Rails</one>? (1) DRY ("Dont Repeat Yourself") (2) Convention Over Configuration
26
+ - Mit welchem Programm können wir, unter Linux, eine <one>MBR Partition</one> verändern? Mit Hilfe von <one>fdisk</one>.
27
+ - What is a <one>pointer</one>? A <one>pointer</one> is a variable that contains the address of a variable.
28
+ - Nenne eine Einschränkung von <one>rmdir()</one>, ohne Argumente. A: Es <one>kann nur auf leere Verzeichnisse angewendet werden</one>.
29
+ - Was bedeutet der Parameter <one>-m</one> für <three>mkdir</three>? Dies sind <one>MODE Berechtigungen</one> - sprich, welche Berechtigung neue Verzeichnisse haben sollen.
30
+ - Wie mache ich <one>File.exist? foo</one> in <three>bash</three>? A: <one>if [ -e foo ]</one>
31
+ - In der <one>Programmiersprache R</one>: mit welcher Funktion <three>zeichnen</three> wir? Mittels <one>plot()</one>. []
32
+ - Wie springe ich aus einem case block in Bash heraus? Mittels doppeltem Semikolon <one>;;</one>.
33
+ - How do we call the large, old network of <one>interconnected Teletypes</one>? <one>Telex</one>.
34
+ - A. W. für <one>www link</one>? <one>URL pointers</one>.
35
+ - In Linux: what does <one>cgroup</one> stand for, as abbreviation? <one>Control groups</one>. []
36
+ - Why the character <one>S</one> in the term <three>HTTPS</three>? <one>S</one> stands for <two>secure</two>. []
37
+ - For the GCC compiler: what does <one>-Wall</one> mean? It means <one>all warnings</one>.
38
+ - Wofür steht die Option <one>-p</one> an cp? Für <one>preserve</one>, also <two>dem Beibehalten gewisser Metadaten, wie der UID</two>.
39
+ - Name <one>one of the most important goals for software design</one>. A: To <one>reduce the complexity of software</one>. This will help make it easier to understand it.
40
+ - Wofür steht die Bezeichnung <one>Tux</one>? <one>Torvald's Unix</one>.
41
+ - Was ist ein <one>compiler</one>? Ein <one>Compiler</one> ist ein Übersetzer, der Source-Code in Object-Code übersetzt.
42
+ - Give another term for <one>file descriptors</one>. A: <one>Data pipes</one>.
43
+ - Name a mechanical difference between <one>Hard disc drives</one> and <one>Solid state disks</one>. A: Hard Disc drives have moving parts; SSDs don't.
44
+ - What is meant with the term <one>reproducible build</one? A build is called reproducible (or deterministic) if running it twice produces exactly the same build outputs.
45
+ - Name <one>a general trend</one> in Computer Science that may also relate to the sports-field. A: <one>Miniaturisation</one>.
46
+ - <one>UDP</one> (User Datagram Protocol) versus <one>TCP</one> - which one is more reliable? TCP - it ensures that a remote machine receives the data that was sent to it.
47
+ - In computer science: what is meant with the term <one>debugging</one>? This refers to the activity of finding errors in a program and removing ("fixing") them.
48
+ - Der Hauptprozessor eines Computers ist ... ? Die <one>CPU</one>.
49
+ - Was bedeutet <one>eine ungepufferte Ausgabe</one>? Das die <one>Zeichen sofort dargestellt werden</one>.
50
+ - Wann erschien <violet>mplayer</violet> erstmals? Im Jahre <one>2000</one>.
51
+ - In Computer science, what does "BNF" mean? <one>Backus Naur Form</one>. The ::= means that the sybmol on the left must be replaced with the expression on the right.
52
+ - Wie nennen wir Zufallszahlen, die vom Computer berechnet wurden? <royalblue>Pseudozufallszahlen</royalblue>.
53
+ - "DNS-Server" - wofür steht die Abkürzung "DNS"? <one>Domain Name Service</one>.
54
+ - Why the name "Fortran"? It stands for <one>FOrmula TRANslation</one>.
55
+ - Lochkarten wurden erstmals im Jahr 1805 verwendet ( https://de.wikipedia.org/wiki/Lochkarte#Ursprung ), von dem Franzosen "Joseph-Marie Jacquard" ( https://en.wikipedia.org/wiki/Joseph_Marie_Jacquard ). Welchen Beruf hatte er und was genau wollte er automatisieren? Er war ein "Buchbinder"; er wollte <one>die Webtechnik automatisieren</one>.
56
+ - Beim UNIX Befehle für ls, wofür steht die Option "-h"? <one>--human-readable</one>.
57
+ - Wie löschen wir eine definierte Funktion in Bash? Mittels <one>unset -f name</one>.
58
+ - Was befindet sich im "Zentrum der Informatik"? Der <one>Algorithmus</one>.
59
+ - Die Abkürzung "Intel" stammte von ...? <one>INTegrated ELectronics</one>.
60
+ - Wie werden IPv6-Adressen notiert? <one>Hexadezimal</one>, ahnlich wie MAC-Adressen.
61
+ - What may be the most prevalent, non-hardware related, logical storage unit on a computer system? The <one>file</one>.
62
+ - Name an <one>object modeling methodology</one>. A: The Unified Modeling Language (<one>UML</one>).
63
+ - Was ist ein Petabyte? 10 ** 15 bytes.
64
+ - In computer terminology, what is meant with the term <one>idempotence</one>? This refers to an action that should deliver identical results if it is repeated. In other words, it will deliver reproducible results.
65
+ - What is meant with an <one>event-driven programming model</one>? This is, such as for the GUI toolkit called GTK+, where GTK+ waits in the main loop for input-events from the user, such as clicking a button.
66
+ - When was the <one>World Wide Web</one> "born"? In <violet>1989</violet>.
67
+ - In a shell terminal, how to restore the default after using colours? Use "\e[0m".
68
+ - On modern computer-processors, are multiplications or divisions cheaper? "Multiplications" - they are cheaper than divisions.
69
+ - Was bedeutet "$5 - $4" in awk? Ziehe den Wert in der 5. Spalte von dem Wert in der 4. Spalte ab.
70
+ - Name a tool with which we can read subtitles out of images. A: "Tesseract". It can recognize the text in images, by using "Optical Character Recognition" (OCR).
71
+ - Which editor does "Linus Torvalds" normally use? He uses an editor called "Micro-emacs".
72
+ - In Computer terminology, what means "DBMS"? Database management system.
73
+ - What is the purpose of "/usr/libexec"? This directory includes "internal binaries" that are not intended to be executed directly by users or shell scripts.
74
+ - What do we mean with "vertical scaling" in the computer fields? Vertical scaling basically means "the increase of server power".
75
+ - Warum heissen "relative Pfade" unter Linux so? Sie geben den Pfad "relativ zum aktuellen Arbeitsverzeichnis" (PWD) an.
76
+ - What does the following mean: The ability to introspect? This means "to examine aspects of a program from within the program itself".
77
+ - In welchem Land wurde "die erste mechanische Rechenhilfe" entiwckelt? In China, mit "suanpan". URL: https://en.wikipedia.org/wiki/Suanpan
78
+ - "Konrad Zuse" konstruierte 1941 mit ... den ersten voll funktionsfähigen Rechner. A: "Z3". URL: https://en.wikipedia.org/wiki/Z3_%28computer%29
79
+ - What is meant with the phrase "web scraping"? Web scraping is "a programmatic method of extracting data from websites".
80
+ - What does it mean when we say that an "I/O stream may be duplexed"? That it is "bidirectional".
81
+ - A number one followed by one hundred zeros is known by what name? "Googol".
82
+ - Was meinen wir mit "LIFO"? Last-In-First-Out - dies bedeutet das wir nur auf das Element zugreifen, das zuletzt eingefügt wurde.
83
+ - Wie übersetzen wir "Stack", ins Deutsche? "Stapel".
84
+ - The abbreviation I/O stands for ... ? "input/output". URL: https://en.wikipedia.org/wiki/Input/output
85
+ - What do we mean with the word "chroot", which is also an old UNIX command? "Change root".
86
+ - Was meinen wir mit "Rekursion"? Dies ist der Aufruf einer Funktion aus sich selbst heraus; die Funktion ruft sich also selbst erneut auf.
87
+ - Most information is entered into computers through ... which three different means? (1) "keyboards" (2) "touch screens" (3) "mouse devices"
88
+ - Wie löschen wir gesetzte Variablen in einer Shell wie Bash wieder? Mittels "unset".
89
+ - 1965 begann General Electric und das MIT mit der Arbeit an einem Betriebssystem für Großrechner namens MULTICS. Was heisst MULTICS? "Multiplexed Information and Computing Service".
90
+ - The smallest individual unit of a program written in any language is called ... ? A "token".
91
+ - How many websites did exist in the year "1993"? About "26.000".
92
+ - In der Informatik, was meinen wir mit einer "sicheren Nachricht"? Wenn die Nachricht unversehrt - und ausschließlich - beim vorgesehenen Empfänger ankommt.
93
+ - How to exit from emacs? "C-x C-c".
94
+ - What was the first personal computer? The "Altair 8800". URL: https://en.wikipedia.org/wiki/Altair_8800
95
+ - Wichtigste Strategie bei der praktischen Implementierung von "divide et impera"? Rekursion.
96
+ - Ein Algorithmus kann graphisch in Form ... dargestellt werden. A: In Form eines Flussdiagramms.
97
+ - AMD is using the APU in its processors. What does APU stand for? Accelerated Processing Unit.
98
+ - What is the most basic language of a computer? The machine language.
99
+ - Was heisst "RAM"? Random Access Memory.
100
+ - A sequence of symbols is called ...? A String.
101
+ - What does "LISP" stand for? "LISt Processing".
102
+ - What is Google's "Project Ocean"? This project, started in 2002, is to scan in all available books worldwide.
103
+ - What is a "kibibyte"? This is 1024.
104
+ - Which computer was the first to have operated in real time? The "Whirlwind computer".
105
+ - The "Whirlwind computer" was developed where? At the "Massachusetts Institute of Technology" (MIT).
106
+ - What is a "tuple"? This is a finite, ordered list of elements.
107
+ - What is a "partial function"? When a function is not defined for every element of the input set.
108
+ - Wieviele verschiedene Variablen kennt eine Shell wie Bash prinzipiell? (1) lokale Variablen (2) globale Variablen (3) exportierte Variablen
109
+ - When was the "ARPANET" created? In 1969. URL: https://en.wikipedia.org/wiki/ARPANET
110
+ - What is the "Singleton design pattern"? This is that a class has only one instance. One global point of access to it is provided.
111
+ - In Computer technology, what does "RAID" stand for? Redundant array of independent disks.
112
+ - Donald Knuth said that optimizations should be used when there is a "significant benefit". By how much percent should this be at least? By 12%.
113
+ - An exit code on *nix can have what values? It is a numeric value between 0 and 255.
114
+ - In Computing, what does a "Window Manager" do? A Window Manager manages the placement of application windows on the screen.
115
+ - In computer parlance, what do we mean with the term "serialization"? Serialization is the process of converting application data to another format (usually binary), suitable for transportation e. g. over a network.- In computer parlance, what do we mean with the term "serialization"? Serialization is the process of converting application data to another format (usually binary), suitable for transportation e. g. over a network.
116
+ - What is the chief distinction between HTTP and HTTPS? HTTPS uses TCP Port 443, HTTP uses TCP port 80.
117
+ - On Linux, the static .a files contain which two components? (1) one or more .o files (2) an index of names
118
+ - What is the most important question for video codecs? quality.
119
+ - Nenne einen allgemeinen Unterschied zwischen Linux-Dateisystemen und Windows-Dateisysteme. A: Linux-Dateisysteme können an beliebiger Stelle eingebunden werden.
120
+ - In Web Terminology, what do we mean with "RAD"? Rapid application development.
121
+ - What is the biggest problem with HTTP? It erodes.
122
+ - If we summarize the Unix Philosophy with just one acronym, what would we call it? "KISS" - Keep it simple.
123
+ - Common jquery syntax? $(selector).action()
124
+ - Compiling to a binary is a two-step process. Which two steps are used? (1) the actual compiling (2) the linking
125
+ - What do we commonly mean with "stderr"? These are error messages output to the screen.
126
+ - How do we call "nil" in PHP? NULL.
127
+ - Nenne eine Limitation des Linux Befehl rmdir(). A: rmdir() kann nur auf leere Verzeichnisse angewendet werden.
128
+ - What does "tty" stand for in Computer-Terminology? TeleTYpewriter.
129
+ - In C++, how do we call defined paramenters in a function? "formal parameters"
130
+ - What is a "trigraph" in C++? This is a of three characters, that represent a single character. The sequence always starts with two question marks.
131
+ - Die cron Syntax hat 5 Einträge vor dem Befehl der ausgeführt werden soll. Was bedeuten diese Einträge? (1) Minuten (2) Stunden (3) Tag (4) Monat (5) Wochentag URL: https://en.wikipedia.org/wiki/Cron#Format
132
+ - What can we assume about a code based on the alphabet? The most frequent letter is e, which may be reflected by number frequency.
133
+ - How do we denote an "id selector" in CSS? We can use the # character.
134
+ - What does "S-expression" mean? Symbolic expression.
135
+ - What is the purpose of initramfs? Its purpose is to "mount the root filesystem".
136
+ - In computer science, what means SIMD and what means MIMD? (1) SIMD: single instruction multiple data (2) MIMD: multiple instruction multiple data
137
+ - What is "Memoization"? Memoization is an old and well-known technique to improve the performance of a program. We will store the result of function calls so that repeated calls to the same function with previously processed parameters can be fetched from memory, instead of being recalculated.
138
+ - Who developed the .m4v video container format? Apple.
139
+ - Who was the founding father of "Cybernetics"? Norbert Wiener.
140
+ - What is "Cybernetics"? This is the study of communication and control, typically involving regulatory feedback, in living beings and machines.
141
+ - What is cbind() in R doing? It forms matrices by binding them together column-wise.
142
+ - Wozu dienst "sysctl" unter Linux? Damit kann man die Kernel Parameter während der Laufzeit verändern.
143
+ - Was sind "stateless Addressen" in IPv6? Wenn der Router nicht weiss, welche Adresse(n) der Client generiert.
144
+ - Andere Bezeichnung für "sticky bit" unter Linux? "restricted deletion"
145
+ - Was ist "GECOS" in der Datei /etc/passwd? Ein Kommentarfeld.
146
+ - Welche vier verschiedene Arten von Adressen können wir unterscheiden? (1) unicast (2) broadcast (3) multicast (4) anycast
147
+ - Wie erkennen wir einen "absoluten Pfad" in Linux? Absolute Pfade beginnen immer mit einem "/".
148
+ - Loopback Addresse unter IPv4? 127.0.0.1.
149
+ - Bei IPv6, was heisst "MTU"? Maximum Transmission Units.
150
+ - Wann wurde IPv6 erstmals beschrieben? 1995.
151
+ - Was ist das Problem bei IPv4? 2 ** 32 Adressen sind nicht genug.
152
+ - Wie können wir die Addresse automatisch konfigurieren, unter Linux? Mittels dhclient.
153
+ - Nenne ein Programm das sich nicht an FHS hält. A: udev
154
+ - Andere Bezeichnung für Linux "/proc/"? "illusionary filesystem"
155
+ - Wann veröffentlichte Linus Torvalds die erste Version des Linux Kernels? 1991.
156
+ - Wann entstand die erste halbwegs benutzbare Linux-Distribution? Dies war "SLS", und zwar 1992.
157
+ - Was bedeutet "Time-Sharing"? Mehrere Anwender können gleichzeitig auf derselben Maschine arbeiten.
158
+ - Wofür steht die Abkürzung "ssh"? secure shell URL: https://en.wikipedia.org/wiki/Secure_Shell
159
+ - Was heisst "unixartig"? (1) GNU/Linux (2) BSD Systeme
160
+ - In einem UNIX-Computersystem, wofür steht die Abkürzung "PPID"? Parent PID.
161
+ - Name the 4 relational operators in C. A: (1) < (2) <= (3) > (4) >=
162
+ - Was bedeutet "chmod a+r foo"? Dies gibt allen Anwendern Leserechte für die Datei foo.
163
+ - How do we grab user input in C? We can use the scanf() function to read in a value.
164
+ - An exit status of 0 indicates what in a shell script? Success - no error occurred.
165
+ - Was bedeutet ein Eintrag x in der Datei /etc/passwd? Das das Passwort dieses Nutzers in der /etc/shadow Datei abgelegt ist.
166
+ - Auf Linux, warum der Name "/dev/"? Steht für "devices".
167
+ - Man kann in bash Befehle ausführen. In welcher Variablen wird der Rückggabewert gespeichert? A: In der $? Variablen.
168
+ - For HTML Hyperlinks respectively CSS Links, which order should we use? The "LVHA" order. This means: link-visited-hover-active.
169
+ - When was "Linux" born? In 25.08.1991.
170
+ - When was "Unix" born? In 1969. See URL: https://en.wikipedia.org/wiki/Unix
171
+ - What is the general jQuery syntax? $(selector).action()
172
+ - What does "SIGHUP" mean? Hangup - the process will be terminated.
173
+ - Nenne 3 Programme unter Linux, mit deren Hilfe wir alle laufende Prozesse angezeigt bekommen. A: (1) ps (2) htop (3) pstree
174
+ - Linux verwendet welches Format für Binärprogramme? ELF.
175
+ - Neu angelegte Dateien auf Linux haben standardgemäß welche Berechtigung? 666 ("the sign of the devil"; also rw-rw-rw)
176
+ - Hardlinks sind nicht Softlinks. Es gibt einen Unterschied in bezug auf die Berechtigungen. Welchen? Softlinks haben keine eigenen Berechtigungen; es zählen nur die Berechtigungen der Datei, auf die verwiesen wird.
177
+ - Nenne ein Verzeichnis in Linux, das normalerweise das sticky bit gesetzt hat. A: Das /tmp Verzeichnis.
178
+ - Was bedeutet es wenn ein Verzeichnis das "sticky bit" (t) gesetzt haben? Nutzer können nur dann Dateien in einem Verzeichnis löschen/umbennenen/verschieben, wenn sie Besitzer dieser Datei sind.
179
+ - Beim Programm chmod, was ist der Unterschied zwischen "u+s" und "u-s"? "u+s" fügt permissions hinzu, "u-s" entfernt diese.
180
+ - Heutzutage (2014) gibt es im wesentlichen welche 2 möglichen Partitionslayouts? (1) MBR-Partitionen (2) GPT-Partitionen
181
+ - Wofür steht [^abc]? Für alle Zeichen außer a, b oder c.
182
+ - In Bash, was ist ein "Intervall"? Ein Intervall enthält einen String an Zeichen wie zum Beispiel [abcz]. Dies steht für a, b, c, z.
183
+ - Is the Linux program "less" or "more" more powerful? less is, because it allows backward movement in the file as well as forward movement.
184
+ - Das Programm chmod erlaubt symbolische Notationen in der Form {a,u,g,o}. Wofür steht a,u,g,o? a: all, u: user, g: group, o: others
185
+ - Eine Oktalziffern, also von 0 bis 7, benötigt wieviele Bit? 3 Bit.
186
+ - In UNIX, wieviele Arten von Zugriffsrechten gibt es? 3. read, write, execute (4,2,1)
187
+ - Was bedeutet "chmod root: /etc/fobar"? Dies ändert nur den Besitzer auf root, und lässt die Gruppe unverändert.
188
+ - Wie nennen wir unter Linux einen Symlink, der ins Leere geht? "dangling link"
189
+ - UNIX verwendet sogenannte "inodes". Wofür steht das Wort "inodes"? "index nodes"
190
+ - Unter Linux, wozu verwenden wir das Programm "du"? Wir können damit die Verwendung und Grösse des Filesystems verfolgen und abschätzen.
191
+ - Die Datei /etc/fstab enthält wieviele Felder? 6.
192
+ - In the programming language C, how do we define a "function pointer"? A: These are names encased in () parenthesis, with a leading pointer marker *. Example: "int (*say_hello)(char *name);"
193
+ - Was macht "xargs"? xargs liest Eingaben von stdin oder einer Datei und übergibt diese Eingaben an einen Befehl.
194
+ - Jedes Programm hat drei Grundlegende streams, von denen es lesen bzw. zu denen es schreiben kann. Wie kann man sich dies merken? in-out-err
195
+ - A. W. für "zombie process"? defunct process.
196
+ - Wie nennen wir es wenn eine Shell mehrere Befehle parallel ausführt? "jobs"
197
+ - Wie nennen wir in einem Kernel die "Ausführung mehrerer Prozesse", auf Englisch? multitasking.
198
+ - Wie erhalten wir eine Liste aller in einer Bash-Shell definierten Funktionen? typeset -f.
199
+ - In bash, was heisst $IFS? Internal Field Seperator.
200
+ - Was macht der coreutils Befehl "seq"? Der druckt eine Reihe von Nummern aus.
201
+ - Was gibt "$$" in bash wieder? Die PID der Shell.
202
+ - What do we yield through this here: ls $( echo /usr /tmp ) ? We will obtain the content of /usr and of /tmp.
203
+ - Was enthält das Verzeichnis "/var/" normalerweise auf Linux? Laufzeitdaten.
204
+ - Eine Shell wie bash has 3 Befehlstypen. Wie finden wir heraus, welcher Typ ein Befehl ist? Mittels `which`.
205
+ - In einer Shell, welche 3 wesentliche Befehlstypen gibt es? (1) Ausführbare Programme (Binaries, Skripte und so weiter) (2) Builtins/Funktionen (3) Aliases
206
+ - Wann wurde die erste Version des Linux Kernels veröffentlicht? In 1991.
207
+ - What is a "quine" in programming? A program that outputs its own source code.
208
+ - In computer technology, what is the "heartbleed bug"? This is a bug in OpenSSL, which came through the heartbeat extension for the Transport Layer Security ("TLS").
209
+ - In Linux, wie erstellen wir "named pipes"? Mittels mkfifo.
210
+ - What means "multilib 64bit Linux system"? This is a system capable of running 64bit as well as 32bit software.
211
+ - On Linux, who is the "grandparent of all processes"? The init process.
212
+ - What is "lexing"? To transform a stream of characters into a stream of tokens.
213
+ - What is an "auonen"? This is a self-operating machine.
214
+ - In the programming language C, how do we indicate success? By using the return value of 0.
215
+ - Name one software package where the "Backus-Naur Form" is used. A: GNU bison.
216
+ - Give one example for a "context-free grammer" that is used in computer science. A: The "BNF" (Backus-Naur Form).
217
+ - What does the prefix gibi mean? Multiplication by 1024 ** 3.
218
+ - Why does "make" support a variable called DESTDIR? This variable controls where the "make install" step puts the files.
219
+ - Wofür steht die Abkürzung im .star Format? STAR (Self-defining Text Archiving and Retrieval) format.
220
+ - In bash, wie setzen wir eine Variable? VARIABLE="abc"
221
+ - Was machen "Pipes" in UNIX? Sie verbinden den Output/Ausgabe (stdout) eines Befehls mit dem Input/Eingabe (stdin) eines anderen Befehls.
222
+ - Wozu dient eine Subshell in bash? Eine Subshell dient dazu, einen oder mehrere Befehle in einem bash-Unterprozess auszuführen und deren Rückgabe in einer Variablen zu speichern. Die Syntax hierzu ist $(...)
223
+ - Was ist der Unterschied zwischen HTTP GET und HTTP POST? (1) Get: request data from a specified resource (2) POST: submit data to be processed to a specified resource
224
+ - In UNIX, wie mache ich eine Datei ausführbar? Mittels "chmod +x"
225
+ - Why are Floats not accurate? Float numbers cannot store decimal numbers precisely, as a Float is stored internally in a binary number format and always needs to convert from decimal to binary and vice versa.
226
+ - Wann wurde das Bit als Einheit der Information eingeführt? 1948. URL: https://en.wikipedia.org/wiki/Bit#History
227
+ - The word "bit" comes from? "binary digit"
228
+ - How to remember how to reboot under Linux when it freezes? Raising Ermines Is So Utterly Beneficial.
229
+ - When did CSS2 appear? In 1998.
230
+ - Unix has standard files open when a program starts, called 0, 1 and 2. What do they mean? In - Out - Error.
231
+ - ASCII encoding is 8-bit? No, it is a 7-bit encoding.
232
+ - Is printf() a part of the C programming language? No.
233
+ - How to query data from a SQL-Table in general? Use the SELECT statement.
234
+ - HTTP knows the verb "POST". Give the classical example for POST here. A: The login formular.
235
+ - What is the maximum length of an URL? 2048.
236
+ - In C++, kann eine Funktion mehrere Werte mittels return zurückgeben? Nein.
237
+ - I want to send binary data. Should I use GET or POST? POST. Get restricts input to ascii only!
238
+ - In C, what is the address-of operator? &.
239
+ - In Computer-Terminology, what means "CRUD"? create, read, update, destroy.
240
+ - Wie unterscheidet sich die Darstellung von Oktal-Konstanten von Hexadezimal-Konstanten? A: Oktal beginnt mit 0, Hexadezimal mit 0x
241
+ - Eine "Complex number" besteht aus welchen Teilen? Zwei floating numbers. Dem "real" und dem "imaginary" part.
242
+ - In CRUD, we have the action "destroy". What alias could we use for that action? Delete.
243
+ - Rails uses which three default environments? (1) development (2) testing (3) production
244
+ - Was ist die Aufgabe von "Active Record"? Active Record speichert Objekte in eine Datenbank.
245
+ - In Rails, what is the purpose of a controller? It is to receive specific requests for an application.
246
+ - A. W. für "metaprogramming"? Writing code that writes code.
247
+ - W. h. "chroot"? change root.
248
+ - Where does a C program begin its execution? At its main() function.
249
+ - What exactly means "non volatile data store" in informatics? The register will hold state in the absence of energy.
250
+ - A. W. für "exponential function"? First-order function.
251
+ - The first standard for ANSI escape sequences was ECMA-48. When was it adopted first? In 1976.
252
+ - Which three modes does VIM have? (1) Command mode (2) Insert mode (3) Visual mode
253
+ - Was beachten wir bei sscanf? Sscanf hat immer ein & vor dem Variablennamen. Zum Beispiel: sscanf("%f", &var);
254
+ - Was war Allan Turings bedeutendste Erkenntnis? Das Concept of Universal Computing.
255
+ - The shell prompt is stored in which variable? PS1.
256
+ - Unterscheide einen "scanner" von einem "parser". A: The scanner is supposed to recognize tokens, while the parser is supposed to process the resulting series of tokens.
257
+ - Was bedeutet der Pipe character | in einer Regex? Oder (Or).
258
+ - A. W. für "Lambda Functions"? Anonymous functions.
259
+ - Die EDV arbeitet nach dem EVA-Prinzip. Was heisst dies EVA? Eingabe, Verarbeitung, Ausgabe.
260
+ - Wie heisst der Linux Kernel Software Interrupt? softirq.
261
+ - Welche 5 Methoden hat REST? GET PUT HEAD DELETE POST.
262
+ - What is the problem of integer division? Information is lost whenever a fraction is dropped. 5/3 will result in 1.
263
+ - Clusters in Genen sind wie ... in Programmiersprachen? A: Funktionen bzw. Methoden.
264
+ - In dem Konstrukt "int *foo = &bar;", was bedeutet das &? Adress of Operator.
265
+ - Was enthält ein "unsigned integer"? Nur positive Werte.
266
+ - Welche 5 Datentypen hat C++? bool x, char x, int x, float x, double x.
267
+ - Was ist die Range eines Data type? Die Werte die er haben kann.
268
+ - Was ist das besondere an einem "signed integer"? Diese Variable kann sowohl negative als auch positive Nummern enthalten.
269
+ - When was the program "make" created? In April 1976, by Stuart Feldman.
@@ -0,0 +1,25 @@
1
+ # =========================================================================== #
2
+ # === CRISPR
3
+ #
4
+ # Everything about CRISPR.
5
+ # =========================================================================== #
6
+
7
+ - The <one>nuclease-deficient mutant dCas9</one> was isolated from which bacterium? <one>Streptococcus pyogenes</one>. []
8
+ - Name a "nuclease-deficient mutant of Cas9". A: <one>dCas9</one>.
9
+ - The CRISPR/Cas system cleaves and incorporates foreign DNA/RNA segments into the genomic region called ... ? The <one>CRISPR array</one>.
10
+ - What does the abbreviation "tracrRNA" stand for? This is "trans-activating CRISPR RNA"
11
+ - Why is "AID-based CRISPR/Cas9" considered so useful? Because we can "modify genomes without the use of a template DNA".
12
+ - Alexander Bolotin discoverd the Streptococcus thermophilus Cas9 protein. What does the abbreviation "Cas" stand for? "Crispr associated protein".
13
+ - Ist die "PAM-Sequenz" Teil der Zielerkennenden Sequenz? Nein.
14
+ - Was meinen wir mit "Mosaizismus bei CRISPR"? Das es ungleiche Genome gibt in verschiedenen Zellen; also "heterogene editing-Ergebnisse".
15
+ - Wie können wir "off-target" Ereignisse bei CRISPR detektieren? Wir können "deep sequencing" verwenden.
16
+ - A requirement for recognition of the target sequence in CRISPR/Cas9 is the presence of ... ? An "adjacent PAM sequence" ("protospacer adjacent motif"; 5'-NGG-3' in case of Cas9, but different for other proteins).
17
+ - "CRISPR" stands for? "Clustered Regularly Interspaced Short Palindromic Repeats".
18
+ - Was meinen wir mit "dead Cas9"? Dies sind "mutierte Cas9-Proteine", die "keine DSBs mehr durchführen können".
19
+ - The "Cas9 endonuclease" has how many components? Four.
20
+ - The "Cas9 endonuclease" has four components. How many small RNA molecules are included there? Four.
21
+ - What is meant with "crRNA"? This is simply "CRISPR RNA".
22
+ - How do we call "programmable gene splicing" through CRISPR? "CRISPR-SKIP".
23
+ - What is "CRISPR-SKIP" famous for? It is famous for "programmable gene splicing with single base editors".
24
+ - What is meant with "CRISPR-STOP"? This is a technique for truncating proteins by "introducing stop codons" in gene coding sequences, using "C -> T" base editing.
25
+ - Are the "spacer" or the "repeats" in the CRISPR more important? The "spacer region" is more important.
@@ -0,0 +1,37 @@
1
+ # =========================================================================== #
2
+ # === Cyanobakterien
3
+ #
4
+ # All about cyanobacteria.
5
+ # =========================================================================== #
6
+
7
+ - Nenne zwei verschiedene Cyanobakteriengruppen die Stickstofffixierung betreiben. A: (1) "Anabena" (2) "Nostoc"
8
+ - Can cyanobacteria fix N2? Yes; the water fern Azolla harbors a species of heterocystous N2-fixing cyanobacteria.
9
+ - Wie wachsen Cyanobakterien? Sie bilden einen Biofilm, fangen Sedimentpartikel ein und wachsen dadurch lagenweise.
10
+ - Name a cyanobacterium that can create "heterocysts". A: "Anabaena".
11
+ - Name a "structural trait of cyanobacteria". A: "Gas vesicles".
12
+ - Which pigment provides the colours blue to cyanobacteria? Phycocyanin.
13
+ - Heterocysts lack which photosynthetic photosystem? II.
14
+ - "Baeozyten" sind vergleichbar mit ... ? Den "Endosporen der Bakterien".
15
+ - Die "Nanocyten" unter den Cyanobakterien gehören zu welcher Sektion? Sektion II.
16
+ - Why do cyanobacteria have cyanophycin? It is a nitrogen-storage product. It is broken down if nitrogen becomes deficient in the environment.
17
+ - Was meinen wir mit einer "positiv phototaktischen" Bewegung bei Cyanobakterien? Das sie sich zur Lichtquelle hinbewegen.
18
+ - Einige Cyanobakterien können eine anoxygene Photosynthese durchführen. Welche Substanz dient hierbai als "Reduktionsmittel"? Schwefelwasserstoff.
19
+ - Produzieren Cyanobakterien Toxine? Ja.
20
+ - Cyanobakterien sind gram-negativ oder gram-positiv? Sie sind gram-negativ, wie E. coli.
21
+ - Was sind "Akineten"? Dies sind "große Überdauerungszellen vieler Cyanobakterien".
22
+ - Akineten entstehen stets aus ... ? Einer vegetativen Zelle.
23
+ - Referenzstammsammlung Cyanobakterien ist in welchem Institut zu finden? Im "Pasteur Culture Collection".
24
+ - Nenne eine Methode wie man Cyanobakterien isolieren kann. A: Durch "Ausstreichen auf Agarplatten".
25
+ - Fixiert Synechocystis Stickstoff? Nein.
26
+ - Welches Cyanobakterium war das erste, das transformiert wurde? Synechocystis.
27
+ - Sind filamentöse Cyanobakterien oder unizelluläre Cyanobakterien schneller? Filamentöse Cyanobakterien.
28
+ - Sind die "Baeozyten" von einer Gallerte umgeben? Ja.
29
+ - "Spirulina" gehört zu welcher Sektion der Cyanobakterien? Sektion III.
30
+ - Welche Cyanobakterien-Art wird von "Zwergflamingos" gerne gegessen? Arthrospira fusiformis.
31
+ - Was ist ein "Proheterocyst"? Ein Vorläufer eines Heterozysten.
32
+ - Welche Substanz liefert ein Heterozyst an die Nachbarzellen? Glutamin.
33
+ - Die vegetative Zelle liefert welche Substanz in einen Heterozysten? Saccharose.
34
+ - Welches Cyanobakterium bildet regelmässig Algenblüten in der Ostsee? Nodularia.
35
+ - How do we call the short fragments of filamentous cyanobacteria that break away? Hormogonien. URL: http://www.spektrum.de/lexikon/biologie/hormogonien/32612
36
+ - Cyanobacteria produce which chlorophyll? Chlorophyll a.
37
+ - What is "cyanophycin"? This is a Copolymer o aspartic acid and arginine, in some Cyanobacteria.
@@ -0,0 +1,506 @@
1
+ # =========================================================================== #
2
+ # === CYTOGENETIK Tag
3
+ #
4
+ # Cyto Tag. Cytotag. Chromosom tag. Cytogen tag. Cytotag.
5
+ # Cytobio tag. Chromosomenbiologie tag. Chromo tag. Chrom tag.
6
+ # Humangenetik tag. Auch Zellkernmorphologie und Mitosis.
7
+ # =========================================================================== #
8
+
9
+ - <one>Deletion</one> or <one>Duplication</one> of <three>centromeric regions</three> can lead to ...? A: It can lead to "acentric" and <one>dicentric chromosomes</one>.
10
+ - Was sind sogenannte <one>Puffs</one>? Das sind Bereiche aufgelockerten Chromatins in Dipteren, wo eine hohe Transkriptionsaktivität herrscht.
11
+ - In cytogenetics we have the meiosis-specific protein <one>Moa1</one>. Where can we find Moa1? Moa1 localizes exclusively to the central core of the centromere. This region binds meiotic Rec8-containing cohesin complexes.
12
+ - Give one famous example for a "CD clan cysteine protease". A: <one>Separase</one>.
13
+ - What is a <one>chiasma</one>? This is the point where two homologous, non-sister chromatids exchange genetic material during chromosomal crossover, during meiosis.
14
+ - How are the terms <one>metacentric</one> to <one>telocentric</one> determined? By the <one>p</one>/<one>q-Quotient</one>, and mapping to the published number.
15
+ - Where exactly do we find the <one>Xic-center</one>? On the proximal end of the p arm in humans.
16
+ - In cytogenetics: why were the banding and painting patterns historically so important? We could use them to routinely identify each of the chromosome.
17
+ - Inside of a S. cerevisiae cell, where can we find telomeres preferentially? At the <one>nuclear periphery</one>.
18
+ - Wie entsteht der <one>Notch phenotype</one>? Durch eine <one>chromosomale Deletion</one>, die das Notch-Gen inkludiert.
19
+ - Wo finde ich die <one>PAR Region</one>? An den beiden Enden des humanen Y-Chromosoms.
20
+ - Welche evolutionären Vorteil mag <one>Polyploidisierung</one> haben? Es überwindet die "Hybridsterilität", indem jedes Chromosom einen identischen Paarungspartner bekommt.
21
+ - What is <one>nucleolar dominance</one>? <one>Nucleolar dominance</one> is <two>the selective silencing of one of the parental rRNA gene loci</two> in an <three>interspecific hybrid</three> or an <three>allopolyploid</three>.
22
+ - <one>Megakaryocytes</one> sind polyploid. Was ist der biologische Grund dahinter? Megakaryocytes müssen viele <one>platelets</one> (Blutplättchen) produzieren.
23
+ - A. W. für <one>Kinetochor</one>? <one>Trilaminare Struktur</one>.
24
+ - Welche Pflanze ist <one>hexaploid</one> und was heisst das überhaupt? Sechs Chromosomensets, zum Beispiel Weizen (wheat), 6n.
25
+ - A. W. für <one>Double Holliday Junctions</one>? <one>Szostak Model</one>.
26
+ - A. W. für ein <one>Barr-Körperchen</one>? <one>Geschlechtschromatin-Körperchen</one>.
27
+ - Was heisst <one>Haplo-IV</one>? Dies ist bei Drosophila wenn eine Fliege monosom ist für das kleine Chromosom 4.
28
+ - Was zeigte <one>Carl Rabl</one> im Jahre <three>1885</three>? Das auch in der Interphase die Gene auf Chromosomen "aufgefädelt" bleiben (="Chromosomenindividualität"), und dass die Chromosomen oft eine "nicht-zufällige Orientierung" einnehmen.
29
+ - Nenne 3 verschiedene Bindungsmöglichkeiten der <one>Kinetochormikrotubuli</one>. A: (1) merotelisch (2) syntelisch (3) <one>amphitelisch</one>
30
+ - Was sind die <one>Diplohaplonten</one>? Dies sind Lebewesen, bei denen abwechselnd diploide und haploide Generationen auftreten.
31
+ - A. W. für t(8;14) in der Genetik? <one>Burkitt-Lymphom</one>.
32
+ - Which <one>types of endopolyploidy</one> can we distinguish? (1) <one>Endoreduplication</one> (2) <one>Endomitosis</one>
33
+ - Was passiert bei <one>double strand breakage</one> und der Entstehung der <three>Double Holliday Junctions</three>? Das 3 Strich Ende wird abgebaut und das längere 5 Strich Ende greift das sister chromatid an. Eine Replikationsgabel bildet sich und nähert sich der beschädigten DNA. Der längere 5 Strich Antisense Strang greift den Sense-Strang an.
34
+ - How do <one>compound chromosomes</one> differ from <three>translocations</three>? (1) Compound chromosomes: involve fusions of homologous chromosomes (2) <one>Translocations</one>: <two>involve fusions between nonhomologous chromosomes</two>
35
+ - Nenne einen wesentlichen <one>Vorteil polyploider Pflanzen</one> und gib ein konkretes Beispiel. A: Sie sind grösser (der Kulturweizen, "Triticum aestivum", auf englisch "common wheat", ist hexaploid und entstand durch die Bastardisierung von drei Arten -> Einkorn, Wildgras, Wildweizen)
36
+ - Die <one>Anaphasebewegung</one> besteht aus welchen zwei Bewegungen? A: (1) Anaphase A-> der Verkürzung der Kinetochor MTs (2) Anaphase B-> dem Auseinanderweichen der Spindelpole
37
+ - Wann wurde der Farbstoff <one>Quinacrin</one> eingeführt? <one>1970</one>.
38
+ - In cytogenetics: what exactly is the <one>terminal deletion</one>? A deletion that occurs towards the end of a chromosome.
39
+ - For the topic of <one>Mosaics and chimeras</one>, give one example. A: <one>Bilateral gynandromorphs</one>.
40
+ - Warum braucht es mindestens ein Crossover in der Meiose? <one>Um ein Bivalent zu trennen</one> ist immer ein Crossover notwendig, damit homologe Chromosomen voneinander segregieren können.
41
+ - Beim <one>Philadelphia-Chromosom</one> gibt es das wichtige <three>c-ABL Gen</three>. Wofür kodiert das? Es kodiert für eine "Proteinkinase", die eine Rolle beim Transfer von Wachstumsfaktor-Signalen aus dem Gewebe in den Nukleus spielt.
42
+ - Welches Protein schützt <one>centromerisches Cohesin</one>? <one>Sgo1</one>. []
43
+ - If a <one>2n = 6</one> becomes "3n = 9", how do we call it? <one>Autotriploid</one>, a polyploid.
44
+ - What is a <one>meiotic drive</one>? A type of "intragenomic conflict", whereby a loci within a genome will manipulate the meiosis to favour the transmission of one alle over another, regardless of its phenotypic expression.
45
+ - In <one>Endocycling</one>: what is omitted altogether? <one>Mitosis</one>.
46
+ - From the point of view of cytogenetics: what can a <one>translocation</one> achieve? It can physically link genes that were formerly on different chromosomes.
47
+ - Warum ist das Genom des <one>bread wheat</one> (<three>Triticum aestivum</three>) so eindrucksvoll? Es ist hexaploid und ist 5x so gross wie das menschliche Genom - es hat 17 Gb.
48
+ - Worauf beruht die <one>Bar-Mutation</one> bei <three>Drosophila melanogaster</three>? Auf einer kleinen Duplikation in der Region 16A des X-Chromosoms.
49
+ - Rings of the protein complex <one>cohesin</one> are often found in contact with ... which proteins? The <one>CTCF proteins</one>.
50
+ - Im Menschen: sind <one>autosomale Monosomien</one> lebensfähig? Nein.
51
+ - Beim Menschen: die <one>häufigste autosomale Triso­mie bei Fehlgeburten</one> ist Trisomie ... ? <one>Trisomie 16</one>.
52
+ - Beim Menschen: wieviel Prozent, in etwa, aller Neugeborenen weisen eine chromosomale Veränderung auf? Etwa <one>1,7–3,1%</one>.
53
+ - Wir vergleichen <one>kleine und grosse Chromosomen</one>. Wo im <two>Nucleus</two> mögen wir die kleinen Chromosomen vor allem finden? (1) <one>Kleine Chromosomen</one> sind eher im Zentrum. (2) <one>Grosse Chromosomen</one> vor allem am nukleären Rand.
54
+ - Was besagt das <one>C-Value Paradoxon</one>? Die DNA Menge korreliert nicht mit der Zahl der Gene und sie ist kein zuverlässiger Indikator für die Komplexität des Organismus.
55
+ - Do <one>Metaphase chromosomes</one> require histones for their structure? Not necessarily. []
56
+ - Das <one>1957</one> durchgeführte <two>Taylor-Woods-Hughes Experiment</two> bewies das eine Chromatide ein einzelnes DNA Molekül enthält. Wie ging man bei diesem Experiment vor? Man markierte beide Chromatide durch den Einbau radioaktiven Thymidins (3H). Während eines Replikationsschrittes, liegt nach einer weiteren Replikation - ohne markierte Base - wieder eine unmarkierte Chromatide vor. Bestünde nun eine Chromatide aus nur einem DNA Bündel, wäre die Wahrscheinlichkeit, dass sich alle unmarkierten Moleküle auf eine Chromatide verteilen verschwindend gering. URL: http://www.pnas.org/content/45/6/839
57
+ - Durchmesser (quer) eines <one>Metaphase-Chromosom</one>, in nm? Etwa <one>1400nm</one>.
58
+ - Who or what determines the general appearance of a chromosome? The <one>centromere</one> (or rather, the <one>location of the centromere</one>).
59
+ - What will happen when <one>a deletion in a chromosome</one> gets <two>rid</two> of a <three>centromere</three>? This chromosome will not segregate in meiosis/mitosis and will thus be lost.
60
+ - What do we mean with the term <one>Agmatoploidy</one>? Agmatoploidy is a condition unique to plants with so-called "polycentric chromosomes".
61
+ - Was sind <one>Gonosomen</one>? Dies sind die <one>Geschlechtschromosomen</one>. []
62
+ - In der <one>Genetik</one>: welche Formel trifft auf <three>nullisomic</three> zu? <one>2n-2</one>.
63
+ - <one>Chromosomes</one> in <three>diploid cells</three> exist in pairs, called ... ? <one>Homologous chromosome</one>.
64
+ - In der <one>Cytogenetik</one>, was ist schlimmer - eine <three>Duplikation</three> oder eine <three>Deletion</three>? Eine <one>Deletion</one> natürlich, da danach Gene, beziehungsweise genetische Information, fehlen würde. []
65
+ - Was bedeutet die Kartierungseinheit centiMorgan? 1 cM bedeutet eine Rekombinationshäufigkeit von <one>1%</one>.
66
+ - Wie können wir experimentell die Mitose der Lymphocyten auslösen? Mit Hilfe von <one>Phytohemagglutinin</one>.
67
+ - Für wieviel % der menschlichen, spontanen Aborte sind Chromosomenaberrationen verantwortlich? <one>50%</one>.
68
+ - Vergleiche die Mutationsrate des X Chromosoms zu der Mutationsrate des Y Chromosoms. A: Y Chromosom hat eine um <one>5x höhere Mutationsrate</one> als das X-Chromosom (also 5:1).
69
+ - Name the <one>meiotic pairing possibilities</one> in triploids. A: (1) <one>Trivalent</one> (2) <one>Bivalent + Univalent</one>
70
+ - In Cytogenetics: what are the <one>Renner complexes</one>? These are multichromosomal superlinkage groups. They can maintain several chromosomes together in a super-ring configuration.
71
+ - Indischer Muntjak, Chromosomensat: <one>2n = </one>? <one>2n = 7</one>. []
72
+ - Das in der Zytologie verwendete <one>Chromomycin</one> färbt die Chromosomen in welcher Farbe ein? Gelb-<seagreen>grün</seagreen>.
73
+ - <one>Who first observed chromosomes</one> in <three>1842</three>? <one>Karl Wilhelm von Nägeli</one>.
74
+ - Name two different mechanisms of <one>genome size decrease</one>. A: (1) Unequal recombination (2) Illegitimate recombination
75
+ - In der <one>Cytogenetik</one>: wieso verwenden wir "Chromomycin A3" (CMA)? Für das <one>Erstellen von R-banding patterns</one>.
76
+ - Define <one>autopolyploid</one> versus "allopolyploid". A: (1) Autopolyploid: They possess extra chromosome sets from the same species. (2) <one>Allopolyploid</one>: They possess extra chromosome sets from two or more species.
77
+ - The <one>Separase</one> is what kind of enzyme? It is a <one>CD clan cysteine protease</one>.
78
+ - Wann bilden sich die <one>Isogameten</one> bei <three>Chlamydomonas</three>? Bei <one>Stickstoffmangel</one>. []
79
+ - Welche Rolle hat das Probein <one>NuMA</one>? Es bündelt die Enden der Mikrotubuli am Centrosom.
80
+ - Nenne ein Beispiel für einen Organismus mit "holozentrischen Chromosomen". A: <one>Caenorhabditis elegans</one>.
81
+ - What is the <one>chromosomal composition of an Allopolyploid</one>? <one>AABB</one>. []
82
+ - Das <one>Mais-Genom</one> besitzt wie viele Chromosomen? A: <one>10</one>. []
83
+ - Define the term <one>sexual dimorphism</one>. A: Differences between males and females (in morphology).
84
+ - <one>Wieviele Chromosomen</one> hat <two>S. cerevisiae</two> und S. pombe? Pombe hat 3, cerevisiae hat 16.
85
+ - Was heisst "akrozentrisch"? Das ist ein Chromosom mit <one>fast endständiger Lokalisation des Centromers</one>.
86
+ - What is <one>Endomitosis</one>? Endomitosis is a process that produces <one>polyploid cells</one>.
87
+ - Die <one>Alu-Sequenzen</one>, bezogen auf die Chromosomenbanden, sind vor allem wo besonders häufig zu finden? In den genreichen R-Banden.
88
+ - Welche "S rRNA" wird nicht im Nucleolus transkribiert? Die kleine <one>5S rRNA</one>.
89
+ - Die <one>antibodies</one> bei ChIP-chip wirken wogegen genau? Gegen eine <one>Cohesin-Subunit</one>.
90
+ - Formel für <one>nullisomic</one>? <one>2n-2</one>.
91
+ - <one>On which chromosomes</one> do humans have pairs of <three>nucleolar organizers</three>? On the short arms of chromosomes <one>13</one>/<one>14</one>/<one>15</one>/<one>21</one>/<one>22</one>. []
92
+ - What is meant with the term <one>homeologous</one>? This term means "partly homologous".
93
+ - Was ist <one>Endomitose</one>? Die Vermehrung der Chromosomenzahl ohne Kernteilung.
94
+ - What do we mean with the term <one>Allopolyploidy</one>? <one>Allopolyploidy</one> means an individual that has an <two>additional set of chromosomes</two> derived from another species.
95
+ - A. W. für <one>Edwards syndrome</one>? <one>Trisomie 18</one>.
96
+ - Wie heisst die Region auf dem X und Y Chromosom, die der Inaktivierung entgeht und wo liegt sie? <one>PAR</one> (Pseudoautosomale Region). Sie liegt am Ende des kleinen Chromosomenarm.
97
+ - Name a <one>general disadvantage</one> of many polyploid species. A: They tend to be <one>sterile</one>.
98
+ - <one>R-bands</one> of chromosomes are rich in ... ? Cytosine-guanine (<one>C-G</one>) base pairs.
99
+ - What must happen for if <one>a chromosome inversion</one> is to occur? The chromosome at hand must <one>break in two different places</one>.
100
+ - Die <one>Schwesterchromatiden</one> bleiben bis zum Beginn der Anaphase durch Proteinbrücken miteinander verbunden. Wie wird diese <two>Proteinbrücke</two> genannt? <one>Cohesinkomplex</one>.
101
+ - Walther Flemming hat den Begriff <one>Chromatin</one> als erster definiert und verwendet. In welchem Jahr? <one>1880</one>.
102
+ - Welche <one>zwei Proteine</one> benötigen wir für die "<ud>Chromosomenkohäsion</ud>"? (1) <one>SMC1</one> (2) <one>SMC3</one>
103
+ - Andere Bezeichnung für das "<u>Solenoid-Modell</u>"? Die "<u>30nm Faser</u>".
104
+ - Telomere spielen eine Schlüsselrolle in der Zelle, nicht nur aufgrund ihrer strukturellen Rolle oder bei der Immortalisierung von Zellen und der Krebsentstehung, sondern auch aufgrund der ... ? "Zellulären Seneszenz".
105
+ - An "Alpha-Satelliten-DNA" bindet welches Protein? "CENP-Protein". URL: https://en.wikipedia.org/wiki/CENPA
106
+ - Hat ein "Balancer-Chromosom" ein Problem? Ja - es verhindert die Entstehung von "crossing-over Produkten".
107
+ - What exactly means "monoploid"? It means that an organism, like a bacterium, has only one set of genes - one copy of the genome.
108
+ - Aus Sicht der Chromosomenbiologie, welchen Nachteil mögen polyploide Zellen haben? Das Trennen der Chromosomen mag schwierig sein, sie hören auf sich zu teilen.
109
+ - The longest human chromosome is approximately n micrometre in length? A: About "10 micrometre".
110
+ - Name a "chromosome event". A: A "crossover" ("crossoever event").
111
+ - Aneuploidy usually arises when ... ? During "meiosis".
112
+ - Nenne zwei tierische Organismen die eine extrem dichte DNA Verpackung besitzen. A: (1) "Pferde" (2) "Amphibien"
113
+ - A. W. für Spaghettiweizen? "Emmerweizen".
114
+ - Welche zwei allgemeinen Typen von Chromosomenmutationen existieren? (1) "numerische Chromosomenaberrationen" (2) "strukturelle Chromosomenaberrationen"
115
+ - What is "Allopolyploidy"? This is "formation of polyploids between different species".
116
+ - If we wish to generate a tetraploid, when may we have to add "colchicine"? During the "metaphase".
117
+ - In some sperm, histones are replaced with ...? "Protamines".
118
+ - Which enzyme triggers the "Anaphase"? "Separase", a "cysteine protease".
119
+ - Can the "TDF" ("testis-determining factor") bind to DNA? Yes, of course it can.
120
+ - Nenne ein Protein das ein "chromosomal hitchhiker" ist. A: "Nucleolin".
121
+ - Welches Protein kann "centromerisches Cohesin" schützen? Sgo1.
122
+ - Vergleiche den Gehalt an "LINES" und "SINES" im menschlichen Genom, in Prozent. A: (1) LINES: "20%" (2) SINES: "13%"
123
+ - Is the "Axial Loop Model" for chromosomes correct? No - the "Helical Coil Model" (Ohnuki coils; Schraubenstruktur) is correct.
124
+ - Im Gegensatz zu "normalen" Chromosomen können "Balancer-Chromosomen" was nicht? Eine "Rekombination durchführen".
125
+ - Why are telomeres necessary? Telomeres mask chromosome termini from being recognized and processed as "DNA double strand breaks".
126
+ - How do human X and Y chromosome pair? They pair "end-to-end" rather than along the whole chromosome.
127
+ - In humans, how do we call the "terminal X-Y homology region"? "Pseudoautosomal region".
128
+ - Does the human genome include "pseudogene copies of RNA genes"? Yes it does.
129
+ - Der "Mitose-promoting factor" leitet die Mitose ein. Aus welchen zwei Komponenten besteht dieser Faktor? (1) "CDK1" (2) "Cyclin B"
130
+ - Was sind "holozentrische Chromosomen" und gib ein Beispiel wo wir dies finden können? Bei holozentrischen Chromosomen ist das Centromer über das gesamte Chromosom verteilt. Das finden wir z. Bsp bei den "Lepidoptera" (Schmetterlingen).
131
+ - In male flies we need hypertranscription to achieve dosage compensation. Which two long non-coding RNAs are important here? (1) "rox1" (2) "rox2"
132
+ - "Polyploidy in mankind" usually arises due to ... ? Two sperm fertilizing the same, single egg.
133
+ - Welche Struktur zeigen die "Ohnuki Coils"? Eine "Schraubenstruktur".
134
+ - Kann die Position eines Genes im Zellkern die Expression beeinflussen? Ja. Im Zentrum des Zellkern finden wir vor allem aktive Gene, am Rande hingegen eher "silenced" Heterochromatin.
135
+ - Which organism may be the "richest source of telomeres"? "Ciliates".
136
+ - Was heisst "mcm" im "MCM-Komplex"? "mini-chromosome maintenance".
137
+ - Die "Chromatinschleife" wird durch ... stabilisiert. A: "Condensin".
138
+ - Which step comes before "cohesion establishment"? Cohesin loading.
139
+ - Welches Tubulin ist Bestandteil der Centrosomen? Gamma-Tubulin. URL: http://www.cell.com/current-biology/pdf/S0960-9822%2802%2900908-9.pdf
140
+ - Was sind "Cold Spots" und wo finden wir diese? Das sind Bereiche wo die Austauschhäufigkeit verringert ist. Man findet sie vor allem um das "Centromer" herum.
141
+ - Wer ist für die Überführung der 10nm Faser in die 30nm Faser verantwortlich? Das "Histon H1".
142
+ - What happens if a male gamete containing a Y chromosome fertilizes an egg containing no X chromosome, in humans? Then that embryo will fail to develop because it is essential that every human must have at least one X chromosome.
143
+ - Can condensin translocate along DNA? Yes. URL: https://phys.org/news/2017-09-chromosome-motor-discovery-dna-loop.html#nRlv
144
+ - Was meinen wir mit "homogametisch"? Zum Beispiel Weibchen mit XX-Chromosomensatz.
145
+ - How are "astral microtubules" defined? This "subpopulation of microtubules" is defined as "any microtubule originating from the centrosome, which does not connect to a kinetochore".
146
+ - The APC/C can modify "securin", in what way? It can ubiquitinate securin, leading to the degradation of the latter.
147
+ - Es gibt sogenannte "cytologische Marker". Was heisst "DMs" und "HSR" und wo finden wir sie? DMs sind "Double minutes", "HSR" sind "Homogeneously Staining Regions". Sie wirken als cytologische Marker mancher Tumore.
148
+ - Nenne ein einsatzgebiet der CGH ("Comparative Genomic Hybridisation"). A: Man kann chromosomale Anomalien in Tumoren diagnostizieren.
149
+ - Latin for "modern cultivated wheat"? Triticum aestivum. URL: https://en.wikipedia.org/wiki/Common_wheat
150
+ - In "traditional cytology", why did we employ the "Feulgen reaction"? This dye was used to stain the "barr body".
151
+ - During which stage of meiosis are the chromosomes less condensed? During the "pachytene stage."
152
+ - Was meinen wir mit einer "Tandemduplikation"? Dies ist eine "Duplikation eines Genes", wobei diese beiden Gene dann hintereinander liegen, also im Tandem.
153
+ - Gib ein Beispiel für eine "cysteine protease", die eine wichtige Rolle in der Cytogenetik spielt. A: Die "Separase".
154
+ - Die "Transversalfilamente des Synaptonemalen Komplexes" kann man mit welcher Struktur des alltäglichen Lebens vergleichen? Die Transversalfilamente des SC greifen wie die "Zähne eines Reissverschlusses" ineinander.
155
+ - Was meinen wir mti dem Begriff "polytän"? Dies ist ein spezieller Typ von Chromosomen, der durch wiederholte Endoreduplikation einzelner Chromatiden entsteht. Es kommt zu sogenannten "Riesen-Chromosomen".
156
+ - Was ist die Ursache von "cri-du-chat"? Eine partielle Deletion, auf "Chromosom 5p".
157
+ - Give another term for "heterogametic sex". A: Digametic sex.
158
+ - Sister chromatides are held together at the centromere by cohesine complexes. When does it come to its degradation? At the "start of the Anaphase".
159
+ - Ist jede "Chromatinkondensation" eine Heterochromatisierung? Nein, die "Verpackung der Spermienköpfchen" ist zum Beispiel keine Heterochromatisierung.
160
+ - Haben Datura (der "Stechapfel") Monosomics und Trisomics eine Gemeinsamkeit? Ja, in einer gewissen Art und Weise. Morphologisch sehen sie alle unterschiedlich aus.
161
+ - Beim "Burkitt-Lymphom" gibt es eine reziproke Translokation. Welche Chromosomen sind daran beteiligt? t(8,14).
162
+ - Synaptonemale Komplexe ("SCs") sind Strickleiter-artige Proteinstrukturen welche die homologen Chromosomen in welcher Phase zusammenhalten? In der "meiotischen Prophase".
163
+ - Die "erste Reifeteilung" (Meiose I) besteht aus welchen Phasen? (Pro-Meta-Ana-Telo) (1) Prophase 1 (2) Metaphase 1 (3) Anaphase 1 (4) Telophase 1
164
+ - Was fehlt den "Minichromosomen"? Das "Centromere" - deshalb werden sie bei der Mitose auch ungleichmässig auf die Nachkommen verteilt.
165
+ - Was ist das "hauptsächliche Protein des Nucleolus"? Nucleolin.
166
+ - In general, the DNA is "attached to the nuclear matrix" at which sequences? MARs and SARs.
167
+ - How do "compound chromosomes" differ from "translocations"? (1) "Compound chromosomes" involve fusions of homologous chromosomes. (2) "Translocations" involve fusion between non-homologues.
168
+ - In Amniocentesis we take a sample of amniotic fluid in order to screen for potential chromosomal abnormalities. What is the reasoning behind this? This fluid also contains "fetal tissue". We can then take this fetal DNA and examine it for "genetic abnormalities".
169
+ - Unterscheide "Polyploidy" von "Aneuploidy". A: (1) Bei Polyploidien sind ganze Chromosomensätze verändert, z.Bsp Triploidie oder Tetraploidie. (2) Bei Aneuploidien hingegen sind nur einzelne Chromosomen mehrmals vorhanden, z. Bsp Trisomie.
170
+ - Wie begünstigt die Zelle die Öffnung des Cohesin-Rings? Durch "Phosphorylierung des Kleisins" (Scc1).
171
+ - In Cytogenetics, how do we call a 2n-2 composition? Nullisomy. That is "the loss of a whole pair of homologous chromosomes".
172
+ - Was ermöglicht die Polyploidisierung in der Evolution? Eine "rasche Artbildung".
173
+ - Wo findet Rekombination häufiger statt - während der "Oogenese" oder bei der "Spermiogenese"? Während der "Spermiogenese".
174
+ - Das Philadelphia-Chromosom ist charakteristisch für welche Krankheit? Die "chronisch-myeloische Leukämie".
175
+ - In cytogenetics, what is the opposite of a "chromosome fusion" process? chromosome fission.
176
+ - Was ist eine "balancierte Translokation"? Dies ist ein Chromosomenabschnitt, welcher auf ein anderes Chromosom transloziert wird. Die Gesamtmenge des Erbguts ändert sich nicht sondern befindet sich weiterhin im Gleichgewicht. URL: https://de.wikipedia.org/wiki/Translokation_(Genetik)#Balancierte_Translokation
177
+ - Das menschliche Y-Chromosom enthält wieviele Gene? 71.
178
+ - Das kleine, menschliche Y Chromosom umfasst wieviele bekannte Gene (genau)? 71 Gene.
179
+ - In Birds, what does the genetic constitution "XX" mean? It means that this will be "a male bird".
180
+ - Warum sind Duplikationen evolutionär so wichtig? Sie erlauben die "Beibehaltung einer alten Funktion", und einer "Adaptierung einer neuen Form".
181
+ - In der Cytogenetik, wofür steht die Abkürzung des Gens "Sgo1"? Shugoshin.
182
+ - How many protein-encoding genes can we find in the human Y-Chromosome? 71. URL: https://en.wikipedia.org/wiki/Y_chromosome
183
+ - Was passiert beim "Spectral Karyotyping"? Jedes Chromosom wird mit einer "Chromosomen-spezifischen FISH-Sonde" in einer anderen Farbe markiert.
184
+ - Give 1 example each for a "monosomy" and a "trisomy" in humans. A: (1) monosomy: Turner syndrome (2) trisomy: Down syndrome
185
+ - Wieviele bp finden wir in einem "Nucleosome Core"? 146. URL: https://en.wikipedia.org/wiki/Nucleosome#The_nucleosome_core_particle_.28NCP.29
186
+ - Why is "chorionic biopsy" employed? So that we can detect "chromosomal abnormalities" in the fetus.
187
+ - Das Signal zur Inaktivierung des X-Chromosoms bei Frauen geht wovon aus? Es geht vom aktiv bleibenden X aus, über die "Xist RNA".
188
+ - Can a human chromosome with more than 1 centromere persist? Yes - if the additional centromeres become inactivated.
189
+ - Wir bemerken zwei Merkmale, die sich unabhängig vererben. Was können wir daraus folgern? Das die verantwortlichen Gene auf unterschiedlichen Chromosomen liegen.
190
+ - Gib ein Beispiel wo wir "Polytänchromosomen" finden könnten. A: In den sogenannten "Speicheldrüsen" von Drosophila-Larven.
191
+ - Nenne 1 Beispiel für "fakultatives Heterochromatin". A: Das "inaktivierte X-Chromosom".
192
+ - Nenne eine wichtige Methode für die Diagnose von Chromosomenanomalien beim Menschen. A: FISH - die "Fluorescence in-situ Hybridisierung".
193
+ - What is "alphoid DNA"? This is "satellite DNA" on all chromosomes in the human genome. They can be found at the Centromeres.
194
+ - Welches praktische Problem ergibt sich durch ALT ("Alternative Lengthening of Telomeres")? ALT Mechanismen sind ein Backup-System wenn die Telomerase inaktiv ist. ALT erschwert einen sinnvollen Einsatz von Telomerase-Inhibitoren als "Anti-Cancer Drugs".
195
+ - Ciliates show "nuclear dimorphism". What does this mean? That they have two nuclei with separate germline and somatic function.
196
+ - Wie können wir NOR("Nucleolus Organisierende Region")-Regionen erkennen? Durch eine "Einschnürung".
197
+ - Gib ein Beispiel für eine "Tiergruppe mit Kerndualismus". A: Die "Ciliaten".
198
+ - Welches Protein ist der Hauptschalter für den "Eintritt in die Mitose"? MPF (Mitosis Promoting Factor).
199
+ - Sind Crossover Ereignisse voneinander unabhängig? Nein, Crossovers können sich "gegenseitig inhibieren" - das heisst dass in unmittelbarer Nähe eines Crossovers Ereignis kein weiteres auftritt.
200
+ - Bei Säugern colokalisiert Cohesin mit welchem Protein, welches auch für die "Blockierung von Enhancer-Sequenzen" wichtig ist? Mit dem "Insulator-Protein CTCF".
201
+ - Which chromosome is missing something in the Prader-Willi syndrome? The chromosome number 15 - but only from the "paternal copy of the chromosome".
202
+ - Beim Kerndualismus bei Ciliaten unterscheidet man Macronucleus und Micronucleus. Welcher der beiden ist "transkriptorisch inaktiv"? Der Micronucleus.
203
+ - What do we mean with the term "intrachromosomal recombination"? Intrachromosomal recombination is "recombination of genes on the same chromosome".
204
+ - Sind Telomere nur als Schutzkappenstruktur wichtig? Nein, sie mögen auch als "Verankerung an der Innenseite des Zellkernes dienen".
205
+ - Can a "compound chromosome" exist stably in a cell? Yes - if it has a single, functional centromere.
206
+ - An individual has a partial deletion of a chromsome arm. Is this considered an "Aneuploid"? Yes.
207
+ - Why can "balancer chromosomes" not recombine with the WT chromosome? Because they carry several inversions.
208
+ - A. W. für das Protein "Kleisin"? Scc1.
209
+ - In Cytogenetics, what is "chromosome fission"? "Chromosome fission" is the breakage of one "metacentric chromosome" to form two "acrocentric chromosomes" (1 metacentric -> 2 acrocentric).
210
+ - When was the "Turner-Syndrome" first described? In 1938.
211
+ - Der Mensch hat etwa n Wiederholungen von "AGGGTT", pro Telomer? Etwa 2000x bis 3000x pro Telomer.
212
+ - In which two phases do "interchromosomal" and "intrachromosomal" recombination happen? (1) Interchromosomal recombination happens in "Anaphase I" (2) Intrachromosomal recombination happens in "Prophase I"
213
+ - Nenne 4 Möglichkeiten der Chromosomenmutation. A: (1) Translokation (2) Deletion (3) Insertion (4) Invertion
214
+ - Nenne 1 "zellbiologische Funktion" der Kernlamina. A: Dient als Verankerung für das Chromatin.
215
+ - In human genetics, "translocation carriers" have which increased risk? They have an "increased risk to produce children with Down syndrome".
216
+ - If we wish to analyze the organization of chromatin in a cell, which method could we use? The "chromosome conformation capture technique".
217
+ - Gib ein Beispiel für eine "Genommutationen". A: Zum Beispiel "Trisomie 21". Anders formuliert, "Veränderungen des gesamten Genoms" dienen als Beispiel für Genommutationen.
218
+ - A. W. für XXY-Konstitution? Klinefelter-Syndrome.
219
+ - Warum ist die genetische Konstitution "XXX" im Menschen überlebensfähig? Da 2 der 3X Chromosomen inaktiviert vorliegen bzw. inaktiviert werden.
220
+ - Why may "gene duplication" have been important? They provide(d) a "significant source of variation" for evolution.
221
+ - Was heisst PLK1? Polo-like kinase 1. URL: https://en.wikipedia.org/wiki/PLK1
222
+ - Wie nennen wir die Histonvariante CenH3 im Menschen? CENP-A.
223
+ - Cohesion is lost in how many stages in meiosis? It is lost in two stages of meiosis.
224
+ - In a microscope you see a "J-shaped" chromosome. What may you infer here? That this is a "submetacentric chromosome".
225
+ - Give 1 example for a mutation in Drosophila associated with a "tandem duplication". A: The "Bar eye mutation".
226
+ - How do we call the phase of the cell cycle that causes the sister chromatids to separate and move to each pole? Anaphase.
227
+ - A. W. für "Chromosomenfäden"? Chromonema.
228
+ - Kann es ein "Überkreuzen von intakten Chromatiden" geben? Nein.
229
+ - Englisch für "Chromosomengerüst"? Chromosome scaffold.
230
+ - Name 3 "points of note" for chromosomal areas that have dark G bands. A: (1) rich in AxT residues (2) few genes (3) rich in LINE elements
231
+ - The human "Y chromosome" has how many base pairs? 59 million nucleotides.
232
+ - Drosophila kann wild-type, bar oder double bar sein. Wie äussern sich diese Unterschiede phänotypisch? Die Augenform wird kleiner, je "bar"rer Drosophila ist.
233
+ - Wie nennen wir das mit der inneren Zellkernmembran assoziierte Proteinnetzwerk? Kernlamina.
234
+ - Es gibt ein Transmembranprotein des Zellkernes, das "LINC" heisst. Was heisst "LINC"? "Linker of Nucleoskeleton and Cytoskeleton". URL: https://en.wikipedia.org/wiki/LINC_complex
235
+ - Name a stain that can be used for "metaphase chromosomes". A: Quinacrine.
236
+ - Wieso mögen wir schlussfolgern, das die Lage der Chromosomenterritorien gewissen Regeln unterworfen ist? Da bestimmte Chromosomentranslokationen zwischen bestimmten Chromosomen häufiger auftreten. Eine räumliche Nähe mag dies (teilweise) erklären.
237
+ - Telomere haben viele Guanin-Nukleotide. Ergibt sich dadurch ein Nachteil? Ja. Es macht sie anfällig für "oxidative Schädigungen".
238
+ - "Bos taurus", the cattle, has how many chromosomes? 60.
239
+ - Wenn die Telomere eine bestimmmte Länge erreichen so wird die Telomerase gehemmt. Welches Protein macht dies? Zum Beispiel "TRF1".
240
+ - Wir kennen die Telomere, aber was bedeutet das eigentliche Wort "Telomere"? Aus dem griechischen; telos = Teil, meros = Ende.
241
+ - The telomere may have the Shelterin complex, which may include proteins such as "TRF1" and "TRF2". What does the abbreviation TRF stand for? "terminal restriction fragments"
242
+ - Chromosome 4 in humans and chimpanzes differ how? This chromosome differs between these two by a "pericentric inversion".
243
+ - In cytogenetics we can differ between "mosaics" and "chimeras". What is the difference? (1) Mosaics: the genetically different cell types all arise from a single zygote (2) Chimeras: the genetically different cell types originate from more than one zygote
244
+ - "Crossing over" is mediated by enzymes located in ... within the nucleus. A: "recombination nodules".
245
+ - What is the major "Yin Yang" in Cytogenetics? The interconversion of "facultative heterochromatin" into "constitutive heterochromatin" and vice versa (at the least for facultative heterochromatin).
246
+ - A "metacentric chromosome" has which shape? It has a V-shape.
247
+ - What is an "embryoid"? A small, dividing mass of "monoploid plant cells".
248
+ - What is a "centric fusion"? A centric fusion is a translocation, in which the centromeres of two acrocentric chromosomes fuse to generate one large metacentric chromosome. (Mnemonic: acro + acro = meta)
249
+ - We see a "XY" that is female. What may we assume? That a mutation in SRY has happened.
250
+ - What happens when the "SRY" gene is missing? A female will develop; the femaleness is the "default" program.
251
+ - Give an example of a plant species that shows "Translocation heterozygotes". A: Rheo spathacea.
252
+ - Name an organism in where the chromosomes form a ring when pairing. A: Oenothera biennis
253
+ - Nenne einen Proteinkomplex der mit den Mikrotubuli interagiert und für die Mitose sehr wichtig ist. A: Der 10-Protein Dam1 Ring-Komplex, mit einem Durchmesser von 50nm.
254
+ - What does a "Robertsonian translocation" create? A (larger) metacentric chromosome.
255
+ - Wieso brauchen wir die "Condensin-Ringe"? Sie umschließen den 30nm Chromatinfaden und biegen ihn zu Schleifen.
256
+ - What is a "polycentric chromosome"? This is a chromosome with more than one centromere present in itself.
257
+ - What are "polyenergids"? Cells with several nuclei.
258
+ - Name a specialized variant of "endoreplication". A: Endocycling.
259
+ - What does in "Endoreduplication" NOT happen? "Chromosome condensation does not occur in Endoreduplication.
260
+ - "Synaptonemale Komplexe" haben welche Form? Strickleiter-artig.
261
+ - What do we mean with the term "Endopolyploidy"? Endopolyploidy is the occurrence of different ploidy levels within an organism.
262
+ - Kommen "Holliday junctions" in Prokaryoten vor? Ja. Auch in Säugetieren.
263
+ - "Datura stramonium" seeds may look different from one another, based on ...? Based on being trisomic for a different chromosome (it has 12 chromosomes)
264
+ - Was ist "Endopolyploidie"? Ein Zustand, bei dem nur bestimmte Zellen eines ansonsten diploiden Organismus polyploid sind.
265
+ - Innerhalb des Nukleus, wo finden wir "inaktive" und wo finden wir "aktive Chromosomenbereiche"? Transkribierte Chromosomenbereiche liegen bevorzugt im Kerninneren, inaktive an der Peripherie.
266
+ - Meiosis in a triploid can have which 2 different outcomes? (a) "univalent formation" (b) "trivalent formation"
267
+ - What is "Microdissection" in Cytogenetics? Chromosome microdissection is a technique that physically removes a large section of DNA from a complete chromosome.
268
+ - Nenne eine wichtige Methode für die Diagnose von "Chromosomenanomalien" beim Menschen. A: FISH ("Fluoreszenz in-situ Hybridisierung")
269
+ - In Cytogenetics, we can differ between a "deficiency" and a "deletion". What is the defining characteristic for each one? (1) A deficiency is the loss of a chromosomal end fragment, normally in one of two homologues (2) A deletion is the loss of an inner chromosomal fragment
270
+ - The most common aneuploids in humans involve ...? The sex chromosome.
271
+ - R bands are rich in ... ? Cytosin-guanine base pairs.
272
+ - Where in particular can we find "C bands"? They can be found at "centromeric heterochromatin".
273
+ - What do we mean with "uniparental disomy"? When both chromosomes are inherited from the same parent.
274
+ - Name a frequent cause of red-green color blindness in humans. A: Unequal crossing over.
275
+ - In cytogenetics, what does "TERT" stand for? Telomere Reverse Transcription.
276
+ - When can we not see the "Rabl orientation"? We can not see the Rabl orientation when we look at very short chromosomes. They simply are not sufficiently long to interconnect the nuclear membrane.
277
+ - Bei der Cytokinese benötigen wir einen "kontraktilen Ring". Woraus besteht dieser? Aus Actinfilamenten.
278
+ - Meiosis has two phases. How do we call these? (1) Meiosis I is the "reductional division" (2) Meiosis II is the "equational division"
279
+ - Innerhalb einer Zelle, im Nucleus, wo finden wir "gen-reiche Chromosomenbänder"? Bevorzugt im Kerninneren.
280
+ - Who discovered Chromosomes? W. Waldeyer, 1888, where he also coined the word for these structures. URL: https://en.wikipedia.org/wiki/Heinrich_Wilhelm_Gottfried_von_Waldeyer-Hartz
281
+ - Warum bilden Säugetierzellen Telomer-Loops aus? Da dies eine Möglichkeit darstellt, die DNA-Enden vor "ungewollter Reparatur" zu schützen.
282
+ - Spectral karyotype requires what? It requires probes specific of each chromosome pair.
283
+ - Allopolyploids may undergo an "evolutionary phase" and a "revolutionary phase". What is the main difference between these two phases? The "revolutionary phase" is very rapid; the evolutionary phase is much slower.
284
+ - Wie kann man die verschiedenen Chromosomenformen einteilen? (1) metazentrisch (2) submetazentrisch (3) akrozentrisch (4) telozentrisch
285
+ - A. W. für "Trisomie 18"? Edwards Syndrom.
286
+ - A. W. für "Trisomie 13"? Pätau-Syndrom.
287
+ - Andere (englische) Bezeichnung für die "B-Chromosomen"? Accessory chromosomes.
288
+ - In Cytogenetics, what does "monopolar attachment" ensure? It ensures that maternal and paternal chromosomes are properly segregated.
289
+ - How do we call the pattern of bands within a chromosome? An "ideogram".
290
+ - Nenne 3 Komponenten eines eukaryoten Chromosoms. A: (1) Centromer (2) Telomer (3) Nucleolus-organisierende Region (NOR)
291
+ - What is "jumbo grain"? Pollen of grain that is big; the chromosomal constitution is 2n.
292
+ - Name the 2 fundamental roles of chromosomes. A: (1) faithful transmission (2) appropriate expression of genetic information
293
+ - What are "Autoallopolyploid"? These are species that contain duplicated sets from one species (e.g. "AAAA"), plus at least one set from a different species (e.g. "AAAABB").
294
+ - When do the sister chromatids segregate together normally? During the first meiotic division (meiosis I).
295
+ - What is a "pericentric inversion"? An inversion that includes the centromere.
296
+ - The gametes of a tetraploid shows which composition? 2n.
297
+ - Wie entsteht ein "Autotriploid" (AAA)? Wenn sich eine normale Gamete (n) mit einer nicht reduzierten Gamete (2n) vereinigt.
298
+ - What is an "Autopolyploid"? An Autopolyploid is an individual that has an additional set of chromosomes that are identical to the parental species (AA).
299
+ - Name the 4 basic types of "chromosome rearrangements". A: (1) duplications (2) deletions (3) inversions (4) translocations
300
+ - Do polyploid animals have something in common? They usually reproduce through "parthenogenesis". URL: https://en.wikipedia.org/wiki/Parthenogenesis
301
+ - Das menschliche X-Chromosom ist ähnlich lang wie welch anderes menschliches Chromosom? 22.
302
+ - Why are "Monoploids" so rare in nature? Because recessive lethal mutations may become unmasked, and thus the individual may die.
303
+ - Wir untersuchen die DNA-Abfolge an den Centromeren. Was könnten wir vermuten, bezogen auf die Nukleotide die dort häufig zu finden wären? Da diese Bereiche AT-reich sind, werden wir wohl A und T häufig finden.
304
+ - Wo finden wir "Alpha-Satelliten DNA"? An den Centromeres.
305
+ - Wie wird gewährleistet das die ribosomalen RNA Untereinheiten (18S, 5.8S, 28S) in stöchiometrischen Verhältnissen vorliegen? Sie alle entstehen durch das Processing eines einzigen Transkripts.
306
+ - In der Evolutionsgenetik, was it das "Mullers ratchet"? Dies ist der Prozess, bei dem die Genome einer asexuellen Population schädigende Mutationen in einer irreversiblen Art und Weise anhäufen.
307
+ - Welches Experiment brachte den Nachweis das eine Chromatide ein einzelnes DNA Molekül enthält? Das "Taylor-Woods-Hughes Experiment", 1957.
308
+ - Wann wurde das "Taylor-Woods-Hughes Experiment" durchgeführt? 1957.
309
+ - Welche Aufgabe mögen "astrale Mikrotubuli" haben? Sie verankern den Spindelapparat an der Plasmamembran. (Merkhilfe: Astrale Mikrotubuli können wir auch "Membranverankerung" nennen.)
310
+ - Nenne ein Lebewesen, bei dem die Gene für Geschlechtsmerkmale auf mehrere Chromosomen verteilt sind. A: Das Schnabeltier.
311
+ - Telophase starts when? Telophase starts when the two daughter sets of the chromosomes reach the poles.
312
+ - Where can we find a "phragmoplast"? Only in plant cells.
313
+ - The dog genome 2n is? 2n = 78.
314
+ - What is the "basic chromosome number x"? This is the lowest common (haploid) chromosome number for a taxa. In humans thus 2n = 46, and x must be 23.
315
+ - Why the name "B-chromosomes"? The standard e. g. diploid chromosomes are called "A chromosomes".
316
+ - "Spectral karyotyping" works why? We can use FISH to paint different chromosomes with a different dye.
317
+ - What is "aneuploidy"? A change in the number of individual chromosomes.
318
+ - Wie unterscheidet sich PAR1 ("pseudoautosomal region") von PAR2? Nenne 2 Unterschiede. A: (1) Grösse: PAR1 ist grösser, mit 2.6 Mb, PAR2 ist viel kleiner, mit 330 kb. (2) PAR1 ist wichtiger, denn hier erfolgt ein "obligatorisches crossing-over"
319
+ - Bei der Translokation im Philadelphia-Chromosom, was für ein Protein entsteht? Das chimärische BCR-ABL Protein. Es kann die Zelle zur ständigen Proliferation stimulieren.
320
+ - Which sex can transmit "autosomal dominant" diseases? Either sex.
321
+ - How can "Aneuploidy" in humans arise? Through "nondisjunction" or due to "anaphase lag".
322
+ - In mankind, how does polyploidy usually arise? Due to two sperm fertilizing a single egg.
323
+ - Ploidy of bananas? Triploids.
324
+ - lampbrush chromosomes can be found in which species ...? Frogs.
325
+ - Both Prader-Willi and Angelman syndromes are caused by the same deletion in ... which chromosome? Chromosome 15.
326
+ - Do we see homozygotic Balancer chromosomes? No, because these are lethal.
327
+ - Warum werden die meisten geschlechtgekoppelten Merkmale bei Säugern über das X-Chromosom vererbt? Da es um einiges grösser ist als das Y Chromosom - man findet hier auch mehr Gene.
328
+ - Welche 2 Beweise gibt es für die Richtigkeit der "Chiasmatypie-Theorie"? (1) Identische Chromosomenarme sind immer beisammen. (2) Doppeltes Interlocking ist möglich
329
+ - Wo finden wir eine "partielle Triploide" im Menschen? Z. Bsp bei der Konstitution XXY (Klinefelter).
330
+ - Wie sieht bei Drosophila der "Notch-Phänotyp" aus? Bei diesen Fliegen sind die Flügel an den hinteren Rändern und den Seitenrändern v-förmig ausgezahnt.
331
+ - Was ist die zentrale Frage die sich der SAC ("Spindle Assembly Checkpoint") stellen muss bevor er im Zellzyklus weitermachen kann? Ob alle Chromosomen unter Spannung stehen oder nicht.
332
+ - Wieviele bp hat das längste menschliche Chromosom? 260 Mb.
333
+ - Anderes Wort für "Geschlechtschromosom"? <one>Gonosom</one>.
334
+ - In der Cytogenetik, wann wurde die "Holliday Junction" vorgeschlagen? 1964.
335
+ - Die <one>Telomerlänge der Ciliaten</one> beträgit ... ? <one>20 bp</one>.
336
+ - Ist eine apomiktische oder eine sexuelle Population effektiver? Eine apomiktische Population. Sie erzeugt mehr fortpflanzungsfähige Nachkommen. In der sexuellen Population sind die Männchen von den Weibchen abhängig.
337
+ - The human chromosome I has how many distinct genes? 3148.
338
+ - Was heisst "XIST", wo wird es exprimiert? XIST steht für "X-inactive specific transcript". Es wird nur in den Barr-Körperchen exprimiert.
339
+ - Nenne 4 chromosomale Systeme der Geschlechtsbestimmung. A: (1) X/Y-System (2) X/O-System (3) Z/W-System (4) haplo-diploides System
340
+ - APC, in der Chromosomenbiologie, baut was ab? Securin.
341
+ - Was müssen wir abbauen um eine Trennung der Chromatiden zu ermöglichen? Cohesin.
342
+ - How can geneticists constitute triploids (3n)? By crossing tetraploids with diploids.
343
+ - Why are polyploids with odd numbers of chromosome sets usually sterile? Because their gametes are aneuploid.
344
+ - Which gene is responsible for "male sex determination"? SRY.
345
+ - Welches Gen kodiert für den "männlichen" TDF-Faktor? Das SRY Gen, das auf dem Y-Chromosom liegt.
346
+ - Nenne 2 Proteine die eine Rolle bei der meiotischen Rekombination spielen. A: (1) Spo11 (2) Mre11
347
+ - Das Protein, welches diese DSB verursacht, wird Spo11 genannt. Wieso dieser Name? Der Name leitet sich von einer Hefemutante ab, die man "Sporulation Deficiency" genannt hatte.
348
+ - Nenne 3 Vorteile somatischer Paarung. A: (1) Erlaubt Promoter Sharing (2) Ermöglicht Rekombinations-Reparatur in G1 (3) Erleichtert Homologensuche in der Meiose durch Vorsortierung
349
+ - A. W. für "somatische Paarung"? Vegetative Paarung.
350
+ - Die Chromosomen im Zellkern besitzen 3 wichtige Zentren, sind also in Kompartimente unterteilt. Wie nennt man diese 3 Kompartimente? (1) Transcription Factories (2) Replication Factories (3) Repair Centers
351
+ - Ich merke das viel Spo11 an ein Chromosom gebunden ist. Was mag ich daraus folgern? Dies sind "Hotspots" der Rekombination. Es mag an diesen Orten zu vermehrten Doppelstrangbrüchen kommen.
352
+ - Kann ein Bivalent mehr als 1 Crossover haben? Ja. Diese können sich dann zufällig auf die Chromatiden verteilen.
353
+ - Wann kommt es zur sogenannten "Bouquet-Anordnung" der Chromosomen? Im Zygotän.
354
+ - Welche drei Strukturen sehen wir im synaptonemalen Komplex wenn wir ihn elektronenmikroskopisch untersuchen? (1) Zentralelement (2) Transversalfilament (3) Lateralelement
355
+ - Wie unterscheidet sich der Sporophyt vom Gametophyt? Der Sporophyt ist diploid, der Gametophyt ist haploid.
356
+ - In Eukaryoten, wie ist die Histon:DNA Ratio? 1:1 zu 1:3.
357
+ - Was bewirkt die Ipl1-Kinase in der Zelle? Sie destabilisiert monoorientierte Mikrotubuli.
358
+ - Bei ChIP-chip, wie gross sind die DNA-Fragmente? 0.2-1 kilobases.
359
+ - Nenne 3 verschiedene Methoden wie man die Verteilung von DNA-bindenden Proteinen untersuchen kann. A: (1) Chromatin Immuno Precipitation (ChIP) (2) ChIP on a DNA chip aka "ChIP-chip" (3) ChIP-Sequencing aka "ChIP-Seq"
360
+ - Wie kann Sgo1 ("Shugoshin") centromerisches Cohesin schützen? Es rekrutiert eine Phosphatase (PP2A), welche die Phosphorylierung hintanhält.
361
+ - Warum der Name "ChiP-Seq"? Weil es am Ende noch einen "massive parallel sequencing" Schritt gibt.
362
+ - Which enzyme cleaves the Protein Kleisin? Separase.
363
+ - Wie bewegt sich der Dam1-Komplex entlang des Microtubulus? Die Depolymerisierung der Mikrotubuli schiebt ihn voran.
364
+ - Kommt die Cytokinese vor der Karyokinese? Nein, zuerst kommt die Karyokinese.
365
+ - Wo erfolgt die Synthese der Ribosomen? Zum Großteil im Nucleolus.
366
+ - Ist es wichtig das die RNA Untereinheiten eng kodiert vorliegen? Ja. Durch das Processing eines einzigen Transkripts wird gewährleistet das diese Untereinheiten in stöchiometrischen Verhältnissen vorliegen.
367
+ - Sie betrachten eine Zelle und finden weniger Nucleolen als NORs. Wieso? Nucleolen sind nicht von Membranen umgeben und neigen zur Fusion - eventuell sind diese Nucleolen also fusioniert.
368
+ - Wann bildet sich der Nucleolus aus? Während der Interphase.
369
+ - Was bildet die "Nucleolus-organisierende Region" aus? Den Nucleolus.
370
+ - Im Elektronenmikroskop zeigen Chromosomen zahlreiche Chromatinfasern im Centromer. Wieso ist dies ein Problem? Diese Beobachtung widerspricht dem Dogma das 1 Chromatide = 1 DNA Molekül entspricht.
371
+ - Unterscheide "tandem duplication" von "insertional duplication"? (1) Tandem duplication: the duplicated region can be found adjacent to each other (2) Insertional duplication: the extra copy can be located elsewhere in the genome
372
+ - Was genau heisst eigentlich "t-loop"? Telomer-Loop.
373
+ - Wie funktioniert der Telomer-Elongationsmechanismus bei Drosophila? Drosophila besitzt HeT-A und TART ("Telomere-associated Retrotransposon"). Diese RNA Moleküle binden an freie DNA Enden ohne dafür eine spezifische Sequenz zu benötigen. Das funktioniert nach dem gleichen Prinzip wie bei Telomerase- die Tel-Addition erfolgt durch reverse Transkription, das System ist aber unabhängig entstanden.
374
+ - Wie funktioniert das ALT ("Alternative Lengthening of Telomeres") System? ALT funktioniert zumeist über Rekombinationsvorgänge durch die Sequenzen aus anderen Stellen im Genom an die Chromosomenenden gehängt werden. Gelegentlich bilden sich auch Ring-Chromosomen.
375
+ - Gibt es ein Backup-System wenn die Telomerase inaktiv ist? Ja, ALT Mechanismen. "Alternative Lengthening of Telomeres".
376
+ - Natternzungenfarn 2n? 2n = 1260.
377
+ - Was besagt das "Mullers Ratchet"? In Diploiden asexuellen Populationen häufen sich nachteilige Mutationen an, die im heterozygoten Zustand toleriert werden. Diese Mutationen können nicht aus der Population eliminiert werden. Schliesslich wird eines der beiden Allele von jedem Gen betroffen sein, und die Zelle ist de-facto haploid.
378
+ - Was ist ein "Chromonema"? Als "Chromonema" bezeichnet man die kleinste, noch lichtmikroskopisch auflösbare Struktur des Chromatins im Chromatid. Es weist eine fädige Längsstruktur auf.
379
+ - A. W. für "Chromosomenskelett"? Scaffold.
380
+ - Welche Pflanze hat (mit 2n=1260) die höchste Chromosomenzahl im gesamten Pflanzenreich? Die Natternzunge "Ophioglossum reticulatum", ein Farn.
381
+ - Verändert sich bei einer parazentrischen Inversion die Armlänge? Nein.
382
+ - Was ist der "Spektralkaryotyp"? Eine visualisierte Technik bei der wir die verschiedenen Chromosomen mit einem Fluoreszenzfarbstoff markieren.
383
+ - Was heisst "azentrisch", was heisst "dizentrisch"? Azentrisch heisst das das Centromer fehlt, dizentrisch heisst das ein Chromosom zwei Centromere besitzt.
384
+ - Ein "bivalent" besteht aus wieviele Chromatiden? 4.
385
+ - Englische Bezeichnung für "genetische Kopplungskarte"? Linkage Map.
386
+ - Von den 4 Chromatiden eines Bivalents sind wieviele an einem Crossover beteiligt? 2.
387
+ - Kann ein Bivalent mehr als 1 Crossover haben? Ja. Diese können sich dann zufällig auf die Chromatiden verteilen.
388
+ - Gibt es DNA-Verdopplung während der Meiose? Nein. Die Teilungen finden ohne dazwischenliegende DNA Verdoppelung statt.
389
+ - Was sind "Chiasmen"? Die cytologisch sichtbare Folge von Crossovers in Diplotän und Diakinese.
390
+ - Was sind "Recombination Nodules"? Das sind Protein-Aggregate an Stellen wo Rekombination stattfindet.
391
+ - Was findet man an den "Hotspots" der Rekombination auf zellulärer Ebene? Eine verstärkte Bindung von Spo11.
392
+ - Wo vor allem finden wir "Robertsonsche Translokationen"? In der Nähe des Centromers.
393
+ - Die Verteilung des Spo11 Proteins entlang der Chromosomen korreliert mit dem Auftreten von ...? Meiotischen DSBs.
394
+ - Was ist "presynaptic alignment" in der Cytologie? Die parallele Anordnung homologer Chromosomen.
395
+ - Was ist "genomische Prägung" (Genomic Imprinting)? Gene, die dem Genomic Imprinting unterliegen, werden abhängig von ihrer elterlichen Herkunft exprimiert oder nicht exprimiert.
396
+ - Für eine Inversion sind wieviele Spaltungen notwendig? 2.
397
+ - Welche 4 Kernphasewechsel kennen wir bei Eukaryoten? (1) Haplont (2) Diplont (3) Haplodiplont (4) Diplohaplont
398
+ - In humans, when does the SRY gene become active in humans? 6-8 weeks during development, after fertilization.
399
+ - Warum sind meist weniger Nucleolen als NORs vorhanden? Nucleolen neigen zur Fusion.
400
+ - Wer regeneriert die Telomere? Die Telomerase.
401
+ - Give 1 example for a "hypoploid-associated disease" of man. A: Cri-du-chat.
402
+ - Definiere "reciprocal translocation". A: Pieces of two nonhomologous chromosomes are interchanged without any net loss of genetic material.
403
+ - Unterscheide para von perizentrischer Inversion. A: peri inkludiert das Centromer, para nicht. Bei peri verändert sich die relative Armlänge des Chromosoms.
404
+ - Die Phosphorylierung welchen Proteins begünstigt die Öffnung des Cohesin-Rings? Die Phosphorylierung des Kleisins ("Scc1").
405
+ - Wie hat man CLiPs ("Chromatid Linking Proteins") nachweisen können? Durch Immunfärbung mit CREST Autoantiserum.
406
+ - A. W. für <one>Kernteilung</one> und <one>Zellteilung</one>? Kernteilung ist die "Karyokinese", Zellteilung ist die "Cytokinese".
407
+ - Was ist die Konsequenz der XY Heterozygotie bei Männern und der Verarmung des Y an Genen? Männer sind häufiger von X-chromosomal gebundenen rezessiven Defekten betroffen.
408
+ - Bei der Kreuzung eines Heterozygoten mit einem Homozygoten sind wieviel % der Nachkommen wieder heterozygot? 50%.
409
+ - Mit welchem Experiment wurde gezeigt, das Interphase-Chromosomen in Domänen/Territorien organisiert sind? Mittels des "Laser-UV-Microbeam" Experiment.
410
+ - Die <one>Polyploidie ganzer Individuen</one> entsteht oft durch ...? Durch den Ausfall oder den Abbruch der Meiose.
411
+ - Wann wurde die Chromosomenzahl des Menschen mit 2n = 46 korrekt bestimmt? 1956.
412
+ - Nenne 3 verschiedene chromosomale Systeme zur Geschlechtsbestimmung. A: (1) Das XY-System (2) Das XO-System (3) Das WZ-System
413
+ - Korreliert die Zahl der Chromosomen mit der Komplexität eines Organismus? Nein.
414
+ - Wieviele Mikrotubuli hat der Mensch pro Chromosom? Etwa 20-30.
415
+ - Der Trisomie 21 des Menschen entspricht welcher Trisomie beim Schimpansen? Trisomie 22.
416
+ - Die Kulturweizensorten sind durch welches genetische Phänomen entstanden? Allopolyploidisierung.
417
+ - Was ist die "sympatrische Artbildung"? Radikale Veränderungen im Genom schaffen Kreuzungsbarrieren, wodurch eine neue Art inmitten des Verbreitungsgebietes der Ursprungsart entsteht.
418
+ - Welches menschliche Chromosom bestimmt den M-N blood type? Chromosome 4. URL: http://en.wikipedia.org/wiki/MN_blood_group
419
+ - Die Rabl-Anordnung der Chromosomen ist eine Folge der ...? Ist eine Folge der Orientierung der Chromosomenarme in der Anaphase.
420
+ - Die 4C Technik. Wofür stehen die 4 C? Chromosome Conformation Capture on Chip.
421
+ - Nenne 3 wichtige Punkte zu den Chromosomen der Dinoflagellaten. A: (1) Sie sind während des gesamten Zellzyklus kondensiert (2) Es gibt keine Histone und Nukleosomen (3) 62% der Thymin-Basen sind durch Hydroxymethyluracil ersetzt
422
+ - Wie kann man den Nachweis von "interchromosomalen Kanälen" erbringen? Durch die Expression des Filament-Proteins Vimentin in menschlichen Zellkernen.
423
+ - A. W. für "Chromosomendomänen"? Chromosomenterritorien.
424
+ - Wie können wir den Nachweis erbringen das der "Proliferating nuclear antigen" in replication factories liegt? Wir verwenden die Immunogold-Färbung des PCNA.
425
+ - Wieviele Chromosomen haben HeLa-Zellen? 82 Chromosomen durchschnittlich, sie besitzen also einen stark veränderten Karyotyp.
426
+ - Nenne 3 Vorteile von "somatischer Paarung". A: (1) Erlaubt Promoter-Sharing (2) Ermöglicht Rekombinations-Reparatur in G1 (3) Erleichtert Homologensuche in der Meiose durch Vorsortierung
427
+ - Was mag die "Komplexheterozygotie" minimieren? Komplexheterozygotie mag zur Vermeidung der genetischen Rekombination zwischen Chromosomensätzen verwendet werden.
428
+ - Bei Ciliaten kann es zur sogenannten "Amitose" kommen. Was ist dies? Amitose ist die Vergrösserung der Zelle durch Zellkernteilung und Polyploide, ohne Zellteilung.
429
+ - Was gilt bei "holozentrischen Chromosomen"? Bei holozentrischen Chromosomen erstreckt sich das Kinetochor über die gesamte Chromosomenlänge.
430
+ - Gib ein Beispiel für einen Organismus (deutsche Bezeichnung), der eine Reduktion der Chromosomenzahl durch multiple Robertsonssche Fusionen erreichte. A: In der Gattung der "Zwerghirsche".
431
+ - Was ist der Ursprung des Down-Syndroms? Nondisjunction des Chromosom 21 während der Meiose.
432
+ - When do we see the zigzag structure of chromatin? When we use the technique called "cryopreservation".
433
+ - Was ist "Polytänie"? Ein Spezialfall der Polyploidie, bei dem die neu synthetisierten Chromatiden aneinander haften bleiben.
434
+ - Warum ist eine ungerade Anzahl an Chromosomen so selten zu finden? Sie werden nicht verlässlich von Generation zu Generation weitergegeben. Ein polyploider Organismus mit ungerader Anzahl von Homologen bildet im Allgemeinen keine genetisch ausgeglichenen Gameten her.
435
+ - Bei Pflanzen, wie hoch ist die grösste bekannte Chromosomenzahl? 640.
436
+ - What is the "mitotic index"? The proportion of cells in mitosis.
437
+ - Wer erfand das Wort "Telomer", und wann? J. Muller, im Jahre 1938.
438
+ - Grösste bekannte Chromosomenzahl bei Säugern in n? 102 Chromosomen.
439
+ - When do Chlamydomonas Isogametes join together in fertilization? Under unfavorable nutrient conditions, such as "nitrogen depletion".
440
+ - In der Genetik, wofür steht die Abkürzung "XIC"? Wie wurde es gefunden? Erzählen Sie zudem etwas über XIST. A: XIC ist das "X Inactivation Center". Es wurde gefunden dank "Deletionsexperimenten". Diese Deletion verhinderten die Inaktivierung eines X-Chromosoms. Ein Gen wird auf dem inaktiven X-Chromosom exprimiert, das "XIST Gen" ("X inactive specific transcript"). XIST hat strukturelle Aufgaben (besitzt keinen ORF) und findet sich an inaktiven X-Chromosomen.
441
+ - In Cytobiology, what are "interchromosomal channels"? This is a region of the nucleus that does not contain chromatin.
442
+ - In der Cytogenetik assoziert "Shugoshin" mit welchem Protein, das Cohesin dephosphoryliert und dadurch die Aktivität von Separase während Meiosis I unterbindet? Shugoshin assoziiert mit PP2A.
443
+ - Down syndrome is usually a result of ... ? A result of nondisjunction of the maternal chromosome 21 during meiosis.
444
+ - Human centromere function requires n bp? 450.000 bp.
445
+ - A. W. für "centromere"? Primary constriction.
446
+ - Mit welchem Test können wir Barr-bodies anfärben? Mit der "Feulgenreaktion".
447
+ - Das menschliche X-Chromosom hat n Gene? 1098.
448
+ - CENP-B, CENP-C und CENP-G machen was? Sie nehmen Kontakt auf zur Satelliten-DNA.
449
+ - Wenn wir Chromomycin einsetzen, was passiert? Chromomycin lagert sich bevorzugt an GC-reiche DNA an.
450
+ - Wo finden wir den Shelterin-Komplex? In den menschlichen Telomerstrukturen.
451
+ - Warum gibt es die t-loops bei Säugetier-Chromosomen? Das ist eine Schutzmassnahme. DNA-Enden werden so vor ungewollter Reparatur geschützt.
452
+ - Wie unterscheidet sich die Telomerase-Aktivität von Einzellern und Vielzellern? Bei Einzellern wie Hefe ist die Telomerase nach Bedarf aktiv, bei Vielzellern normalerweise nur in der Keimbahn.
453
+ - Bei Telomer, was heisst das Protein POT1? "Protection of Telomeres".
454
+ - Wie wird eine Kopplungskarte erstellt? Eine Kopplungskarte wird durch "Analyse von Rekombinationsereignissen" erstellt.
455
+ - Was ist "Monopolin" in der Genetik und welche Funktion erfüllt es? Monopolin ist ein Protein-Komplex in Hefe (Yeast), der aus vier Proteinen besteht, und für die Segregation von homologen Centromeren an gegenüberliegende Polen während der Anaphase I der Meiosis verantwortlich ist.
456
+ - Bei der Bäckerhefe, welcher Proteinkomplex hält die Schwestercentromere so zusammen, dass sie in der 1. meiotischen Teilung als Einheit funktionieren können? "Monopolin".
457
+ - Welche Aufgabe hat "Monopolin"? Hält in der Hefe die Schwestercentromere zusammen.
458
+ - Was passiert bei Triploidie eines Menschen? Spontane Abortion.
459
+ - Eine wahrscheinliche Ursache für die Entstehung von Aneuploidien? Die verminderte Cohesion von Schwesterchromatiden.
460
+ - Wann wurde die menschliche Chromosomenzahl korrekt mit 2n = 46 bestimmt? 1956.
461
+ - Molekular betrachtet, wie kommt es oft zu Polyploidien? Die Polyploidie ganzer Individuen entsteht oft durch den Ausfall oder den Abbruch der Meiose, wodurch diploide Gameten entstehen. Polyploidien einzelner Zellen hingegen entstehen oft durch aufeinanderfolgende Replikationszyklen bei gleichzeitigem Ausfall der Mitose.
462
+ - What "useful effect" do plant polyploids have? Polyploid plant species tend to be larger, and also produce larger seeds and larger fruits.
463
+ - Was sind die "B-Chromosomen"? Dies sind Chromosomen, die bei manchen Organismen zusätzlich zum normalen Karyotyp auftreten. Synonym werden sie auch als überzählige oder "akzessorische Chromosomen" bezeichnet. Reguläre Chromosomen nennt man A-Chromosomen. Häufig ist die Anzahl an B-Chromosomen variabel. In manchen Fällen kommen sie nicht in allen Geweben vor.
464
+ - Wann wurden die Chromosomen erstmals beschrieben? 1828.
465
+ - Was ist "Nondisjunction"? Das Unvermögen von Chromosomen sich zu trennen.
466
+ - Welche Auswirkungen können parazentrische Inversionen haben? Centromer liegt NICHT im invertierten Bereich, Inversionsschleife bei der somatischen Paarung, Crossover bewirkt "unbalancierte Chromosomen bei den Gameten".
467
+ - Wie heisst der "Kammmolch"? Triturus cristatus.
468
+ - Wie kann man oft "perizentrische Inversionen" erkennen? Das Centromer ändert oft seine Position im Chromosom.
469
+ - Was sind "Robertsonsche Ereignisse"? Das sind Translokationen, bei der Austausche in Centromer-Nähe stattfinden. Dies führt zu einer Veränderung der Chromosomen-Zahl.
470
+ - Was ist die "Aneuploidie"? Die Aneuploide ist eine "Genommutation" (numerische Chromosomenaberration), bei der einzelne Chromosomen zusätzlich zum üblichen Chromosomensatz vorhanden sind, oder fehlen. Liegt keine Aneuploidie vor, spricht man von "Euploidie".
471
+ - Was ist der "Karyotyp"? Der Karyotyp bezeichnet in der Cytogenetik die Gesamtheit aller "zytologisch erkennbaren Chromosomeneigenschaften" eines Organismus.
472
+ - Wieso gibt es so wenige Trisomien im Menschen? Die meisten sind "embryonic lethals".
473
+ - How can XXX in humans survive? 2 of 3 X-Chromosomes are inactive.
474
+ - Welchen Hinweis gab es auf "repetitive DNA Sequenzen im Genom"? Satelliten-DNA, nach Ultrazentrifugation, im CsCl-Gradienten.
475
+ - A. W. für "Isochromosome"? Half-Chromosome.
476
+ - Struktureller Unterschied zwischen Heterochromatin und Euchromatin? Heterochromatin ist praktisch immer stark kondensiert, Euchromatin nicht.
477
+ - In der Genetik, was heisst "perizentrisch"? Rund um das Centromer, also in der Mitte eines Chromosoms normalerweise.
478
+ - A. W. für "meiotic drive"? Ungleiche Gametenbildung.
479
+ - Die HeLa Zelllinie hat maximal wieviele Chromosomen? 82.
480
+ - Histone-Linkers range from .. to ... ? 8-114 bp.
481
+ - MeCP2 bindet an methylierte DNA. Welchen Effekt erzielt dies? Eine Reihe von Proteinen bindet an MeCP2, was zur "Verdichtung des Chromatins" beiträgt.
482
+ - In der Cytobiologie gibt es die sogenannte "Rabl-Orientierung" der Chromosomen. Was ist das? Alle Telomere liegen an der Kernmembran an, an der Kernmembran gegenüber sammeln sich die Centromere. Mit anderen Worten, Centromere und Telomere organisieren sich an gegenüberliegenden Polen des Kerns.
483
+ - Bei welchem Vorgang in der Zelle mögen wir eine "terminale Deletion" finden? Bei der "Ringchromosom-Bildung".
484
+ - Interagieren B-Chromosomen mit den Standard-Chromosomen? Ja.
485
+ - Welches Säugetier hat die geringste Anzahl an Chromosomen und was ist weiters besonders? Der Muntjac ("Muntiacus muntjak"). Der männliche Muntjac hat eine diploide Zahl von 7 Chromosomen, der weibliche Muntjac hat eine diploide Zahl von 6.
486
+ - Warum hat der Muntjac nur 7 Chromosomen? Die Möglichkeit einer "interchromosomalen Vermischung" ist gering.
487
+ - Auch Säugetiere können sogenannte "Ringchromosomen" haben. Was ist das? Das sind zirkuläre Chromosomen (eine Ringform) die eine Strukturanomalie darstellen, und immer mit einem Verlust von Chromosomenmaterial verbunden sind.
488
+ - Definiere "Isochromosom". A: An isochromosome is a chromosome that has lost one of its arms and replaced it with an exact copy of the other arm. An isochromosome may have two centromeres as a result of that (sie haben "zwei gleiche Teile").
489
+ - Welche 3 Arten von Heterochromatin können wir unterscheiden? (1) Konstutives Heterochromatin (2) Fakultatives Heterochromatin (3) Funktionelles Heterochromatin
490
+ - Since when did we use "Balancer Chromosomes"? Since as far back as 1975.
491
+ - What are "Balancer Chromosomes"? These are special, modified chromosomes used for genetically screening a population of organisms to select for heterozygotes.
492
+ - What can "Balancer chromosomes" prevent? They can prevent the crossing-over between homologous chromosomes during meiosis.
493
+ - Name the three important properties of "Balancer chromosomes". A: (1) they suppress recombination with their homologs (2) they carry dominant markers (3) they negatively affect reproductive fitness when carried homozygously
494
+ - Unterscheide "konstitutives Heterochromatin" von "fakultativem Heterochromatin". A: Konstitutives Heterochromatin liegt im Bereich des Centromers vor. Es befinden sich keine Gene in diesem Chromatin, jedoch können kleine RNAs transkribiert werden, die eine Funktion beim "Gene Silencing" haben. Fakultatives Heterochromatin hingegen ist z. Bsp beim "barr body" zu finden (mit anderen Worten ist dies "Sexchromatin").
495
+ - Was genau ist eine "Holliday junction", was passiert dort? Dies ist eine bewegliche Verbindung zwischen 4 DNA Strängen. Es sind Orte an denen genetische Information ausgetauscht wird, während der homologen Rekombination.
496
+ - Was sind "Genommutation"? Dies ist eine Veränderung in der Zahl der Chromosomen eines Organismus oder einer Zelle. Derartige Veränderungen sind erblich.
497
+ - Warum der Name R-Bänder? R für "Reverse".
498
+ - In der Genetik, was ist der "Heterozygotenvorteil"? Von einem Gen können 2 unterschiedlich optimierte Allele vorliegen. Dies erhöht die Flexibilität.
499
+ - Im Menschen, welches Gen kodiert für "Separin"? Das ESPL1 gene.
500
+ - Holliday Junctions können sich bewegen ("branch migration"). Welches Protein braucht es dafür bei Bakterien? Den RuvABC Complex bzw. das RecG protein (Molecular Motors using ATP)
501
+ - In der Genetik, was sind "Ringchromosomen"? Ringchromosomen entstehen, wenn es während der Zellteilung zu zwei Brüchen in den Chromatiden eines Chromosoms kommt, sodass die Telomersequenzen verloren gehen. Dadurch können die Enden des linearen Chromosoms durch die DNA-Reparaturmechanismen nicht mehr als solche erkannt werden. Als Konsequenz können die Bruchstellen so verbunden werden, dass sie einen Ring bilden. Zerreißt dieser Ring während der Mitose, kann Chromosomenmaterial verloren gehen (Deletion).
502
+ - Was macht der Komplex mit RAD51 in der Zelle? Bindet an DNA-Doppelstrangbrüche und leitet die DNA-Reparatur ein.
503
+ - Nenne 3 Methoden wie man einen Doppelstrangbruch der DNA reparieren kann. A: (1) Homologe Rekombination (2) Non-homologous end-joining (NHEJ) (3) Single strand annealing (SSA)
504
+ - In Bakterien, welches Protein erkennt die chi-Sequenzem? RecBCD.
505
+ - Ist die "genetische Rekombination" immer erwünscht? Nein, zum Beispiel nicht wenn die Umweltbedingungen gut sind.
506
+ - Was ist die "perizentrische Inversion" in der Genetik und wie unterscheidet sie sich von der "parazentrischen Inversion"? Eine Inversion ist eine chromosomale Änderung bei der ein Abschnitt um 180 Grad gedreht ist, "invertiert". Inversionen finden statt, indem ein Chromosom an zwei Stellen bricht = DNA-Doppelstrangbruch, und wieder zusammengefügt wird. Der Abschnitt zwischen den beiden Bruchstellen wird jedoch in umgekehrter Anordnung eingebaut, dadurch wird die Reihenfolge der Gene auf diesem Chromosomenabschnitt umgekehrt. Inversionen gehören zu den "Chromosomenmutationen". Bei einer "perizentrischen Inversionen" schliesst der umgekehrte Abschnitt auch das Centromer ein. Parazentrische Inversionen hingegen inkludieren nicht das Centromer. Durch Inversionen können so genannte "Balancer-Chromosomen" entstehen, bei denen die Rekombination unterdrückt ist.