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,154 @@
1
+ # =========================================================================== #
2
+ # === Cell cultures
3
+ #
4
+ # This file collects information about cell cultures and cell populations.
5
+ # It may also include some information about cell biology and cancer
6
+ # biology, if it is of relevance to cell cultures in any way.
7
+ #
8
+ # Zellkultur tag.
9
+ # =========================================================================== #
10
+
11
+ - For animal cell culturing, the substrate concentration of aminoacids is often very important, in particular <one>glutamin</one>. Why glutamin, though? Because <one>glutamin</one> <two>functions as an energy substrate</two>.
12
+ - <one>Animal models</one> are a bad predictor for which part of the human? The <one>skin system</one>. []
13
+ - Benötigen <one>VERO-Zellen</one> ein <one>Substrat</one>? Ja.
14
+ - <one>A549 cells</one> are used as models for the study of ... ? <one>lung cancer</one> (and the development of drug therapies against it).
15
+ - An infection of a cell culture via "mycoplasm" can change the metabolism of the cells. Give one example for this. A: For example, there may be <one>an increased requirement for arginin</one>.
16
+ - For certain cell lines we can apply scraping, via a <one>cell scraper</one>. In particular to which cell lines may we wish to do so? To cell lines that are otherwise <one>sensitive to proteases</one>.
17
+ - Was meinen wir mit den <one>Ansprüchen einer Zelle an das Serum</one>, in einer Zellkultur? Das sie von bestimmten <one>Wachstumsfaktoren</one> abhängig sein mögen.
18
+ - The <one>3T3 cell line</one> was established in the year ... ? <one>1962</one>. URL: https://en.wikipedia.org/wiki/3T3_cells
19
+ - Es gibt den <one>3T3 Zelltyp</one>. Wieso dieser eigenartige Name? <one>3T3</one> heisst <one>jeden 3. Tag 1x3</one> gesplitted. URL: https://en.wikipedia.org/wiki/3T3_cells
20
+ - <one>Tumor cells</one> used in cell cultures may be homogenous, but have which general disadvantage? They often show <one>genomic instability</one>.
21
+ - Warum verwenden wir <one>NaHCO3</one> in der tierischen Zellkultur? Um den pH-Wert nicht zu sauer werden zu lassen. Bei Zellwachstum erhöhen sich die CO2-Werte, die wiederum den pH-Wert des Mediums erniedrigen. NaHCO3 neutralisiert diesen Effekt.
22
+ - In cell culturing, <one>PBS</one> is often used. This abbreviation stands for ... ? <one>Phosphate buffered saline</one>.
23
+ - The <one>MDCK cell line</one>: what does MDCK stand for? <one>Madin Darby Canine Kidney</one>.
24
+ - The <one>ECACC</one> has how many cell lines? More than <one>40.000</one>.
25
+ - The <one>standard fibroblast cell line</one> is ... ? The mouse <one>3T3 cell line</one>.
26
+ - A549 cells contain which virus? Adenovirus.
27
+ - The A549 cells were established by D. J. Giard in which year? 1972.
28
+ - In cell culturing: what is meant with a <one>clonogenic assay</one>? This is <one>the culturing of tumor stem cells</one>.
29
+ - Warum werden <one>CHO Zellen</one> bevorzugt in der Biotechnologie? Da sie <one>in Suspensionskultur wachsen können</one>.
30
+ - The most commonly used <one>CO₂ concentration</one> used for animal cell culture is ... n%. A: <one>5%</one>.
31
+ - The <one>Namalwa host cell line</one> is used for the production of ... ? <one>Alpha-interferon</one>.
32
+ - In cell cultures: we may have the so-called <one>PD number</one>. What does PD stand for here? <one>Population doubling</one> number.
33
+ - "<u>Tissue culture</u>" begann wann? <one>1907</one>.
34
+ - The <violet>MDCK cell line</violet> has been derived from? <tomato>Dogs</tomato> (Epithelial cells).
35
+ - The 3T3 mouse cells show what kind of ploidy state? They are <tomato>hypertriploid</tomato>.
36
+ - The <tomato>3T3</tomato> designation refers to ... ? The abbreviation of <royalblue>3-day transfer, inoculum 3x10**5 cells</royalblue>.
37
+ - Say that we may wish to allow allow anchorage dependent cells to grow in a stirred tank reactor. What could we use? <tomato>Microcarriers</tomato>.
38
+ - Nenne einen gravierenden Nachteil des Serums in (industrieller) Zellkultur. A: <tomato>Chargenvariabilität</tomato>.
39
+ - Give an example for an undefined supplement that is commonly used for cell cultures. A: <tomato>fetal calf serum</tomato>.
40
+ - Complex media are often required for animal cell cultures. Name two such examples. A: (1) <tomato>fetal calf serum</tomato> (2) <tomato>soya bean extract</tomato>
41
+ - The <tomato>BHK21 cell line</tomato> is ... what kind of hamster? Syrian hamster (from the kidney).
42
+ - Eine nicht-immortalisierte Zellline ist nach etwa wieviele Passagen nicht mehr teilungsfähig? Nach etwa <one>30 Passagen</one>.
43
+ - From about 1980 to 1986 there was a regulatory struggle for the use of <tomato>continuous cell lines</tomato>. What was the major concern here? <one>Oncogens</one>.
44
+ - Nenne einen <tomato>Puffer</tomato> der in Zellkulturen oft verwendet wird. A: "<u>NaHCO3</u>".
45
+ - The cell culture line called "Namalwa" typically includes which virus that is integrated into the genome? The <tomato>Epstein-Barr virus genome</tomato>.
46
+ - Media development for animal cells is largely an ... process. A: <tomato>empiric process</tomato>.
47
+ - Say that we are working with CHO cell lines. We now add a substance called <tomato>methionine sulphoximine</tomato> (MSX). Why may we do so? Because methionine sulphoximine can be used to inhibit endogenous Glutamine Synthetase activity. That way only transfectants with additional Glutamine Synthetase activity can survive.
48
+ - Some mammalian cell lines used in a cell culture do not express sufficient levels of <tomato>Glutamine Synthetase</tomato> (GS) to survive without the addition of glutamine into the cell culture. Name one such cell culture that requires GS addition. A: <violet>NS0</violet>. URL: https://en.wikipedia.org/wiki/NS0_cell
49
+ - Give a good practical reason as to why we may wish to substitute serum, in particular FCS (<tomato>fetal calf serum</tomato>). A: We always have a risk of viral (or prion) <violet>contamination</violet> from natural fetal calf serum.
50
+ - The <tomato>starting point</tomato> for many cell culture media used for animal cells is often ... ? <crimson>Blood</crimson>.
51
+ - Name a popular microplate that is larger than the well known 96-well plate. A: The <tomato>384-well plate</tomato>.
52
+ - Given the two terms adherent cells and suspended cells - give two different, longer words for these, respectively. A: (1) adherent cells: <tomato>anchorage dependent cells</tomato> (2) suspended cells: <tomato>anchorage independent cells</tomato>
53
+ - Name a famous African Green Monkey kidney cell line. A: The <tomato>VERO</tomato> cell line.
54
+ - Name an "adenovirus transformed human cell line". A: The <orange>HEK293</orange> cell line.
55
+ - The "standard fibroblast cell line" is ... ? The "<u>3T3 cell line</u>".
56
+ - How often will fibroblasts typically divide, compared to epithelial cells? (1) "<u>Fibroblast cells</u>": "50-80 times" (2) "<u>Epithhelia cells</u>": "10-20 times"
57
+ - If we add the enzyme "Beta-Galactosidase" to e. g. mouse fibroblasts, in which organelles will this enzyme be active, eventually? In the "<u>lysosome</u>".
58
+ - "<u>Feeder cells</u>" can improve cell growth in a cell culture. But we may also be able to just provide the substances that these cells provide, "extracellular matrix proteins" such as ... name three examples. A: (1) "collagen" (2) "fibronectin" (3) "laminin"
59
+ - Nenne drei verschiedene "Zellkulturbanken". A: (1) "ATCC": URL -> https://en.wikipedia.org/wiki/ATCC_%28company%29 (2) "ECACC": ("The European Collection of Authenticated Cell Cultures") (3) "DSMZ": URL -> https://www.dsmz.de/catalogues/catalogue-human-and-animal-cell-lines.html
60
+ - How can we, possibly accidentally, kill cells in a cell culture, without even knowing or trying hard? Yes - for example, if these cells lack "growth factors".
61
+ - In a cell culture, we may wish to make use of the "end-point measurement". We have non-destructive, and destructive methods here. Give two examples for "destructive measurement". A: (1) "cell lysis" (2) "cell fixation"
62
+ - One of the most important uses of cell culture is in research and production of ... ? "Vaccines".
63
+ - The most important piece of equipment within a cell culture laboratory is the "MSC". What does this abbreviation stand for? "MSC" stands for "Microbiological safety cabinet".
64
+ - Wieviel Prozent der Zellkulturlabore in Deutschland testen auf "Mykoplasmen", in etwa? Etwa 30%.
65
+ - Gegeben sei eine "Suspensionskultur" (Zellkultur). Sollte hierbei die Konzentration an Kalzium hoch oder niedrig sein? Eher niedrig, da eine hohe Konzentration an Kalzium die Aggregation der Zellen untereinander fördert.
66
+ - Name 3 different eukaryotic cell cultures. A: (1) "HeLa Zellen" (2) "VERO Zellen" (3) "CHO Zellen"
67
+ - "Supportive feeder cells" often express high levels of ... which FGF? "Fibroblast growth factor-2", aka "FGF2".
68
+ - Zu tierischen Zellkulturen wird oft "Phenolrot" hinzugefügt. Wieso? Phenolrot wirkt als ein "pH-Indikator".
69
+ - Nenne zwei "Arten von Zellkulturen". A: (1) "adhärente Zellkulturen" (2) "Zellen die in Suspension wachsen"
70
+ - The "doubling time" for CHO cells is about n hours? About "20-22 hours".
71
+ - Why may we wish to want to find out whether apoptosis occurs in a cell culture? This may allow us to test e. g. whether a drug can induce apoptosis in a given cell line.
72
+ - Können "transformierte Zellen" auf "<u>Weichagar</u>" wachsen? Ja.
73
+ - In cell cultures we may have to use CO2. How does an "increasing CO2 value" change the pH of the medium? It will decrease the pH - thus, make the medium "more acidic".
74
+ - Give two reasons as to why "gamma-irradiation" is worse than treatment of a cell culture via "mitomycin-C". A: Because gamma-irradiation is (1) "expensive", and (2) "time-consuming"
75
+ - Normal cells are unable to replicate past several rounds of proliferation. How do we call that "barrier"? The "Hayflick limit".
76
+ - Growth arrest can be induced by chemicals, such as "mitomycin-C". This may be useful to create "feeder cells", for use in a cell culture. Name another chemical, that begins with the letter "g", that could be used here. A: "Glutaraldehyde". URL: https://en.wikipedia.org/wiki/Glutaraldehyde
77
+ - Long-term storage of mammalian cells in a viable state can be done via ... ? "Cryopreservation". URL: https://en.wikipedia.org/wiki/Cryopreservation
78
+ - When we use a "Matrigel coated surface", in animal cell culture, which cell types do we usually employ here? "Endothelial cells".
79
+ - "Matrigel" is the trade name for a gelatinous protein mixture secreted by Engelbreth-Holm-Swarm (EHS) ... sarcoma cells. A: "Mouse sarcoma cells".
80
+ - How do "feeder cells" help in a cell culture? They "release growth factors intoto the culture medium", which helps other cells grow.
81
+ - In "tierischen Zellkulturen" erscheinen die Zellen oft leicht rot. Wieso? Durch den Wirkstoff "Phenolrot".
82
+ - "Cryopreservation of fully functional animal cells" was first reported in the scientific literature in the year ...by Polge et al. A: In the year "1949".
83
+ - The "BHK-21" cell line ... BHK stands for? "Baby hamster kidney cells".
84
+ - Mycoplasmen sind in der Zellkultur-Technik ein Problem. Können sie einen 0,2 mikrometer-Membranfilter passieren? Ja. Der aufgebrachte Druck drückt die sich verformenden Mykoplasmen durch die Poren, auch wenn sie eigentlich größer als 0,2 mikrometer sind.
85
+ - "DMEM-Medium" ("Dulbecco's modified Eagle's medium") gibt es in welchen zwei Varianten? (1) eine Variante mit "wenig Glukose" (2) eine Variante mit "viel Glukose"
86
+ - In der Biotechnologie, welches ist die "wichtigste tierische Zellkultur-Linie"? "CHO", chinese hamster ovary.
87
+ - Do "human skin cells" require physical contact with feeder cells? Yes.
88
+ - Incubators for cell culture must maintain an environment which is optimal for cell growth. This requires that three parameters be measured, controlled and reliably maintained. Which ones are these? (1) "temperature" (2) "humidity" (3) "carbon dioxide concentration"
89
+ - Für die Etablierung und Verbreitung der Zellkulturen war welche Substanz eminent wichtig? "Penicillin".
90
+ - The early development of cell culture technology was hindered by issues of ... ? "Microbial contamination".
91
+ - The cells of the feeder layer used in some cell cultures will not proliferate. How is this often achieved, technically? (1) via "irradiation" (2) also via "certain chemicals"
92
+ - "Leonard Hayflick" entwickelte den ersten menschlichen diploiden Zellstamm. Wie war dessen Name? "WI-38". URL: https://en.wikipedia.org/wiki/WI-38
93
+ - Give another name for "spheroids". A: "organoids".
94
+ - Why are spheroids considered so important? Because they present a "more realistic model of tumor tissue", in research.
95
+ - CHO-K1 (CHO-cells) was mutagenized with ... to generate a cell line lacking dihydrofolate reductase (DHFR) activity. A: "ethyl methanesulfonate".
96
+ - CHO-K1 (CHO-cells) are deficient in which gene? "Dihydrofolate reductase".
97
+ - Müssen transformierte Zellen zwingend malign sein? Nein, nicht unbedingt. Sie können auch lediglich eine "permanent wachsende Zellinie" (== immortalisiert) sein, die aus einer Primärkultur entstanden ist.
98
+ - Das "Hayflick-Limit" gilt für etwa wieviele Zellverdoppelungen? Etwa 50 - danach ist Schluss.
99
+ - The "VERO cell line" is also used for the production of ... which virus? "Poliovirus".
100
+ - Feeder cells are useful for cell cultures, but they may also show one particular problem? They may attempt to "overgrow the culture" unless this is somehow prevented.
101
+ - Welche Bakterien sind in der Zellkultur ein grosses Problem? Die "Mykoplasmen". Sie besitzen keine Zellwand und sind daher vollkommen resistent gegenüber den meisten Antibiotika, die normalerweise in der Zellkultur eingesetzt werden, wie Penicillin, Streptomycin oder Gentamycin.
102
+ - In a cell culture, we may wish to look at the cells via "end-point measurement", which should ideally be "non-destructive". Give an example for a technique that would be non-destructive here. A: For example, "microscopy" is a non-destructive technique.
103
+ - Name a risk associated with "primary cultures of human origin". A: They may be a source of viral infection, e. g. "hepatitis B" or "hepatitis C" and so forth.
104
+ - When we put endothelial cells onto a Matrigel matrix, what can we observe? A "spider-like network connection between these cells".
105
+ - Gegeben sei eine Primärkultur die wir kultivieren möchten. Welches Medium sollten wir hier verwenden? Ein "Hanks-gepuffertes Medium".
106
+ - In der Zellkultur wird mitunter welcher Puffer verwendet als Alternative für den Bicarbonat-Puffer? Der "HEPES" Puffer.
107
+ - Was ist die "Matrigel matrix"? Dies ist eine "extrazelluläre Matrix" (ECM).
108
+ - "In-vitro test systems" based on cell cultures have several key advantages, but also disadvantages. Name one specific disadvantage. A: In vitro test-systems only measure cellular effects. They can not measure "liver metabolism" or "inflammatory reactions".
109
+ - Name three different applications of animal cell cultures in biotechnology. A: (1) Production of recombinant proteins, monoclonal antibodies, insulin or hormones. (2) Production of vaccines such as in the VERO cell line. (3) Production of "artificial skin", for use in treating burns.
110
+ - For "animal cell cultures" the cells are usually taken from ... ? The "organ of an experimental animal".
111
+ - Give an example for a cell line immortalized with a virus. A: "HEK293T", which was immortalized through the SV40 virus.
112
+ - Give an example for a specific cell line that arose by "spontaneous immortalisation". A: "Vero cells" - which is a "monkey kidney cell line".
113
+ - Name four different ways how "immortal cells" can be generated, for a cell culture. A: (1) Isolate them from a naturally occurring cancer. This is the original method for generating an immortalised cell line. Major examples include human HeLa cells (which originated from a cervical cancer). (2) Introduction of a viral gene that partially deregulates the cell (Example: HEK 293 cell line). (3) Artificial expression of key proteins required for immortality, such as the "telomerase". (4) Hybridoma technology, specifically used for the generation of immortalised antibody-producing B cell lines, where an antibody-producing B cell is fused with a myeloma (B cell cancer) cell.
114
+ - "3T3 feeder fibroblasts" constitutively produce ... which factor? "Hyaluronic acid".
115
+ - We can distinguish two general groups among "feeder cells" used in cell cultures. Which ones are these? (1) "growth-arrested feeder cells" (2) "live feeder cells"
116
+ - Why may we see "chemically fixed feeder cells" in the refrigerator? We could re-use them as culture substrate at a later time.
117
+ - Give an example where "chemically fixed feeder cells" may be used. A: They may be used to support the growth and maintenance of "induced pluripotent stem cells" ("iPSC").
118
+ - "Mitomycin-C" is often used in cell cultures. How does it work? It works by arresting cells in G1 and S and G2 phases of the cell cycle. The cells remain vital. Mitomycin-C "prevents DNA double-strand separation" during cell replication, by forming covalent cross-links between DNA opposite strands. RNA and protein synthesis continue nonetheless.
119
+ - Nenne eine Substanz mit der man Zellkulturen transformieren kann. A: "EMS" ("Ethylmethansulfonat)".
120
+ - A. W. für "permanente Zellkultur"? "Dauerkultur".
121
+ - Gamma-irradiation remains a commonly used method to avoid "feeder cells" dividing. Name a chemical treatment to achieve the same. A: Treatment of these cells via "mitomycin-C".
122
+ - Wieso wird menschliches t-Pa in "CHO-Zellen" produziert und nicht in prokaryoten Organismen? Da "das Protein glykosyliert werden muss" - Prokaryoten können dies jedoch nicht.
123
+ - "Feeder cells" have been in use since what year? Since the year "1955".
124
+ - Was meinen wir mit einer "Primärkultur"? Dies ist eine Kultur, die von Zellen, Geweben oder Organen angelegt wird, die "direkt einem Organismus entnommen wurden".
125
+ - Why are "feeder cells" used in cell cultures? They can "promote cell proliferation".
126
+ - Can "feeder cells" divide? No, they are unable to divide - but they can still provide extracellular secretions that can help other cells proliferate.
127
+ - How can we eliminate Mycoplasm from a cell culture? We could use "Kanamycin".
128
+ - What is the "opposite" of a "continuous cell line"? A "finite cell line".
129
+ - Wie nennen wir in der Zellkultur eine "konfluente Schicht" noch? "Monolayer".
130
+ - "Per.C6" is a "human embryonic ... cell line". A: It is "a human embryonic retinal cell line".
131
+ - The "Hek293" cell line has been transformed with ... ? The "Ad5 genome" that was cleaved via a restriction enzyme.
132
+ - The cell line called "Hek293", aka "Hek", stands for ... ? "Human embryonic kidney" cell line.
133
+ - Cell lines that are used in biotechnology usually start with cells that are known to be normal, aka diploid. Then they may be transformed, in particular "immortalized". Name three different mechanisms here for achieving this goal of immortalization. A: (1) use a "virus" (2) use "cellular oncogenes" (3) use "hTERT"
134
+ - The majority of successful biopharmaceutical ingredients are produced in ... which cell line? In "CHO cell lines".
135
+ - In a cell culture, we may have to not forget "provenance". What is meant with this term? This is the question as to what has happened to the particular cell line at hand since its original isolation.
136
+ - Can we detect Apoptosis purely from DNA? Yes. We can extract DNA from apoptotic cells, then separate it by gel electrophoresis. This will reveal a "characteristic ladder pattern of low molecular weight DNA fragments".
137
+ - If we wish to find out how many apoptotic cells are in a given cell culture, what may be the simplest way to do so? We can use a specific DNA stain to detect apoptotic cells. Nucleic acid stains can be a useful tool for identifying even low numbers of apoptotic cells in cell populations.
138
+ - Name three general "growth characteristics" for a cell culture. A: (1) the "population doubling times" (2) the "ability to grow in suspension" (3) the "plating efficiency"
139
+ - Die Zellinie "HaCat" - wofür steht diese Abkürzung? "Human adult low Calcium high Temperature" cell line. URL: https://www.ncbi.nlm.nih.gov/pubmed/19402346
140
+ - Is it easier to maintain a "finite cell line", as opposed to a "continuous cell line"? No - "continuous cell lines" are easier to maintain.
141
+ - Name three different "carrier proteins" in the serum. A: (1) "albumin" (2) "lipoproteins" (3) "riboflavin carrier proteins"
142
+ - CHO cells are the most common mammalian cell line used for mass production of therapeutic proteins. They can produce recombinant protein on the scale of n grams per liter of culture. A: "3-10 grams per liter".
143
+ - Bei den "CHO Zellen", nenne eine Voraussetzung für eine hohe Expression. A: Genamplifikation.
144
+ - Nenne einen Nachteil der Proteinexpression in CHO Zellen. A: Die "Ausbeuten sind relativ gering".
145
+ - In welchen Zellen produzieren wir "EPO-Präparate"? EPO-Präparate werden aufgrund der ähnlichen "Glykosylierungsmuster" in "CHO-Zellen" produziert. URL: https://de.wikipedia.org/wiki/CHO-Zellen
146
+ - Wie bemerken wir das sich die Phase-II in einer Zellkultur dem Ende zuneigt? Die Zellen in dieser Phase teilen sich zunehmend langsamer; dies ist ein Zeichen für den Beginn der Phase III.
147
+ - In a cell culture, if we use the gene "DHFR" ("Dihydrofolat-Reductase"), how can we then select? We apply "Methotrexat"; this allows the amplification of the target gene.
148
+ - Nenne zwei "Vorteile einer 3D Zellkultur". A: (1) eine 3D Zellkultur simuliert natürliche Gewebe (2) eine 3D Zellkultur ist realistischer betreffend Strahlungsdosis bei einer Radiotherapie gegen Krebs; dies spiegelt den natürlichen Zustand im Körper besser wider
149
+ - Es gibt in der tierischen Zellkulturtechnik das "DMEM-Kulturmedium" ("Dulbecco's Modified Eagle's Medium"). Was wird hierbei als "Glutamin-Quelle" verwendet? "Glutamax".
150
+ - Die "menschliche Zellinie WI-38" wird vor allem wozu eingesetzt? Zur "Herstellung von Impfstoffen".
151
+ - In welchem Jahr wurde das "HAT-Medium" (Hypoxanthin, Aminopterin, Thymidin) eingeführt? "1964".
152
+ - Give two examples for "in-vitro cell immortalization" caused by viruses or viral proteins. A: (1) "SV40 large-T antigen" (2) "Adenovirus-E1a protein"
153
+ - Name two different (but general) ways to detect apoptotic cells in a cell culture. A: (1) use "DNA Stains" for detecting apoptotic cells (2) check the "membrane permeability" to determine how many cells are dead
154
+ - When we wish to "perform experiments on cell cultures". Give "two different reasons" as to why we would want to obtain as little data as possible. A: (1) cost (2) time required to analyse and evaluate the data
@@ -0,0 +1,962 @@
1
+ # =========================================================================== #
2
+ # === Cellbiology Tag
3
+ #
4
+ # Cellbio tag. Cell Tag. Cel tag. Zell Tag. Celltag. Zellbiologie tag.
5
+ # Zellbio tag. Akt tag. Aktuell tag.
6
+ # Cell2 tag (wird eventuell später geändert).
7
+ # Zellbiologie tierischer Zellen.
8
+ #
9
+ # Zellzyklus wird in einer separaten Datei gesammelt.
10
+ # =========================================================================== #
11
+
12
+ - Why is it important that the <one>ER</one> (<one>endoplasmic reticulum</one>) has a large surface area? This helps in <one>biochemical synthesis</one>.
13
+ - Microtubules are made of which protein? <one>Tubulin</one>.
14
+ - What is the <one>opposite</one> of the secretory pathway? The <one>endocytic pathway</one>.
15
+ - Give another name for <cadetblue>Ubiquitin E1</cadetblue>. A: <one>Ubiquitin-activating enzyme</one>.
16
+ - Wie weit sind <one>die Membranen des Zellkerns</one> voneinander entfernt (von, bis)? <cadetblue>10-50 nm</cadetblue>.
17
+ - Is <one>a human egg</one> or <one>a human red blood cell</one> larger? A human egg is larger than a red blood cell.
18
+ - In cellbiology: what is a <one>Shmoo</one>? A shmoo is a budding yeast responding to a pheromone from the opposite mating type (either a or alpha) - Yeast-Cells that undergo mating present this particular structure, and look like such a "shmoo"- thus, the whole process is known as "shmooing".
19
+ - Warum ist <one>Rapamycin</one> (RAPA) in der Zellbiologie wichtig? Weil es als "Immunosuppressivum" wirken kann, und auch die Entwicklung von Krebs behindert.
20
+ - What is the main task of <one>SNARE proteins</one>? SNARE proteins mediate <one>fusion of lipid bilayers</one>.
21
+ - The only <one>direct intercellular junctions</one> that exist in plants are ... ? <one>Plasmodesmata</one>. []
22
+ - Wozu braucht die Zelle <one>Mikrotubuli</one>? Mikrotubuli funktionieren wie Schienen, entlang derer Mitochondrien, Chloroplasten, Vesikel, Proteine und mRNA transportiert werden kann.
23
+ - In cellbiology: what means the word <one>ERES</one>? <one>ER export site</one>. URL: https://www.researchgate.net/figure/8568278_fig3_Figure-3-Biogenesis-of-Golgi-and-the-ER-export-site-A-Cells-stably-expressing-the
24
+ - <one>Acetyl-Coenyzm A</one> besteht aus? Pyruvat und Coenzym A.
25
+ - For <three>autophagy</three> to properly function, which <one>organelle</one> is the most important? The <one>lysosome</one>. []
26
+ - A. W. für <one>Photoreceptors</one>? <one>Molecular light switches</one>.
27
+ - <one>Integrins</one> can, on the outside of a cell, bind to ... ? <one>Fibronectin</one>.
28
+ - Nenne ein (physiologisches) Kriterium, mit dem wir zwischen <one>Nekrose</one> und "Apoptosis" relativ einfach unterscheiden können. A: Die <one>Nekrose</one> geht mit einer <one>Entzündungsreaktion</one> einher.
29
+ - Angenommen wir sehen zwei Zellen - eine kleinere Zelle und eine größere Zelle. Wir wissen das eine davon eine Stammzelle sein muss. Welche würden wir dann annehmen wäre die Stammzelle? Die größere der beiden Zellen.
30
+ - Was meinen wir mit einer <one>asymmetrischen Zellteilung</one>? Dies ist schlicht eine Zellteilung, bei der die beiden Tochterzellen unterschiedlich groß sind.
31
+ - Was ist die Grundlage eines <one>Riboswitch</one>? Wirkt wie ein <one>Schalter</one> - einmal kann er abgelesen werden, ein anderes mal nicht.
32
+ - Who initiates the <one>metaphase-to-anaphase</one> transition? The <one>APC</one>/<one>C complex</one>.
33
+ - <one>Microfilaments</one> in a cell derive from which <three>protein</three>? From <one>actin</one>.
34
+ - Most <one>animal cells</one> have a covering over the plasma membrane. How is this covering called? <one>Glycocalyx</one>.
35
+ - Why do the <one>osteoclasts</one> need <three>acid</three>? In order to <one>dissolve the bone minerals</one>. []
36
+ - In der Zellbiologie: was meinen wir mit dem Begriff <one>Heterophagie</one>? Dies ist <one>das Verdauen zellfremder Substanzen</one>.
37
+ - Welche Aufgabe hat das Protein <one>Ran</one>? Es setzt das Importprotein im Zellkern frei, wenn es in seiner aktiven Form vorliegt (also als Ran/GTP).
38
+ - Wie gross (in nm; von-bis) sind <one>caveolae</one>? <one>50-100 nm</one>.
39
+ - <one>Cadherins</one> are linked to the Actin Cytoskeleton by ...? <one>Catenins</one>.
40
+ - Bei der <one>Renaturierung von DNA</one> benötigen wir warum eine hohe Salzkonzentration? Um die negativen Ladungen der Phosphatgruppen der DNA zu neutralisieren.
41
+ - Why is <one>Cholesterol</one> preferentially localized to the upper region of the lipid monolayer? Because its hydroxyl-group prefers an aqueous environment.
42
+ - Are <one>tetraspanins</one> glycosylated? Some are, at the <one>N-terminus</one>.
43
+ - What was the first <one>membrane transport protein</one> whose structure was determined? <one>Bacteriorhodopsin</one>.
44
+ - In der Zellbiologie gibt es <one>COPII</one>. Dieses Protein ist wichtig beim Protein-Transport von RER zum Golgi Apparatus. Wofür steht das Wort COPII? <one>Coat Protein Complex II</one>.
45
+ - Welches Enzym erzeugt <cadetblue>dTMP</cadetblue>? <one>Thymidylate Synthetase</one> (ausgehend von dUMP).
46
+ - Der <one>Austausch von Ionen im ladungsneutralen Gegenstrom</one> heißt ... ? <one>Antiport</one>. []
47
+ - Wo finden wir die <one>Cathepsine</one>? Im <one>Lysosom</one>. []
48
+ - Warum das <three>g</three> in <one>G1-Phase</one>? <one>g</one> steht hier für <cadetblue>gap</cadetblue>. []
49
+ - Im Jahre 2015 waren etwa wieviele <one>kleine G-Proteine</one> bekannt? Etwa <one>100</one>.
50
+ - In cell biology: whats means <one>dynamic instability</one>? This refers to the coexistence of assembly and disassembly at the + end of a microtubule.
51
+ - Der Durchmesser eines <one>Histon-Oktamers</one> beträgt ... ? <one>11 nm</one>. []
52
+ - Name <one>a protein that requires a large vesicle for its transport</one>. A: <one>Collagen</one>.
53
+ - What are <one>primary cultures</one>? These are cultures prepared directly from the tissues of an organism.
54
+ - Nenne einen <one>Inhibitor der Phosphodiesterase</one>. A: <one>Koffein</one>. URL: https://de.wikipedia.org/wiki/Coffein []
55
+ - Name a factor that may counteract <one>VEGF</one> (vascular endothelial growth factor). A: <one>Endostatin</one>.
56
+ - The fibrillar extension of <one>NPC proteins</one> (<three>nucleoporins</three>) contain many repeats of which two amino acids? FG-repeats (<one>Phenylalanine</one> and <one>Glycine</one>).
57
+ - Warum heissen <cadetblue>G-Proteine</cadetblue> so (das <cadetblue>G</cadetblue> in ihrem Namen)? Weil sie <one>Guanin-Nukleotide</one> binden.
58
+ - Im Golgi Apparat können wir kleine Transportvesikel (small vesicles) finden. Welchen Durchmesser haben diese Vesikel (von-bis)? <one>60-80 nm</one>.
59
+ - What does the cyclosome/anaphase promoting complex degrade? It degrades the <one>anaphase inhibitor</one>, via the "ubiquitin-degradation pathway".
60
+ - The <one>nucleoporins</one> in a cell often contain different types of ... which two amino acids that are repeated? (1) <one>F</one>: <two>Phenylalanine</two> (2) <one>G</one>: <two>Glycine</two>
61
+ - A single <one>gap junction channel<one> is composed of two ... ? <one>Connexons</one>.
62
+ - What is <one>the difference</one> between budding and binary fission? Both are forms of asexual reproduction. Binary Fission is the splitting of the cell with mitosis followed by cytokinesis. Budding is the outgrowth of a new cell from the surface of an old one.
63
+ - Nenne eine Möglichkeit wie die Zelle die <one>GTP-Hydrolyse</one> von GPCRs beschleunigen kann. A: Sie kann <one>GAPs</one> (<two>GTPase-aktivierende-Proteine</two>) verwenden.
64
+ - Wer entdeckte das Phänomen <one>splicing</one>? <one>Joan Steitz</one>. URL: https://medicine.yale.edu/lab/steitz/
65
+ - In der Zellbiologie: was heisst <one>ERAD</one>? <one>ER-associated degradation</one>. URL: https://en.wikipedia.org/wiki/Endoplasmic-reticulum-associated_protein_degradation
66
+ - How do we call an <one>inactive caspase</one>? <one>Procaspase</one>. []
67
+ - Is <cadetblue>Autophagy</cadetblue> useful only for <one>organelle turnover</one>? No - <one>it can also help protect an organism against intracellular threats</one>, such as <two>invading bacteria</two>.
68
+ - In der Zellbiologie, gib ein anderes Wort an für das <one>KDEL Signal</one>, auf Englisch. A: <one>ER retention sequence</one>. []
69
+ - <one>Clathrin</one> besteht aus? 3 leichten und 3 schweren Ketten.
70
+ - In <one>cell biology</one>: give another expression for <two>reversable cell cycle arrest</two>. A: <one>Quiescence</one>.
71
+ - <one>Multicellularity</one> is in general a successful strategy, but there is at the least one major drawback when compared to unicellularity. Which one is that? It takes longer before <one>reproduction</one> can occur.
72
+ - Name a big advantage that multicellularity brought. A: Bigger organisms are able to access more nutrients than do unicellular organisms.
73
+ - <one>Collagen fibrils</one> are ropes with tunable ... ? <one>Stiffness</one>.
74
+ - Name two general advantages associated with subcellular components. A: (1) <one>concentrate metabolic intermediates</one> (2) <one>sequester toxic compounds</one>
75
+ - Inter‐organellar connections depend on ... which act as tethers to bridge the respective organelle membranes. A: interacting proteins.
76
+ - Give another expression for the phenomenon of two, or more, oragenelles coming into close apposition. A: <one>Inter‐organellar membrane contacts</one>.
77
+ - What is the <one>glycosome</one>? The glycosome is a membrane-enclosed organelle that <one>contains glycolytic enzymes</one>.
78
+ - Why is <one>CO2</one> used for Live Imaging? Because this will yield a buffer (CO2/HCO3-).
79
+ - Der <one>ABC-Transporter</one> ist membrangebunden und kann ATP binden. Auf welcher Seite der Zellmembran bindet dieser Transporter ATP? Auf der <one>cytosolischen Seite</one>.
80
+ - Wann sind Chromosomen <one>unsichtbar</one>? In der <one>Interphase</one>.
81
+ - In der Zellbiologie, was heisst <one>SNARE</one>? SNAP-(Soluble NSF Attachment Protein)-REceptor. Wenn man das NSF auch noch ausschreibt so kommt man auf "Soluble N-ethylmaleimide-sensitive-factor Attachment Receptor".
82
+ - Warum benötigt eine Zelle die <one>Intermediärfilamente</one>? Diese sind die stabilsten Bestandteile des Zytoskeletts. Bei ihnen steht die <one>Stützfunktion</one> im Vordergrund.
83
+ - Is it possible to detect a small object below the resolution limit, in light microscopy? Yes, if said object itself emits light.
84
+ - Microscopy is very important in cell biology. We can see the refractive index here. If we see a value such as 1.33, which is indicative of water, what does this mean? That light travels 1.33 times slower in water than it does in a vacuum.
85
+ - The limiting separation at which two objects appear distinct is called <one>the limit of resolution</one>. It depends, primarily, on which two features? (1) the <one>wavelength of the light</one> (2) the <one>numerical aperture of the lens system used</one>
86
+ - The interaction of light with an object changes the phase relationships of the light waves in a way that produces complex ... effects. A: Complex interference effects.
87
+ - <one>Superresolution microscopy</one> may resolve the wavelength range from n nm to n nm? From about <one>40nm</one> to <one>120nm</one>, give or take.
88
+ - Name <one>an advantage of optical microscopy</one>, in regards to visualizing biological systems. A: Light is relatively nonddestructive.
89
+ - <one>Schleiden</one> and <one>Schwann</one> proposed the cell doctrine in which year? In the year <one>1838</one>.
90
+ - A typical animal cell is n (from-to) µm in diameter? <one>10-20 µm</one>.
91
+ - In der Zellbiologie: was heisst <one>ICAM</one>? <one>Intercellular adhesion molecule</one>.
92
+ - Das <one>ced-4 Genprodukt</one> aktiviert welches andere Protein? Die <one>ced-3 Caspase</one>.
93
+ - In multicellular, eukaryotic cells, what is the most prominent cell cycle stage, e. .g the one that is used most often by eukaryotic cells? The <one>G0-phase</one>. URL: https://en.wikipedia.org/wiki/G0_phase
94
+ - <one>Prenylation</one> is what? The linkage of C15/C20 units to <one>cysteine side chains</one>.
95
+ - <one>Inositol phospholipids</one> can be phosphorylated at how many positions? <one>3</one> - at 3', 4' and 5'.
96
+ - Das <one>KDEL Sequenz</one> am C-Terminus von Proteinen spielt eine wichtige Rolle beim Transport in den ER hinein. Gibt es einen KDEL Rezeptor? Ja, das <one>salvage compartment</one>, als Teil der ER Membran.
97
+ - Welches <one>radioaktive Isotop</one> kann genutzt werden, um die Teilungsaktivität von proliferierenden Zellen zu beobachten? <one>P32</one>.
98
+ - Welche zwei Proteine sind für die Stabilität des Zellkerns einer eukaryoten Zelle extrem wichtig? (1) <one>Typ-A-Lamin</one> (2) <one>Typ-B-Lamin</one>
99
+ - Welchen Durchmesser haben <one>Ribosomen</one> (von-bis)? Etwa <one>20nm - 25nm</one>. URL: https://de.wikipedia.org/wiki/Ribosom#Aufbau_und_Arten
100
+ - Which protein assembles new nucleosomes? <orange>CAF-1</orange> - the "chromatin assembly factor". URL: https://en.wikipedia.org/wiki/CAF-1
101
+ - <one>Mikrotubuli</one> sind am Centrosom + oder -? <one>-</one>
102
+ - Was sind "speckles"? <one>Protein-Aggregate</one> im Zellkern. URL: https://www.uniprot.org/locations/SL-0186
103
+ - Cell membranes prevent passage of which type of molecules, aside from the size of that molecule? <one>Polar molecules</one>.
104
+ - How do we call the clear gel that is part of the matrix surrounding animal cells in a tissue? The <one>extracellular fluid</one> (<cadetblue>ECF</cadetblue>).
105
+ - Who or what essentially controls fusion and fission of mitochondria? <one>GTPases</one>.
106
+ - A. W. für "Golgi-Komplex". A: <one>Sortierungszentrum</one>.
107
+ - Is <cadetblue>lampbrush DNA</cadetblue> special? Yes. The DNA in these lampbrush loops appears to be "transcriptionally active", while the majority of DNA in axis is inactive.
108
+ - A. W. für "cytokinesis"? <one>Cytoplasmic division</one>.
109
+ - Name a protein that has a "pleckstrin homology domain". A: <one>Dynamin</one>.
110
+ - Welche Hypothese konnte Louis Pasteur widerlegen? Die <one>Spontanzeugungshypothese</one>.
111
+ - The "Coatomer" consists of how many different coat ("COP")-proteins? <one>7</one>. URL: https://en.wikipedia.org/wiki/Coatomer
112
+ - What defines the "character of a cellular compartment"? The <one>composition of the enclosing membrane</one>.
113
+ - Can proteins contain "multiple nuclear localization signal" (<one>NLS</one>) sequences? Yes.
114
+ - <violet>KDEL</violet> ist ein intrazelluläres "retention signal" für das ER. Aber wie hat man dies nachweisen können, experimentell? Durch <one>in-vitro Mutagenese</one>.
115
+ - "Ras proteins in the cytoplasm" tend to have what at their carboxy termini? <one>Lipid groups</one>.
116
+ - Zellen haben welche 3 Typen von Zell-Zell Verbindungen? (1) tight junctions (2) adhering junctions (3) gap junctions (Merkslogan: T,A,G junctions)
117
+ - Dynamin uses which energy source? <one>GTP</one>.
118
+ - Where exactly do we find the "SECIS element"? This element can be found in the <one>3-prime UTR</one>.
119
+ - Nenne eine sterolähnliche Verbindung in der Zellmembran von "Pseudomonas syringae". A: <one>Hopanoide</one>.
120
+ - How do we call the vesicles derived from the "endoplasmic reticulum"? <one>Microsomes</one>.
121
+ - Warum der Name "F-Aktin" und "G-Aktin"? (1) F-Aktin: <one>filamentöses Aktin</one> (2) G-Akin: <one>globuläres Aktin</one>
122
+ - Erlauben Transfersequenzen den gerichteten (= Polarität) Einbau von Proteinen in Membranen? Ja.
123
+ - Name an "eukaryote" that lacks mitochondria. A: <one>Entamoeba histolytica</one>.
124
+ - Microtubules are nucleated at which end? Their <one>minus end</one>.
125
+ - Periphere Mikrotubuli in den Geisseln sind miteinander wie verbunden? Durch das Motorprotein <one>Dynein</one>.
126
+ - A typical animal cell is n μm in diameter. A: <one>10-20 μm in diameter</one>.
127
+ - The main phospholipids in most animal cell membranes are ... ? The <one>phosphoglycerides</one>.
128
+ - Was heisst "ERES" in der Zellbiologie? <one>ER export sites</one>.
129
+ - An "autophagic vesicle" can fuse with ...? A <one>lysosome</one>.
130
+ - <one>Coated pits</one> give rise to which structure? <one>Coated vesicles</one>.
131
+ - Macroautophagy creates what? An <one>autophagic vacuole</one>.
132
+ - Auf Ebene der Zelle: was bewirkt eine aktivierte <one>Protein-Kinase A</one>? A: Dieses Enzym katalysiert die Phosphorylierung anderer Proteine, was zu einer zellulären Antwort führt (i. e. bei einer vorhergegangengen Aktivierung über einen G-Protein gekoppelten Rezeptor).
133
+ - What does a "secretory protein" truly hate? The <one>cell membrane</one>.
134
+ - Wie "nennen" wir die charakteristische "innere" Anordnung der Geißeln der Eukaryoten? <one>9x2+2</one>.
135
+ - Inositol hat <violet>n OH-Gruppen</violet>? <one>6</one>. URL: https://en.wikipedia.org/wiki/Inositol
136
+ - Welche Aufgabe hat das "Tat protein export system" und was heisst "tat" überhaupt? <one>tat</one> heisst "twin arginine translocase". Es transportiert gefaltete Proteine aus dem Cytoplasma hinaus.
137
+ - Name something in cell biology that has a "triskelion structure". A: <one>Clathrin</one>.
138
+ - What is the "end stage" of an autolysosome? A <one>residual body</one>.
139
+ - In Biology, where can we find a "lagging head"? In the cell, in <one>kinesin</one>.
140
+ - What effect may TGF-Beta have on cells? It may <one>force a halt to proliferation</one>.
141
+ - Bei den pH Werten in biologischen Systemen, wie liegt die phosphoryl head group in Membranen vor? Negativ geladen, als <one>Phosphatidate</one>.
142
+ - Do "growth factors" also belong to the group of <violet>cytokines</violet>? Yes.
143
+ - Muskelfasern haben im Elektronenmikroskop eine "charakteristische Querstreifung", die wodurch verursacht wird? Diese Querstreifung wird durch die <one>Sarkomere</one> verursacht.
144
+ - Nenne ein Kompartiment, das man nur in (manchen) Eukarya findet - ausgenommen "Chloroplasten", "Nucleus" und "Mitochondrien". A: Die <one>pulsierende Vakuole</one>.
145
+ - Name a binding protein for beta 1 integrin. A: <one>Talin</one>.
146
+ - Es gibt nicht nur <lawngreen>GFP</lawngreen> sondern auch CFP und YFP. Was heisst das? CFP ist "cyan fluorescent protein", YFP ist "yellow fluorescent protein".
147
+ - Name a dangerous but very effective way to stop all cell division. A: <one>High exposure to x-rays</one>.
148
+ - Wie ist das Mitochondrium aufgebaut, wieviele bp hat das menschliche mitochondriale Genom, was für eine zelluläre Funktion erfüllt es und was ist die Endosymbiontentheorie? Das Mitochondrium ist ein von einer Doppelmembran umschlossenes Organell. Es besitzt ein eigenes Genom (das Chondriom) bestehend aus 16.569 bp. Man findet Mitochondrien in (fast allen) eukaryoten Zellen, nicht jedoch in Prokaryoten. Mitochondrien fungieren als "Energiekraftwerke", indem sie das energiereiche Molekül Adenosintriphosphat bilden. Besonders viele Mitochondrien befinden sich in Zellen mit hohem Energieverbrauch, wie den Muskelzellen, Nervenzellen, Sinneszellen, Eizellen. Herzmuskelzellen haben z. Bsp einen Volumenanteil von 36% an Mitochondrien. Mitochondrien haben einen Durchmesser von etwa 1 mikrometer, mit unterschiedlichen formen. Mitochondrien vermehren sich durch Wachstum und Sprossung, die Anzahl von Mitochondrien wird dem Energiebedarf der Zelle angepasst. Eukaryotische Zellen, die ihre Mitochondrien verlieren, können diese nicht mehr regenerieren! Es gibt auch Eukaryoten ohne Mitochondrien, z. B. einige Protozoen. Mitochondrien werden primär über das Plasma der Eizelle nur von der Mutter vererbt (maternal), was Anlass zur Erforschung mütterlicher Verwandtschaftslinien (Matrilinien) war, aber auch das Spermium kann einige männliche Mitochondrien in das Plasma der befruchteten Eizelle (Zygote) importieren. Diese männlichen Mitochondrien werden jedoch wahrscheinlich recht schnell eliminiert. Es gibt jedoch einige Fälle in denen nachgewiesen werden konnte, das die Mitochondrien eines Kindes aus der väterlichen Linie stammten. Die Hülle der Mitochondrien besteht aus einer äußeren und einer inneren Membran. Beide Membranen unterscheiden sich in ihren Eigenschaften. Durch diese Membranen existieren fünf unterschiedliche Kompartimente: Die äußere Membran, der Intermembranraum (der Raum zwischen den beiden Membranen), die innere Membran, die Cristae und die Matrix (der Raum innerhalb der inneren Membran). Entgegen der gängigen Vorstellung treten Mitochondrien in der Zelle überwiegend nicht als separate, bohnenförmige Organellen auf. Stattdessen bilden sie ein tubuläres, mitochondriales Netzwerk, welches die gesamte Zelle durchzieht. Einzelne Mitochondrien sind in der Lage, sich mit diesem Netzwerk zu verbinden (Fusion) und sich wieder abzuspalten (Fission). Die Endosymbiontentheorie postuliert, das Mitochondrien aus einer Symbiose von aeroben Bakterien (aus der Gruppe der "Alpha-Proteobakterien") mit den Vorläufern der heutigen Eukaryoten hervorgegangen sind. Mitochondrien sind ohne Wirtszelle nicht lebensfähig.
149
+ - What is the most important group of enzymes in the lysosome? The <one>hydrolases</one>.
150
+ - Is "cell fusion" important in "practical cellbiology"? Give an example. A: Yes, it can be <one>used to produce monoclonal antibodies</one>.
151
+ - Woraus besteht ein einzelnes Tubulin-Molekül? Es handelt sich hierbei um ein <cadetblue>Heterodimer</cadetblue>, bestehend aus Alpha und Beta-Tubulin.
152
+ - Microtubules are organized from ...? <one>Centrosomes</one>.
153
+ - Name a protein that can "severe actin filaments". A: <one>Gelsolin</one>. URL: https://en.wikipedia.org/wiki/Gelsolin
154
+ - Name an ER-resident protein start with the letter "P". A: Protein disulfide isomerase (PPI).
155
+ - Nenne eine Grenze der Lichtmikroskopie. A: Die <one>Abbe-Grenze</one>.
156
+ - Name an adaptor protein for Ras-Proteins. A: <one>Grb2</one>.
157
+ - Was passiert bei Zugabe von ATP zu <one>Actinmonomeren</one>? Es erfolgt eine Konformationsänderung in Actin; dieses assoziiert mit 2 anderen Actin-Monomeren. Dies kann der "Beginn für die Entstehung eines Actin-Filaments" sein.
158
+ - In der Zellbiologie gibt es die "Microbodies". Was wird damit bezeichnet? (1) <one>Peroxisomen</one> (2) <one>Glyoxisomen</one> (3) <one>Glykosomen</one>
159
+ - Ist <one>Importin Alpha</one> oder <one>Importin Beta</one> wichtiger? <one>Importin Alpha</one>, denn es bindet an das für den Zellkern bestimmte Protein.
160
+ - Name the two main classes of membrane proteins that mediate transmembrane traffic. A: (1) <one>transporters</one> (2) <one>channels</one>
161
+ - There is the Ras superfamily. What does "Rab" stand for? <one>Ras-like in Brain</one>.
162
+ - FtsZ ähnelt in Eukarya was? <one>Tubulin</one>.
163
+ - In der Zellbiologie gibt es ein sehr wichtiges, dimeres (genauer: heterodimeres) Protein namens "MPF". Was heisst MPF? Maturation-promoting factor. Manchmal wird es aber auch <one>mitosis-promoting factor</one> bezeichnet.
164
+ - The Adaptor protein "Epsin" in a cell helps which other molecule? <one>Clathrin</one>.
165
+ - The "Ras protein" has a slow intrinsic ... activiy. A: It has a slow intrinsic <one>phosphatase-activity</one>, converting GTP -> GDP.
166
+ - Name the 3 Ras Proteins in Humans. A: (1) <one>H</one>-Ras (2) <one>K</one>-Ras (3) <one>N</one>-Ras
167
+ - Wo befinden sich vSNARE Proteine? Sie befinden sich <one>in der Vesikelmembran</one>.
168
+ - Name one "microtubule severing protein". A: <one>Katanin</one>. It is named after the japanese sword katana.
169
+ - What does "pinocytosis" literally mean? <one>Cellular drinking</one>.
170
+ - In cell biology, what do we mean with "intrinsic fluorescence"? When some proteins or small molecules, in a given cell, are <one>naturally fluorescent</one>.
171
+ - Mitochondria have n tRNA genes? <one>22</one>. URL: http://www.ncbi.nlm.nih.gov/pubmed/21910628
172
+ - The activity of the "protein kinase A" depends on ... ? The cellular levels of cyclic AMP (<one>cAMP</one>).
173
+ - Wie nennen wir die Intermediärfilamente in Nervenzellen? <one>Neurofilamente</one>. URL: https://de.wikipedia.org/wiki/Intermediärfilamente#Typen
174
+ - In cell biology, <cadetblue>ARF-GAP1</cadetblue> senses what? <one>Membrane curvature</one>.
175
+ - How does mRNA with premature stop codons arise in humans, most likely? Due to <one>improper splicing</one>.
176
+ - Angenommen wir möchten das glatte ER in der Zelle massiv proliferieren lassen. Was könnten wir tun? Wir könnten <one>Barbiturate</one> verwenden.
177
+ - Die <one>RNA Helicasen</one> können im zellulären Kontext was machen? Sie können "RNA binding proteins" von der RNA lösen.
178
+ - Finden wir in Skelettmuskelzellen mehr "ATP" oder mehr "Kreatinphosphat"? Mehr <one>Kreatinphosphat</one>.
179
+ - The <one>lysosomal membrane</one> has a single or double phospholipid bilayer? It has <one>a single phospholipid layer</one>.
180
+ - Within the cell, the so-called FG repeats are associated with ... ? <one>Karyopherins</one>.
181
+ - Wo finden wir eine "glykosidische Bindung" in einem Nukleotid? Zwischen der <one>Base</one> und dem <one>Zucker</one>.
182
+ - Name <cadetblue>a potent inhibitor of autophagy</cadetblue>. A: <one>Amino Acids</one>.
183
+ - Within a <one>monolayer</one>, where can we find Cholesterol? Cholesterol is preferentially localized to the upper region of the monolayer because the hydroxyl-group prefers an aqueous environment.
184
+ - In der Mikroskopie, was sind <one>chromophore groups</one>? Groups with conjugated double bonds that give the dye its color.
185
+ - In "Tunel Labeling", which antibodies are used? <one>Br(d)U specific antibodies</one>.
186
+ - The "Gamma-Tubulin Ring complex" is built where exactly? At the <one>minus end of Microtubules</one>.
187
+ - Name an "actin motor". A: <one>Myosin</one>.
188
+ - Wo findet man tSNAREs? Auf der <one>Zielorganelle</one>.
189
+ - The Sec23 gene is part of a protein complex in a cell. Where can it be found inside of a cell? In the <one>endoplasmic reticulum</one>.
190
+ - Does mitochondrial DNA mutate slower than nuclear DNA? No, it mutates about <one>10x faster</one> than nuclear genome DNA.
191
+ - Where inside of a cell can we find the "Cajal bodies"? In the <one>nucleus</one>.
192
+ - Nenne ein kleines G-Protein das mit dem Buchstaben "A" beginnt. A: <one>Arf</one> (ADP ribosylation factors). URL: https://en.wikipedia.org/wiki/ADP_ribosylation_factor
193
+ - Name the three principal organelles of the secretory pathway. A: (1) the <cadetblue>endoplasmic reticulum</cadetblue> (2) the <cadetblue>Golgi apparatus</cadetblue> (3) the <cadetblue>plasma membrane</cadetblue>
194
+ - Welche Mikrotubuli reichen von Zellpol zu Zellpol? Die <one>Polar-Mikrotubuli</one>.
195
+ - Incoming transport vesicles move to the Golgi apparatus. Where to first? Towards the <one>cis-face</one> of the Golgi apparatus.
196
+ - A single <violet>NPC</violet> can transport n macromolecules per second? <one>1000</one>.
197
+ - Export and import receptors are structurally related. They belong to which family? To the family of <one>karyopherins</one>.
198
+ - Desmosomes are "anchorage sites" for ...? <one>Intermediate filaments</one>.
199
+ - The "Nuclear pore complexes" consist of about n different proteins? About <one>30</one>.
200
+ - When was the structure of the <cadetblue>nucleosome core particle</cadetblue> solved? In the year <one>1997</one>.
201
+ - What is the "brain" of the cell? The <one>nucleus</one>.
202
+ - Nenne eine besondere Domäne am <one>EGF-Rezeptor</one> A: Die <one>Dimerisierungsdomäne</one>.
203
+ - Vinculin kann welch anderes Protein binden? <one>Actin</one>.
204
+ - In cell biology, what happens if a late endosome combines with a lysosome? An <one>autolysosome</one> is created.
205
+ - When is a "Rab Protein" active? When it has bound <violet>GTP</violet>.
206
+ - Name something in a cell that is "bipolar". A: The <one>mitotic spindle</one>.
207
+ - The famous protein p53 actually does not have a mass of 53 kDa but only 43.7 kDa. Why is that the case? p53 has a high number of <crimson>proline</crimson> residues, which "slow its migration on SDS-PAGE", thus making it <one>appear heavier</one> than it actually is.
208
+ - Bis etwa 1970 wurde in der Cytologie das "Feulgen reagent" verwendet. Welche Farbe hat dies? Ein <crimson>dunkles rot</crimson>.
209
+ - What happens when lipids go beyond a certain temperature? Also name a consequence of this. A: They turn into a "paracristalline form" - hence, <one>they can no longer rotate freely</one>.
210
+ - A. W. für "three-layered"? <one>Trilaminar</one>.
211
+ - Anteil von <cadetblue>Calmodulin</cadetblue> in % an der Proteinmasse in einer typischen eukaryoten Zelle? <one>1%</one>.
212
+ - Welche Zellen haben viel "Albumin-mRNA"? <one>Hepatocyten</one>.
213
+ - Ran-GTP can bind to ... ? <one>Importin</one>.
214
+ - Do lipids <violet>flip-flop</violet>? No.
215
+ - Wie schnell sind <cadetblue>G-Proteine</cadetblue>, allgemein? Etwa 3 Umwandlungen / Minute.
216
+ - In Cellbiology, what is a <cadetblue>CKI</cadetblue>? This is a <one>cyclin-dependent kinase inhibitor</one>.
217
+ - Nenne zwei Typen membranständiger Multiproteinkomplexe, die am "Transport mitochondrialer Proteine" beteiligt sind. A: (1) <one>TIM</one> (2) <one>TOM</one>
218
+ - Who proposed the structure for the <violet>nucleosome</violet>? <one>Roger Kornberg</one>.
219
+ - Do <cadetblue>gap junctions</cadetblue> allow passage? Yes; of <one>small water-soluble molecules</one>.
220
+ - Innerhalb der Zelle, wo docken "incoming transport vesicles" an? Am <cadetblue>CGN</cadetblue> ("cis golgi network") des Golgi apparatus.
221
+ - Welche Zellen bilden die Myelinschicht? Die <one>Gliazellen</one>.
222
+ - Give another word/term for the "centrosome". A: <one>Microtubule organizing center</one>. URL: https://en.wikipedia.org/wiki/Microtubule_organizing_center
223
+ - What happens to p53 upon activation? It will be <one>translocated into the nucleus</one>.
224
+ - In cell biology, what does the abbreviation "Nups" stand for? <one>Nucleoporins</one>.
225
+ - Rab Proteins are anchored on two cysteins in their C-terminus through which group? Through <one>prenyl groups</one>.
226
+ - How do we call the "specialized domain" in cell membranes? <one>Lipid rafts</one>.
227
+ - Name one important receptor that is degraded within lysosomes. A: <one>EGFR Receptor</one> (this is a safety mechanism).
228
+ - Wie heisst das "endoplasmatische Retikulum" auf Englisch? <one>Endoplasmic reticulum</one>.
229
+ - In nm, what is the "diameter" of a "Nuclear Pore Complex"? <one>125 nm diameter</one>.
230
+ - How many <violet>NPCs</violet> does a typical mammalian cell have (from-to)? <one>3000-4000 NPCs</one>.
231
+ - pH Wert von Lysosomes? <one>5</one>.
232
+ - Has <one>autophagy</one> an important additional role aside from organelle turnover? Yes, <one>it is an immune mechanism</one>. It plays a role in the destruction of "intracellular pathogens".
233
+ - Was ist das "major cargo protein" im zellulären <cadetblue>Cvt Pathway</cadetblue>? Aminopeptidase I (Ape1).
234
+ - Why the Z in <cadetblue>FtsZ</cadetblue>? Because it will build the Z ring at the site where the septum forms.
235
+ - Was enthält das <violet>Peroxisom</violet>? Enzyme, die <cadetblue>H2O2</cadetblue> bilden und abbauen kann.
236
+ - Welche Aufgabe hat die <cadetblue>kontraktile Vakuole</cadetblue>? Überschüssiges Wasser aus der Zelle pumpen.
237
+ - The signal sequence of a protein is related to folding in what way? It may "interfere" with the folding process.
238
+ - Welche drei Autophagen-Mechanismen existieren? (1) <one>crinophagy</one> (2) <one>macroautophagy</one> (3) <one>microautophagy</one>
239
+ - Zellulär betrachtet, wo findet man das Protein "Cathepsin D"? In <one>Lysosomen</one>.
240
+ - The <violet>mtDNA</violet> codes for n transfer RNAs? <cadetblue>22</cadetblue>.
241
+ - Wann wurde die "RNA-World Hypothesis" erstellt? Im Jahre <one>1986</one>.
242
+ - A. W. für "transversale Bewegung" eines Proteins in einer Zellmembran? <one>Flip-flop</one>.
243
+ - When a protein does not have a "sorting signal", what will be the result? This protein will <one>permanently reside in the cytosol</one>.
244
+ - Name two "ER-resident chaperones". A: (1) <one>Calnexin</one> (2) <one>Calreticulin</one>
245
+ - Aufgabe der "Calpaine"? Calpaine <one>bauen Muskeleiweiß ab</one>. URL: https://en.wikipedia.org/wiki/Calpain
246
+ - Das <cadetblue>BiP Protein</cadetblue> ähnelt welch anderem Protein? <one>Hsp70</one>.
247
+ - Cells have extensive sets of intracellular membranes. Together these are called the ? The <one>endomembrane system</one>. URL: https://en.wikipedia.org/wiki/Endomembrane_system
248
+ - Der cis-golgi ist "wem" zugewandt? Dem <one>ER</one>.
249
+ - Welche Gene verzögern den Zellzyklus? <one>Tumorsuppressor-Gene</one>.
250
+ - "Diacylglycerol" wird als Ausgangssubstanz für welches Phospholipid benötigt? <cadetblue>Phosphatidylcholine</cadetblue>.
251
+ - Menschliche Zellkerne haben im Durchschnitt n Kernporen / Zellkern? <one>3000</one>.
252
+ - In der Zellbiologie gibt es eine Technik namens "FRAP". Was heisst das? <one>Fluorescence Recovery after Photobleaching</one>.
253
+ - Name a protein that can dissociate SNARE pairs. A: <one>NSF</one>.
254
+ - Is it easy to stretch a membrane? No.
255
+ - Ribosomes are one of the most abundant macromolecules in the cell. Compare the amount of ribosomes per yeast cell and per HeLa cell, in numbers. A: (1) <cadetblue>yeast cell</cadetblue>: about <one>200.000 ribosomes</one> (2) <cadetblue>HeLa cell</cadetblue>: about <one>3.000.000 ribosomes</one> [Warner, 1999]
256
+ - The main reaction types of "cell synthesis" are ... ? <one>Polymerization Reactions</one>.
257
+ - Die Bax-Proteine werden durch welches Protein freigesetzt? <one>p53</one>.
258
+ - Innerhalb einer Zelle schaffen Membranen ...? <one>Abgegrenzte Reaktionsräume</one>.
259
+ - COP-Proteine in Vesikeln dienen dem Transport zwischen ...? <one>ER</one> und <one>Golgi</one>.
260
+ - Give another (fancy) term for "phagocytosis". A: <cadetblue>Cellular cannibalism</cadetblue>.
261
+ - A. W. für "Zellkörper"? <one>Perikaryon</one>.
262
+ - Wie bestimmt man experimentell den Zeitpunkt der <cadetblue>S-Phase</cadetblue>? Durch Verwendung von <one>Bromodeoxyuridin</one>.
263
+ - In prokaryotic cells (such as E. coli), what is the most abundant membrane Phospholipid? <one>Phosphatidylethanolamine</one>.
264
+ - <cadetblue>Dendritische Zellen</cadetblue> - was heisst "dendritus"? <violet>Verzweigt</violet>.
265
+ - Name two components of the <violet>ER lumen</violet>. A: (1) ER tubules (2) ER sheets
266
+ - Name two things that "mature mammalian red blood cells" lack. A: (1) <one>nucleus</one> (2) <one>cytoplasmic organelles</one>
267
+ - Was für ein Typ sind "RAB-Proteine"? <one>Kleine GTPasen</one>.
268
+ - Paired strands of RNA are arranged how ...? <one>Antiparallel</one>.
269
+ - Wo innerhalb der Zelle findet man die "zelluläre Phosphotransferase"? Dies ist <one>ein Enzym des Golgi apparatus</one>.
270
+ - Lassen <violet>tight junctions</violet> Nährstoffe durch? Nein.
271
+ - Was ist "Transmission" in der Mikroskopie? Dies ist <one>das Durchdringen eines Objektes mit Licht</one>.
272
+ - Vorgänger des "Lysosome"? The <one>late endosome</one>. URL: https://en.wikipedia.org/wiki/Endosome#Late_endosomes_to_lysosomes
273
+ - Welcher Wachstumsfaktor spielt bei "Blutgerinnung" und "Wundheilung" eine Rolle? <one>PDGF</one>. URL: https://en.wikipedia.org/wiki/Platelet-derived_growth_factor
274
+ - Nenne einen Prozess, mit dem man RNA-Aptamere herstellen kann. A: <one>SELEX</one>.
275
+ - Was ist eine <violet>isokonte Begeißelung</violet>? Wenn eine Zelle mehrere Geißeln trägt.
276
+ - Woran binden die <violet>Rab-Domänen</violet> der Rab-Proteine? Sie binden an Tethering-Faktoren. Rab-Proteine befinden sich während und nach der Fusion in einem inaktiven, zytosolischen Zustand und stehen so für neue Tethering-Ereignisse zur Verfügung. Der Tethering-Faktor ist auf der Zielmembran.
277
+ - Was ist die Rolle des "Pyruvat Dehydrogenase Complex" (<cadetblue>PDC</cadetblue>) in der Zelle? Dieser mitochondriale Porenkomplex <one>importiert Acetyl-CoA</one>.
278
+ - What happens if the NLS is mutated? This will lead to <one>cytosolic localization of the given package</one>.
279
+ - Name an unusual lipid that can be found in mitochondria. A: <one>Cardiolipin</one>. It is an important component of the inner mitochondrial membrane, where it constitutes about <cadetblue>20%</cadetblue> of the total lipid composition. URL: https://en.wikipedia.org/wiki/Cardiolipin
280
+ - How do we call the interior of the nucleus, for the most part? <one>Nucleoplasm</one>. URL: https://en.wikipedia.org/wiki/Nucleoplasm
281
+ - Phospholipid molecules also include <violet>choline</violet>. Is this hydrophilic or hydrophobic? Choline is fairly <one>hydropholic</one>; it is part of the hydrophilic head group of phospholipids as well.
282
+ - A transport vesicles carries ... ? <one>Cargo</one>.
283
+ - Was heisst "mTOR" in der Zellbiologie? <one>Mammalian target of rapamycin</one>. (<one>Beziehungsweise mechanistic target of rapamycin</one>). URL: https://de.wikipedia.org/wiki/MTOR
284
+ - Karyopherins are "nuclear transport receptors" that bind to ... ? <one<Nups</one>.
285
+ - Which hormone causes "apoptotic loss of the tail in frogs"? The <one>thyroid hormone</one>.
286
+ - In general, most cell lines used in cell culture technology were derived from? From <one>tumors</one>.
287
+ - Name the 3 principal organelles of the "secretory pathway". A: (1) The <one>ER</one> (2) The <one>Golgi apparatus</one> (3) The <one>plasma membrane</one>
288
+ - Why do we make use of the Yeast-one-hybrid system? To study <one>protein-DNA interactions</one>.
289
+ - Welche Aufgaben hat das raue ER, welche Aufgaben hat das glatte ER? (1) Aufgaben des rauen ER: Synthese von Membran-, Export- und Lysosomenproteinen (2) Aufgaben des glatten ER: <one>Lipidsynthese</one>
290
+ - A 32 base pair deletion can confer <violet>HIV resistance</violet>. In which human Gene? <one>CCR5</one>.
291
+ - Um auf ein <cadetblue>Hormon</cadetblue> reagieren zu können, brauchen die Zellen ... ? einen "Rezeptor".
292
+ - Das "KDEL Signal" lässt sich wo finden? Am <one>C-terminalen Ende</one> einer Polypeptidkette.
293
+ - "Telomere fusion" may, in general, lead to ... ? "<u>Chromosomal instability</u>".
294
+ - Das <violet>clathrin triskelion</violet> besteht aus ... ? Es ist ein <cadetblue>Hexamer</cadetblue>, bestehend aus 3x schweren Ketten und 3x leichten Ketten.
295
+ - What is the "cis-Golgi"? The Golgi stack <one>closest to the ER</one>.
296
+ - What is the function of the "ECM" (extracellular matrix)? The ECM <one>ties cells together</one>, enabling them to "form complex tissues". URL: https://en.wikipedia.org/wiki/Extracellular_matrix
297
+ - Wieso schaffen es <cadetblue>Lysosomen</cadetblue> einen niedrigeren pH-Wert als ihre Umgebung zu halten? Sie besitzen eine <one>Protonenpumpe der Klasse V</one>, die unter ATP-Verbrauch Protonen in den Lysosomen anreichert.
298
+ - <cadetblue>Phospholipase C</cadetblue> can activate which pathway? The <one>inositol 1,4,5-trisphosphate pathway</one>.
299
+ - What is the net effect of "mitosis without cytokinesis"? <one>Cells with multiple nuclei</one> will be the result.
300
+ - In Live Imaging there is a "triangle of frustration". What are the three major points? (1) <one>sensitivity</one> aka "see something" (2) <one>speed</one> aka "temporal resolution" (3) <one>nice picture</one> aka "spatial resolution"
301
+ - For its synthesis, Cyclin D requires which specific transcription factor? <one>E2F</one>.
302
+ - In cell biology, the "ARF-GAP1" can do what? It <one>can sense membrane curvature</one>.
303
+ - Proteins have different half-lives. What determines the half-life of a protein? The <one>amino acids present at the N-terminus</one>.
304
+ - Warum haben <violet>Integrine</violet> ihren Namen? Sie haben die Fähigkeit, extrinsische Signale in Veränderungen des Cytoskeletts der betreffenden Zelle zu "integrieren".
305
+ - If we wish to add a "fluorescent dye" to Tubulin, which one should we use? <crimson>Rhodamine</crimson>.
306
+ - Give an example for a monomeric GTPase. A: The <one>Ras-proteins</one>.
307
+ - Welche Zellen reparieren Skelettmuskelfasern? <one>Satellitenzellen</one>.
308
+ - What do we mean with "Tyr-P"? This is <one>a phosphorylated tyrosine</one>. URL: https://en.wikipedia.org/wiki/Tyrosine
309
+ - <cadetblue>Below a certain temperature</cadetblue>, lipids are in ... which form? They tend to be in a <one>paracrystalline</one> form.
310
+ - How was "autophagy" initially called? <one>Autolysis</one>.
311
+ - Das "raue endoplasmatische Reticulum" verdankt seine Bezeichnung ... ? Den vielen <one>Ribosomen</one>.
312
+ - The <violet>clathrin triskelion</violet> is specifically made up of ... ? 3 light chains - and 3 heavy chains.
313
+ - A. W. für "DNA-protein intermediary". A: <one>RNA</one>.
314
+ - Die "Motordomäne von Tyrosin" kann welche 2 Substanzen binden? (1) <one>ATP</one> (2) <one>Actin</one>
315
+ - "FSH" in humans means what? <one>Follicle-stimulating hormones</one>.
316
+ - <violet>Taxol</violet> bindet an welche Tubulin-Form? Taxol bindet an <cadetblue>Beta-Tubulin</cadetblue>, anstelle von GTP.
317
+ - Zellbiologisch heraus betrachtet, wieso hat "Koffein" eine "stimulierende Wirkung"? Es <one>hemmt die Phosphodiesterase</one>, und bedingt dadurch einen langsameren Abbau von cAMP.
318
+ - Example of "Quaternary RNA Structure"? The <one>ribosome</one>.
319
+ - NSF is an <cadetblue>ATPase</cadetblue>, involved in membrane fusion. How many subunits does it have? NSF is homohexameric, so it has "six subunits".
320
+ - How can we visualize "lipid rafts" in membranes? Via the <cadetblue>AFM</cadetblue> (<one>atomic force microscope</one>).
321
+ - In cellbiology we can see the <orange>CVT pathway</orange>. This abbreviation stands for ... ? <one>Cytoplasm-to-vacuole targeting pathway</one>.
322
+ - Wie nennen wir die Hülle einer Muskelfaser? <one>Sarkolemma</one>. URL: https://de.wikipedia.org/wiki/Muskulatur
323
+ - Who and when published the molecular structure of the first nucleotide? <cadetblue>Furbery</cadetblue>, 1951.
324
+ - Why may it be an advantage for eukaryotic cells if they can store secretory proteins in membrane compartments? Because this allows them to release these proteins from the cell surface in response to internal or external signals.
325
+ - Haben Zellen normalerweise mehr GTP oder mehr GDP? Mehr GTP.
326
+ - What is <cadetblue>the most remarkable ER specialization</cadetblue>? The <one>rough ER</one>.
327
+ - Wie nennen wir den <cadetblue>G1-Kontrollpunkt</cadetblue> in Säugetierzellen? Restriktionspunkt (<violet>R-Punkt</violet>).
328
+ - Importins belong to which family? <one>Karyopherins</one>.
329
+ - Membrane bending by ... domains? <one>BAR domains</one>. They can induce different curvatues.
330
+ - Name an enzyme that plays an important role in cellular energy homeostasis. A: <one>AMPK</one> URL: https://en.wikipedia.org/wiki/AMP-activated_protein_kinase
331
+ - Bei <violet>G-Proteinen</violet>: ist der Komplex aus GDP + G(alpha,beta,gamma) aktiv? Nein, er ist inaktiv.
332
+ - Nenne einen Hemmer von <one>MDM2</one>. A: Das Arf-Gen Produkt.
333
+ - <violet>Nitric oxide</violet> (NO) has an impact on which part of the Mitochondria? On "Complex IV", cytochrome c oxidase.
334
+ - Why is the <violet>26S-proteasome</violet> important for a cell? (1) We can "eliminate defective proteins" (2) we can "regulate cellular processes"
335
+ - <violet>Selenocystein</violet> ist was genau? Ein <one>Cystein</one>, bei dem die Schwefelgruppe durch ein reaktiveres Selenium-Atom ausgetauscht wurde.
336
+ - Was kann das Protein <violet>BAX</violet> bewirken? Die Apoptose einer Zelle.
337
+ - An die Kernmembran schließt ... ? Das "Endoplasmatische Retikulum" (<one>ER</one>).
338
+ - Welches <violet>Phospholipid</violet> trägt eine negative Ladung nach aussen hin? <one>Phosphatidylserine</one>. URL: https://en.wikipedia.org/wiki/Phosphatidylserine
339
+ - Wie entsteht ein "Autolysosome"? Durch Fusion eines <one>Lysosome</one> mit einem <one>Autophagosome</one>.
340
+ - In der Zelle, welche Aufgabe hat "Stathmin"? Es reguliert <one>microtubule dynamics</one>.
341
+ - A. W. für "zwischen den Zellen"? <one>Interstitiell</one>. URL: http://flexikon.doccheck.com/de/Interstitiell
342
+ - <cadetblue>Caspases</cadetblue> cleave the target proteins at? At a specific <one>aspartic acid</one>.
343
+ - Wo befinden sich <cadetblue>tSNARE Proteine</cadetblue>? Sie befinden sich in der "Membran der Zielorganelle".
344
+ - Nenne ein Enzym, das beim lysosomalen Proteinabbau Verwendung findet. A: <one>Cathepsin</one>.
345
+ - Name a way how to detect cells in the S-phase. A: For instance, via <one>BrdU Incorporation</one>.
346
+ - Inermediärfilamente können mit anderen Intermediärfilamenten eine Interaktion eingehen. Wie geschieht dies? Über <one>Heptad-Repeats</one>.
347
+ - Was ist zum <cadetblue>Zellkern von Osteoklasten</cadetblue> zu sagen? Diese Zellen sind <one>mehrkernig</one>.
348
+ - The <violet>SCF complex</violet> promotes ...? Degradation of CKIs.
349
+ - What do the <violet>MPRs</violet> (Mannose 6-Phosphate Receptors) bind? They bind to newly synthesized lysosomal hydrolases in the trans-Golgi network (TGN) and deliver them to pre-lysosomal compartments.
350
+ - What activity does Dynamin have? It has <one>a GTPase activity</one>. URL: https://en.wikipedia.org/wiki/Dynamin
351
+ - Wann wurde NLS entdeckt und wo findet man sie? <one>1982 entdeckt</one>; am C-Terminus befindlich. Sie kann jedoch auch an anderer Stelle der Peptidkette auftauchen.
352
+ - Was heisst "ERAD" in der Zellbiologie? <one>ER-associated degradation</one>.
353
+ - Was heisst "iPS"? <one>Induzierte, pluripotente Stammzellen</one>.
354
+ - <cadetblue>Detergents</cadetblue> are soluble in which specific medium? In <one>water</one>.
355
+ - Wo genau finde ich "Sphingomyeline"? In der <one>Myelinscheidenmembran der neuronalen Axone</one>.
356
+ - What is the <cadetblue>coatomer</cadetblue> in cell biology? The coatomer is a protein complex that coats membrane-bound transport vesicles.
357
+ - Diffusion erfolgt nach welchem Gesetz? Nach dem <one>Fickschen Diffusionsgesetz</one>.
358
+ - Who or what can produce "transit amplifying cells"? <one>Stem cells</one> can.
359
+ - Wo findet man <cadetblue>Rab-GTP</cadetblue>? An einem <one>Vesikel</one>.
360
+ - Wie kann Autophagie (ein "degradation process") induziert werden? Durch <one>Hungern</one> (<one>starvation</one>).
361
+ - Was heisst "Tor-Kinase"? <one>Target of Rapamycin</one>.
362
+ - Eine aktive Muskelzelle regeneriert pro Sekunde wieviel ATP Moleküle? <one>10 Millionen</one>.
363
+ - Water molecules passage? This can occur via <cadetblue>aquaporines</cadetblue>.
364
+ - <cadetblue>Actin</cadetblue> macht n% der Proteinmasse in einer eukaryoten Zelle aus? <one>Bis zu 20%</one> der Proteinmasse.
365
+ - What is the most important parameter in animal cell culture? The <one>concentration of cells</one>.
366
+ - cGMP can bind to which protein kinase? To the <one>protein kinase G</one>.
367
+ - Which enzyme catalyzes the synthesis of cGMP? <one>Guanylate cyclase</one>.
368
+ - For "clathrin-coated buds", which protein assembles at the neck of the bud? <one>Dynamin</one>.
369
+ - Which chaperone is important for "posttranslation translocation"? <one>BiP</one>.
370
+ - Die "stoffliche Zusammensetzung einer Säugetierzelle" - wieviel % Wasseranteil? <one>70%</one>.
371
+ - Who has a <violet>DEAD box motif</violet>? <one>RNA Helicases</one>.
372
+ - The interiors of cellular compartments communicate with one another via ... ? Via <one>transport vesicles</one>.
373
+ - Which "cellular phenomenon" was first discovered in <violet>C. elegans</violet>? <one>Apoptosis</one>.
374
+ - How can we observe lipid rafts in a cell membrane? We can use the <one>AFM</one> (atomic force microscope).
375
+ - In der Zellbiologie, was ist eine "Signalsequenz"? Eine <one>Signalsequenz</one> ist eine Peptidsequenz mit der Information wie und wohin ein Protein innerhalb einer Zelle transportiert werden soll.
376
+ - Can human cells survive without mitochondria? Yes, they can.
377
+ - <violet>Sphingosine</violet> plays a role in cell membranes. It is a is a long acyl chain with ... and two hydroxyl groups (OH) at one end. What is the other part? An <one>amino group</one> (<one>NH2</one>).
378
+ - Welches Protein spaltet Vesikel in einer Zelle ab? <one>Dynamin</one>. URL: https://en.wikipedia.org/wiki/Dynamin
379
+ - Name an important, extracellular matrix protein. A: <one>Fibronectin</one>.
380
+ - Why is <cadetblue>Cholesterol</cadetblue> preferentially localized to the upper region of a monolayer? Because the hydroxyl-group prefers an aqueous environment.
381
+ - Ein Botenmolekül "will" eine Zelle beeinflussen. Was braucht die Zelle hierfür unbedingt? Einen <one>Rezeptor</one>.
382
+ - How do <violet>wee-mutants</violet> look? They are small.
383
+ - Aus welchen vier Untereinheiten besteht "Cohesin"? (1) SMC1 (2) SMC3 (3) Scc1 (4) Scc3
384
+ - Proteins that permanently reside in the lumen of the endoplasmic reticulum (ER) seem to be distinguished from newly synthesized secretory proteins by the presence of the C-terminal sequence ... ? <one>KDEL</one>: Lys-Asp-Glu-Leu.
385
+ - <cadetblue>Nebulin</cadetblue> is an actin-binding protein. It is a very large protein. Up to how many actin monomers can it bind? It can bind bind up to as many as <one>200 actin monomers</one>.
386
+ - Im rauhen "cytoplasmatischen Retikulum", wo findet man die Ribosomen? Auf der <one>Cytosol-Seite</one>.
387
+ - When lipids go below the paracrystalline temperature, what do they "lose"? The ability to <one>rotate</one>.
388
+ - Do phospholipids spontaneously form bilayers? Yes, under the appropriate conditions they will.
389
+ - What is the central component of the translocon? The <one>Sec61 complex</one>.
390
+ - In which stage of the cell cycle can we readily mark a cell with "radioactive thymidine"? In the <one>S phase</one>.
391
+ - What is a <cadetblue>clonogenic assay</cadetblue>? A clonogenic assay is a cell biology technique for studying the effectiveness of specific agents on the survival and proliferation of cells.
392
+ - Give another term for the "Protein kinase A". A: <one>cAMP-dependent protein kinase</one>.
393
+ - Nenne zwei Genprodukte die für die Bildung des Autophagosoms wichtig sind. A: (1) Atg1 Kinase Komplex (2) PI3K
394
+ - What happens when we increase the concentration of detergents above the CMC? Some of the "detergent molecules" will form <one>micelles</one>.
395
+ - The lipid molecules in a cell membrane's continuous double layer are about n nm thick? About <one>5 nm thick</one>.
396
+ - Wieso kann Chlorophyll mit Lipiden assoziieren? Weil es eine <one>Alkoholseitenkette</one> besitzt.
397
+ - How do we call the proteins that make up the "nuclear pore complex"? The <one>nucleoporins</one>. URL: https://en.wikipedia.org/wiki/Nucleoporin
398
+ - Was genau ist die "Matrix" der Mitochondrien? Das ist genau <cadetblue>der innerste Teil der Mitochondrien</cadetblue>.
399
+ - The "SV40 T-Antigen" can be imported into the nucleus by "importins", thanks to the <cadetblue>PPKKKRKV signal sequence</cadetblue>. How amenable is said sequence to change? Not very amenable at all. If one lysine is replaced by a threonine, no import will happen at all.
400
+ - Nenne zwei zentrale, sekundäre Botenstoffe. A: (1) <one>cAMP</one> (2) <one>cGMP</one>
401
+ - What is the "rate-limiting step" in the formation of actin filaments? <one>Nucleation</one>.
402
+ - What means "dynamic instability" in Microtubules? That they undergo phases of growth and shrinkage.
403
+ - Was produziert die "Phosphodiesterase"? <one>AMP</one>.
404
+ - <violet>Chromatin</violet> besteht grob formuliert, in Prozent, aus? 45% Protein, 55% DNA.
405
+ - How comes a cell manages to counteract "incorrect stop codons"? By a process called <one>NMD</one> (<slateblue>nonsense mediated decay</slateblue>).
406
+ - Where does the "signal peptidase" reside? In the <one>ER membrane</one>.
407
+ - Wo spalten <violet>Caspasen</violet>? Hinter Aspartat.
408
+ - With which <cadetblue>assay</cadetblue> can we determine if a nuclear protein shuttles in or out of the nucleus? With help from a <one>Heterokaryon assay</one>.
409
+ - How do <violet>mitochondria</violet> divide? They divide by fission.
410
+ - Cell lines are usually derived from ... ? <one>Tumors</one>.
411
+ - Give another name for the <cadetblue>centrosome</cadetblue>. A: <one>MTOC</one>: <one>Microtubule organizing center</one>. URL: https://en.wikipedia.org/wiki/Microtubule_organizing_center
412
+ - The main phospholipids in most animal cell membranes are ...? The <one>phosphoglycerides</one>.
413
+ - Gehören die "Lysosomen" zum "Endomembransystem"? Ja.
414
+ - Can the "nuclear lamins" be phosphorylated? Most likely, because they can definitely be <violet>dephosphorylated</violet>.
415
+ - Durchmesser einer Kernpore, in nm? Etwa <one>120 nm</one>.
416
+ - An <cadetblue>animal cell</cadetblue> contains about n protein molecules? 10 ** 10 protein molecules.
417
+ - Was ist "negative staining"? The background but not the cell is stained. Unstained cells appear as bright objects against a dark background.
418
+ - The alkaloid "colchicine" was first described as a mitotic poison in what year? In the year <violet>1934</violet>.
419
+ - Der Farbstoff "Hämatoxylin" färbt was genau innerhalb einer Zelle an? Den <one>Zellkern</one>.
420
+ - Was heisst <cadetblue>EDTA</cadetblue> und wozu setzt man es in der Zellbiologie ein? EDTA heisst "Ethylendiamintetraacetid acid". Es bindet Ca2+ Ionen, die wiederum für Zell-Zell Adhesionskontakte wichtig sind. Das Zell-Gewebe kann daraufhin leichter getrennt werden.
421
+ - What does "phagocytosis" literally mean? <one>Cellular eating</one>.
422
+ - How do we call a fused t-SNARE and v-SNARE? <one>trans-SNARE complex</one>.
423
+ - Der Begriff "Autophagy" in der Cellbiologie wurde von <cadetblue>Christian de Duve</cadetblue> geprägt. In welchem Jahr? <one>1963</one>.
424
+ - Anteil, in Prozent, von "Actin" an den Gesamtproteinen in einer eukaryotischen Zelle (von-bis)? Etwa <one>10-20%</one>.
425
+ - "Plant RNA editing" modifies what to what? It modifies <cadetblue>cytidines</cadetblue> (C) to <cadetblue>uridines</cadetblue> (U), at specific sites in the transcripts.
426
+ - How many nucleosomes does a single, diploid human cell have? It should have about <one>30 million nucleosomes</one>.
427
+ - Die <violet>t-SNARES</violet>: kann man sich das merken, was die auf zellulärer Ebene machen? Ja, über das "t ... tethering factor" mnemonic.
428
+ - Nenne die fünf Phasen der <cadetblue>Meiose I</cadetblue> in korrekter Reihenfolge. A: (1) <one>Leptotän</one> (2) <one>Zygotän</one> (3) <one>Pachytän</one> (4) <one>Diplotän</one> (5) <one>Diakinese</one>
429
+ - How many different cell types can we find in the human body? <one>210</one>.
430
+ - What is the main signal for protein delivery into lysosomes? <violet>M6P</violet> ("Mannose 6-phosphate").
431
+ - Why do <cadetblue>Caspases</cadetblue> not instantly kill a cell? They are synthesized as <one>inactive precursors</one>.
432
+ - Name a physiological role of mitochondria. A: <one>Thermogenesis</one>.
433
+ - When was the <cadetblue>first human neocentromere</cadetblue> discovered? In the year <one>1993</one>.
434
+ - Who produces Lysosomes? The <one>Golgi complex</one>. URL: https://en.wikipedia.org/wiki/Golgi_apparatus
435
+ - How many <one>different types of autophagy</one> can we distinguish? Three.
436
+ - Bei Eukarya, wie wirkt <cadetblue>cAMP</cadetblue>? Indirekt, über die <one>Proteinkinase A</one>.
437
+ - What is the most typical trigger of autophagy? <one>Nutrient starvation</one>. Lack of any type of essential nutrient can induce autophagy. In yeast, nitrogen starvation is the most potent stimulus.
438
+ - Ist <cadetblue>Myoglobin</cadetblue> an intrazellulären Prozessen beteiligt? Ja - und zwar am "intrazellulären O2-Transport".
439
+ - Nenne ein zelluläres Ereignis, das durch "exogene Noxen" ausgelöst werden kann. A: Die <one>Nekrose</one>.
440
+ - Which three components do we require for <cadetblue>a human artificial chromosome</cadetblue>? (1) Centromere (2) Telomere (3) Replication Origin
441
+ - Give one example for <cadetblue>actin based motor proteins</cadetblue>. A: <one>Myosins</one>.
442
+ - In Cellbiology, what are the CAKs? <one>Cdk-activating kinases</one>.
443
+ - Name 3 skeletal proteins, starting with the letters A,V,F. A: (1) Actin (2) Vinculin (3) Fibronectin
444
+ - Diameter of the "megakaryocytes"? Up to <one>60 micrometer</one>.
445
+ - Welche zwei wichtige Aufgaben hat <cadetblue>Ran/GTP</cadetblue>? Es hilft beim Import und Export von Proteinen in und aus dem Nucleus.
446
+ - Wo speichert eine Zelle <cadetblue>Ca2+</cadetblue>? Im "Lumen des endoplasmatischen Reticulums".
447
+ - In cell biology, what does "Nups" stand for? <one>Nucleoporins</one>.
448
+ - Wie nennen wir die "Intermediärfilamente im Zellkern"? <one>Lamina</one>.
449
+ - A. W. für Autophagy? <one>Organelle turnover</one>.
450
+ - <violet>Chaperones</violet> not only help during protein folding, but may also reduce which unwanted side effect? <one>Aggregation</one>, e. g. of <cadetblue>unfolded proteins</cadetblue>.
451
+ - What does a "mast cell" secrete? <one>Histamine</one>.
452
+ - Im Zellkern, nenne ein Protein, das an "Importin" bindet. A: Das monomere G-Protein <one>Ran</one>. URL: https://en.wikipedia.org/wiki/Ran_%28gene%29
453
+ - Das Enzym "Thymidylate Synthetase" braucht eine Methyl-Gruppe. Woher stammt diese? Von <one>Tetrahydrofolate</one>.
454
+ - Fibroblasts secrete what? <one>Collagen</one>.
455
+ - Für den Zellkern-Export bestimmte Proteine haben oft was? <one>Leucin-reiche Sequenzen</one>.
456
+ - Nenne zwei Hemmstoffe der "cAMP-Phosphodiesterase". A: (1) Coffein (2) Theophyllin
457
+ - A. W. für "Mikrofilamente"? <one>Actinfilamente</one>.
458
+ - Besitzen Pilze <cadetblue>Centriolen</cadetblue>? Nein.
459
+ - A. W. für "Innendruck des Cytoplasmas"? <cadetblue>Turgor</cadetblue>.
460
+ - <cadetblue>Adrenalin</cadetblue> bindet an eine Leberzelle. Effekt innerhalb dieser Zelle? Die Glykogenphosphorylase wird aktiviert.
461
+ - A. W. für "Tay-sachs disease"? <one>GM2 gangliosidosis</one>.
462
+ - Was machen <one>GTPasen</one>? Sie binden GTP und hydrolysieren dieses zu GDP.
463
+ - How do we call the disc-like compartments of the Golgi apparatus? <one>Golgi cisternae</one>.
464
+ - Wie können wir die <violet>Phosphodiesterase</violet> hemmen? Durch <one>Koffein</one>.
465
+ - The <cadetblue>Rab GTPase</cadetblue> is important for ... ? <one>Organelle identity</one>.
466
+ - <violet>Integrine</violet> bestehen aus wievielen Untereinheiten? 2; es sind Heterodimere.
467
+ - Finden wir das <violet>26S-Proteasom</violet> im Zellkern? Ja.
468
+ - Wie kann ich die Mitose genetisch ausschalten? Durch <one>Deletion des Centromers</one>.
469
+ - What is the "time hormone"? <one>Melatonin</one>. URL: https://en.wikipedia.org/wiki/Melatonin
470
+ - When was the "nucleosome" discovered? In the year <one>1974</one>.
471
+ - Was fungiert als "allgemeine, zelluläre Zeitschaltuhr" in einer Zelle? Die G-Alpha Untereinheit mit gebundenem GTP, in den trimeren G-Proteinen.
472
+ - Where do we find the SRP-Receptor? In the <one>ER membrane</one>.
473
+ - Wie wird die Länge der Aktinfilamente reguliert? Mit Hilfe der <cadetblue>Motorproteine</cadetblue>. Diese bewegen sich entlang der Filamente und kürzen sie, wenn sie zu lang werden.
474
+ - In seiner chemischen Struktur ähnelt "Phycocyanin" wem? Einem <cadetblue>unfolded chlorophyll molecule</cadetblue>.
475
+ - Nenne eine Tiergruppe die keine Intermediärfilamente aufweist. A: <one>Arthropoden</one> haben keine Intermediärfilamente; Pflanzen übrigens auch nicht. URL: http://www.bionity.com/de/lexikon/Intermedi%C3%A4rfilamente.html
476
+ - Sind Membranen einer Zelle <violet>Polymere</violet>? Nein - sie sind <cadetblue>Aggregate</cadetblue>.
477
+ - Was findet am glatten ER statt? Dies ist allgemein <one>der Ort der Lipidsynthese</one>.
478
+ - Neu synthetisierte Protein müssen korrekt gefaltet werden. Die dazu notwendigen Hilfsproteine heißen ... ? <one>Chaperone</one>.
479
+ - Der <violet>SRPT</violet> wirkt auch als ...? GEF - Guanin nucleotide exchange factor.
480
+ - Wie wird der Export eines Proteins aus dem Nucleus gesteuert? Über "NES": <one>Nuclear Export Signal</one>.
481
+ - A. W. für "Vakuolenmembran"? <one>Tonoplast</one>.
482
+ - Zellmembranen wirken als ...? <one>Osmotische Schranken</one>.
483
+ - What is the main minus-end directed <violet>motor-protein</violet> on microtubules? <one>Dynein</one>.
484
+ - Can <cadetblue>p53</cadetblue> be both acetylated AND phosphorylated, in principle? Yes.
485
+ - Give another name for "how cells move". A: <cadetblue>cell motility</cadetblue>.
486
+ - Does "organelle DNA" replicate even in <royalblue>cells that do not divide</royalblue>? Yes.
487
+ - "Vorgänger" eines Lysosoms? Ein <one>late endosome</one>.
488
+ - Plectin is a "cytoskeletal linker protein". What size does it have? It is very large, with a size of over <one>500 kDa</one>.
489
+ - Wieviel % der Proteine einer Leberzelle werden pro Stunde über Autophagy degradiert? 1%.
490
+ - Nenne das wichtigste <one>monomere G-Protein</one>. A: Das "Ras-Protein".
491
+ - Wo genau spalten die "Caspasen"? Spezifisch hinter <one>Aspartatresten</one>.
492
+ - Warum sieht das <cadetblue>rauhe Endoplasmatische Reticulum</cadetblue> so aus wie es aussieht? Da multiple Ribosomes dort zu sehen sind.
493
+ - "Portaler Transport" innerhalb der Zelle ... ? Durch die <violet>Kernporen des Zellkerns</violet>.
494
+ - Nenne ein Protein, das an das "ER-Retentionssequenz" <violet>KDEL</violet> bindet. A: "BiP". URL: https://www.ncbi.nlm.nih.gov/pubmed/28769758
495
+ - Wo finde ich das Protein "RanGAP1"? Auf der <one>Aussenseite des Zellkern</one>.
496
+ - In Cellbiology we have something called "Endo H". What is this? This is the enzyme <one>Endoglycosidase H</one>.
497
+ - In Cellbiology, we have an abbreviation called "Cvt". Why this weird name? <violet>Cvt</violet> means "Cytoplasm vacuole targeting".
498
+ - Wenn eine Zellmembran nur bestimmte Ionen durchlässt, wie nennen wir dieses Phänomen? <one>Selektive Permeabilität</one>.
499
+ - <violet>G-Proteine</violet> besitzen was für eine Aktivität? Eine <one>GTPase Aktivität</one>.
500
+ - Average lifetime for an mitochondrion in a liver cell? About <one>10 days</one>.
501
+ - What is the protein <violet>SOS</violet> ("son of sevenless") doing? It "exchanges GDP -> GTP". URL: https://en.wikipedia.org/wiki/Son_of_Sevenless
502
+ - Name an "ER stress reaction". A: The "unfolded protein response", <one>UPR</one>.
503
+ - Nenne three photoproteins. A: (1) <one>Aequorin</one> (2) <one>Obelin</one> (3) <one>Phialidin</one>
504
+ - Warum der Name "P-Selectine"? <one>Platelets</one> (Plättchen).
505
+ - The SRP (signal recognition particle) can bind to ...? (1) The <one>ribosome</one> (2) signal sequence
506
+ - The Protein "synaptotagmin" binds what? <royalblue>Calcium</royalblue>, und zwar die C2-Domäne. URL: de.wikipedia.org/wiki/Synaptotagmine
507
+ - Nenne zwei Aufgaben der Peroxisomen. A: (1) Oxidativer Abbau von Fettsäuren (2) Entgiftung von toxischen Substanzen
508
+ - What is the "most abundant disaccharide" in Biology? <cadetblue>Sucrose</cadetblue> (this is Saccharose, but we prefer the term Sucrose in the english language).
509
+ - Wieviele Ribosomen könnte man in eine <cadetblue>Mycoplasma-Zelle</cadetblue> (im Durchmesser) packen? 10.
510
+ - The Glucose-Transporter (<violet>GLUT</violet>) is an example for what kind of transporter? GLUT is a "uniporter transporter protein". URL: https://en.wikipedia.org/wiki/Glucose_transporter
511
+ - Wo finden wir "Kupffer cells"? In der <one>Leber</one>.
512
+ - Allgemein formuliert - welche Zellen sind vor allem in der G0 Phase? <one>Ausdifferenzierte Zellen</one>.
513
+ - Which stain was originally used to identify the Golgi-apparatus? A <silver>silver stain</silver>.
514
+ - What is the <violet>I-cell disease</violet>? Material accumulates in the lysosomes because of the absence of hydrolytic enzymes due to the enzyme phosphotransferase unable to add phosphate groups to mannose in the Golgi complex.
515
+ - Which organelle produces Lysosomes? The <cadetblue>Golgi Apparatus</cadetblue>.
516
+ - Wieviel % des tierischen Genoms kodieren für Membranproteine? <violet>30%</violet>.
517
+ - Welches Protein kann die cytosolische Menge an cytochrom c "messen"? <cadetblue>Apaf-1</cadetblue>.
518
+ - What does "guanylate cyclase" produce? <royalblue>cGMP</royalblue>, which is "cyclic GMP", synthesized from GTP.
519
+ - The <cadetblue>Shibire mutation</cadetblue> in Drosophila led to the discovery of which cellular proteine? <violet>Dynamin</violet>.
520
+ - How do we call the two layers of the phospholipid-bilayer? <one>Leaflets</one>. URL: https://en.wikibooks.org/wiki/Structural_Biochemistry/Lipids/Lipid_Bilayer
521
+ - Name a domain in an "initiator procaspase". A: <one>CARD</one> - the Caspase recruitment domain.
522
+ - Nenne ein kleines Signamolekül. A: <one>NO</one> (Stickstoffmonoxid).
523
+ - Cytosylic pH is at ...? At about a value of <cadetblue>7.2</cadetblue>.
524
+ - Der <violet>Zellzyklus</violet> hat 7 prominente Punkte (die checkpoints ausgenommen). Welche? A: (G0)G1,R,S,G2,M,Cytokinese.
525
+ - Hohe Apertur, niedrige Auflösung? Nein! Gute Auflösung.
526
+ - Nenne vier Motorproteinklassen in alphabetischer Reihenfolge. A: (<violet>D</violet>, <violet>K</violet>, <violet>M</violet>, <violet>P</violet>) (1) Dynein (2) Kinesin (3) Myosin (4) Prestin
527
+ - Wieviele Billionen Zellen hat ein adulter Mensch in etwa? <cadetblue>37.2 Billionen Zellen</cadetblue>.
528
+ - Was wird durch "Pinocytose" aufgenommen? <slateblue>Flüssigkeiten</slateblue>.
529
+ - What is the "primary functions" for "intermediate filaments" for a cell? To <one>provide mechanical strength</one>.
530
+ - Who can reverse ubiquitination events? The <one>Deubiquitinases</one>.
531
+ - In der Zellbiologie, wofür steht die Abkürzung "NA Wert"? <one>Numerical Aperture</one>.
532
+ - In der Biologie, wo finden wir "rafts"? In der <one>Membran</one> (es sind "Membranproteine").
533
+ - Welches Protein ist Bestandteil der Centrosomen? <one>Gamma-Tubulin</one>. URL: https://de.wikipedia.org/wiki/Tubuline#.CE.B3-Tubulin
534
+ - In der Zellbiologie steht die Abkürzung <one>CDK</one> für ... ? <royalblue>Cyclin dependent kinase</royalblue>.
535
+ - Which <cadetblue>tubulin-subunits</cadetblue> are known? (1) Alpha-Tubulin (2) Beta-Tubulins (3) Gamma-Tubulins
536
+ - Durch "Anreicherung nicht abbaufähiger Materialien in der Zelle" entstehen ...? <one>Residualkörper</one>.
537
+ - Wo finden N-Glykosylierung und O-Glykosylierung statt? (1) Die O-Glykosylierung findet nur im Golgikomplex statt. (2) Die N-Glykosylierung beginnt im ER und wird im Golgi-Komplex fortgeführt.
538
+ - Andere Bezeichnung für "anaphase-promoting complex"? The <one>cyclosome</one> (Merkhilfe: APC/C heisst der Komplex eigentlich, das 2. C steht eben für "Cyclosome").
539
+ - <cadetblue>Tubulin subunits</cadetblue> (Alpha and Beta) can bind what exactly? GDP or GTP.
540
+ - Es gibt das sogenannt I-cell diseases, "Inclusion-cell" diseases. Die sind Teil von "lysosomal storage disease families". Welches Enzym ist hier defekt? Die <one>Phosphotransferase</one>, ein Enzym des Golgi-Apparatus.
541
+ - Vorläufer der Ceramide? <one>Sphingosine</one>.
542
+ - On the outside, the nuclear pore complex contains <one>cytoplasmic filaments</one>. Name two cellular functions that these filaments participate in. A: (1) protein transport (2) mRNA export
543
+ - Inside of a given cell, where may we find the protein "Profilin"? It can be found <one>bound to an actin monomer</one>.
544
+ - Nenne einen sehr wichtigen <violet>cell survival factor</violet>. A: Transkriptionsfaktor NF-Kappa Beta. Er aktiviert Gene die für "cell-survival Proteine" kodieren.
545
+ - Wann gibt <violet>Aequorin</violet> Licht ab? Bei Zugabe von (geringen Mengen) <one>Ca2+</one>.
546
+ - Ferroptosis is a type of programmed cell death. In this type, we can see the accumulation of ... ? <one>lipid peroxides</one>.
547
+ - What is <one>ferroptosis</one>? Ferroptosis is a type of programmed cell death dependent on iron.
548
+ - <violet>G-Proteine</violet> bestehen aus drei Untereinheiten. Welche davon bindet GTP? Die "alpha-Untereinheit" bindet (und hydrolysiert) GTP.
549
+ - Chaperone-mediated autophagy (CMA) involves the recognition by ... which complex? The hsc70-containing complex.
550
+ - Name the two major roles that <violet>autophagy</violet> has. A: (1) to remove damaged organelles and macromolecules (2) to recycle amino acids during periods of starvation
551
+ - Wann wurde der "Golgi-Apparat" entdeckt? <orange>1898</orange>.
552
+ - Name a component of the "signal recognition particle (SRP)" complex. A: The "signal recognition particle RNA", which is also known as 7SL RNA.
553
+ - Cytokines can convey to the cells signals to induce ... which four different cell-specific phenomena, all starting with the word "cell")? (1) "<u>cell proliferation</u>" (2) "<u>cell specialization</u>" (3) "<u>cell interaction</u>" (4) "<u>cell movement</u>"
554
+ - Mice without p53 show what phenomen, in general? They are "<u>susceptible to early tumours</u>".
555
+ - In general, activation of p53 has which two different possible "cellular outcomes"? (1) "cell-cycle arrest" (2) "apoptosis"
556
+ - Der Proteingehalt einer bakteriellen Zelle beträgt etwa n Prozent der Trockenmasse (es reicht ein Wert, der innerhalb des Intervalls liegt)? Etwa "50-60% der Trockenmasse".
557
+ - In der Zellbiologie, was können wir dank GFP-tagging zellulär erreichen? Wir können so zum Beispiel die Kompartimentierung von Proteinen in der Zelle untersuchen.
558
+ - Nenne die zwei "Ionenkanaltypen". A: (1) "spannungs-gesteuerte Ionenkanäle" (2) "liganden-gesteuerte Ionenkanäle"
559
+ - Was macht das Tus Protein? Es blockiert die "DnaB-Helikase" und bringt damit die Wanderung der Replikationsgabel zum Stillstand.
560
+ - Menschliche Zellen haben typischerweise einen Zellkern, ausgenommen ... ? Ausgenommen der "roten Blutkörperchen". URL: https://de.wikipedia.org/wiki/Erythrozyt
561
+ - How do we call the "heterotrimeric G-protein of Rhodopsin"? "Transducin".
562
+ - Nenne ein Protein das den Zellzyklus blockieren kann. A: "p21".
563
+ - Durch "Kernporen" können kleinere Proteine bis zu einer Grösse von n kDa passiv eindringen? Bis zu 60 kDa.
564
+ - Welche Zellen sind gegenüber den Effekten einer ionisierenden Strahlen allgemein sehr empfindlich? Zellen die sehr Mitose-aktiv sind.
565
+ - Was ist ein "Gewebe"? Dies ist "ein Verbund von Zellen mit gemeinsamer Funktion".
566
+ - For animal cell culturing, the substrate concentration of aminoacids is often very important, in particular glutamin. Why glutamin? Because glutamin "functions as an energy substrate".
567
+ - Anderes Wort für VCCD ("Viable Cumulative Cell Days"? "Viability Index".
568
+ - The "Integral of viable cells" (IVC) is required for determination of "cell-specific rates". It is calculated from ... ? The "growth curve".
569
+ - We may wish to determine the concentration of dead cells. How to do so, experimentally? We stain via "trypanblue", which is a "dye exclusion methods".
570
+ - Which three general functions may a "P body" have? (1) "storeage" (2) "repression" (3) "degradation"
571
+ - Wie messen wir die "Funktion eines Ionenkanals"? Mit Hilfe der "patch clamp" Technik.
572
+ - Cell division creates ... ? New cells.
573
+ - What is the job of the "PIN Proteins" in plants? They serve as secondary active transporters in the cell membrane, regulating the influx and efflux of auxins.
574
+ - Nenne zwei (allgemeine) Bedingungen die eine Zelle erfüllen muss um in die Mitose eintreten zu können. A: (1) es dürfen "keine DNA-Schäden" vorhanden sein (2) die Zellen müssen eine "ausreichende Größe" erreicht haben
575
+ - Name two "microtubule motors". A: (1) "Kinesin" (2) "Dynein"
576
+ - Bei der "Dynamik von Mikrotubuli/Tubulin" in der Zelle hat "Alpha-Tubulin" eigentlich immer "GTP" gebunden. Lediglich Beta-Tubulin unterscheidet sich in seinem Verhalten, je nachdem ob es GTP oder GDP gebunden hat. Wie unterscheidet sich Beta-Tubulin bei "GDP" und "GTP" dahingehend jeweils? (1) Beta-Tubulin mit "GDP": "Zerfall der Mikrotubuli" (2) Beta-Tubulin mit "GTP": "Polymerisierung der Mikrotubuli"
577
+ - Name a common (functional( feature of "karyopherins". A: They interaction with "Ran proteins".
578
+ - Can a cell regulate the export and import of shuttling proteins? Yes, via phosphorylation-dephosphorylation of residues adjacent to NLS or NES signals, resulting in blockade/exposure of signals.
579
+ - Where can we find "RanGAP" and "RanGEF", respectively? (1) "RanGAP": only in the "cytoplasm" (2) "RanGEF": only in the "nucleus"
580
+ - In the cytoplasm, hydrolysis of ... to ... causes "dissociation of the export complex". A: "Ran-GTP" -> "Ran-GDP".
581
+ - Centrioles are essential for development of ... ? cilia and flagella.
582
+ - Was bedeutet "Eutelie"? "Zellkonstanz".
583
+ - In a "hepatocyte", name the two major constituents belonging to an intracellular compartment, in regards to the "total cell volume". A: (1) Cytosol ("54%") (2) Mitochondria ("22%")
584
+ - Sind "Centrioles" wichtig? Ja - sie organisieren die "mitotic spindle".
585
+ - Die "M-Phase" wird unterteilt in welche Phasen? (1) "Karyokinese" (2) "Zytokinese"
586
+ - Die "Phospholipid-Synthese" erfolgt wo? An "der cytosolischen Seite der glatten ER-Membran".
587
+ - Welche zwei verschiedene Arten von "Membrantransport" gibt es? (1) Transport durch die Membran hindurch (2) Transport innerhalb der Membran selbst (zum Beispiel Elektronentransport)
588
+ - Die Synthese "cytoplasmatisher Proteine" erfolgt ...? An "nichtmembran-assoziierten Ribosomen".
589
+ - In der molekularen Zellbiologie, was ist "Wee1"? Wee1 ist eine Nuclear Kinase (ist also im Zellkern), die zur Ser/Thr Familie der Proteinkinasen gehört, in der fission yeast "Schizosaccharomyces pombe". Die molekulare Masse ist 96 kDa. Ihre Aufgabe ist es den Verlauf des Zellzyklus zu regulieren. Zudem kann es die Zellgrösse beeinflussen, indem sie den Eintritt in die Mitose verzögert, durch hemmende Interaktion mit Cdk1- daher der Name "Wee".
590
+ - Was meinen wir mit "zellulärer Proteinsortierung"? Wenn die Zelle "unterscheidet" wohin ein Protein geschick werden soll.
591
+ - Proteine können an den Golgi-Komplex gelangen und von dort, über Vesikel, in welche 3 Zielareale gelangen? (1) in "Lysosomen" (2) an die "Plasmamembran" (3) "ausserhalb der Zelle"
592
+ - In humans, "Phospholipase C" activates which cellular enzyme? "Proteinkinase C". URL: https://en.wikipedia.org/wiki/Phospholipase_C#Biological_function
593
+ - Welche Aufgabe hat die Alpha-Subunit bei G-Proteinen? Dies ist eine "GTPase". Sie hydrolysiert GTP zu GDP; dies inaktiviert das G-Protein.
594
+ - Karyopherins are, or can be broadly grouped into, ...? (1) "importins" (2) "exportins"
595
+ - Nenne die "vier Bewegungsmöglichkeiten von Phospholipiden". A: (1) "flexion" (2) "rotation" (3) "laterale Diffusion" (4) "transversale Diffusion"
596
+ - Give another word for a normally shaped "red blood cell". A: A "discocyte".
597
+ - Wenn ein Aktinfilament "gecapped" wird, was bedeutet das für das Wachstum? Das Wachstum dieses Aktinfilaments kommt zum Erliegen.
598
+ - In der Zellbiologie binden die MAPs ("Microtubule-associated protein") an Tubulin Subunits. Welche Funktion erfüllt dies? Sie "regulieren damit deren Stabilität" - machen sie also stabiler oder instabiler.
599
+ - Integral membrane proteins can be categorized as type I and type II. What is the difference there? (a) "Type I": these have their C-terminus towards the cytoplasm. (b) "Type II": these have their N-terminus towards the cytosol.
600
+ - Name two ways how proteins to be exported can be identified by the cell. A: (1) SecA protein (2) signal recognition particles (SRP)
601
+ - Inside cilia there is a "microtubule-based cytoskeleton". What is its name? The "axoneme". URL: https://en.wikipedia.org/wiki/Axoneme
602
+ - Name 2 different forms of "cell senescence". A: (1) "replicative senescence" (2) "induced senescence"
603
+ - When are compartments said to be "topologically equivalent"? If they can communicate with one another in the sense that molecules can get from one to the other without having to cross a membrane.
604
+ - Give an example for "gated transport" in cell biology. A: The transfer of material through "nuclear pore complexes".
605
+ - Proteins can move from one intracellular compartment to another, by which 3 mechanisms? (1) gated transport (2) protein translocation (3) vesicular transport
606
+ - Welche Reaktion führt die "Luciferase" genau durch? Nenne Input und Output. A: "Luciferin" + ATP + O2 -> "Oxyluciferin" + AMP + CO2.
607
+ - Name a drug that can be used to "inhibit the function of lysosomes". A: Chloroquin.
608
+ - Nenne die 3 Domänen des "Glykophorin". A: (1) extrazelluläre Domäne (2) Transmembrandomäne (3) cytoplasmatische Domäne
609
+ - Wo vor allem könnte ich das Protein "Dynein" finden? In "Flagellen" oder "Spermatozoa".
610
+ - In an electron microscope, name two major differences between "lysosomes" and "peroxisomes". A: (1) lysosomes are smaller (2) Lysosomes appear "darker", hence they are more "electron rich", thus, denser.
611
+ - Are Endosomes organelles? Yes.
612
+ - Phagosomes have diameters that are determined by what exactly? The diameters are determined by the "size of the ingested particle". In fact, a Phagosome can be almost as large as the phagocytic cell itself!
613
+ - Autophagy is induced "upon nutrient depletion" - or alternatively, treatment with which particular drug? With "Rapamycin".
614
+ - Nucleoporins contain in particular which two-aminoacid repeats? FG, aka "Phe/Gly repeats".
615
+ - Fibrinogen kann vor allem an die Rezeptoren welcher Zellen binden? An die "Thrombozyten".
616
+ - A. W. für "Glykoprotein der Zelloberfläche"? Aggregationsfaktoren.
617
+ - Name an enzyme that helps in "protein folding". A: The "Protein disulfide isomerase".
618
+ - In the cell, tethering proteins of the membrane do recognize which proteins? They recognize "Rab proteins".
619
+ - Where in a cell can we find "Ras"? Ras is usually attached to the cell membrane owing to its "prenylation" and "palmitoylation modification".
620
+ - Welche 3 Kräfte dominieren bei der "Ligandenbindung"? (1) ionische Wechselwirkungen (2) van-der-Waals-Kräfte (3) Wasserstoffbrücken
621
+ - Integrins have how many "switchable conformations"? 2 (active/inactive conformation).
622
+ - Can Integrins bind laminins? Yes.
623
+ - An integrin is in an "active state". What do we know, then? That this integrin will "readily form attachments".
624
+ - Wie nennen wir die 3 "Stapel" im Golgi-Apparat? (1) cis (2) medial (3) trans
625
+ - Aus Sicht der Zellbiologie, was passiert wenn das Gen "N-Acetylglucosamin-Phosphotransferase" ausfällt? Essenzielle Enzyme, wie zum Beispiel Hydrolasen, können nicht mehr ins Lysosom gelangen.
626
+ - Name the four main families of motor proteins in human cells. A: (1) Integrins (2) Immunoglobulins (3) Cadherins (4) Selectins
627
+ - Name 3 general roles of "actin filaments". A: (1) cellular contraction (2) migration (3) signalling
628
+ - In cell biology, what does "FAOS" stand for? Fluorescence-assisted organelle sorting.
629
+ - In cell biology, how do we call the methodological step necessary for releasing organelles? Homogenization step.
630
+ - Dystrophin bindet ... an die Zellmembran von Muskelzellen. A: Actinfilamente.
631
+ - Name an organism in which cilia assemble in the cytoplasm. A: "Plasmodium falciparum".
632
+ - In general, which two types of cilia exist? (1) motile cilia (2) nonmotile cilia, also called "primary cilia"
633
+ - Which COP protein, COP I or COP II, functions in intra-Golgie trafficking? COP I.
634
+ - Cargo within the cell can be sent via vesicles, which must be cleave off during the "scission" step. Which enzymes catalyze this reaction usually? GTPases, such as "dynamin".
635
+ - In Cellbiology, what is an "organotypic culture"? This is the case when we grow cells in a "three-dimensional (3-D) environment".
636
+ - Name the 2 proteins that control the transition from G2 to M-phase. A: (1) cdk1 (2) cyclin B
637
+ - Name one famous "cellular Cdk inhibitor". A: p21.
638
+ - Gib 3 Nucleosid Beispiele an. A: (1) Cytidin (2) Uridin (3) Guanosin
639
+ - Nenne 3 Wachstumsfaktoren inklusive ihres vollen Namens. A: (1) PDGF: Plateled Derived Growth Factor (2) VEGF: Vascular Endothelian Growth Factor (3) EGF: Epidermal Growth Factor
640
+ - A. W. für "lösen", in bezug auf die Zellbiologie? Solubilisieren.
641
+ - Nenne 2 viel verwendete Detergenzien für bzw. gegen eine "biologische Membran". A: (1) Tritox X-1000 (2) Natriumdodecylsulfat
642
+ - We can convert heme into which "photoreceptor pigment"? Into "phycocyanobilin".
643
+ - What exactly is the backbone in "phosphoglycerides"? The 3-carbon "glycerol" is the backbone.
644
+ - Wie bezeichnen wir die Diffusion durch eine Membran? Passiver Transport.
645
+ - Kompartimente erfordern ...? Proteinsortierung.
646
+ - Was ist das gemeinsame Merkmal aller G-Proteine? Eine "hoch konservierte G-Domäne".
647
+ - Wie gelangt Pyruvat in das Mitochondrium? Über einen "H+"-Symporter.
648
+ - Nenne 1 Substanz, die Mikrotubuli stabilisieren kann. A: Taxol.
649
+ - In cell biology, what does "autophagy" ensure or a given normal cell? It ensures the synthesis, degradation and recycling of cellular components.
650
+ - Cells can degrade proteins without lysosomes - give a proof for this statement. A: Reticulocytes lack lysosomes but can still selectively degrade abnormal proteins.
651
+ - Name a "lipid-soluble second messenger". A: Diacylglycerol.
652
+ - Warum führt die Zelle "Farnesylierungen" durch? Um Proteine fest mit der Membran zu assoziieren.
653
+ - Was heisst "die Zellmembran ist asymmetrisch" ganz konkret, mit Beispiel? Nehmen wir das Mitochondrium heran - Cytochrom c der Atmungskette ist aussen, ATP-Synthase ist innen.
654
+ - In the cell cycle, what means "MUGs"? Mitosis with "unreplicated genomes".
655
+ - Wenn wir "Nocodazol" zu Zellen geben, was passiert dann? Arrest in der Mitose.
656
+ - Anderer Name für "importin-beta-like protein"? Karyopherin-Beta-family.
657
+ - Was heisst "GPI-anchor"? Glycophosphatidylinositol anchor. URL: https://en.wikipedia.org/wiki/Glycosylphosphatidylinositol
658
+ - The protein "Dysferlin" is linked to which cellular function ...? To "skeletal muscle repair".
659
+ - Where are "cell membranes" synthesized? Membranes and their constituent proteins are assembled in the ER.
660
+ - Nenne 1 Zellorganell das "Cardiolipin" enthält. A: Das Mitochondrium und zwar die innere Membran des Mitochondriums.
661
+ - In cellbiology, what is "Shibire"? This is a "temperature sensitive phenotype" in Drosophila.
662
+ - Which "energy form" does the cell use for actin and tubulin subunits? (1) Actin: ATP (2) Tubulin: GTP
663
+ - Wann wurde das "Fluid-Mosaic-Modell" vorgeschlagen? 1972.
664
+ - Die "Rab proteins", wieso dieser Name? "Rat sarcoma-related in brain" proteins.
665
+ - Lysosomaler Enzym-Schutz? Zum einen pH-Optimum von 5-6; zum anderen ein "Oligosaccharidpanzer", also hochglykosyliert als Schutz vor Autolyse durch lysosomale Proteasen.
666
+ - Eine typische Eukaryotenzelle hat wieviele Proteasome pro Zelle? 30.000
667
+ - Welche Aufgabe haben die "Cajal-Körper"? Sie synthetisieren kleine Kern-RNAs ("small nuclear RNAs").
668
+ - In der Zelle führt die TPST ("tyrosylprotein sulfotransferase") im Golgi Apparat Sulfonierungen (Sulfation) durch. Woher stammt aber der Schwefel? Der Schwefel stammt von "PAPS" (3-Strich-Phosphoadenosine-5-Strich-Phosphosulfate).
669
+ - Anderes, schönes Wort für "addition of ubiquitin tail"? The "kiss-of-death".
670
+ - Nenne die 3 Hauptgruppen von Membranlipiden. A: (1) Glykolipide (2) Phospholipide (3) Cholesterin
671
+ - Name 4 structural components of a mitochondrium. A: (1) Outer Membrane (2) Matrix (3) Inner Membrane (4) Intermembrane space
672
+ - Nenne 3 Typen an "Membranproteinen". A: (1) peripher (2) integral (3) glykolipid-verankert
673
+ - Name two ways how a cell culture can become immortalized. A: (1) spontaneously (2) by oncogenes
674
+ - Die Rab Proteinfamilie haben allgemein wieviele Untereinheiten? Eine.
675
+ - Wie erfolgt der Import von NLS-haltigen Proteinen? Durch "Importin Alpha" und "Importin Beta".
676
+ - Nenne 6 Organellen. A: (1) Zellkern (2) Mitochondrien (3) Chloroplast (4) Lysosom (5) Peroxisom (6) endoplasmatische Retikulum (7) Golgi-Apparat (bei manchen Definitionen)
677
+ - Name 2 "microtubule organizing centers". A: (1) centrosome (2) centrioles
678
+ - Nenne eine Pumpe in den Membranen der Lysosomen. A: H+ ATPase.
679
+ - Die Fluidität der Plasmamembran ist geringer als die in der intrazellulären Membran auf Grund des hohen Gehalts an ... ? Cholesterin.
680
+ - A. W. für "intracellular containers"? Transport vesicles.
681
+ - Phospholipide können in der Membran bewegt werden. Nenne die 4 grundlegenden "Bewegungsarten". A: (1) laterale diffusion (2) Flexion (3) Rotation (4) transversale Diffusion
682
+ - In Cellbiology, what is the primary role of SNARE proteins? These proteins "mediate vesicle fusion", that is, the exocytosis of cellular transport vesicles with the cell membrane at the porosome or with a target compartment, such as a lysosome.
683
+ - Effect of phenobarbital-treatment? This "stimulates liver cell division" - and thereby liver enlargement.
684
+ - Gib zwei Beispiele für "amphiphile Moleküle". A: (1) Phospholipide (2) Lecithine
685
+ - Name the 2 classes of "microtubule-based motors". A: (1) Dynein (2) Kinesin
686
+ - Which genes are required for the "autophagic pathway"? Atg-genes.
687
+ - Why is PAS ("pre-autophagosomal structure") so important? Most proteins involved in autophagosom formation localize to the PAS at some stage.
688
+ - How can a cell make sense of many different (external) signals? It can respond to these signals selectively by "selectively expressing appropriate receptors".
689
+ - What is the total mass of the "ATP synthase", in Daltons? 600.000 Daltons.
690
+ - Name 2 "degradation organelles". A: (1) the 26S-Proteasome (2) the lysosomes
691
+ - In Cellbiology, Shibire is a "temperature sensitive phenotype" in Drosophila. What happens at high temperature, and why? The flies become paralysed at high temperature. The phenotype is the result of the inability of endocytic vesicles to be separated from the parent membranes and thus there is a depletion of vesicles especially in synaptic terminals.
692
+ - The "Triskelion" is made up of which subunits? Clathrin.
693
+ - What would happen if we would knock out "lysosomal hydrolases"? Undigested molecules would accumulate in lysososomes, causing the cell to swell and ultimately die.
694
+ - Plectin can bind to ... ? Desmin.
695
+ - Give a shorter word for "cytoskeletal linker proteins". A: "cytolinkers".
696
+ - A. W. für "cyclin"? Cdk regulators.
697
+ - In welche Richtung wandern COP I und COP II Vesikel? COP I wandert von trans-Golgi zu cis-Golgi, COP II wandert in die gegengesetzte Richtung also vom rauhen ER hin zum Golgi Apparatus.
698
+ - Ein "schnelles" Protein benötigt für die Durchquerung des Zellkerns wie lange? Wenige Minuten.
699
+ - Desmin is a protein, a type III intermediate filament. It can also be found in humans. In which type of cells may we find it? In muscle cells.
700
+ - Zusätzlich zu den Motorproteinen stellen zytoplasmatische Verbindungsproteine eine Verbindung her, zwischen Mikrotubuli und anderen Zellorganellen. Wie nennen wir diese Proteine? CLIPS ("cytoplasmic linker proteins")
701
+ - Mikrotubuli besitzen eine polare Struktur. Welchen funktioniellen Unterschied gibt es zwischen dem +-Ende und dem -Ende? Das plus-Ende hat eine höhere Geschwindigkeit für Ein- und Abbau von Untereinheiten. Am minus-Ende erfolgt der bevorzugte Abbau.
702
+ - In der Zellbiologie, was heisst "ERGIC"? ER-Golgi intermediate compartment.
703
+ - Wir können zwischen "primären Lysosomen" und "sekundären Lysosomen" unterscheiden. Was ist das wichtigste Unterscheidungskriterium hierzu? Die primären Lysosomen werden vom Golgi Apparat abgeschnürt. Sie enthalten neu gebildete, noch nicht aktive lysosomale Enzyme. Nimmt so ein Lysosom dann neues Material auf, das verdaut werden soll, so nennt man diese dann sekundäre Lysosomen.
704
+ - Cyclin-dependent kinases are a subclass of ... which family? They belong to the "serine/threonine protein kinases".
705
+ - What type of light is used in microbiology? "Visible light" + "UV light".
706
+ - Why do we use a "Langmuir-Blodgett trough" in a laboratory? We can use it to compress monolayers of molecules on the surface of a given subphase, and then measures surface phenomena due to this compression.
707
+ - Give an example for a "single-pass transmembrane protein". A: The LDL-Receptor.
708
+ - How can we observe "Lipid rafts"? Via AFM ("Atomic Force Microscopy").
709
+ - When exactly is the "sister-chromatid cohesin" destroyed? At the start of the "Anaphase".
710
+ - Wo finde ich das Protein "Spectrin"? Das ist ein "Cytoskelett-Protein", das wir "in Erythrozyten" finden können. Es bildet unterhalb der Erythrozytenmembran ein Proteinnetzwerk.
711
+ - How can we detect "apoptotic cells"? Via TUNEL Labeling.
712
+ - Which Cdc activates the APC/C complex? Cdc20.
713
+ - Wo finden wir den "Intermembranraum" eines Mitochondriums? Zwischen der äusseren und der inneren Membran.
714
+ - Why the name "cadherin"? They depend on Ca2+ ions - removing Ca2+ from the extracellular medium causes adhesion mediated by cadherin to come apart.
715
+ - What is the "D" and "T" form of actin filaments? D form ... bound ADP. T form ... bound ATP.
716
+ - How do we call the inner part of a "plasmodesma"? Desmotubule.
717
+ - Within the cell, the centromeres play a critical and very important role where exactly? In the "segregation of chromosomes".
718
+ - What is the "common feature" among Golgi? They are adjacent to "endoplasmic reticulum (ER) exit sites".
719
+ - Why is the "histone fold" so important? So that the "histone octamer" can form.
720
+ - What kind of information can we gain by "Endo H Cleavage"? Endoglycosidase H can cleave certain oligosaccharide structures. Later oligosaccharide structures are resistant to Endo H cleavage, so the enzyme can be widely used to report the extent of oligosaccharide processing a protein of interest has undergone.
721
+ - "Clathrin" is a coating protein. It is associated with proteins, which connect clathrin to vesicle membrane. How do we call these latter proteins? "Adaptins".
722
+ - What is a "chromocyte"? Any cell that contains a pigment. URL: https://en.wiktionary.org/wiki/chromocyte
723
+ - A. W. für "Aktin"? Mikrofilamente. Sie haben ja nur einen Durchmesser von etwa 6nm.
724
+ - Nenne 3 allgemeine Funktionen der Mikrotubuli. A: (1) Formerhalt der Zelle (2) Geißeln (3) Bewegung der Chromosomen bei der Mitose
725
+ - Was meinen wir in der Zellbiologie mit dem "retrograden Transport"? Dies ist Transport von der Zellmembran hin zum Zellkern.
726
+ - Name a way how to experimentally measure DNA replication. A: Use [3H] thymidine.
727
+ - Aus welchen "Domänen" besteht ein Motorprotein? Aus einer "Kopfdomäne" sowie einer "Schwanzdomäne".
728
+ - Give 2 examples for materials cells like to adhere to. A: (1) polylysine (2) extracellular matrix components
729
+ - Which categories of SNAREs exist? (1) vesicle or v-SNAREs: these are incorporated into the membranes of transport vesicles during budding (2) target or t-SNAREs: these are located in the membranes of target compartments
730
+ - Was wird im "smooth endoplasmic reticulum" gebildet? Lipide werden hier gebildet.
731
+ - How do we call the interior of the ER? lumen.
732
+ - Name one "lysosomal storage disease". A: Tay Sachs disease.
733
+ - Name a complex similar to the Gamma-TuRC complex. A: The "ARP complex".
734
+ - Nenne 3 Vertreter des "Endomembransystems". A: (1) Golgi (2) Endoplasmatisches Retikulum (3) Lysosom
735
+ - What is "Allotransplantation"? When the donor organ comes from a "closely related species".
736
+ - How was the function of the SRP (Signal recognition particle) discovered? By the study of processed and unprocessed immunoglobulin light chains.
737
+ - Which 2 classes of "apoptotic caspases" exist? (1) initiator caspases (2) executioner caspases
738
+ - To which family do the "death receptors" belong to? TNF receptor family.
739
+ - Name the three most commonly used scaffolds for 3D cultures. A: (1) Agarose (2) Collagen (3) Fibronectin
740
+ - What is "Transdifferentiation"? Transdifferentiation is the conversion of a differentiated cell type into another differentiated cell type.
741
+ - What are "ameloblasts"? These are cells that are important for tooth development. They deposit tooth enamel.
742
+ - Name 1 bacterial homolog of actin. A: MreB.
743
+ - What is the "most fundamental task" for a cell? The passing on of its genetic information to the next generation of cells.
744
+ - Gib ein Beispiel für einen "bidirektionalen Rezeptor" der Zelle. A: Integrine.
745
+ - How are "lysosomal hydrolases" tagged in the Golgi apparatus? Via "mannose-6-phosphate" groups.
746
+ - Name 3 "Biogenesis Strategies" for making a new organelle (duplication). A: (1) de novo nucleation growth (2) templated assembly/growth (3) growth/fission
747
+ - What does the abbreviation "Gamma-TuRC" stand for? Gamma-tubulin ring complex.
748
+ - What is the general role of Gamma-Tubulin? This protein is involved in the nucleation of microtubule growth.
749
+ - In Cell Biology, we know the "ARP complex". What other name is given to this complex? The Arp 2/3 complex.
750
+ - What do we mean with "non-bilayer lipids"? These are lipids that can not build a bilayer of lipids.
751
+ - Nitric oxide activates what inside of a cell? Guanylyl cyclase.
752
+ - How do we call the 3 MAP-Kinases in mammalian cells? (1) Raf (2) Mek (3) Erk
753
+ - Who are the most complex "glycolipids"? The gangliosides.
754
+ - Welches Protein erreicht eine "Abschnürung von Vesikeln"? Dynamin.
755
+ - Name the 3 major coat proteins in a cell. A: (1) clathrin-coated (2) COPI-coated (3) COPII-coated
756
+ - Name the 3 Ras Proteins in humans. A: (1) H-Ras (2) K-Ras (3) N-Ras
757
+ - How is the "Ras signal-transduction pathway" activated? When e. g. EGF binds to a receptor.
758
+ - W. h. "MAP Kinase"? Mitogen-activated protein kinase.
759
+ - Activated Raf ultimately activates? MAP Kinase.
760
+ - Glucose transport is connected to which gradient? Na+ Gradient.
761
+ - What is the job of the "lipoprotein particles"? Carry lipids via the bloodstream to other parts of the body.
762
+ - Wie wirkt das Gift "Phalloidin"? Es stabilisiert Aktinfilamente, die dadurch ihre Dynamik verlieren.
763
+ - Which protein separates Ran-GTP from importin? The RanBP (Ran Binding Protein).
764
+ - Wie schützt die Zelle die Plus-Enden von Mikrotubuli vor Depolymerisation? Durch Verankerung in einem capping Protein geschützt werden.
765
+ - The ability of importins and exportins to transport their cargo is regulated by ...? Ran, a small Ras-related GTPase.
766
+ - COPII-coated vesicles go from->to? From ER->Golgi.
767
+ - Welche Cytoskelett-Elemente sind apolar? Nur die Intermediärfiamente.
768
+ - Do chloroplast contain ribosomes? Yes. They are smaller than the regular ribosomes though.
769
+ - The "Golgi cisternae stack" has which 4 functional regions? (1) the cis-Golgi network (CGN) (2) the medial-Golgi (3) the endo-Golgi (4) the trans-Golgi network (TGN)
770
+ - What is the "Interphase"? All but Mitosis; so we have G1, S and G2.
771
+ - What does the name "Ras" stand for? Ras is an abbreviation of "Rat sarcoma".
772
+ - Rab-Proteins are what type of proteins exactly? They are "monomeric GTPases".
773
+ - A. W. für "G0-phase"? resting state
774
+ - In der Zellbiologie, was heisst "Cvt-Pathway"? cytoplasm-to-vacuole targeting. URL: https://en.wikipedia.org/wiki/Cytoplasm-to-vacuole_targeting
775
+ - Most laminopathies (== diseases of the lamina) are associated with ..., in a cellular context? A mutant version of lamin A.
776
+ - Was ist "spectral tuning"? Spectral tuning bedeutet, das verschiedene Pigment-Spektren, sowie andere Faktoren, die diese beeinflussen, durch den Organismus, der diese produziert, adaptiert werden. Also quasi eine "Anpassung an Licht verschiedener Wellenlänge".
777
+ - What means "cellular respiration"? This is how cells consume O2 and produce CO2.
778
+ - Another term for "the translocon"? Protein-conducting channel.
779
+ - What is a "Rab cascade" in cell biology? This is the ordered recruitment of sequentially active Rab proteins.
780
+ - What is the "intracellular signal" that triggers macroautophagy? The intracellular levels of particular amino acids.
781
+ - Was heisst "Tom complex"? "Translocase of the outer mitochondrial membrane".
782
+ - Wie lange dauert die S-Phase in einer Säugetierzelle (von-bis)? 10-12 Stunden.
783
+ - "Microfilaments" are formed by ... ? Actin.
784
+ - What happens if we treat a rat with the drug "phenobarbitol"? This drug stimulates liver cell division, thereby causing "liver enlargement".
785
+ - Name 3 "functional classification" of cell junctions. A: (1) Occluding junctions (2) Anchoring junctions (3) Communicating junctions
786
+ - Name 3 detergents. A: (1) SDS (2) Triton X-100 (3) Beta-octylglucoside
787
+ - The ER cycles between ...? The ER membrane and the cytosol.
788
+ - Das "Zellweger-Syndrom" beruht auf ...? Mutationen in den Genen, die für die Entstehung von Peroxisomen erforderlich sind.
789
+ - What does the "signal hypothesis" state? The site of synthesis of a protein was determined by the sequence of amino acids in the N-terminal portaion of the polypeptide.
790
+ - In Cell Biology, what do we mean with the term "free ribosome"? Ribosomes that are not attached to the RER.
791
+ - What is the "transitional ER"? These are areas of smooth ER that bud off for transport to the Golgi apparatus.
792
+ - What is the job of "Bacteriorhodopsin"? This protein functions as a light-activated H+ pump that transfers H+ out of the archaeal cell.
793
+ - "Nanodiscs" are surrounded by ...? A belt of proteins.
794
+ - Do plants use cAMP for signalling? No.
795
+ - How can we visualize lateral diffusion of membrane proteins? Via "FRAP" (Fluorescent Recovery after Photobleaching).
796
+ - What does it mean when we say that the subunits of actin filaments are asymmetrical? These subunits bind to one another head-to-tail, so that they all point in one direction.
797
+ - Name 3 important jobs for the ER (Endoplasmatic Reticulum). A: (1) lipid-biosynthesis (2) protein biosynthesis (3) intracellular Ca 2+ store
798
+ - Was passiert mit Glykoproteinen die "phosphorylierte Mannosereste" aufweisen? Sie werden in die Lysosomen transportiert.
799
+ - Aufgabe der SUN und KASH Proteine? Sie verbinden den Nucleus und das Cytoplasma durch die Zellkern-Membran.
800
+ - Es gibt SUN und KASH Proteine. Wo finden wir diese? KASH-Proteine sind dem Cytosol zugewandt, SUN Proteine dem Nucleus (Merkhilfe: Eine sun sieht dem Nucleus von der Form her ähnlich).
801
+ - In cell biology, what do we mean with "INM"? inner nuclear membrane.
802
+ - Wofür steht der Name "P-bodies" in der Zellbiologie? Processing bodies
803
+ - What is "Pyknosis"? This is the irreversible condensation of chromatin in the nucleus of a cell undergoing necrosis or apoptosis.
804
+ - Calmodulin hat n Ca2+ binding sites? 4. URL: https://en.wikipedia.org/wiki/Calmodulin
805
+ - What are "professional phagocytes"? (1) macrophages (2) neutrophils
806
+ - A. W. für "histone writers"? histone modifying enzymes.
807
+ - What do we mean with "Translational frameshifting"? When we ignore a stop codon.
808
+ - Welches Signalpeptid wird nicht abgespalten? Das "Kernlokalisationssignal".
809
+ - With which technique could we prove that signal sequences in proteins are important? With a "transfection experiment".
810
+ - 2 Categories of endocytosis? (1) bulk-phase endocytosis (2) receptor-mediated endocytosis
811
+ - How can the lysosome maintain its acidic pH? It contains a H+ pump in its membrane, which uses the energy from ATP hydrolysis to pump more H+ into the lysosome.
812
+ - Name one big difference between the lumen of a lysosome and the cytoplasm. A: The lumen of a lysosome is more acidic than the cytoplasm.
813
+ - Durchmesser eines "clathrin triskelion polyhedral lattice"? 80nm.
814
+ - Allgemein, welche 4 chemische Gruppen-Reste können Aminosäuren haben? (1) sauer (2) basisch (3) polar (4) unpolar
815
+ - Wie können wir den Zerfall der Mikrotubuli bewirken? Durch Colchicin.
816
+ - Nenne die 3 Komponenten beim Aufbau eines Lipidmoleküls. A: (1) Cholin (2) Phosphat (3) Glycerin
817
+ - Nenne 4 Phospholipide, die wir in einer Membran finden können. A: (1) Phosphatidylcholin (PC) (2) Phosphatidylserin (PS) (3) Phosphatidylinositol (PI) (4) Phosphatidylethanolamin (PE)
818
+ - Wer etablierte das "Flüssig-Mosaik-Modell" 1972? Singer und Nicolson.
819
+ - Welche Aufgabe haben die RAB-Proteine in der Zelle? Sie überprüfen die Spezifität des Andockens eines Vesikels an die Zielorganelle.
820
+ - How do we call the tethering proteins of the Golgi complex? Golgins.
821
+ - Unterschied zwischen "saturated fatty acids" und "unsaturated fatty acids"? Die saturated fatty acids haben C-C Bindungen die nur Einzelbindungen sind. Die unsaturated fatty acids hingegen haben C=C Bindungen, also Doppelbindungen.
822
+ - How does a cell cope with a "residual body"? (1) it can release the content of residual body by exocytosis (2) it can be retained within the cytoplasm, and become a "lipofuscin granule".
823
+ - Proteine die in die Mitochondrien importiert werden sollen, haben was für eine leader sequence? Am N-Terminus 20 oder mehr Aminosäuren.
824
+ - The MPF ("maturation promoting factor") consists of how many subunits? 2.
825
+ - In der Zellbiologie, was heisst "ESCRT"? The "endosomal sorting complex required for Transport".
826
+ - The ER lumen can store what? It can store "calcium" (Ca2+).
827
+ - Folded proteins inside of a cell leave the ER where? At "ER exit sites".
828
+ - How much of the ER comprise of newly-synthesized proteins? Only about 1%.
829
+ - What is "Hemifusion" in cell biology? During membrane fusion, the outer leaflets of the two membranes merge first, whereas the distal membrane leaflets remain separate until the opening of a fusion pore. This intermediate stage is called a hemifusion.
830
+ - What exactly is a "neoplasm"? An accumulation of "abnormally dividing cells".
831
+ - In Cellbiology, what is "Dynamin"? A large GTPase, involved in the scission of nascent vesicles from parent membranes.
832
+ - Chemischer Name für "Caffeine"? 1,3,7-trimethylxanthine.
833
+ - Wozu dienen die "caveolae" in der Zelle? They can protect a cell from stretching. ("Caveola mechanosensing")
834
+ - What are "Neocentromeres", how do they originate? Neocentromeres are ectopic centromeres that originate occasionally from noncentromeric regions of chromosomes.
835
+ - Actin Filamente haben einen "nucleation point", der von einem Komplex ausgeht, welcher wiederum 7 Proteine hat. Wie heisst dieser Komplex, und wofür steht die Abkürzung? Arp2/3 complex. Arp steht für "Actin-Related Protein" - ARP ähnelt Aktin strukturell.
836
+ - Der "retrograde transport" bei COP I verläuft von ... zu ...? Von Golgi, zum ER.
837
+ - There is a hormone which transforms a tadpole into a frog. Which hormone is that? Thyroid hormone.
838
+ - Do Microfilaments have a plus and minus end? Yes.
839
+ - What are "Biologics"? Genetically engineered proteins derived from human genes, designed to inhibit specific components of the immune system, especially those that play a role in inflammation.
840
+ - In cell biology, what means "Photobleaching"? Photobleaching is the photochemical destruction of a fluorophore.
841
+ - Welches Protein dissoziiert vSNARE/tSNARE Komplex? NSF (unter ATP Verbrauch).
842
+ - What are "spheroid cells"? This is a 3D cell culture method where a small aggregate of cells grows free of foreign materials.
843
+ - Was sind MDCK Zellen? Madin-Darby canine kidney cells.
844
+ - Which class of enzymes trigger the events in the cell cycle? Kinases.
845
+ - Eine bakterielle Zelle hat wieviele Moleküle ATP? 1 Million.
846
+ - What is the job of the "satellite muscle cells"? They repair injured muscle cells. Satellite cells can self-renew and proliferate, thus providing new myogenic cells.
847
+ - Wie sind die Mikrotubuli in einer nicht-polarisierten Zelle verteilt? Die Plus-Enden befinden sich nahe an der Zellmembran, die Minus-Enden eher in der Mitte der Zelle.
848
+ - Was sind "Kinozilien"? Das sind Wimpern beim z. Bsp. Wimpertierchen.
849
+ - Was ist die "Glykokalyx"? Die Gesamtheit der Zuckerketten an der extrazellulären Zelloberfläche.
850
+ - Was ist ein "Tendinozyt"? Ein Tendinozyt ist eine Fibroblastenart, die im straffen kollagenen parallelfaserigen Bindegewebe von Sehnen vorkommt.
851
+ - Wer stellte die <one>Zelltheorie</one> auf? <one>Matthias Schleiden</one> und <one>Theodor Schwann</one>.
852
+ - In Cell Biology, what is a "Retromer"? A complex of proteins that has been shown to be important in recycling transmembrane receptors from the endosomes to the trans-Golgi network.
853
+ - In der Zellbiologie ist eine Darmepithelzelle ein Beispiel für eine "polarisierte Zelle". Welche 3 Seiten können wir hier unterscheiden? (1) Apikal (2) Lateral (3) Basal
854
+ - What is the RNA component of SRP? The 7SL-RNA.
855
+ - What is the purpose of a "caveole"? It protects cells from stretching.
856
+ - What is a "Chromocyte"? Any cell that contains a pigment, especially red blood cells. URL: https://en.wiktionary.org/wiki/chromocyte
857
+ - What is "crinophagy"? The direct fusion of lysosomes with secretory vesicles.
858
+ - How is the pH of Lysosomes maintained? By the vacuolar adenosine triphosphatase proton pump.
859
+ - In induction of autophagy, who normally inhibits Atg1? TOR kinase.
860
+ - Nenne 3 verschiedene Plastid-Typen in alphabetischer Reihenfolge. A: (1) Chloroplasten (2) Chromoplasten (3) Leukoplasten
861
+ - Rab6 Proteins haben was für eine Aufgabe? They direct a vesicle to specific spots on the correct target membrane.
862
+ - Welche 2 Formen des Co-Transport gibt es für eine Zelle? (1) Symport (2) Antiport
863
+ - Nenne 3 konkrete Funktionen des glatten ER. A: (1) Synthese von Lipiden (2) Kohlenhydratstoffwechsel (3) Detoxifizierung von Giften
864
+ - What is "autophagy"? Degradation of intracellular substrates.
865
+ - Eine menschliche Pankreaszelle hat wieviele Ribosomen? Einige Millionen.
866
+ - What do we mean with the word "Autophagy"? Autophagy is a cellular, catabolic mechanism that involves cell degradation of unnecessary cellular components through the actions of lysosomes.
867
+ - Was bedeutet "primäre Endocytobiose"? Das Aufnehmen eines Prokaryoten und dessen Reduktion auf die Stufe eines Organells im Laufe der Evolution. Wichtig bei der Mitochondrien und Chloroplasten-"Entstehung".
868
+ - In der Zellbiologie, was sind "reticulons"? Reticulons sind membranständige Proteine, die das tubuläre endoplasmic reticulum (ER) bilden.
869
+ - In cell Biology, what means "Transfection"? The process of deliberately introducing nucleic acids into cells.
870
+ - Was ist "Endocytose"? Die Aufnahme von Flüssigkeit sowie großen und kleineren Molekülen in eine eukaryotische Zelle (nicht bei Prokaryoten)
871
+ - Warum besitzen Archaea Etherbindungen? Da Esterbindungen, wie in Bacteria und Eukaryoten, unter extremen Bedingungen rasch hydrolysieren würden.
872
+ - Was geschieht beim Spindel-Checkpoint? Es wird überprüft ob alle Chromosomen an Spindeln angehängt sind.
873
+ - Was ist die sogenannte "korpuskuläre Absorption"? (1) Phagocytose (2) Pinocytose (3) Endocytose
874
+ - Ionenkanäle können kontrolliert werden. Nenne 3 Möglichkeiten. A: (1) spannungskontrolliert (2) ligandenkontrolliert (Transmitter, Ionen, Nukleotide) (3) mechanisch kontrolliert
875
+ - What are "cathepsins" and where are they activated? Cathepsins are Proteases which become activated at the low pH found in Lysosomes.
876
+ - What is a "Ionophore"? This is a lipid-soluble molecule usually synthesized by microorganisms, able to transport ions across the lipid bilayer of the cell membrane.
877
+ - In der Zellbiologie, was ist "Vimentin"? Vimentin ist ein Typ 3 Intermediärfilament das eine wichtige Rolle bei der Verankerung von Organellen im Cytosol spielt.
878
+ - Nenne etwas bemerkenswertes bei Mikrotubuli und Genexpression? Mikrotubuli besteht aus 2 Untereinheiten. Diese Untereinheiten werden gekoppelt exprimiert.
879
+ - In cellbiology, related to G proteins, what are the "RGS"? RGS are "Regulators of G protein signaling". They can activate GTPases for heterotrimeric G-protein alpha-subunits.
880
+ - Human CDKs have a modified ATP-binding site that can be regulated by ... ? It can be regulated by "cyclin binding".
881
+ - Ein "Lariat" hat was für eine Struktur genau? Zirkuläre RNA mit 3-Strich OH-Gruppe-
882
+ - A. W. für "cyclin-dependent kinase inhibitor 1"? p21.
883
+ - What functions do the "Synaptotagmins" have? They function as calcium sensors in the regulation of neurotransmitter release and hormone secretion.
884
+ - Wie können wir beweisen das sich Membranproteine lateral in der Membran bewegen können? Indem wir humane und Maus-Zellen fusionieren. Es kommt dadurch zum Durchmischen artspezifischer Proteine.
885
+ - Define "transmembrane proteins". A: These are proteins that span the lipid bilayer.
886
+ - What is "Transcytosis"? Transcytosis is the process by which various macromolecules are transported across / through the interior of a cell.
887
+ - Give 3 examples for G-protein-coupled receptors! A: (1) muscarinic receptor (2) adrenergic receptor (3) opioid receptor
888
+ - Which 3 components can we find in the ABC transport system? (1) substrate-binding protein (2) membrance-integrated transporter (3) ATP-hydrolyzing protein
889
+ - In der Zellbiologie, welche Rolle spielen "multivesicular bodies"? Sie spielen eine Rolle beim Transport von ubiquitinierten Proteinen und Rezeptoren in ein Lysososome.
890
+ - Die MPF (Mitosis-promoting factor) wird wann und wie aktiviert? MPF wird am Ende der G2-Phase durch eine Phosphatase aktiviert, die eine hemmende (inhibitory) Phosphat-Gruppe entfernt.
891
+ - In cellbiology, name a classic model of "motor functions". A: Skin pigmentation in fish.
892
+ - cdc42 belongs to which family? The Rho family.
893
+ - Give two hormone-examples for vesicular proteins. A: (1) insulin (2) erythropoietin (EPO)
894
+ - What is a "Heteroplasmon"? This is an eukaryotic cell in which both wild-type and mutant organelle DNA coexist. Sometimes also called a cytohet. URL: https://en.wikipedia.org/wiki/Cytohet
895
+ - Warum sind "vesicles" für die Zelle so wichtig? Weil sie damit Moleküle zwischen Organellen und dem Aussenmilieu verschicken kann.
896
+ - In der Zellbiologie, was ist das "Retromer"? Das Retromer ist ein Komplex an Proteinen die wichtig sind für die Wiederverwendung von "transmembrane receptors", von Endosomen hin zum trans-Golgi network (TGN).
897
+ - What is the main signal for protein delivery into lysosomes via endosomes? The Mannose 6-Phosphate Receptor (MPR).
898
+ - Das Medikament Eribulin bindet woran? An das + Ende wachsender Mikrotubuli.
899
+ - The GTP bound to Beta-tubulin may be hydrolyzed to GDP shortly after assembly. What is the effect of this? New dimers are added to the Tubulin-Structure.
900
+ - Mitochondrial division is coordinated with? DNA Replication of the Mitochondria.
901
+ - In der Zellbiologie, was besagt das "cisternal maturation hypothesis"? Eendoplasmic reticulum ER-derived membranes nucleate new Golgi cisternae.
902
+ - Can cells pick up other cells through endocytosis? Yes.
903
+ - What is "exocytosis"? This is an energy-using process by which a cell directs the contents of secretory vesicles into its extracellular space.
904
+ - Name 3 functions of autophagy. A: (1) starvation (recycling of nutrients) (2) protein aggregation (neurodegenerative importance) (3) damaged organelles
905
+ - Name one important but unusual environmental cue for a cell in a multicellular organism. A: Signals from the other cells.
906
+ - Zellulär betrachtet, was heisst "Atg8" und warum ist Atg8 wichtig? Atg8 heisst "Autophagy-related protein 8". Es ist ein ubiquitin-like Protein, das für die Bildung von autophagosomalen Membranen wichtig ist. Die Konjugation von Atg8 an die autophagosomale Membran ist für die Autophagie in Eukaryoten essenziell.
907
+ - In cell biology, what is the "kiss of death"? The addition of Ubuiqitin to proteins. This addition often commits the labelled protein to degradation in the 26-S proteasome.
908
+ - Was bedeutet der Name bei "I-cell disease"? Inclusion-cell disease.
909
+ - Welche Kategorie sind I-Cell diseases? lysosomal storage diseases.
910
+ - In cell biology, in the chaperone-mediated variant of autophagy pathway, which complex is the most important one? The hsc70-containing complex.
911
+ - Which three main pathways are involved in autophagy? (1) Macroautophagy (2) Microautophagy (3) Chaperone-mediate autophagy (CMA)
912
+ - Eps15 in der Zelle ist ein "multifunctional adaptor protein". Welche Aufgabe hat dies? Reguliert "intracellular trafficking".
913
+ - Welche biologische Aufgabe hat das cis-Golgi network? It receives the biosynthetic output from the ER.
914
+ - In der Autophagie bei der Zellbiologie, was heisst "PAS"? Phagosome assembly site.
915
+ - What are "early endosomes"? Bubbles that exist directly after being pinched off. They are mildly acidic, so not much degradation has yet taken place. As the early endosome migrates deeper into the cell, it becomes more and more acidic and evolves into a late endosome.
916
+ - Within a cell, ArfGAP1 contains motifs which specifically bind to ...? Small liposomes.
917
+ - Within a cell, what happens if a protein loses its KDEL Sequence? It can no longer be retained within the ER.
918
+ - ARF-GAP1 ist was für ein Proteintyp? Ein GAP (GTPase-activating protein)
919
+ - Anderes, schöneres Wort für "Pigments"? Rainbow catchers.
920
+ - Welche Funktion haben Intermediärfilamente? Gib Beispiele für Intermediärfilamente. A: Intermediärfilamente dienen der "Erhöhung der mechanischen Stabilität der Zelle". Sie haben einen Durchmesser von 10 nm und liegen somit zwischen Aktinfilamenten (7 nm) und Mikrotubuli (25 nm). Intermediärfilamente bilden mit Mikrotubuli und Aktinfilamenten das Cytoskelett der Zelle. "Desmine" und "Lamine" sind Beispiele für Intermediärfilamente.
921
+ - Nenne einen Unterschied zwischen Mitosis und Meiosis. A: Die Produkte der Meiosis sind haploid.
922
+ - Wieso braucht die Zelle "Ribose-5-phosphat"? Zur Synthese von RNA und DNA.
923
+ - Welche 3 Aussagen trifft die erweiterte Cell Theory von Robert Hooke? (1) All organisms are composed of cells. (2) Cells are the smallest living things. (3) Cells arise only from pre-existing cells.
924
+ - G-Proteine besitzen 3 Untereinheiten. Wie können wir experimentell die Alpha-Untereinheit dauerhaft binden und somit einen Effektor blockieren oder dauerhaft aktivieren? Durch Gabe von schwefelsubstituiertem GTP.
925
+ - Wann setzt die Zelle das Enzym "Glutamine Synthetase" ein? Wenn die NH3-Konzentration niedrig ist.
926
+ - 5-Methylcytosin ist methyliert, und kann über eine Oxidation in welche 3 anderen Nukleotide konvertiert werden? (1) 5-Hydroxymethylcytosin (hmC) (2) 5-Strich-Formylcytosin (fC) (3) 5-Strich-Carboxycytosin (caC)
927
+ - Durchmesser eines Nucleosoms? 11 nm.
928
+ - DnaA-Protein can be activated by which molecule? ATP.
929
+ - Innerhalb der Zelle, wo spielen Actinfilamente eine Rolle? Sie bilden dynamische Netze unterhalb der Zellmembran.
930
+ - Welche Aufgabe hat der ComEC Complex? Der ComEC Komplex macht einen Channel (wichtig für die Kompetenz).
931
+ - In der Zellbiologie, was genau heisst "Caspase"? Cysteinyl-aspartat-spezifische Proteinase.
932
+ - Name one general way to inhibit translation. A: The use of microRNA.
933
+ - In der Zellbiologie, was ist 3D5? Eine "tetracycline inducible transfectant cell line".
934
+ - Griseofulvin wirkt wie? Es hemmt den Spindelapparat der Zelle, indem es an Tubulin bindet.
935
+ - Wie gross kann eine aerobe Zelle werden? So gross das sie gerade noch Sauerstoff aufnehmen und verteilen kann.
936
+ - Wie funktioniert der Import von Proteinen in das Mitochondrium? Mitochondrien haben Rezeptoren, die bestimmte Signalsequenzen binden können.
937
+ - Wo finde ich innerhalb einer Zelle "Phosphoanhydride"? In ATP-Molekülen.
938
+ - Wie wird die PKA aktiviert? Über cAMP.
939
+ - Der Mensch hat wieviele Zellen? 10 ** 14.
940
+ - Pro Sekunde produziert ein erwachsener Mensch wieviele Erythrocyten? 33.000
941
+ - A. W. für Nucleotide? Nucleoside-5-Prime-Phosphate.
942
+ - Theodor Engelmann used which organism in his photosynthesis experiment? "Cladophora engelmann".
943
+ - Was sind die Elektronenüberträger innerhalb der Zelle? NAD/H + NADP/H
944
+ - Gib ein Beispiel für eine Serin/Threoninkinase. A: Proteinkinase A.
945
+ - Was ist die "H & E Färbung"? Hämatolysin + Eosin.
946
+ - Was sagt uns "p38" oder "p53" oder "p88" in der Biochemie? Relative molecule mass of 38K or 53K or 88K.
947
+ - What are "sad cells"? Cells in culture that die after some weeks.
948
+ - Wann genau bildet sich der synaptonemale Komplex? Im Zygotän.
949
+ - Nenne die 3 Typen von Membranrezeptoren. A: (1) G-Protein gekoppelte Rezeptoren (2) Rezeptortyrosinkinasen (3) Liganden-gesteuerte Ionenkanäle.
950
+ - Was ist ein RNA-Thermosensor? Eine RNA die mittels Veränderung ihrer Sekundärstruktur Temperatur "messen" kann.
951
+ - Nenne einen Marker in "smooth muscle cells". A: Calponin.
952
+ - Wo befindet sich der Golgi-Apparat und welche Aufgabe hat er? Der Golgi-Apparat befindet sich in der Nähe des ER. Er ist für die Modifizierung und Sortierung von Proteinen verantwortlich.
953
+ - Welche 2 Enzyme konvertieren dUTP zu dTTP? (1) Phosphatase (2) Kinase.
954
+ - Wieso werden Sterole in die Zellmembran eingebettet und welches Dilemma haben manche Prokaryoten hier? Um sie zu verstärken. Manche Prokaryoten können diese Sterole nicht selbst synthetisieren und nehmen sie aus der Umgebung auf.
955
+ - Wie nennt man die Verschmelzung verschiedenartiger Genome in einer Zelle? Intertaxonische Kombination. (Solche Organismen sind aus genetischer Sicht Chimären).
956
+ - A. W. für "Oberfläche einer Zelle"? Cytoplasmamembran.
957
+ - In der Zelle, wie wird dGTP hergestellt? Ausgehend aus der GDP-Ribose, über die Ribonucleotide Reduktase, hin zu dGDP, danach fügt eine Kinase ein P hinzu und es entsteht dGTP.
958
+ - ATPase hat F0 und F1 Teil. Welcher Teil ist der katalytisch wirkende Teil? F1.
959
+ - Is robustness in biological systems always a good thing? No. A robust cancer cell is not a good thing for the patient!
960
+ - Was kann man mit "Inhibitors" und "Uncouplers" demonstrieren? Den Elektronenfluss durch Zellkomplexe wie ATPase.
961
+ - Definiere Heterotrophy. A: At least two genetically different types of mitochondria (or other organelles) are present in the same cell.
962
+ - Das Glykoproteinhormon EPO hat n AA? 165.