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,235 @@
1
+ # =========================================================================== #
2
+ # === MOLECULAR BIOLOGY OF PLANTS
3
+ #
4
+ # Alles über die Molekularbiologie in Pflanzen, insbesondere von der
5
+ # BOKU. Stressphysiologie-Antwort bei Pflanzen. molplant tag, molplants tag.
6
+ # plantmol tag. Auch Plant Pathogens. Molplant. Mol_plant.
7
+ # molplantstag. molplanttag. molpltag.
8
+ #
9
+ # Auch "Plant Chromosome Structure and Evolution" und Phytohormone.
10
+ #
11
+ # Plant development biology will be covered in another file.
12
+ # =========================================================================== #
13
+
14
+ - <one>Chlorophyll a</one> appears in which colour, typically, to us humans? In <one>green</one>.
15
+ - Do we find <one>intermediate filaments</one> in plant cells? No.
16
+ - Give an example, in <lightgreen>plants</lightgreen>, for <one>inverted vacuoles</one>. A: Salt bladders.
17
+ - Das <one>Weizen-Genom</one> ist wie gross? <one>16.5 gigabase pairs</one>.
18
+ - <one>Arabidopsis</one> has how many phytochrome genes? Arabidopsis has <one>five</one> (5) phytochrome genes; PHY (A - E) e. g. PHY-A, PHY-B etc.
19
+ - Besitzen Pflanzen eine <one>Na-K-Pumpe</one>? <one>Nein</one>.
20
+ - In Planzenzellen: worauf beruht die <one>Plasmaströmung</one>? Auf der Wechselwirkung des Cytoskelett-Proteins "Aktin" mit dem Motorprotein "Myosin".
21
+ - <one>Gibberellins</one> are synthesized via which pathway? Gibberellins are synthesized via the <one>mevalonic acid pathway</one>.
22
+ - Give an example of <one>plant hormones</one> that are <two>diterpenes</two>. A: The <one>Gibberellins</one> are diterpenes.
23
+ - <one>Chlorophylle</one> absorbieren Licht im welchen Wellenbereich? (1) <one>rote Wellenlänge</one> (2) <one>blaue Wellenlängen</one>
24
+ - Give two examples for <one>redox-modifications</one> in plants. A: (1) S-nitrosylation (2) <one>S-glutathionylation</one>
25
+ - <one>Chloroplast movement</one> ist ein Schutzmechanismus vor Schäden bei starken Lichtintensitäten, abhängig von Photorezeptoren. Wovon hängt dieser Schutzmechanismus zellulär ab? Von <one>Actin</one>.
26
+ - In plants: how is the <one>flowering time</one> determined in general? Flowering time is determined by quantifying the number of "rosette leaves".
27
+ - Eine Pflanze mag versuchen, ihre Zellwand mittels <one>Callose</one> zu verstärken. Was ist <one>Callose</one>? Callose ist das "Beta-1,3 Polymer der Glucose".
28
+ - <one>2,4-Dichlorphenoxyessigsäure</one> ähnelt welchem <two>Phytohormon</two>? <one>Auxin</one>. URL: https://de.wikipedia.org/wiki/2,4-Dichlorphenoxyessigs%C3%A4ure
29
+ - Telomer-Struktur bei <one>Arabidopsis</one>? <one>TTTAGGG</one>. (7 Nukleotide in Summe.)
30
+ - In plant genetics: what does the "tfa" gene stand for? <one>Things falling apart</one>.
31
+ - Plants need <one>Glucose</one> for ...? Synthesis of the "plant cell wall".
32
+ - Welche <one>Aminosäure</one> schützt vor <two>Austrocknung</two>, in Pflanzen? <one>Prolin</one>.
33
+ - <one>Pectin</one> consists of <two>how many different polymers</two>? Of <one>3</one>.
34
+ - <one>Cytokinins</one> are compounds with a structure resembling ...? <one>Adenine</one>.
35
+ - Wie wirkt "Gibberellin" molekularbiologisch? Es <one>entfernt den Repressor von dem Transkriptionskomplex</one>.
36
+ - Which <one>plant gene</one> is essential for cold- and salt tolerance? The <one>MKK2 gene</one>.
37
+ - Beim <one>Herzstadium</one> eines pflanzlichen Embryos: was sind die beiden Auswölbungen des Herzen? Dies sind <one>die späteren Cotyledonen</one>.
38
+ - In general: how do <one>organic osmolytes</one> accumulate mechanistically in plants? The rate at which they are synthesized, is increased.
39
+ - Ist <one>pflanzliche Stärke</one> optisch aktiv? Ja.
40
+ - In plant biology: why were the <one>cytokinins</one> named that way? Because due to <one>their ability to promote cytokinesis</one> (= cell division).
41
+ - Gibt es Pflanzen, die ohne Photosynthese überleben können? Ja - zum Beispiel die Alge <one>Chlamydomonas reinhardtii</one>.
42
+ - In 1864, the <one>triple response</one> was first observed, caused by ethylene. What are the 3 parts of the triple response? (1) stunting of growth (2) twisting of plants (3) abnormal thickening of stems
43
+ - Wieso besitzen <one>Chloroplasten</one> ein sehr kleines Genom? Weil die meisten Funktionen durch "Kerngene" bereitgestellt werden.
44
+ - Phototropin is a <one>light-activated autophosphorylating serine/threonine kinase</one> that binds what exactly, for this to function as "blue light-absorbing chromophores"? <one>Two flavin mononucleotide</one> (FMN) molecules.
45
+ - Nenne ein <one>Alkaloid</one>, das als <two>Hustenmittel</two> Verwendung findet. A: <one>Codein</one>.
46
+ - Bei <one>Kren</one> wird Sinigrin in der Vakuole gespeichert. Wenn die Vakuole zerstört wird kommt Sinigrin mit dem Enzym ... in Kontakt und scharf riechendes Isothiocyanat wird freigesetzt. A: Das Enzym ist <one>Myrosinase</one>.
47
+ - Das Phytohormon <one>Zeatin</one> hat wieviele C-Atome? 5.
48
+ - Gemeinsamkeit von Trn1 und trnA? Sie flankieren das <one>16S rRNA Gen</one>.
49
+ - Wie können in Pflanzenzellen Organellen entlang der Mikrotubuli des Zellskelettes bewegt werden? Dank <one>Motorproteine</one>.
50
+ - Chlorophyll a und b unterscheiden sich lediglich dadurch, dass das Chlorophyll a am 2. Pyrrolring eine Methylgruppe und das Chlorophyll b an derselben Stelle ... hat. A: eine <one>Aldehydgruppe</one>.
51
+ - Name two plants that show <one>cytoplasmic male sterility</one>. A: (1) <one>sorghum</one> (2) <one>maize</one>
52
+ - Was war früher der beste <one>Zusatz für eine pflanzliche Zellkultur</one>? <one>Kokosmilch</one>.
53
+ - Es gibt das Phytohormon <one>Auxin</one>. Das Wort stammt vom lateinischen "augere". Was heisst "augere"? <one>Wachsen</one>.
54
+ - What is the general role of the <one>flavonoids</one> in plants? Flavonoids act as <one>UV protectants</one>.
55
+ - What is <one>the main driving force</one> of <two>intercellular auxin transport</two>? The <one>pH level</one>.
56
+ - Does <one>Arabidopsis thaliana</one> have a <two>symbiosis with N2-fixing bacteria</two>? No.
57
+ - Name 4 ways how <one>bacteria</one> can invade a plant cell. A: (1) through the stoma (2) through a wound (3) through a hydathode (4) through a <one>nectarthode</one>
58
+ - How many enzymes are, in general, required in plants for the synthesis of <one>anthocyanin</one>? <one>4</one>.
59
+ - In pathogenicity, including plant pathogenecity: what does <one>AUDPC</one> stand for? The <one>area under the disease progression curve</one>.
60
+ - Can we find <one>linker histones</one> in plants? Yes. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3941478/
61
+ - What effect should be the case if <one>a pathogenicity gene</one> is lost? This should lead to the "complete loss of pathogenicity".
62
+ - <one>Brachypodium distachyon</one> ist verwandt mit ...? <one>Weizen</one> und <one>Gräsern</one>.
63
+ - What is <one>the family</one> of the <two>Arabidopsis thaliana</two>? The <one>Brassicaceae</one>.
64
+ - When was the first cytokinin ("kinetin") isolated and discovered? In "1955", by Miller et al.
65
+ - Durch die Kartoffelfäule starben wieviele Iren vor 1900? Etwa "500.000".
66
+ - In Pflanzen, wofür steht die Abkürzung für das Enzym "DFR"? "Dihydroflavinol-Reduktase".
67
+ - Carotine haben eine gelbe oder orange Farbe. Molekular betrachtet, wovon hängt diese Färbung ab? Von der Anzahl an konjugierten Doppelbindungen.
68
+ - High concentrations of "auxin" stimulate the production of which other phytohormone? Auxin stimulates the production of "ethylene", at high concentrations.
69
+ - Den gleichen Aufbau wie die "Chlorophylle" haben die ... ? "Phäophytine" - jedoch besitzen sie "kein Zentralatom" und sind deshalb ungeladen.
70
+ - "Chlorophyll" absorbiert welches Licht welcher Wellenlänge? (1) "blau": bei "480nm" (2) "rot": bei "700nm"
71
+ - Durch die Thylakoidmembran wird das Innere des Chloroplasten in welche zwei Kompartimente geteilt? (1) das "Thylakoidlumen" (2) das "Stroma"
72
+ - "Glyphosat" hemmt was? Die "EPSP-Synthase".
73
+ - Was bestimmt letzten Endes die "Grenzen der pflanzlichen Entwicklung" (ausgenommen Energie oder Wasser)? Das "planzliche Genom".
74
+ - The plant can synthesize Ethylene from which aminoacid? "Methionine".
75
+ - Welche "enzymatische Akvititäten" vereint RUBISCO? (1) "Carboxylase-Aktivität" (2) "Oxygenase-Aktivität"
76
+ - Arabidopsis thaliana (Brassicaceae) has "2n" ... ? It has 10 chromosomes in 2n ("2n = 10").
77
+ - Most SUMO-modified proteins, at the least in plants, contain a consensus motif. How many aminoacids? This motif is a "tetrapeptide"; thus it contains four aminoacids.
78
+ - Which plant hormone is involved in "fruit ripening"? "Ethylene".
79
+ - Nenne zwei Auswirkungen von Wassermangel in Pflanzenzellen, also auf "zellulärer Ebene". A: (1) eine Verminderung der Membranintegrität (2) Veränderung in der Raumstruktur der Proteine
80
+ - If we take the relatively small Arabidopsis genome, how much percent of the DNA is composed of various repetitive elements? About "20%".
81
+ - Pflanzen können durch Pathogene angegriffen werden. Nenne ein Zellwandprotein, das auf der Innenseite der Zellwand abgelagert wird. A: "Extensin".
82
+ - Welches Phytohormon ist für das "Streckungswachstum" bei Pflanzen hauptverantwortlich? "Gibberellin".
83
+ - Wie sehen Monopteros-Mutanten in Arabidopsis aus? Ihnen fehlt der "Unterteil" des Embryos.
84
+ - Das "tmr Gen" im Ti-Plasmid kodiert für? Die "Isopentenyltransferase".
85
+ - Phytochrome absorbieren bei welchen zwei Wellenlängen? (1) 660 nm (2) 730 nm
86
+ - Phytochrome, in Pflanzen, existieren in zwei Varianten. Welchen? (1) "Hellrot-absorbierende Form" (Pr) (2) "Dunkelrot-absorbierende Form" (Pfr)
87
+ - Nenne eine Pflanzengruppe die "pokilohydre" ist. A: Die "Pteridophyta".
88
+ - Findet man Hox-Gene in Pflanzen? Nein.
89
+ - Prolamellarkörper finden wir, zum Beispiel, in ...? Etioplasten.
90
+ - Aus einem "Etioplasten" mag ein ... plast werden. A: Chloroplast.
91
+ - What may be the role of RNA polymerase IV and V in plant cells? They create an inhibitory chromatin structure by small interfering RNAs.
92
+ - Plant cells usually have how many different RNA-Polymerases? 5.
93
+ - Wie nennen wir, auf englisch, die Transformation einer Arabidopsis-Pflanze mit Agrobacterium tumefaciens, im Labor? "floral dip".
94
+ - Welche zwei Phytohormone steuern das "Wachstum von Pflanzenzellen"? (1) Auxin (2) Cytokinin
95
+ - Can "phytochromes" move into the nucleus? Yes.
96
+ - What happens when a "mature chloroplast" ages? A "Gerontoplast" arises.
97
+ - RUBISCO hat wieviele Subunits? Ist es symmetrisch? 16 subunits. 8 identische grosse und 8 identische kleine Subunits. RUBISCO ist ein symmetrisches Molekül.
98
+ - Aquaporine in Pflanzen: sind diese beeinflussbar? Ja - Phosphoyleriung der Aquaporine kann die Geschwindigkeit der Wasserbewegung beeinflussen.
99
+ - Welcher pflanzliche Plastid ist degeneriert? Der "Gerontoplast".
100
+ - RUBISCO Enzymtyp? Lyase.
101
+ - Give an example, in plants, for a relatively young "allopolyploid species". A: Rapeseed, aka "Brassica napus".
102
+ - Genomgröße von "Arabidopsis thaliana"? 135 MB. URL: https://en.wikipedia.org/wiki/Arabidopsis_thaliana#Use_as_a_model_organism
103
+ - Nenne einen "roten Farbstoff" der Pflanzen. A: "Phycoerythrin".
104
+ - Die "SAR-Antwort" (Systemic Acquired Resistance) der Pflanze wird durch welche Substanz ausgelöst? Salicylsäure. URL: https://en.wikipedia.org/wiki/Systemic_acquired_resistance
105
+ - Fungal plant pathogens produce "HSTs". What does this abbreviation stand for? "Host-selective toxins".
106
+ - ACC synthases are important for the synthesis of which plant hormone? Ethylene.
107
+ - Is PS I or PS II more susceptible to "photodamage"? PS II.
108
+ - Which light-colours do "phytochromes" and "cryptochromes" make use of? (1) cryptochromes: blue light (2) phytochromes: red light
109
+ - Functionally, we can differ between which 2 variants of phytochromes? (1) light-labile (2) light-stable
110
+ - Are the "gibberellins" more acidic or basidic compounds? They are more "acidic compounds".
111
+ - Plants possess a unique class of CDKs, designated ...? B-type CDKs.
112
+ - Phototropin has a chomophore. What colour of the light does this absorb? It absorbs "blue light".
113
+ - Welches Phytohormon setzen "dehydrierte Mesophylzellen" frei? Abscisinsäure.
114
+ - What are the "GUN mutants"? GUN stands for "genome uncoupled".
115
+ - Aus dem "Proplastiden" können 7 andere Plastiden werden. Welche? (1) Leucoplast (2) Elaioplast (3) Amyloplast (4) Chromoplast (5) Gerontoplast (6) Etioplast (7) Mature chloroplast
116
+ - Chloroplast avoidance movement reduces ... in plants. A: photodamage.
117
+ - The absorbance maximum for phytochrome is at n nm? About 650-670 nm.
118
+ - Phytochrome consists of two identical chains, A and B. Each chain has two domains. Which ones? (1) PAS domain (2) GAF domain
119
+ - "Arabidopsis thaliana" hat n Chromosomen? 5.
120
+ - Haben Pflanzen eine "angeborene Immunabwehr"? Ja.
121
+ - Nenne eine Region am Gibberellinrezeptor. A: Die F-Box.
122
+ - Das Pathogen "Erwinia amylovora" greift zum Beispiel welche Pflanzen an? Äpfel und Birnen.
123
+ - Warum ist das "Sporopollenin" in der Außenwand der Pollenkörner so besonders? Sporopollenin ist der chemisch am widerstandsfähigste Naturstoff überhaupt.
124
+ - Most plants contain more "chlorophyll a" or "chlorophyll b"? Most plants contain more chlorophyll a.
125
+ - RUBISCO kann wieviele CO2 Moleküle in der Sekunde fixieren? 3.
126
+ - Stress can "reduce the average plant productivity" by ...? 60-80%.
127
+ - Wieviele Untereinheiten besitzt ein Phytochrom? 2.
128
+ - Ein Chloroplast entsteht woraus und wie? Durch eine "lichtinduzierte Entwicklung" aus einem Proplastiden.
129
+ - C4-Pflanzen, warum dieser Name? Das erste Zwischenprodukt der Photosynthese bei C4-Pflanzen ist "Oxalacetat", welcher aus vier Kohlenstoff-Atomen besteht.
130
+ - Was sind "Phycobilisomen"? Dies sind große Proteinkomplexe, die Cyanobakterien, Rotalgen und Cyanellen bei der Photosynthese nutzen.
131
+ - "Phytochrome" absorbieren vor allem welches Licht? Hauptsächlich "Hellrotlicht". URL: https://en.wikipedia.org/wiki/Phytochrome
132
+ - Ein "Chlorophyll-Molekül" hat wieviele Stickstoffatome? 4.
133
+ - Wichtigstes, charakteristisches Enzym der "Leguminosen"? Nitrogenase.
134
+ - Was ist das erste Entstehungsprodukt von "RUBISCO"? 3-Phosphoglycerat.
135
+ - Wer erzeugt, ausgehend von "Ribulose-1,5-bisphosphat", mehr direkte Produkte - die "Oxygenase" oder die "Carboxylase"? Die Oxygenase; sie erzeugt "3-Phosphoglycerat" and "2-Phosphoglycolat".
136
+ - Nenne ein Enzym das PPT ("Phosphinothricin") modifiziert. A: Die "PPT-Acetyltransferase".
137
+ - Woraus besteht ein "Phragmoplast"? Er besteht aus "Mikrofilamenten" und Mikrotubuli. URL: https://de.wikipedia.org/wiki/Phragmoplast
138
+ - In the "ABC gene flowering model, we may also have "D genes". What is the function of the D genes? Function D specifies the identity of the ovule.
139
+ - Chromosomensatz der Kartoffel? Sie ist tetraploid.
140
+ - Auxin entsteht aus welcher Aminosäure? Tryptophan.
141
+ - Bei Pflanzen, was meinen wir mit den "corticalen Mikrotubuli"? Dies sind Mikrotubuli, die unter dem Plasmalemma liegen.
142
+ - Die Form einer Pflanzenzelle wird von den Mikrotubuli bestimmt. Wieso? Bei der Bildung der Zellwand werden die Zellulosefibrillen stets parallel zu den Mikrotubuli angelegt; dies bestimmt somit die spätere Form der Zelle.
143
+ - Das "Arabidopsis Genom" enthält n Gene, die mit der Zellwandsynthese in Zusammenhang stehen? Über 1000 Gene.
144
+ - Wie wirken "Brassinosteroide" auf die Pflanze? Sie "fördern die Sprossstreckung".
145
+ - Was ist der Unterschied/Grund zwischen Pflanzen mit grossem und kleinem Genom? Der Unterschied ist vor allem im "Gehalt an mobilen genetischen Elementen" (Transposons) begründet.
146
+ - Welches pflanzliche Hormon bewirkt das Schließen der Stomata? Die "Abscisinsäure" (ABA).
147
+ - A. W. für "pflanzliche Jugendhormone"? Cytokinine.
148
+ - Which "plant hormone" is associated with "the triple response"? Ethylene.
149
+ - Abscisic Acid has which functional effect on "shoot growth" of a plant, in general? Abscisic Acid inhibits "shoot growth" of a plant.
150
+ - Does the movement of abscisic acid (ABA) in plants not exhibit polarity, like auxins? No. ABA is capable of moving both up and down the stem.
151
+ - Name 2 genes that are induced during ripening of fruits. A: (1) the enzyme "cellulase" (2) the enzyme "polygalacturonase"
152
+ - Violaxanthin is a carotenoid that is important for biosynthesis of "abscisic acid". How many carbons does it have? It has 40 (forty) carbon atoms.
153
+ - Name a phytohormone that is partially synthesized in the chloroplasts. A: Abscisic Acid (ABA). As a consequence, biosynthesis primarily occurs in the leaves.
154
+ - The production of ABA is accentuated by stresses such as ... (give 2 examples). A: (1) water loss (2) freezing temperatures
155
+ - Abscisic Acid (ABA) is what chemical type? ABA is a "sesquiterpenoid" (15-carbon).
156
+ - Degradation of cytokinins, in plants, occurs largely due to which enzyme? The "cytokinin oxidase".
157
+ - Wie wirken Cytokinine, zumindest in Pflanzen? Sie "stimulieren die Zellteilung".
158
+ - Where in a plant are "cytokinin concentrations" the highest? They are the highest in "meristematic regions".
159
+ - What was the first cytokinin that was discovered? Kinetin.
160
+ - CAM Pflanzen fixieren CO2 in der Nacht, an Phosphoenolpyruvat (PEP). Welches Enzym führt diese Fixierung durch? Eine cytosolische "PEP-Carboxylase".
161
+ - What is the general effect of auxin in regards to "flower parts" of a plant? Auxin stimulates the growth of flower parts.
162
+ - Welches Gen kodiert für den "Acetosyringon-Rezeptor"? VirA.
163
+ - Flavonoids can be synthesized by plants. Which amino acid is the precursor there? The amino acid "phenylalanine".
164
+ - A. W. für "plant steroids"? Brassinosteroids. URL: http://en.wikipedia.org/wiki/Brassinosteroid
165
+ - Anthocyanins are synthesized from which amino acid? Phenylalanine.
166
+ - Die Gibberelline der Pflanzen gehören zu welcher sehr häufigen Klasse, chemisch gesehen? Sie gehören zu den "Diterpenen".
167
+ - Welches Phytohormon ist für die Apikaldominanz verantwortlich? Auxin.
168
+ - Wie wurde das Phytohormon "Auxin" entdeckt? Durch Untersuchungen zum "Phototropismus".
169
+ - Nenne 6 Phytohormone. A: (1) Auxine (2) Cytokinine (3) Gibberelline (4) Abscisinsäure (5) Ethylen (6) Brassinosteroide
170
+ - Nenne die fünf Hauptklassen von Phytohormonen. A: (1) Abscisinsäure (2) Auxine (3) Cytokinine (4) Ethylen (5) Gibberelline
171
+ - Was bewirkt eine höhere Auxinkonzentration, beim Spross, einseitig? Das die beschattete, andere Seite rasch wächst, so das sich die Spitze eines Sprosses zum Licht hin krümmt.
172
+ - Kommt "Monopteros" in Tieren vor? Nein.
173
+ - Das Enzym RUBISCO hat n Untereinheiten und n aktive Zentren? 16UE, 8 katalytische Zentren.
174
+ - Welches Phytohormon verzögert den Blattfall? Auxin.
175
+ - "Auxin" ähnelt in seiner molekularen Wirkung welch anderem "Phytohormon"? Gibberellin.
176
+ - Zink (Zn) ist wichtig für welches Phytohormon? Auxin (Auxin-Synthese).
177
+ - Kann ein "physikalischer Reiz" die Induktion eines Phytohormons bewirken? Ja, zum Beispiel bei der Ethylenbildung.
178
+ - Welches Gas wirkt als "Ethylenantagonist"? CO2.
179
+ - What do we mean with "DH plants"? These are "double haploid" plants.
180
+ - Name a "tetraploid plant", that is quite important in central europe. A: potato.
181
+ - When does the phragmoplast form? During "late cytokinesis".
182
+ - Fördert oder hemmt Abscisinsäure das Wachstum bei Pflanzen? Es hemmt das Wachstum.
183
+ - Ist das Genom von "Triticum aestivum" oder das Genom von "Oryza sativa" grösser? Das Genom von "Triticum aestivum" ist grösser.
184
+ - Name a typical and very important, "quantitative trait" for plant breeders. A: Yield.
185
+ - Plants subject to "salt stress" accumulate ...? Organic osmolytes.
186
+ - Welches Phytohormon hilft beim Schliessen der Spaltöffnungen? Abscisinsäure.
187
+ - Where in plants does fatty acid biosynthesis take place? Within plastids.
188
+ - In the biosynthesis via the shikimate pathway, what is very important for a plant cell? The plastids.
189
+ - What is the final product of the shikimate pathway? Chorismic acid.
190
+ - In "plant genetics", what can acetosyringone induce? It can induce the "vir-genes" of the Ti-plasmid.
191
+ - Many plant nuclear genomes contain "accessory chromosomes". Give another word for these. A: "B chromosomes".
192
+ - Welches Enzym ist bei Pflanzen wichtig für die "Zellwandsynthese"? Die "Cellulose-Synthase".
193
+ - In plant cells, where can we find the "individual Golgi stacks"? Adjacent to the ER exit sites.
194
+ - Nenne 3 Substanzen, die von einer Pflanze der Außenwelt ausgesetzt sind. A: (1) Cutin (2) Suberin (3) Wachs
195
+ - The "chloroplast genome of higher plants" contains about n genes? About 120 genes.
196
+ - Was ist cpSRP? Der "chloroplast signal recognition particle".
197
+ - Why is a "phragmoplast" required? The phragmoplast is required for the subsequent formation of a new cell wall, which will separate the two daughter cells.
198
+ - Falls Pathogene in das Xylem eindringen kann sich eine Pflanze wie wehren? Indem diese Leitgefäße durch Thyllen verschlossen werden.
199
+ - Cutin besteht aus ... ? Hydroxyfettsäuren.
200
+ - What effect should there be if a "virulence gene" is lost? There should be a "slower development of disease syptoms", which can be measured via AUDPC, the "area under the disease progression curve".
201
+ - In plant-pathogen setups, what does the abbreviation "VIGS" refer to? This is "Virus induced gene silencing".
202
+ - Plants lives are very stressful. Name two "stress hormones" in plants. A: (1) ethylene (2) ABA
203
+ - Heat stress in "Triticum aestivum" can result in ...? "leaf senescence".
204
+ - The "maize HM1 gene" provides protetion against ... ? The lethal "leaf blight and ear mold disease".
205
+ - How does "H2O2" get into the plant cell? Via the "apoplast".
206
+ - Name a resistance gene in maize. A: HM1.
207
+ - How can we detect "SUMOylation"? Via Immunoblotting, through "anti-SUMO antibodies".
208
+ - Auxin steuert die Expression von anderen Genen in Pflanzen. Im molekularen Kontext interagiert Auxin mit AUX/IAA. AUX/IAA wiederum interagiert mit welch anderem Protein? TPL, aka Topless.
209
+ - S-nitrosylation is what exactly? This is the "reversible coupling of an NO moiety" to a critical cysteine residue.
210
+ - Most SUMO-modified proteins contain a tetrapeptide consensus motif. Name the single aminoacid that is invariant and always the same, within that motif. A: Lysin.
211
+ - The filamentous fungus "Cochliobolus carbonum", a pathogen, is exceptionally virulent against which plant? Maize.
212
+ - "Hybrid plant pathotypes" can be created how? By "protoplast fusion".
213
+ - Which phytohormone is important for "abiotic stress signalling"? Abscisic acid (ABA). It will accumulate.
214
+ - Name two factors that can be responsible for "osmotic stress" in plants. A: (1) drought (2) salinity
215
+ - Sensitivity to the "Alternaria alternata" toxin in citrus occurs because of ...? Altered mitochondrial RNA processing.
216
+ - Name a plant that has the "T-urf13 gene". A: Maize.
217
+ - What is "cytoplasmic male sterility"? Cytoplasmic male sterility is the total or partial male sterility in plants as the result of specific nuclear and mitochondrial interactions. The affected plants can not produce functional anthers, pollen, or male gametes.
218
+ - Does "Arabidopsis thaliana" have "arbuscular mycorrhiza"? No.
219
+ - Nenne 1 Abwehrmolekül der Pflanzen, das Pathogene direkt angreifen kann. A: Phytoalexine.
220
+ - Pflanen haben "Avr-Gene". Warum dieser Name? Avirulenzgene.
221
+ - Warum mag "zu viel Wasser" ein Problem für Pflanzen sein? Wasser kann die Sauerstoffdiffusion in die Wurzeln hinein stark einschränken.
222
+ - Water deficit is lethal below ...? Below the "permanent wilting point".
223
+ - How do we denote "gene overexpression" via symbol? "o/e".
224
+ - Name 4 "environmental stress factors" that affect plant growth and may pose a threat to "sustainable agriculture". A: (1) drought (2) elevated temperature (3) salinity (4) rising CO2
225
+ - Plants that are subjected to "salt stress", protect themselves against this how? By accumulating "organic osmolytes", in particular proline, ectoine and myo-inositol. These accumulate in the cytoplasm of the plant cell.
226
+ - Name 2 different strategies for stress survival in plants. A: (1) Stress tolerance (2) Stress avoidance
227
+ - Biotic and abiotic stresses can reduce avarage plant productivity by ... , depending on the crop? 60-80%.
228
+ - Warum ist Arabidopsis ein gutes Modellsystem? Weil sie ein kleines Genom hat, und weil sie schnell wächst.
229
+ - In Arabidopsis thaliana gibt es etwas das "CONSTANS" genannt wird. Was ist dies? Ein Transkriptionsfaktor.
230
+ - A. W. für "Monopteros"? ARF5 - auxin response factor 5 (At1g19850)
231
+ - Arabidopsis mitochondria genome has which length? 368 kb.
232
+ - Wie heisst die "mature Arabidopsis Plant"? Sporophyte.
233
+ - "Arabidopsis thaliana" hat mindestens wieviele CDKs? 12.
234
+ - Do we find "RNA-dependent RNA Polymerases" in plant cells such as Arabidopsis? Yes.
235
+ - Nenne eine "pflanzliche miRNA"! A: "miR172" in Arabidopsis.
@@ -0,0 +1,129 @@
1
+ # =========================================================================== #
2
+ # === Molekulare Medizin
3
+ #
4
+ # Prüfungsfragen und Übungsfragen zu "genetischen Krankheiten" sollten in
5
+ # der Datei "genetische_krankheiten" gespeichert werden.
6
+ #
7
+ # Molekulare Medizin. Molmed tag. Molmed2 tag. Molmed1 tag.
8
+ # =========================================================================== #
9
+
10
+ - Who or what is the <one>causative agent of malaria</one>? <one>Plasmodium falciparum</one>. URL: https://en.wikipedia.org/wiki/Plasmodium_falciparum
11
+ - In <one>recombineering</one>: what do we use as substrate? Linear DNA substrates containing the desired change, and short homologies to the target DNA.
12
+ - Eine bestrahlte Maus kann man heilen durch ... ? Die Übertragung von Knochenmarkszellen.
13
+ - Rheumatoid arthritis (RA) affects about n% of the world's population? ABout 1%.
14
+ - The spread of artemisinin-resistant Plasmodium falciparum is dangerous because Malaria may spread as a consequence. Name a "molecular marker of artemisinin resistance". A: The "propeller domain gene of K13".
15
+ - Nenne eine Krankheit beziehungsweise einen Krankheitstyp der durch "aberrantes splicing" verursacht werden mag. A: "Autismus".
16
+ - Amyloidosen behindern ... ? Die "Mikrozirkulation".
17
+ - Wieviele Aminosäuren haben die "Opsine"? 364.
18
+ - Welches Strukturmotif finden wir in einem "Amyloid" primär? Es sind im Amyloid überwiegend Beta-Faltblatt-Strukturen als Sekundärstruktur zu finden.
19
+ - 80% der Bluter fehlt welches Protein? "Faktor VIII" ("Faktor 8").
20
+ - Name a famous person that suffered from "colour blindness". A: "John Dalton".
21
+ - Name a substance that can increase the activity of the ENaC-receptor. A: AVP ("Vasopressin)".
22
+ - Name a substance that can be used to block the actions of NCC ("Na+Cl-cotransporters"). A: "Thiazide".
23
+ - Der "ENaC Rezeptor" ist gekoppelt mit ... ? "NCC" ("Na + Cl - cotransporter"). URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4392439/
24
+ - Die hormonelle Regulation des ENaC Kanals erfolgt durch ... ? "Aldosteron".
25
+ - Besitzen die Nieren "ENaC Rezeptoren"? Ja; zur teilweisen Rückgewinnung von Natrium.
26
+ - Nenne eine loss-of-function mutation des ENaC Rezeptors. A: PHA1 ("Pseudohypoaldosteronism").
27
+ - Nenne eine gain-of-function Mutation des "ENaC Rezeptors". A: Das "Liddle's syndrome" (Hypertension, also hoher Blutdruck).
28
+ - Warum ist der ENaC Rezeptor so wichtig? Er ist für den "Geschmacksinn" wichtig, vor allem den Salzgeschmack.
29
+ - Nenne eine Substanz, die den ENaC Rezeptor blockieren kann. A: "Amilorid". URL: https://de.wikipedia.org/wiki/Amilorid
30
+ - Wo finden wir typischerweise den ENaC Rezeptor? Im Epithelgewebe; vor allem Lunge, aber auch bei den Nieren.
31
+ - Wieviele Untereinheiten hat "ENaC" (epithelial sodium channel)? Vier - Alpha, Beta, Gamma, Delta. URL: https://en.wikipedia.org/wiki/Epithelial_sodium_channel
32
+ - Name a "transcription factor" for "osteoblast differentiation". A: "Osterix".
33
+ - Was genau ist "Puromycin"? Ein starker "Inhibitor der Protein-Biosynthese".
34
+ - Welches Enzym stellt Laktat her? Die "Lactat-Dehydrogenase".
35
+ - Foisner: Nenne zwei Kennzeichen des "metabolischen Syndroms". A: (1) "vermehrtes abdominales Fettgewebe" (2) "Bluthochdruck"
36
+ - Hofbauer: Nenne eine "angeborene neurometabolische Erkrankung", die die Mitochondrien betrifft, also den Metabolismus. A: Einen "Pyruvat-Dehydrogenase-Mangel".
37
+ - Hofbauer: Ein Patient mit "Pearson Syndrom", die Mitochondrien betreffend, könnte im Alter welches Syndrom entwickeln? Das "Kearns-Sayre Syndrom".
38
+ - Hofbauer: welche zwei Formen der Mitochondriopathien können unterschieden werden? (1) vererbte Mitochondriopathien (2) durch Umwelteinflüsse erworbene Mitochondriopathien
39
+ - "Octanoat" hat wieviele C-Atome? Es ist eine "C8 Fettsäure".
40
+ - What is the ultimate aim of molecular medicine? To understand human physiologies at the molecular level - and to apply this knowledge in curing disease.
41
+ - Was für einen Schnitt machen "gene-editing nucleases"? Einen "Doppelstrangbruch".
42
+ - Eine menschliche Leberzelle hat wieviele Mitochondrien? Etwa "2000".
43
+ - Foisner: Name two "laminopathies" associated with "premature aging". A: (1) Hutchison-Gilford Progeria (2) Atypical Werner-Syndrome
44
+ - Foisner: Give another term for "Laminopathies". A: "Nuclear Envelopathies".
45
+ - Um eine Laktatazidose feststellen zu können muss man den Laktatwert herausfinden. Wie machen wir das? Mittels des Enzyms "Lactat-Dehydrogenase".
46
+ - Der Transkriptionsfaktor CREB wird durch welches medizinisch-relevante Protein beeinflusst? Durch "Hintingtin".
47
+ - Woran genau bindet der Transkriptionsfaktor MeCP2? An "methylierte CpG Inseln".
48
+ - Martinez: When RNA decay outcompetes RNP assembly, how do we call such diseases? "RNP hypo-assembly disease".
49
+ - Cholesterin wird wo produziert? In der "Leber".
50
+ - Nenne einen spezifische Farbstoff für "lebende Mitochondrien". A: "Rhodamine 123".
51
+ - Martinez: Give an example for a "RNP hyper-assembly disease". A: "ALS": "Amyotrophic lateral sclerosis".
52
+ - Martinez: The assembly of specific RNPs is generally in kinetic competition with ... ? "RNA degradation".
53
+ - "Sphingosin" has how many C-atoms, usually? 18.
54
+ - Was ist eine "farnesyl group"? Dies ist ein "Isoprenoid" das 15 C Atome hat.
55
+ - Wann wurden Mitochondrien erstmals intakt isoliert? Im Jahr "1948".
56
+ - Was ist "SIRT3"? Eine wichtige "mitochondriale Proteindeacetylase".
57
+ - Do Ceramide have an influence on tumors? Yes; Ceramide have "tumor suppressor functions".
58
+ - The proteins ERK1/2 and Raf1 can be found in which pathway? They are part of the "MAP-Kinase cascade".
59
+ - Bei der Cancerogenese durch DNA-Tumorviren sind proto-Onkogene oder Tumor-Suppressorgenen wichtiger? Bei der Cancerogenese durch DNA-Tumorviren spielt primär die "Inaktivierung von Tumor-Suppressorgenen" und erst in zweiter Linie die Aktivierung von Onkogenen eine Rolle.
60
+ - Nenne eine Droge gegen "Malaria". A: "Artemisinin".
61
+ - What role do "type B lamins" have? These lamins are situated between the "inner nuclear membrane" and "peripheral heterochromatin". This suggests that they "provide a docking site for chromatin".
62
+ - Weltweit hatten wir 2006 wieviele Millionen Menschen die mit Malaria infiziert waren? "247 Millionen Menschen".
63
+ - n% of sexually active adults in the U.S. have "genital warts". A: "1%".
64
+ - Wie kann man Polymorphismen im Genom molekularbiologisch detektieren? Mittels "PCR" oder "Southern Blotting".
65
+ - Mit welcher funktionellen Gruppe kann man fatty acids an carnitine binden? Über dessen "OH-Gruppe".
66
+ - Andere Bezeichnung für "Nucleinsäuren als therapeutisch wirksame Stoffe"? "Gentherapie".
67
+ - In HbS, "Valin-6" mutations generate a ... patch? "Hydrophobic patch".
68
+ - Each red blood cell ("RBC") contains how many Hb molecules? About "280 million Hb molecules".
69
+ - In molecular medicine, what do we mean with "LADs"? "Lamina associated domains".
70
+ - What means the word "mitogenic"? An "agent that induces mitosis".
71
+ - What means the disease SCN and what is it? SCN means "Severe Congenital Neutropenia". This is a condition that causes affected individuals to "be prone to recurrent infections". People with this condition have a shortage of neutrophils, a type of white blood cell that plays a role in inflammation and in fighting infection.
72
+ - Welche Krankheit ist mit dem "RUNX1-Gen" assoziiert? Die "akute, lymphatische Leukämie". URL: https://en.wikipedia.org/wiki/RUNX1
73
+ - Wie nennen wir die C16 Fettsäure? "Palmitate".
74
+ - In molecular medicine, what are the "LAPs"? "Lamin-associated Proteins".
75
+ - Die "Sporozoiten" von "Plasmodium falciparum" wandern wohin, im menschlichen Körper? In die Leber des Menschen; dort entwickeln sie sich zu "Merozoiten".
76
+ - Lamin A kann mit einem Protein verbunden sein das einen sehr coolen Namen trägt. Wie heisst dieses Protein? "SUN".
77
+ - The Pingelap island was famous for which disease? "Achromatopsia".
78
+ - HbS/HbS patients are treated with ... ? "Hydroxy urea". URL: https://en.wikipedia.org/wiki/Hydroxycarbamide#Medical_uses
79
+ - Welche Blutgruppe schützt am besten vor Malaria? Blutgruppe Null.
80
+ - In Deutschland waren im Jahr 2015 wieviele Menschen von Parkinson betroffen? Etwa ~300.000.
81
+ - Two proteins can be targeted in Alzheimer Disease. Name them. A: (1) The "Tau-Protein" (2) The "Amyloid-beta peptide"
82
+ - In der molekularen Zellbiologie, auch wichtig für die Therapie, gibt es "EAAT2". Wofür steht diese Abkürzung? Excitatory amino acid transporter 2.
83
+ - Which "nuclear lamin proteins" exist? A, B, and C.
84
+ - Was meinen wir mit dem Begriff "Gynäkotropie"? Dies bedeutet, das von einer Erkrankung oder Fehlbildung, bevorzugt das weibliche Geschlecht betroffen ist.
85
+ - What do we mean with "Aquired Drug Resistance (ADR)"? This means that an initial drug response works, but is lost during the therapy, such as in leukemias.
86
+ - Hutchinson-Gilford Progeria is caused by which modification on the protein? A 50 amino acid deletion.
87
+ - Farnesyl-groups are attached to which amino acid? Cysteine.
88
+ - How does Progeria develop from a molecular point of view? It develops due to the activation of a cryptic splice site.
89
+ - Wie nennen wir Krankheiten die durch das Mitochondrium verursacht werden? "Mitochondriopathien".
90
+ - What are "Lamininopathies"? These are diseases linked to lamin mutations.
91
+ - Name a very important post-translational processing of lamins. A: Farnesylation.
92
+ - Why does "Targeted Therapy" work in Cancerbiology? Tumor cells often depend on a dominant oncogenic pathway, also called "oncogenic addiction". This means that the cellular signaling is reorganized by a dominant oncogene.
93
+ - Sind Addukte an der DNA reversibel? Nein, sie sind praktisch irreversibel.
94
+ - How can we treat HbS/HbS? With "hydroxyurea", which encourages the synthesis of HbF.
95
+ - Both HbS and HbC can confer protection against sickle cell anemia. Difference? HbC only protects as a homozygote, HbS on the other hand can protect as a heterozygote (HbS/HbA).
96
+ - What does Haemoglobin do? (1) Oxygen (2) Carbon dioxide
97
+ - Nenne ein Motif das wir carboxyterminal bei Laminen finden. A: Das CaaX motif.
98
+ - Farnesylation happens according to which sequence information? It happens due to a "CaaX motif" sequence motif. These 4 amino aids are at the carboxyl terminus of a protein.
99
+ - Laminopathies result in which defect? Muscle Diseases.
100
+ - Welche 2 Typen an "gene-editing nucleases" existieren? (1) Zink-finger nucleases (2) TALENs
101
+ - Nenne ein Produkt der "Carnitin Acetyltransferase". A: CoA, ausgehend von Acetyl-CoA.
102
+ - Warum ist Carnitine für den Menschen wichtig? Carnitine transportiert langkettige, acylierte Fettsäuren in das Mitochondrium.
103
+ - Carnitine entsteht biosynthetisch aus welchen 2 Aminosäuren? (1) Lysin (2) Methionin
104
+ - Wofür steht "MELAS" im MELAS Syndrom? (a) Mitochondriale (b) Enzephalomyopathie (c) Laktatazidose (d) Schlaganfall-ähnliche Episoden
105
+ - Beim MELAS-Syndrom, was ist die Ursache für die "Laktatazidose"? Eine allgemeine Gewebshypoxie.
106
+ - How can we identify cardiomyocytes morphologically? By using Alpha-actinin staining.
107
+ - Was ist die "Suicide Gene Therapy"? Man versucht über den Virus als Vektor ein Enzym in die Tumorzellen einzuschleusen, das Substanzen in cytotoxische Substanzen umwandeln kann (Bsp: Hermes-Simplex Thymidin-Kinase).
108
+ - Was ist "Alopecia"? Haarausfall.
109
+ - Was ist eine "Laktatazidose"? Ein Übersschuss an Laktat im Blut.
110
+ - Im NER-Repair Pathway, der für die Krankheit "Xeroderma Pigmentosum" hauptverantwortlich ist, gibt es vier Enzyme die nacheinander wirken. Nenne diese. A: (1) Nuclease (2) DNA helicase (3) DNA polymerase (4) DNA ligase
111
+ - Nenne eine rein mitochondrial vererbte Krankheit im Menschen. A: "LHON" -> Lebers hereditary optic Neuropathy.
112
+ - What is the aim of "Exome sequencing"? The aim is to selectively sequence the coding regions of the genome.
113
+ - Why did "exome sequencing" become popular? It was cheaper than whole genome sequencing, but still fairly effective.
114
+ - Was passiert allgemein bei einer "spezifischen Immuntherapie" SIT? Bei der SIT werden dem Körper über einen definierten Zeitraum regelmäßig Allergene zugeführt. Ziel: Normalisierung einer bestehenden Überempfindlichkeit.
115
+ - Was ist die "Allergen spezifische Immuntherapie"? Der Patient enthält das Allergen, gegen das er sensibilisiert werden soll, entweder in Form von Spritzen unter die Haut appliziert, oder in Form von Tabletten oder Tropfen die unter die Zunge appliziert werden, ein. Ziel ist es, das Immunsystem an das Allergen zu "gewöhnen". Im Anschluß daran sollte ein paar Jahre später eine "Erinnerungsdosis" verabreicht werden.
116
+ - Nenne 3 nukleophile in der Zelle. A: (1) R-SH (2) R-OH (3) R-NH2
117
+ - Nenne 1 Syndrom das mit einem p53 Defekt assoziiert ist. A: Das Li-Fraumeni Syndrom.
118
+ - Nenne 3 Nebenwirkungen einen Cytostatikatherapie beim Menschen. A: (1) Haarausfall (2) Blutbildschädigungen (3) starkes Erbrechen
119
+ - Wie unterscheidet sich eine "Genom-Mutation" von einer "Chromosomen-Mutation"? Bei einer Genom-Mutation verändert sich die Chromosomenzahl pro Genom, wie z. Bsp bei einer "Aneuploidie". Bei einer "Chromosomen-Mutation" hingegen verändert sich nur ein einzelnes Chromosom.
120
+ - How does the Botulinum toxin work? It blocks the release of acetylcholine.
121
+ - Was ist "TReg"? Eine regulatorische T-Zelle.
122
+ - In 1864, Oscar Liebrich argued that brain tissue was composed of a single giant molecule. What name did he give it? "Protagon".
123
+ - Warum der Name "pap smear"? Dieser Text auf Krebszellen der Cervix heisst auch "Papanicolaou test". Er wurde von einem griechischen Doktor namens "Georgios Papanikolaou" entwickelt.
124
+ - Wie lange leben normal die Erythrocyten? 4 Monate.
125
+ - Name the 6 Barriers to Malignant Transformation according to Weinberg. A: (1) Evading Aptoptosis (2) self-sufficiency in growth signals (3) insensitivity to anti-growth signals (4) tissue invasion and metastasis (5) limitless replicative potential (6) sustained angiogenesis
126
+ - Was sind "onkolytische Viren"? Dies sind Viren die Tumorzellen infizieren und lysieren können.
127
+ - What is the basic concept of gene therapy? Introduce a replacement for a defective gene.
128
+ - How many people died due to malaria in 2010? About 660.000, plus minus 200.000.
129
+ - Papovavirus can cause what disease in mammals? Neoplasms.
@@ -0,0 +1,303 @@
1
+ # =========================================================================== #
2
+ # === Nanotechnologie
3
+ #
4
+ # Nanotech tag. Nano tag. Includes both Nanotech and Nanobiotech.
5
+ # Bionanotech. And nano-interfaces and Biomaterials as well.
6
+ # Inkludiert zudem Nanomedizin (nanomedicine).
7
+ # =========================================================================== #
8
+
9
+ - Nanotechnology seeks to "... rebuild the world ... " ? <one>One molecule</one>/atom at a time</one>.
10
+ - The <one>strongest known material in the world</one> is ... ? <one>Graphene</one>.
11
+ - Give another term for <one>the carbon future</one>. A: <one>Graphene</one>. URL: https://en.wikipedia.org/wiki/Graphene []
12
+ - Is <one>a biomaterial</one> a viable substance? Not really - it is typically non-viable, e. g. when it is used in a medical device.
13
+ - In the <one>bottom-up approach</one> in nanotechnology: what plays a central role in self-assembling systems made by equilibrium methods? <one>Entropy</one>. []
14
+ - The <one>natural environment of biomolecules</one>, including (natural) <three>nanoparticles</three>, is ... ? <one>Water</one>. []
15
+ - Name <three>a lithography method</three> that works by <one>writing pixel-by-pixel</one>. A: The <one>dip-pen lithography</one>. []
16
+ - Die <one>Biomolekulare Korona</one> in der Nanomedizin hat wieviele Schichten? Zwei - die <one>konstante Schicht</one> und die <one>dynamische Schicht</one>.
17
+ - <one>Nanoparticles</one> can be used as <three>"... antennas"</three>. A: <one>Lossy antennas</one>. []
18
+ - In a <one>hydrogel</one>: what determines the loading and release rate of its <three>drug-payload</three>? The <one>swelling</one>. []
19
+ - The <one>head of a pin</one> is about <three>n nm in diameter</three>? About <one>1_000_000 nm</one>. []
20
+ - How do we call the energy that acts against the energy required to separate a material into two parts? <one>Cohesion</one>. []
21
+ - For a <one>3 nm diameter particle</one> approximately n% of the atoms reside on the surface. A: About <one>90%</one> of the atoms are on the surface. []
22
+ - Give another name, a single word, for <one>linear molecular motors</one>. A: <one>Walkers</one>. []
23
+ - <one>ECM fiber bundles</one> are about n nm in diameter? About <one>20-30 nm in diameter</one>. []
24
+ - What implication may be deduced when we have a multivalent, weakly binding anchor design? We may have to <one>use a large anchor size</one>, in order to "accommodate multiple interaction".
25
+ - The <one>Buckminsterfullerene</one> has how many C atoms? <one>60</one>. []
26
+ - <one>Nano</one> is when the ... begins to dominate. A: <one>surface</one>. []
27
+ - What is the colour of <one>nano-gold</one>? It <one>depends on size</one>; colloidal suspensions of gold range from <two>4nm</two> (<crimson>'red'</crimson>) to <two>80nm</two> (<steelblue>'blue'</steelblue>).
28
+ - In <one>1989</one>, Don Eigler and Erhard Schweizer at IBM's "Almaden Research Center", manipulated n individual xenon atoms to spell out the <two>IBM logo</two>. <three>How many xenon atoms</three> did they use? <one>35</one>. []
29
+ - For nanomedicine applications of nano-vesicles, give an example of what we mean when we say <one>externally guided targeting</one> of vesicles. A: We can use a magnet, and then use <one>magnetic focusing</one> to move the delivery vehicle onto the right destination.
30
+ - <one>Kolloidales Gold</one> hat eine <three>hohe Affinität</three> zu ... ? <one>Thiolgruppen</one> - also <two>Cystein</two>. []
31
+ - Name an object that was used in history and that is <three>an early example</three> of a <one>dichroic glass</one>. A: The <one>Lycurgus Cup</one>. URL: https://en.wikipedia.org/wiki/Lycurgus_Cup
32
+ - In Nano-Surfaces, what is <one>PLL-g-PEG</one>? This is <one>a random graft co-polymer</one>.
33
+ - <one>Capsosomes</one> were initially designed as ... carriers? <one>Enzyme carriers</one>. []
34
+ - Besitzen <one>carbon-nanotubes</one> die <two>Fähigkeit zur Fluoreszenz</two>? Ja. []
35
+ - Does the <one>self-assembly process</one> occur by itself, without external guidance? Yes.
36
+ - Can we attach <one>albumin</one> to a nanoparticle? Yes we can. []
37
+ - Self-assembly in the classical sense can be defined as the spontaneous and reversible organization of units into ordered structures by ... interactions. A: By <one>noncovalent interactions</one>.
38
+ - Who was the first person to create <one>metallic gold colloids</one>? <one>Michael Faraday</one>. URL: https://en.wikipedia.org/wiki/Michael_Faraday#Chemistry []
39
+ - Nano-devices may prefer, in general, what type of membrane? <one>Nanoporous membranes</one>. []
40
+ - <one>Atoms on the surface of a nano-particle</one> have a smaller coordination number. These surface atoms experience an unbalanced force which is relieved by a readjustment in their positions that we call ... how? <one>Surface relaxation</one>.
41
+ - <one>PLGA</one> ist ein Co-Polymer bestehend aus welchen zwei Komponenten? (1) <one>Milchsäure</one> (2) <one>Glykolsäure</one>
42
+ - Do <one>non-carbon nanotubes</one> exist? Yes. []
43
+ - Name an example of something in the nano-area that is <one>super-hydrophobic</one>. A: The <one>lotus leaf</one>. []
44
+ - An <one>invisibility cloak</one> could be achieved through ... ? <one>Gold nanoshells</one>. []
45
+ - Give an example for <one>natural nanotoxicity</one>. A: When <one>lysosomes burst</one> → their content may be <two>toxic for the cell</two>. []
46
+ - In nature: which type of assembly pattern dominates, viewed from nanotechnology? The <one>bottom-up self-assembly</one> approach. []
47
+ - In <one>nanoscale biodevices</one>: to create local high concentrations, for functionalization of nanoobjects, costs ... ? <one>A lot of energy</one>.
48
+ - <one>To probe a surface in nanotechnology</one> we have to interact with it. What probes can we use to interact with it - name three ways. A: (1) <one>chemical reactions</one> e. g. in "catalysis" (2) <one>photons</one>, such as via light (3) <one>forces</one> such as adhesion
49
+ - In <one>nanotechnology</one>, for <two>surface patterning</two>: which <three>two different basic etching modes</three> can be distinguished? (1) <one>dry etching</one> (2) <one>wet etching</one> []
50
+ - How did Feynman once call <one>nanites</one>? As <one>swallowing the doctor</one>. []
51
+ - Nenne <one>eine Substanz</one>, die man für die Erstellung von Liposomen verwenden könnte. A: <one>PEG</one> (<two>Polyethylenglykol</two>).
52
+ - Why may we wish to make use of <one>nanoparticle contrast enhancers</one>? Nanoparticle contrast enhancers allows for imaging of the destination of the drug.
53
+ - Is <one>a biomolecule</one>, such as a protein, more hydrophobic than water? Yes, always. []
54
+ - In <one>nanotechnology</one>: <three>CNT</three> is an abbreviation for ... ? <one>Carbon nanotubes</one>. []
55
+ - In <one>PLL-g-PEG</one>: what does the middle g stand for? <one>graft</one>. []
56
+ - For <one>nanodrug delivery</one>: the "therapeutic window" lies between which two extremes? (1) <one>unacceptable toxicity</one> (2) <one>poor activity</one>
57
+ - In Nanotechnology we may also employ the <one>bottom-up</one> strategy, for building stuff. Give another name for this. A: <one>self-assembly</one>, or <one>molecular self-organization</one>. []
58
+ - Is the <one>PEG polymer</one> rather <two>hydrophilic</two> or <two>hydrophobic</two>? <one>PEG</one> is very <two>hydrophilic</two>. URL: https://en.wikipedia.org/wiki/Polyethylene_glycol []
59
+ - As the <one>size decreases</one> in <three>nanoparticles</three>, how does the <three>S</three>/<three>V ratio</three> change? The <one>S</one>/<one>V ratio</one> increases, as the size decreases. []
60
+ - Compare the colour of <one>bulk gold</one> with <one>nano gold</one>. A: (1) <one>bulk gold colour</one>: <two>yellow</two> (2) <one>nano gold colour</one>: <two>red</two> []
61
+ - Andere Bezeichnung für das <one>Injektisom</one>? <one>Typ-3-Sekretionssystem</one> (<two>T3SS</two>). []
62
+ - Name three different <one>carbon nanostructures</one>. A: (1) <one>fullerenes</one> (2) <one>graphenes</one> (3) <one>carbon nanotubes</one> []
63
+ - Give another name for <one>the carbon future</one>. A: <one>Graphene</one>. []
64
+ - Can <one>gold</one> be used to <three>coat silica on a nanosensor</three>? No. This also requires us to use a so-called <one>bridge metal</one>.
65
+ - The <one>surface energy of hydrocarbon polymers</one> can be reduced by substituting hydrogen for ... ? <one>Fluorine</one>. []
66
+ - Give another name for <one>PEGylated liposomes</one>. A: <one>Stealth liposomes</one>. []
67
+ - Do <one>gecko</one> secrete any sticky substance? No. []
68
+ - Nenne einen wichtigen Grund wieso <one>Lipoplexe</one> nicht häufiger eingesetzt werden. A: Da sie <one>oft sehr toxisch</one> sind; deren <two>Toxizität</two> verhindert somit den Einsatz. []
69
+ - Do <one>fluorinated polymer surfaces</one> resist protein adsorption? No they don't.
70
+ - Give an example of <one>a natural colloid</one>. A: <one>Milk</one>. []
71
+ - Why can it be said that <one>nanoscience is not physics, chemistry, engineering, or biology</one>? Because <one>it is all of them</one>. []
72
+ - We can distinguish between <three>five general stages of nanomedicine development</three>. What is <one>stage number 4</one> (IV)? This stage is about <one>long term safety</one>.
73
+ - The energy of separating a material into two parts is called ... ? <one>Cohesion</one>.
74
+ - Does the <one>Vroman effect</one> lead to <three>irreversible adsorption</three> of proteins onto a surface? Yes, over time it does.
75
+ - In <one>Nanotechnology</one>: we have some <three>strong anchors</three> to e. g. metal, silicon, glass or metal oxides. Give two general examples for this. A: (1) <one>Thiol</one> (to <two>metals</two>) (2) <one>Silane</one> (to <two>silicon</two> or <two>glass</two>)
76
+ - Can a protein become unfolded at a surface? Yes - this is also called <one>conformational change</one>.
77
+ - <one>Functional biointerfaces</one> depend on controlling the interface between ... which two frontiers? (1) an <one>artificial object</one> (2) <one>a biological environment</one>
78
+ - A protein is a ... polymer. A: A <one>flexible polymer</one>.
79
+ - What will be the effect of attaching a <one>PEG polymer</one> on a nanoparticle surface that is destined to enter the human bloodstream? This will <one>increase circulation time</one> by "reducing this opsonization process".
80
+ - Will proteins that deform easily also more easily stick onto a given surface? Yes, as they <one>will have more contact points</one>.
81
+ - <one>Chemisorption</one> versus <one>Physisorption</one>: which one of these provides for stronger anchors, <three>for use in nano-biosensors</three>? <one>Chemisorption</one> is stronger. []
82
+ - <one>IBM Scientists</one> haben das Wort <three>'IBM'</three> im atomaren Bereich gebastelt, also mit Atomen. Welches Element haben sie hierfür verwendet? <one>Xenon</one>. URL: https://en.wikipedia.org/wiki/IBM_%28atoms%29 []
83
+ - Will a <one>natural surface</one> induce protein adsorption? Yes.
84
+ - Does <one>PEGylation</one> increase the molecular weight of a molecule? Yes it does. []
85
+ - How can <one>wetting</one> be measured? By meausuring the contact angle of a bead of liquid on the given surface.
86
+ - Name two materials that have a <one>low surface energy</one>. A: (1) <one>polypropylene</one> (2) <one>polyethylene</one>
87
+ - Why is the interface so important for devices in the human body, from the point of view of nanobiotechnology? Because an object can only influence another object over the distance over which they interact.
88
+ - The highest breaking and tensile strength of any known material is found in ... ? <one>Graphene</one>. []
89
+ - Does the <one>aggregation state</one> of nanoparticles influence their size, de-facto? Yes. []
90
+ - The human body responds to an unknown interface by ... ? <one>Encapsulation</one>.
91
+ - For <one>nanomedicine delivery</one>: why are most drugs considered a problem from a delivery point of view? Because many drugs require a <one>high concentration</one>, which means delivery at high concentration or large volume; often both are required. And this can be difficult for nano-based systems.
92
+ - Photolithography may happen with which kind of laser? It may happen with an <one>excimer laser</one>.
93
+ - The word <one>spintronics</one> originates from ... ? A: <one>Spin based electronics</one>.
94
+ - In <one>spintronics</one> the electron carries not only the charge but also ... ? <one>Information in the form of its spin</one>.
95
+ - Are <one>quantum dots</one> able to <three>pass the blood-brain barrier</three>? Yes. []
96
+ - <three>Who</three> was the earliest <one>pioneer of biomimetics</one>? <one>Leonardo da Vinci</one> (<two>1451-1519</two>). []
97
+ - The <one>Lycurgus Cup</one> was created by the <three>Romans</three>, and it was made of a dichroic glass. Which <three>two materials</three>, as nanoparticles, were used here? (1) <one>gold</one> (2) <one>silver</one> []
98
+ - Are <one>optical properties of nanoparticles</one> <three>size dependent</three>? Yes. []
99
+ - <one>SNALPs</one> (<two>stable nucleic acid lipid particles</two>) sind geladen oder ungeladen bei einem <three>sauren pH</three>? Sie <one>sind geladen</one>. []
100
+ - On <three>29.12.1959</three>, <one>Richard Feynman gave</one> a talk at the Annual meeting of the American Physical Society. What was the title of this talk? <one>"There's Plenty of Room at the Bottom."</one> []
101
+ - What does <one>fouling</one> mean? This is <one>the adhesion of a foreign material onto a surface</one>, especially so as to <two>reduce its functionality</two>.
102
+ - <one>Targeted drug delivery</one>, that is when a drug is released only at the therapeutic site (the main target of therapy), is better than traditional drugs used in modern medicine. Three reasons can be given as to why that is so. Which reasons speak in favour of targeted drug release? (1) Traditional drug delivery systems, such as oral ingestion, the medication is distributed throughout the body through the systemic blood circulation. Thus, for most therapeutic agents, only a small portion of the medication reaches the target organ. (2) Many drugs cause <one>severe toxic side effects</one> in other tissues, some of which may be life-threatening to the individual, such as chemotherapy for treatment of cancer. (3) If a drug is targeted only to the therapeutic site it can reach higher local concentration and therefore efficacy, while simultaneously reducing side effects in the rest of the organism.
103
+ - How can we <one>avoid opsonization of nanoparticles</one>? Via <one>PEGylation</one>. URL: https://en.wikipedia.org/wiki/PEGylation []
104
+ - The use of <one>implant biomaterials</one> dates back at least to ...? The <one>old Egyptians</one>. []
105
+ - What do we mean with the <one>Vroman effect</one>? This has to do with <one>protein adsorption</one> in a protein mixture. The <two>highest mobility proteins generally arrive first</two> but are later replaced by less motile proteins that have a <three>higher affinity for the surface</three>.
106
+ - The <one>administered dose</one> in nanomedicine must be continuously be within ... ? The <one>therapeutic window</one>. []
107
+ - <one>Gecko feet</one> are an example of ... at work (a physical phenomenon). A: Of <one>van der Waals forces at work</one>. []
108
+ - In the <one>human body</one>: if we <two>use nano-vesicles</two> that are at about <three>5 nm in diameter</three>, what general problem do we face here? Nanoparticles with such a diameter are <one>easily excreted through the renal system</one> (<two>kidneys</two>).
109
+ - <one>Fullerenes</one> typically contain <two>how many C atoms</two>? <one>60</one>. URL: https://en.wikipedia.org/wiki/Fullerene []
110
+ - An ... liposome releases drugs while circulating. A: <one>Unstable soneth liposome</one>.
111
+ - A <one>nanocluster</one> typically contains aggregates of atoms containing between 2 and up to n atoms? Up to <one>1O**6 atoms</one> (<two>1_000_000</two>).
112
+ - Who are <one>the only real nanobots</one>? <one>Viruses</one>. []
113
+ - Name a fairly important theory originating from nanotechnology that begins with the letter <one>s</one>. A: The <one>scaling theory</one>. []
114
+ - Is the core of a liposome <one>hydrophobic</one> or <one>hydrophilic</one>? A liposome has a <one>hydrophobic core</one>. []
115
+ - In nanotechnology: <one>EPR</one> stands short for ... ? <one>Enhanced permeability and retention effect</one>.
116
+ - In <one>nanomedicine</one>, in <two>passive targeting</two>: why may <three>EPR effects</three> ("enhanced permeability and retention") be considered to be useful? Because <one>this may increase the delivery of nanoparticles to cancer tumors</one>.
117
+ - In <three>nanomedicine-based therapy</three> we have <one>the EPR effect</one> ("Enhanced Permeability and Retention"). We can also target cancer-cells, in particular through which <two>specific receptor</two>? The <one>folic acid receptor</one>. URL: https://en.wikipedia.org/wiki/Folate_receptor_1
118
+ - <one>Contact angles</one>, which should be directly related to surface energy, are seldom found tabulated because of ... ? Because of the fact that they are <one>notoriously difficult to reproduce</one>.
119
+ - If a liquid, such as <one>water</one>, does not perfectly wet a surface, then a droplet will be created with a ... related to the ... of the surface. A: A "curvature" related to the contact angle of the surface.
120
+ - If a <one>nanomaterial</one> has a <three>poor solubility in water</three>, what can we infer this nanomaterial to have in regards to bioavailability? It will also have a <one>poor bioavailability</one>.
121
+ - Give another name for <one>weak anchors</one> in <two>nanosensors</two>. A: <one>Physisorption</one>. []
122
+ - Three classes of <one>properties of the ECM</one> have been shown to influence cell adhesion and response when applied to biomimetic interfaces. Which ones are these? (1) Mechanical properties (2) Specific chemical signals (3) <one>Topography</one>
123
+ - In nanomedicine we may employ <one>hydrogels</one> for oral delivery. Are these hydrogels <two>hydrophobic</two> or <two>hydrophilic</two>? They are <one>very hydrophilic</one>. []
124
+ - Name one general <one>top-down strategy</one> on the nanoscale. A: <one>Lithography</one>. URL: https://en.wikipedia.org/wiki/Nanolithography []
125
+ - Do the <one>catechols</one> provide a strong anchor, for <three>use for nanosensors</three>? Yes. []
126
+ - What is meant with the term <one>Biocompatibility</one>? Biocompatibility is the <one>ability of a material to perform with an appropriate host response in a specific application</one>.
127
+ - In <one>Nanomedicine</one>: we may use different structures and different platforms. For the Nanocarriers, which two general strategies may we employ here? (1) <one>lipid-based nanocarriers</one> (2) <one>polymer-based nanocarriers</one>
128
+ - Name two different release profiles for <one>implantable drug delivery systems</one>. A: (1) <one>burst release</one> (2) <one>stepped release</one>
129
+ - In <peru>nanotechnology</peru>: anchor combinations that provide the perfect contrast are called ... ? <one>Orthogonal</one>.
130
+ - Name a very small drug delivery platform that begins with the letter <one>'C'</one>. A: <one>Capsosomes</one>.
131
+ - Wie funktioniert die Messung bei <one>SIMS</one>? Die Messung erfolgt durch <one>Sputtern der Oberfläche der Probe</one> mit einem Primärionenstrahl und dem Sammeln und der Analyse der ausgestoßenen Sekundärionen.
132
+ - Is a <three>biomaterial</three> of <one>biological origin</one>? Not necessarily.
133
+ - We may want to put nanoparticles into a body. There are <one>three general barriers</one> to overcome. Name them. A: (1) <one>external barriers</one> (2) <one>en route barriers</one> (3) <one>cellular barriers</one>
134
+ - Wie hat man den <one>ATP-Synthase Propeller</one> an seinen Untergrund fixiert? Mittels <one>3 schwefelhaltiger Aminosäuren</one>.
135
+ - We wish to create <one>polymeric nano fibers</one>. Name a method with which we could do so. A: <one>Electrospinning</one> - a <two>fiber production method</two>. URL: https://en.wikipedia.org/wiki/Electrospinning
136
+ - For a given <one>nanoparticle</one>: what is the main purpose of the spacer/linker? The spacer/linker defines the interaction of the Nanoparticle with its environment. Ideally it makes the core invisible until actuated.
137
+ - Give a fancy definition of the term <one>self-assembly</one>. A: <one>The nanostructure builds itself.</one>
138
+ - What is <one>molecular self-assembly</one>? This is <one>the spontaneous transition of initially disordered molecules</one> into <two>predictable supramolecularstructures</two>.
139
+ - <one>Self-assembly</one> and self-organization on the molecular and nanoscale not magic, nor similar to Lego building blocks, but ... ? Mostly <one>thermodynamics</one>, that is <two>to minimize energy</two>.
140
+ - Give an example for <one>self-assembling protein structures</one> that are NOT related to viruses. A: The <one>S-layers</one>, surface structures of some <two>eubacteria</two> and <two>archaea</two>.
141
+ - <one>Polyelectrolyte multilayer</one> capsules (PEM) can be formed by LbL self-assembly. What is <three>LbL</three>? <one>Layer-by-Layer</one>.
142
+ - When we make use of any <one>vector system</one> targeting the human body, and we push this vector through the blood system, what may we have to keep in mind? That this vector, the physical object, may be <one>coated and opsonized</one>, which may lead to its eventual degradation or functional exclusion.
143
+ - Nanoscience really sprang into the public consciousness sometime in the year <one>1981</one>. What other invention coincided with this year that may also have been pushing the field of nanoscience forward? The <one>invention of the scanning tunneling microscope</one> (<two>STM</two>), which also happened in 1981.
144
+ - A small size (<one>nanosize</one>) combined with a high surface area, and lots of tiny particles, means that we will see ... reactivity. A: <one>Ultra-high reactivity</one>.
145
+ - How can we define <one>nanomedicine</one>? Nanomedicine is the use of nano-scale science, for the benefit of the patient.
146
+ - What is <one>the size range</one> of <two>quantom dots</two>? About <one>2 nm - 10 nm</one> (<two>2-10</two>).
147
+ - Can <one>nanoparticles</one> cross the blood-brain barriers? It is assumed to be that way - Nanoparticles with controlled surface properties are believed to be able to cross barriers such as the blood-brain barrier.
148
+ - Name <one>a rationale for developing nanomaterial medicine</one>. A: It will have <one>new, unique features</one>.
149
+ - Give an example for an <one>antireflective coating</one> from nature. A: The <one>moth's eye</one>, as inspiration for new photonic structures.
150
+ - <one>Nanoparticles</one> can be distributed in the blood, as <two>colloid</two>. How does the body "clean up", usually? Through <one>circulating macrophages</one>.
151
+ - Name a <one>surface modifier</one> that can be used for an <three>artificial nanovesicle</three>. A: <one>Antibodies</one>.
152
+ - Give an example for modern "nanoscale assembly". A: <one>DNA Origami</one>.
153
+ - In <one>nanomaterials</one>: whenever we have benefits, we may also have ... ? <one>Risks</one>, aka <two>adverse effects</two>.
154
+ - Wenn wir <one>Liposomen</one> als Vektorsysteme verwenden, wieso sollten wir diese nicht zu stabil machen? Da eine zu hohe Stabilität in einer <one>ungenügenden Freisetzung</one> mündet.
155
+ - How can the <one>swelling</one> of a hydrogel, and thereby the loading and release rate, be affected? We can affect it through the environment, in particular by: (1) <one>the pH value</one> (2) <one>temperature</one> (3) <one>ion concentration</one>
156
+ - In <one>nanomedicine</one>, we may make use of <three>a stimulus-triggered drug release</three>. This may have several advantages but name just about the biggest advantage, from a pharmaceutical point of view. A: Triggered-release will <one>minimize systemic exposure</one>.
157
+ - <one>DNA</one> was first used to <three>rationally design plasmonic structures</three> in ... what year? In <one>1996</one>.
158
+ - What is <one>Theranostics</one>? This is the approach of combining <one>diagnostics</one> and <one>therapeutics</one>.
159
+ - Ein <one>Quantum Dot</one> (Quantenpunkt) hat etwa n Atome? <one>Tausend</one> bis <one>wenige Tausend</one>.
160
+ - In nanomedicine, for nanoparticles: what is <one>the holy grail</one>? <one>Nanoparticle-controlled cell uptake</one>.
161
+ - The <one>diameter of a hydrogen atom</one> is about ... of a nanometer. A: <one>One-tenth</one> of a nanometer (<two>0.1nm</two>).
162
+ - <one>Molecular motors</one> use ... to "create motion". A: <one>chemical energy</one>.
163
+ - Where may <one>hydrogels</one> be found? In <one>biomedical devices</one>.
164
+ - There are old examples of <one>nanostructured materials</one>. The people did not understand the properties of the material but could use in particular which phenomenon to shape these early nanostructured materials? These craftsmen were making use of <one>high heat</one> to produce new materials with novel properties.
165
+ - <one>Capsosomes</one> are synthesised ... how? By <one>using the layer-by-layer technique</one>.
166
+ - The abbreviation <one>SPION</one> refers to ... ? <one>Superparamagnetic iron oxide nanoparticle</one>.
167
+ - How do we typically call <one>a biosensor</one> that can diagnose the need for a drug autonomously and then release the appropriate amount of drug? This is a <one>theranostic device</one>.
168
+ - <one>Which US President</one> launched the <three>National Nanotechnology Initiative</three> (NNI)? President Clinton, aka <one>Bill Clinton</one>. URL: https://en.wikipedia.org/wiki/Bill_Clinton
169
+ - Are <one>nanoplasmonic sensors</one> on the same order of proteins? Yes - thus <one>we may have to use thicker coatings</one>.
170
+ - The surface of a nano-particle has... which three characteristics? (1) An "interface" (2) <one>depth</one> (3) a <one>topography</one>
171
+ - Cells actively probe the physical properties of surfaces. Name one way how they do so. A: Cells can make use of their contractile machinery to form polarized <one>lamellipodia</one>.
172
+ - Do single (biological) cells respond to <one>microscale roughness of a surface</one>? Ja.
173
+ - Name a disadvantage of an <one>unstable liposome drug delivery system</one>. A: An unstable stealth liposome releases drugs while circulating.
174
+ - Name a slightly advanced liposome drug delivery system. A: The <one>thermoresponsive liposome drug delivery system</one>.
175
+ - Name a disadvantage of a stable stealth liposome drug delivery system. A: A stable stealth liposome does not release drugs efficiently at the target location.
176
+ - The first <one>'nanodrug'</one> was ... ? <one>DOXIL</one> <two>(Doxorubicin Liposomal)</two>.
177
+ - <one>Liposomes</one> can be modified and functionalized, with what exactly in general? <one>Additional targeting moieties</one>.
178
+ - What do we mean with the <one>scaling theory</one> in the nanosciences? This is the study of how properties change, as the size changes (increases, or usually, decreases).
179
+ - Name a simple way <one>how to improve the detection capabilities of a (nano)biosensor</one>. A: Make use of <one>fluorescent labels</one>, in order to enhance the signal.
180
+ - What is meant with the term <one>targeted drug delivery</one>? In <one>targeted drug delivery</one>, the <two>drug delivery vehicle</two> should accumulate and <three>release the drug only at the therapeutic site</three>.
181
+ - Name a common <one>delivery problem</one> for novel protein drugs, from the point of view of nanotechnology. A: <one>Viscosity</one>:
182
+ - In <one>nanomedicine applications</one>: give an example for an <three>en-route barrier</three>. A: <one>Blood</one>.
183
+ - Exposure of humans to nanoparticles happens usually how? Through <one>digestible nanomaterials</one> put in our environment, such as in food.
184
+ - <one>Nanoparticle contrast enhancers</one> allow for imaging of ... which property involving the drug? The <one>destination</one> of the drug in a body.
185
+ - When we put a <one>naked nanoparticle</one> into the human body, what may we quickly notice that may happen to it? A <one>potein corona</one> may form, adsorbed on that nanoparticle.
186
+ - <one>Nanomaterials</one> that get into the human lung, show similarities to ... ? Problems caused by <one>asbestos</one>.
187
+ - In <one>nanomedicine</one>: why may we consider <three>stealth properties</three> to be useful? Because this may help us achieve a <one>long circulation time</one>.
188
+ - <one>Rapamune</one> is a registered trademark, <three>carrying which particular drug</three>? <one>Rapamycin</one>. URL: https://en.wikipedia.org/wiki/Sirolimus
189
+ - In nanotechnology, for the design of <three>nanosensors</three>, we may make use of <one>oxide surfaces</one>. Give an example for such an <one>oxide surface</one>. A: <one>SiO₂</one>. <two>Silanes</two> in general are good anchors.
190
+ - Does the <one>surface plasmon resonance</one> have anything to do with colours? Yes.
191
+ - Give an example for a <one>passive nanostructure</one>. A: <one>Coatings</one> (on a nanovesicle).
192
+ - Why can <one>thermoresponsive polymers</one> be used for drug-release devices? Because at a high temperature they will shrink, which in turn may cause the formation of large pores, thus making the release of the drug easier.
193
+ - Millimeter-sized implant devices suffer which two major problems, as of the year 2020? (1) foreign body response (2) the problem of energy supply
194
+ - Give an example for an <one>oral delivery system</one> that is also used in <two>nanomedicine</two>. A: A <one>hydrogel</one>.
195
+ - <one>Microcantilevers</one> with integrated sharp nanotips are used for ... ? (1) <one>STMs</one> (2) <one>AFMs</one> (<two>atomic force microscopy</two>)
196
+ - Name <three>a functional difference</three> between <one>physisorbed multiple anchors</one> and <one>chemisorbed single anchors</one>. A: <one>Physisorbed anchors</one> tend to be weaker in general than <one>chemisorbed single anchors</one>.
197
+ - Give an example for an <one>invisibility cloak</one>. A: <one>Gold Nanoshells</one>. URL: https://en.wikipedia.org/wiki/Nanoshell
198
+ - Give another term for <one>negative refractive index</one>. A: <one>Invisibility</one>.
199
+ - Nenne einen Nachteil der <one>Lipofektion</one>. A: Die Liposomen verschmelzen mit den Membranen jeglicher Zellen.
200
+ - Name two definitions that are "necessary conditions" for the term <one>nanotechnology</one>. A: (1) <one>scale</one> (2) <one>novelty</one>
201
+ - Name a major issue in regards to <one>implantable drug delivery systems</one>. A: <one>Foreign body encapsulation</one> is a major issue, as it will reduce the functionality of these systems.
202
+ - Name three <one>objectives for a good drug delivery system</one>. A: (1) it <one>shall carry a payload</one> (2) locate at the point of delivery (3) release the payload at a controlled rate
203
+ - The <one>administered dose for nanomedicine</one> and related drugs, has to be continuously within ... ? The <one>therapeutic window</one>.
204
+ - Name two characteristic traits of <one>nanoparticles</one>. A: (1) "large surface area" (2) <one>no inner mass</one>
205
+ - <one>Which type of lithography</one> achieves the lowest nm patterning? <one>Electron beam lithography</one>.
206
+ - When designing <three>biosensors</three> that work on the nanoscale level, we have to <one>consider the length scale</one>. The length scale is typically from <two>n nm</two> to <two>n nm</two>? <one>5nm</one> <two>-</two> <one>500 nm</one>.
207
+ - Nanotechnology is the study and use of structures between x nanometer and y nanometers in size. A: <one>1nm</one> up to <one>100nm</one>.
208
+ - Give an example of a fairly <one>well known, non-fouling material</one>. A: <one>Teflon</one>. URL: https://en.wikipedia.org/wiki/Polytetrafluoroethylene
209
+ - Winkler: Nenne ein <one>Oligonukleotid</one>, das bereits zugelassen oder in der klinischen Prüfung ist. A: <one>Mipomersen</one>.
210
+ - <one>Nano-scale materials</one> exhibit different fundamental physical, biological, and chemical properties. This may also be relevant in nanotoxicology. Name <three>two main reasons</three> as to the cause of these different, fundamental properties. A: (1) a <one>rapidly increasing surface-to-volume ratio</one> (2) "Quantum effects" leading to strong, electromagnetic field interactions
211
+ - What was, in <one>1995</one>, the first <three>nanotherapeutic</three>? <one>Liposomal doxorubicin</one>. URL: http://www.cancerresearchuk.org/about-cancer/cancer-in-general/treatment/cancer-drugs/drugs/liposomal-doxorubicin
212
+ - Materials embedded in a <two>matrix</two> are not considered <one>nanotoxic</one>. Why not? <one>Such particulates are not free to enter an organism</one>.
213
+ - Feynman said: "So, you simply evaporate until you have a block of stuff which has the elements ... What could we do with layered materials with just the right layers?". <one>Which technique</one> implements this vision? A: <one>Molecular beam epitaxy</one>.
214
+ - <one>Nanoporous membranes</one> have an <two>upper size limit</two> of about <three>n nm</three>? Less than <one>20 nm</one>.
215
+ - What does the <one>Heisenberg equation</one> state? It states that the more precisely the position of some particle is determined, the less precisely its momentum can be known, and vice versa. This is thus a "fundamental limit to precision".
216
+ - Which person discovered the <one>carbon nanotube</one> (<two>CNT</two>)? A japanese called <one>Sumio Iijima</one>.
217
+ - Was ist <one>SIMS</one>? "Sekundärionen-Massenspektrometrie" (SIMS) ist eine "Technik zur Analyse der Zusammensetzung von festen Oberflächen und dünnen Schichten".
218
+ - Die Weiterentwicklung <one>NanoSIMS</one> erlaubt eine räumliche Auflösung von bis zu n nm? Bis zu <one>30 nm</one>.
219
+ - <one>Hydrogels</one> are not only <three>highly hydrophilic</three>, but also <two>h</two>... polymers? <one>Hygroscopic polymers</one>.
220
+ - In nanomedicine we may make use of <one>SNALPs</one>. What does this abbreviation stand for? <royalblue>SNALP</royalblue>: <two>stable nucleic acid lipid particle</two> (a liposome).
221
+ - Do standards exist for <one>testing nanomaterials risks</one>? No.
222
+ - Give an example for <one>ultrahydrophobicity</one>. A: The <one>lotus effect</one>; aka <three>self-cleaning properties</three>.
223
+ - <one>Nanoparticles</one> may become <one>PEGylated</one>. What charge will they incur as a consequence of this coating? These particules will become <one>highly hydrophilic</one>, which also prevents/reduces opsonization. URL: https://en.wikipedia.org/wiki/PEGylation
224
+ - Why may we wish to make use of <one>surface engineering nanoparticles</one>, in <three>nanomedicine</three>? <one>Surface engineered nanoparticles</one> can <two>avoid clearance by the immune system</two>.
225
+ - Anderer Begriff für die <one>Selbstheilung bei Metallen</one>? <one>Formgedächtnis</one>.
226
+ - <one>Geckos</one> can cling to surfaces, aside from the tiny hairs on the feet, due to which phenomenon? Due to <one>Van der Waals interactions</one>, which allow them to cling to surfaces.
227
+ - Wie werden die <one>SNALP-Lipidstrukturen</one> in den menschlichen Körper gebracht, meistens? Durch eine <one>intravenöse Applikation</one>.
228
+ - What is <one>nanomedicine</one>? <two>Nanomedicine</two> is <one>the application of nanotechnology to medicine</one>.
229
+ - In <one>nanomedicine</one>: name a goal of <three>oral delivery</three>. A: One goal is <one>to retain the drug and release it over a long time</one>.
230
+ - In Nanotechnology: why is the term <one>noble metal</one> a curious one? Because the properties of atoms and molecules may change at the nanoscale; they <one>may no longer be so noble anymore</one>. They can be manipulated in some cases.
231
+ - Nenne eine Möglichkeit <one>quantum dots</one> herzustellen. A: <one>MBE</one>: <two>Molecular Beam Epitaxy</two>. URL: https://en.wikipedia.org/wiki/Molecular-beam_epitaxy
232
+ - <one>Plant leaves</one> that show a <three>lotus effect</three>, have tiny wax crystals on their surface. What is the diameter of these crystals? The diameter of these crystals is about <one>1nm</one>.
233
+ - We could implant drug delivery systems into the body, but what characteristic trait does the membrane of this system have to have? The membrane has to be <one>completely non-fouling</one> - otherwise it will clog and the release of the drug will subsequently stop.
234
+ - Can <one>airborne nanoparticles</one> travel large distances <three>without aggregation</three>? Yes.
235
+ - In <one>Nanotechnology</one>: what is meant with the abbreviation <three>SNALPs</three>? <one>Stable nucleic acid lipid particles</one>.
236
+ - <one>Nanocomposites</one> have which useful mechanical property in general? They show an <one>extremely high mechanical strength</one>.
237
+ - In 1959, <one>Richard Feynman</one> gave a famous talk. What was the title of his talk? <one>There is plenty of room at the bottom</one>.
238
+ - In <one>nanomedicine</one>: why may we wish to make use of <two>iron oxide nanoparticles</two>? These could be used as <one>a contrast agent</one> for <two>magnetic resonance imaging</two>.
239
+ - In <one>nanomedicine</one>: if we require to put a drug into the human body, we could either inject the fluid directly into the blood stream by a syringe, or we could use ... ? An <one>implanted device</one> which can inject either single volume or be refilled.
240
+ - The chemical activity of a material increases drastically as the particle size reaches a few nm. Give a dramatic manifestation of this as example. A: The <one>auto-ignition of fine metal powders in air</one>.
241
+ - In <one>nanotechnology</one>: give an example for a <two>drug conjugate</two>. A: Any <one>antibody-drug conjugate</one> (<one>ADC</one>).
242
+ - Why are <one>X-rays</one> not surface sensitive? Because the X-rays are excited mostly from <one>deep penetrating electrons</one>.
243
+ - <one>MCC-465</one> is a liposome, complexed with an <three>antibody fragment</three> (thus, it is an immunoliposome), for the targeted delivery of <two>doxorubicin</two>. Which antibody fragment is used here for MCC-465? <one>F(ab')₂</one>.
244
+ - Why may we consider a <one>hydrogel</one> so useful in nanomedicine? Because it can release its stored compounds (aka drugs) very slowly.
245
+ - In <one>nanomedicine</one>: the skin is a formidable boundary that only allows ... what to penetrate through all skin layers? <one>Oily formulations of small molecules</one>.
246
+ - Name a very common surface modification of biointerfaces for nano and macro applications. A: A <one>polymer brush</one>.
247
+ - The <one>thickness of a normal paper</one> is n nm? About <one>100_000 nm</one>.
248
+ - Name three <one>physical features of nanoparticles</one>. A: (1) <one>size</one> (2) "shape" (3) <one>surface area</one>
249
+ - The majority of atoms in a <one>nanoparticle</one> reside where? On its <one>surface</one>.
250
+ - Nanotechnology is <one>a double-edged sword</one>. What is usually meant with that? That the same novel properties that make nanoparticles attractive, also makes them potentially toxic.
251
+ - What is meant with the expression <one>biopersistent nanoparticles</one>? These are nanoparticles that <one>do not dissolve in or get cleared from a biological environment</one>.
252
+ - Name three goals for a <one>drug delivery system</one> on the nanoscale. A: (1) carry a payload (2) locate at the point of delivery (3) release the payload at a controlled rate
253
+ - What do we mean with the term <one>biomedical payload</one> in nanotechnology and nanomedicine? This is when e. g. <one>therapeutic agents are transported</one>, such as <two>anticancer drugs</two>, DNA, siRNA oder hyperthermal/photodynamic material.
254
+ - <one>Catechols</one> prrovide <three>strong anchors</three> in nanobiotechnology. They tend to bind to which substance? <one>Fe₃O4</one> (Todo: add link).
255
+ - Nanotechnology may be used in nanomedicine, in particular when it comes to <one>Imaging</one>. In particular what may we wish to improve here, in general? We may wish to improve functionality related to <one>early detection</one>.
256
+ - The same properties that make nanoparticles potentially <one>more dangerous</one>, due to reactivity, also make them ... ? <one>Very short lived</one>.
257
+ - Name the <one>three kinds of targeted drug delivery</one>. A: (1) <one>Passive targeted drug delivery</one> (2) <one>Active targeted drug delivery</one> (3) <one>Externally guided targeting</one>
258
+ - Give an example for <one>molecular nanotechnology</one>. A: <one>Biological machines</one>.
259
+ - Given an atom at the surface of a crystal with a high curvature, what can we presume from this at once? This atom will have <one>fewer nearest neighbors</one>.
260
+ - In nanotoxicity: increased surface area and reactivity leads to increased intrinsic toxicity, in particular the <one>production of ...</one>? <one>Oxyradicals</one>.
261
+ - What do we mean with the term <one>nanotoxicology</one>? <one>Nanotoxicology</one> refers to the uncontrolled effects of exposure of the environment and humans to different nanomaterials.
262
+ - Give another name to <one>viral vectors</one> - a name that should also fit into nanotechnology. A: <one>Biological nanoparticles</one>.
263
+ - What do we mean with <one>actuation</one> in nanotechnology? This is when we <one>input energy</one>, e. g. via an antenna, into the nano-object/nano-device.
264
+ - Silicon-based, disposable blood-pressure sensor chips were introduced in the early 1990s by which company, for <one>blood pressure monitoring</one>? By <one>NovaSensor</one>.
265
+ - In nanomedicine: what is meant with the term <one>soneth effect</one>? When the immune systeme, in particular <two>monocytes</two> and <two>macrophages</two>, can not recognize our nanoparticle at hand; e. g. because it may be <one>PEGylated</one>.
266
+ - Give an example for a <one>biological molecular machine</one>. A: <one>Bacterial flagella</one>.
267
+ - <one>Superparamagnetic nanoparticles</one> have a diameter of, typically, ... from ... to? <one>3-15nm</one>.
268
+ - We can say that the main focus of nanotechnology happens at a size-range of about <one>10 nm</one>. How do we call the size range below and above this threshold value, respectively? (1) Above we call it <one>bulk matter</one> (2) Below we call it <one>atomic matter</one>
269
+ - Nenne zwei typische Nebenwirkungen von <one>Phosphorthioat-Oligonukleotiden</one>. A: (1) <one>Entzündungsreaktionen besonders an den Injektionsstellen</one> (2) <one>Anstieg der Lebertransaminasen ALT und AST</one>
270
+ - <one>Colloidal systems</one> can be divided into which two types? (1) <one>lyophilic</one> (2) <one>lyophobic</one>
271
+ - The <one>van-der-Waals force</one> has which two general components? (1) <one>attractive force</one> (2) <one>repulsive force</one>
272
+ - In <one>nanomedicine</one>: give another term for <two>biodistribution</two>. A: <one>Flow</one>.
273
+ - Name a method with which we can model <one>polymer brushes</one>. A: The <one>Monte Carlo</one> method.
274
+ - Assume that, in nanotechnology, someone argues that <one>microscopy images</one> are sufficient in order to deduce what has to be done, e. g. for nanomedicine delivery. What could you say against this claim? For example, we do not get chemical information from a normal 2D microscope alone. Even probe-scanning for elements is not necessarily enough due to biological objects, such as the human body, interacting in different ways with nanomaterial.
275
+ - Name one important reason why <one>nanomedicine</one> may be important today. A: We may be able to <one>improve a medical therapy</one>; and the diagnosis.
276
+ - In <one>nanomedicine</one> we may identify <two>cellular barriers</two>. Name three such barriers, with a short explanation why it constitutes a barrier. A: (1) "cellular uptake": passive diffusion happens only up to about 1kDa in size (2) "cytoplasm": degradation may occur here (3) "endocytosis": the whole "intracellular vesicle system" is a barrier
277
+ - What is a <one>polymer brush</one>? This is a <one>surface coating</one>, consisting of polymers tethered to a surface.
278
+ - When we talk about a <one>conjugated nanoparticle</one>: what do we mean with this? That <one>there may be a conjugate on the surface</one>.
279
+ - In nanotechnology, for patterning methods: what does <one>SMAP</one> stand for? <one>Selective molecular assembly patterning</one>.
280
+ - Give another word for <one>biosensors</one>. A: <one>Nanoscale sensors</one>.
281
+ - How can we make a <peru>liposome</peru> <one>soneth-up</one>, aka become <two>invisible</two> to the human body? Via <one>PEGylation</one>.
282
+ - What are <one>DNA Walkers</one>? <one>DNA walkers</one> are a class of <two>nucleic acid nanomachines</two> that exhibit directional motion along a linear track.
283
+ - How can the <one>the hydrophobicity of a surface</one> be <two>measured</two>? By its <one>contact angle</one>: the higher the contact angle, the higher the hydrophobicity of a surface.
284
+ - In <peru>nanotechnology</peru>: when <one>tracking nanoparticles</one>, via <two>NTA</two> ("nano-particle tracking analysis"), what is indispensable aside from the nano-object itself? A <one>laser</one>.
285
+ - How do we call <one>the difference</one> between the advancing and receding contact angle? <one>Contact angle hysteresis</one>.
286
+ - <one>Drag nanocrystals</one> are used ... why exactly? They are used in pharmaceutics to develop a new innovative formulation principle for "poorly soluble drugs".
287
+ - Why can we say that <one>hydrophobic interaction is not a force</one>? Because it <one>has no real range</one>; about <two>~0.5nm</two> only.
288
+ - Wir beladen einen <one>SNALP-Lipidkomplex</one> mit siRNA. Welchen pH Wert wollen wir für die Ionisierbarkeit erreichen? Einen <one>sauren pH</one>; also unter Bedingungen der Endosomen.
289
+ - The abbreviation <one>nanoSIMS</one> stands short for ... ? <one>Nanoscale secondary ion mass spectrometry</one>.
290
+ - What is a <one>Nanomaterial</one>? A nanomaterial is a material with at least one dimension "less than 100nm", exhibiting unique properties due to its nano scale size and shape.
291
+ - Both <one>top-down</one> strategies and <one>bottom-up</one> strategies in nanotechnology have which goal in common? Build the <one>smallest possible functional unit</one>.
292
+ - Give another name for a <one>temperature-based nanotherapy</one>. A: <one>Hyperthermia</one>.
293
+ - What is meant with the so called <one>scaling theory</one> in nanotechnology? This is when "small things" behave differently compared to "large, everyday things". The properties change as the size decreases towards the nanoscale.
294
+ - Self-assembly is an <one>energy ... process</one>. A: <one>Energy minimization process</one>.
295
+ - When was the term <one>nanotechnology</one> first used? In <one>1974</one>.
296
+ - What is meant with the term <one>luminescence</one>? Luminescence is the emission of light from any substance.
297
+ - In Nanotechnology: what is meant with the abbreviation <one>LNP</one>? <one>Lipid Nano Particle</one>.
298
+ - Es gibt den Arzneiwirkstoff "siG12D LODER". Wofür steht das LODER hier? A: LODER steht für "Local Drug EluteR". URL: http://silenseed.com/?page_id=2424
299
+ - Name a huge drawback of "stable soneth liposomes" in nanomedicine. A: It will not release drugs efficiently at the target location.
300
+ - For nanomedicine we may wish "soneth properties", but what do we mean with this? Either "avoiding the immune system"; and/or "long circulation time" in the blood stream.
301
+ - Der F1-Teil von ATPase ragt wohinein? Ins "Cytoplasma".
302
+ - In nanomedicine, name a big advantage of "PEGylation". A: It may lead to "improved drug solubility".
303
+ - What are <one>drug nanocrystals</one>? Drug nanocrystals are crystals with a size in the nanometer range, which means they are "nanoparticles with a crystalline character".