studium 0.13.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 (871) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +2785 -0
  3. data/bin/ask_exam_question +7 -0
  4. data/bin/check_description_of_these_lectures +7 -0
  5. data/bin/curriculum_module_displayer +7 -0
  6. data/bin/cycle +7 -0
  7. data/bin/d10 +7 -0
  8. data/bin/d100 +7 -0
  9. data/bin/d15 +7 -0
  10. data/bin/d20 +7 -0
  11. data/bin/d25 +7 -0
  12. data/bin/d3 +7 -0
  13. data/bin/d30 +7 -0
  14. data/bin/d5 +7 -0
  15. data/bin/determine_curricula +7 -0
  16. data/bin/display_lecture_url +7 -0
  17. data/bin/exam_registration_at +7 -0
  18. data/bin/exam_statistics +7 -0
  19. data/bin/exams_per_month +9 -0
  20. data/bin/finished_exams_at_this_university +7 -0
  21. data/bin/flashcards +7 -0
  22. data/bin/from_curriculum_id_to_university +9 -0
  23. data/bin/location_to_this_exam_topic.rb +7 -0
  24. data/bin/mandatory_continuous_assessment +7 -0
  25. data/bin/mandatory_upcoming_courses +7 -0
  26. data/bin/n_ECTS +7 -0
  27. data/bin/n_exam_questions_already_answered +16 -0
  28. data/bin/nquestions +7 -0
  29. data/bin/nsolved +7 -0
  30. data/bin/open_last_exam_question_asked_file +7 -0
  31. data/bin/passed_exams +7 -0
  32. data/bin/passed_pr/303/274fungsimmanente_courses +7 -0
  33. data/bin/pdf_for +7 -0
  34. data/bin/random_exam_topic +7 -0
  35. data/bin/report_solved_topics +7 -0
  36. data/bin/return_n_ects_from_this_file +7 -0
  37. data/bin/search_for_n_ects +7 -0
  38. data/bin/show_lectures_on_the_commandline +7 -0
  39. data/bin/show_themes +7 -0
  40. data/bin/solved +9 -0
  41. data/bin/solved_ects +7 -0
  42. data/bin/studienkennzahl +7 -0
  43. data/bin/studium +7 -0
  44. data/bin/studium_skeleton +7 -0
  45. data/bin/ufind +7 -0
  46. data/bin/upcoming_exams +7 -0
  47. data/bin/week_parser +7 -0
  48. data/doc/ECTS_CONSIDERATIONS.md +81 -0
  49. data/doc/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER.md +44 -0
  50. data/doc/README.gen +2742 -0
  51. data/doc/SQL_database_specification.md +46 -0
  52. data/doc/deprecated_components.md +24 -0
  53. data/doc/documentation_for_the_file_lecture_information.md +311 -0
  54. data/doc/elegant_colours.md +21 -0
  55. data/doc/todo/TODO_FOR_STUDIUM_GEM.md +112 -0
  56. data/doc/todo/TODO_FOR_THE_GRAPHICAL_PARTS_OF_THE_STUDIUM_GEM_INCLUDING_WWW_RELATED_ASPECTS.md +35 -0
  57. data/img/STUDIES.png +0 -0
  58. data/lib/studium/autoinclude.rb +7 -0
  59. data/lib/studium/base/base.rb +2710 -0
  60. data/lib/studium/base/prototype.rb +543 -0
  61. data/lib/studium/c/README.md +2 -0
  62. data/lib/studium/c/a.out +0 -0
  63. data/lib/studium/c/obtain_random_entry.c +11 -0
  64. data/lib/studium/check_and_sanitize/README.md +11 -0
  65. data/lib/studium/check_and_sanitize/check_curriculum_for_correct_separation_of_bachelor_and_master.rb +141 -0
  66. data/lib/studium/check_and_sanitize/check_for_all_exam_topics_being_registered.rb +110 -0
  67. data/lib/studium/check_and_sanitize/check_for_correct_themes_of_each_course.rb +90 -0
  68. data/lib/studium/check_and_sanitize/check_for_existing_description_of_this_lecture.rb +189 -0
  69. data/lib/studium/check_and_sanitize/check_the_lecture_information_file.rb +163 -0
  70. data/lib/studium/check_and_sanitize/find_duplicate_lectures.rb +115 -0
  71. data/lib/studium/check_and_sanitize/missing_priority_entry.rb +44 -0
  72. data/lib/studium/check_and_sanitize/sanitize_this_string_containing_the_lva_dates.rb +79 -0
  73. data/lib/studium/colours/colours.rb +549 -0
  74. data/lib/studium/colours/sfancy.rb +46 -0
  75. data/lib/studium/colours/sfile.rb +35 -0
  76. data/lib/studium/colours/simp.rb +40 -0
  77. data/lib/studium/colours/use_colours.rb +39 -0
  78. data/lib/studium/colours/use_this_colour_for_exam_questions_and_exam_answers.rb +80 -0
  79. data/lib/studium/commandline/commandline.rb +932 -0
  80. data/lib/studium/commandline/menu.rb +903 -0
  81. data/lib/studium/constants/colours.rb +14 -0
  82. data/lib/studium/constants/constants.rb +2142 -0
  83. data/lib/studium/constants/image_constants.rb +217 -0
  84. data/lib/studium/constants/web_constants.rb +25 -0
  85. data/lib/studium/css/project.css +267 -0
  86. data/lib/studium/curricula/curriculum.rb +210 -0
  87. data/lib/studium/curricula/curriculum_as_string.rb +280 -0
  88. data/lib/studium/curricula/curriculum_module_displayer/constants.rb +33 -0
  89. data/lib/studium/curricula/curriculum_module_displayer/curriculum_module_displayer.rb +417 -0
  90. data/lib/studium/curricula/curriculum_module_displayer/initialize.rb +25 -0
  91. data/lib/studium/curricula/curriculum_module_displayer/menu.rb +45 -0
  92. data/lib/studium/curricula/curriculum_module_displayer/reset.rb +74 -0
  93. data/lib/studium/curricula/curriculum_module_displayer/run.rb +20 -0
  94. data/lib/studium/curricula/curriculum_module_displayer/set_use_this_curriculum.rb +93 -0
  95. data/lib/studium/curricula/curriculum_module_displayer/show_and_report.rb +190 -0
  96. data/lib/studium/curricula/determine_curricula/constants.rb +11 -0
  97. data/lib/studium/curricula/determine_curricula/determine_curricula.rb +36 -0
  98. data/lib/studium/curricula/determine_curricula/help.rb +39 -0
  99. data/lib/studium/curricula/determine_curricula/initialize.rb +48 -0
  100. data/lib/studium/curricula/determine_curricula/menu.rb +151 -0
  101. data/lib/studium/curricula/determine_curricula/misc.rb +403 -0
  102. data/lib/studium/curricula/determine_curricula/report.rb +143 -0
  103. data/lib/studium/curricula/determine_curricula/reset.rb +59 -0
  104. data/lib/studium/curricula/determine_curricula/run.rb +19 -0
  105. data/lib/studium/curricula/determine_elective_courses_in_this_curriculum.rb +112 -0
  106. data/lib/studium/curricula/display_bachelor_curricula.rb +90 -0
  107. data/lib/studium/curricula/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.rb +324 -0
  108. data/lib/studium/curricula/modules/display_on_the_commandline.rb +319 -0
  109. data/lib/studium/curricula/modules/return_n_ects_in_this_module.rb +75 -0
  110. data/lib/studium/curricula/n_percent_solved_in_this_curriculum.rb +75 -0
  111. data/lib/studium/curricula/prepare_individual_curriculum.rb +304 -0
  112. data/lib/studium/curricula/random_curriculum_creator/random_curriculum_creator.rb +163 -0
  113. data/lib/studium/curricula/show_lectures_of_this_curriculum.rb +114 -0
  114. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/constants.rb +11 -0
  115. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/initialize.rb +27 -0
  116. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/menu.rb +35 -0
  117. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/misc.rb +264 -0
  118. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/report.rb +163 -0
  119. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/reset.rb +64 -0
  120. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/show_lectures_of_this_curriculum_id.rb +38 -0
  121. data/lib/studium/curricula/show_solved_percentage_among_the_registered_curricula.rb +87 -0
  122. data/lib/studium/ects/boku_ects_splitter.rb +128 -0
  123. data/lib/studium/ects/ects_per_university.rb +179 -0
  124. data/lib/studium/ects/ects_scanner.rb +141 -0
  125. data/lib/studium/ects/ects_to_university_parser.rb +142 -0
  126. data/lib/studium/ects/last_entry_is_curriculum.rb +150 -0
  127. data/lib/studium/ects/n_ects_in_these_lectures.rb +196 -0
  128. data/lib/studium/ects/n_ects_points_in_mandatory_presence_courses.rb +50 -0
  129. data/lib/studium/ects/return_n_ects_from_this_file.rb +59 -0
  130. data/lib/studium/ects/return_n_ects_from_this_url.rb +196 -0
  131. data/lib/studium/ects/search_for_n_ects.rb +614 -0
  132. data/lib/studium/ects/show_completed_ects_in_all_curricula.rb +191 -0
  133. data/lib/studium/ects/show_passed_credits_per_curriculum.rb +276 -0
  134. data/lib/studium/ects/simple_total_ects_points.rb +135 -0
  135. data/lib/studium/ects/solved_ects/constants.rb +19 -0
  136. data/lib/studium/ects/solved_ects/reset.rb +51 -0
  137. data/lib/studium/ects/solved_ects/solved_ects.rb +325 -0
  138. data/lib/studium/ects/solved_ects_per_university/reset.rb +25 -0
  139. data/lib/studium/ects/solved_ects_per_university/solved_ects_per_university.rb +106 -0
  140. data/lib/studium/ects/still_missing.rb +129 -0
  141. data/lib/studium/ects/sum_of_ects.rb +144 -0
  142. data/lib/studium/encoding/encoding.rb +108 -0
  143. data/lib/studium/exam_topics/RNAi_siRNA_and_miRNA +86 -0
  144. data/lib/studium/exam_topics/abfall_als_ressource +86 -0
  145. data/lib/studium/exam_topics/advanced_biochemistry +781 -0
  146. data/lib/studium/exam_topics/advanced_biotechnology +214 -0
  147. data/lib/studium/exam_topics/advanced_cellbiology +27 -0
  148. data/lib/studium/exam_topics/advanced_chemistry +504 -0
  149. data/lib/studium/exam_topics/advanced_microbiology +43 -0
  150. data/lib/studium/exam_topics/advanced_topics_in_plant_sciences +85 -0
  151. data/lib/studium/exam_topics/advanced_virology +218 -0
  152. data/lib/studium/exam_topics/ageing +114 -0
  153. data/lib/studium/exam_topics/agrar_ecology +63 -0
  154. data/lib/studium/exam_topics/agrarmarkt +71 -0
  155. data/lib/studium/exam_topics/agrarphysik +35 -0
  156. data/lib/studium/exam_topics/alcohols +29 -0
  157. data/lib/studium/exam_topics/algorithms +52 -0
  158. data/lib/studium/exam_topics/allergie +75 -0
  159. data/lib/studium/exam_topics/allgemeine_genetik +1006 -0
  160. data/lib/studium/exam_topics/allgemeine_mikrobiologie +946 -0
  161. data/lib/studium/exam_topics/aminoacids +438 -0
  162. data/lib/studium/exam_topics/analytische_chemie_1 +132 -0
  163. data/lib/studium/exam_topics/analytische_chemie_2 +31 -0
  164. data/lib/studium/exam_topics/anatomie +290 -0
  165. data/lib/studium/exam_topics/anorganische_chemie +311 -0
  166. data/lib/studium/exam_topics/anthropologie +116 -0
  167. data/lib/studium/exam_topics/antibodies_and_antigens +764 -0
  168. data/lib/studium/exam_topics/apoptosis +35 -0
  169. data/lib/studium/exam_topics/archaea +60 -0
  170. data/lib/studium/exam_topics/architecture +8 -0
  171. data/lib/studium/exam_topics/artificial_intelligence +81 -0
  172. data/lib/studium/exam_topics/atomemissionsspektrometrie +6 -0
  173. data/lib/studium/exam_topics/audio +11 -0
  174. data/lib/studium/exam_topics/bacteriophages +240 -0
  175. data/lib/studium/exam_topics/basic_biochemistry +1002 -0
  176. data/lib/studium/exam_topics/basic_biotechnology +1001 -0
  177. data/lib/studium/exam_topics/basic_chemistry +1007 -0
  178. data/lib/studium/exam_topics/basic_virology +1008 -0
  179. data/lib/studium/exam_topics/bauwesen +6 -0
  180. data/lib/studium/exam_topics/betriebssysteme +126 -0
  181. data/lib/studium/exam_topics/betriebswirtschaftslehre +29 -0
  182. data/lib/studium/exam_topics/bioanalytik_und_biosensoren +382 -0
  183. data/lib/studium/exam_topics/biochips +78 -0
  184. data/lib/studium/exam_topics/bioelektrochemie +57 -0
  185. data/lib/studium/exam_topics/biofilms +22 -0
  186. data/lib/studium/exam_topics/bioinformatics +503 -0
  187. data/lib/studium/exam_topics/biological_therapeutics +153 -0
  188. data/lib/studium/exam_topics/biologie +137 -0
  189. data/lib/studium/exam_topics/biomarkers +106 -0
  190. data/lib/studium/exam_topics/biomaterials +89 -0
  191. data/lib/studium/exam_topics/biomembranes +6 -0
  192. data/lib/studium/exam_topics/bionik +65 -0
  193. data/lib/studium/exam_topics/biophysik +34 -0
  194. data/lib/studium/exam_topics/biopolymers +10 -0
  195. data/lib/studium/exam_topics/bioprozesstechnik +149 -0
  196. data/lib/studium/exam_topics/bioressourcenmanagement +78 -0
  197. data/lib/studium/exam_topics/bodenkunde +373 -0
  198. data/lib/studium/exam_topics/bodenmikrobiologie +40 -0
  199. data/lib/studium/exam_topics/cancerbiology +442 -0
  200. data/lib/studium/exam_topics/cell_cultures +155 -0
  201. data/lib/studium/exam_topics/cellbiology +995 -0
  202. data/lib/studium/exam_topics/cellular_transport_and_protein_secretion +27 -0
  203. data/lib/studium/exam_topics/cellulose +6 -0
  204. data/lib/studium/exam_topics/chemische_technologie_anorganischer_stoffe +209 -0
  205. data/lib/studium/exam_topics/chemische_technologie_organischer_stoffe +25 -0
  206. data/lib/studium/exam_topics/chemisches_labor +60 -0
  207. data/lib/studium/exam_topics/chemotaxis_and_motility_in_prokaryotes +87 -0
  208. data/lib/studium/exam_topics/citric_acid_cycle +80 -0
  209. data/lib/studium/exam_topics/clinical_microbiology +492 -0
  210. data/lib/studium/exam_topics/computer_graphics +5 -0
  211. data/lib/studium/exam_topics/computer_science +280 -0
  212. data/lib/studium/exam_topics/crispr +28 -0
  213. data/lib/studium/exam_topics/cyanobacteria +42 -0
  214. data/lib/studium/exam_topics/cytogenetics_and_chromosome_biology +551 -0
  215. data/lib/studium/exam_topics/cytokines +5 -0
  216. data/lib/studium/exam_topics/databases_and_sql +106 -0
  217. data/lib/studium/exam_topics/dna_mutation_and_dna_repair +35 -0
  218. data/lib/studium/exam_topics/dna_replication +56 -0
  219. data/lib/studium/exam_topics/ecogenetics +26 -0
  220. data/lib/studium/exam_topics/ecological_agriculture +12 -0
  221. data/lib/studium/exam_topics/ecology +314 -0
  222. data/lib/studium/exam_topics/economy +211 -0
  223. data/lib/studium/exam_topics/elektronenmikroskopie +354 -0
  224. data/lib/studium/exam_topics/elektrophorese +89 -0
  225. data/lib/studium/exam_topics/elektrotechnik_und_elektrizit/303/244t +41 -0
  226. data/lib/studium/exam_topics/elisa +54 -0
  227. data/lib/studium/exam_topics/embryologie_und_entwicklung +547 -0
  228. data/lib/studium/exam_topics/endospores_and_spores +104 -0
  229. data/lib/studium/exam_topics/enzymes_and_cofactors +345 -0
  230. data/lib/studium/exam_topics/epigenetik +179 -0
  231. data/lib/studium/exam_topics/ethik +138 -0
  232. data/lib/studium/exam_topics/evolution_and_evolutionary_genetics +328 -0
  233. data/lib/studium/exam_topics/excel +7 -0
  234. data/lib/studium/exam_topics/fish +19 -0
  235. data/lib/studium/exam_topics/fluorescence_microscopy +7 -0
  236. data/lib/studium/exam_topics/food_microbiology_and_food_biotechnology +71 -0
  237. data/lib/studium/exam_topics/forensik +11 -0
  238. data/lib/studium/exam_topics/forstwirtschaft +53 -0
  239. data/lib/studium/exam_topics/fortgeschrittene_genetik +511 -0
  240. data/lib/studium/exam_topics/fortgeschrittene_gentechnik +211 -0
  241. data/lib/studium/exam_topics/fortgeschrittene_physik +6 -0
  242. data/lib/studium/exam_topics/fungi +79 -0
  243. data/lib/studium/exam_topics/genetische_krankheiten +176 -0
  244. data/lib/studium/exam_topics/genexpression +1008 -0
  245. data/lib/studium/exam_topics/genomics_and_metagenomics +244 -0
  246. data/lib/studium/exam_topics/gentechnik_und_praktische_biochemie +901 -0
  247. data/lib/studium/exam_topics/geochemistry +67 -0
  248. data/lib/studium/exam_topics/geography +8 -0
  249. data/lib/studium/exam_topics/geologie_und_mineralogie +621 -0
  250. data/lib/studium/exam_topics/geometrie +47 -0
  251. data/lib/studium/exam_topics/geschichte +93 -0
  252. data/lib/studium/exam_topics/gluconeogenesis +59 -0
  253. data/lib/studium/exam_topics/glycogen +25 -0
  254. data/lib/studium/exam_topics/glycolysis +109 -0
  255. data/lib/studium/exam_topics/glykomik +100 -0
  256. data/lib/studium/exam_topics/glyoxylatzyklus +31 -0
  257. data/lib/studium/exam_topics/grassland_cultivation +32 -0
  258. data/lib/studium/exam_topics/hormone +134 -0
  259. data/lib/studium/exam_topics/html +7 -0
  260. data/lib/studium/exam_topics/human_ecology +8 -0
  261. data/lib/studium/exam_topics/hygiene +191 -0
  262. data/lib/studium/exam_topics/imaging_and_microscopy +241 -0
  263. data/lib/studium/exam_topics/immunanalytik +94 -0
  264. data/lib/studium/exam_topics/immunologie +982 -0
  265. data/lib/studium/exam_topics/informatik +97 -0
  266. data/lib/studium/exam_topics/innate_immunity +22 -0
  267. data/lib/studium/exam_topics/insekten +57 -0
  268. data/lib/studium/exam_topics/insulin_and_diabetes +57 -0
  269. data/lib/studium/exam_topics/java +502 -0
  270. data/lib/studium/exam_topics/javascript +12 -0
  271. data/lib/studium/exam_topics/klima +6 -0
  272. data/lib/studium/exam_topics/kryptographie +5 -0
  273. data/lib/studium/exam_topics/landtechnik +26 -0
  274. data/lib/studium/exam_topics/lebensmittel +208 -0
  275. data/lib/studium/exam_topics/lebensmitteltechnologie +16 -0
  276. data/lib/studium/exam_topics/linux +5 -0
  277. data/lib/studium/exam_topics/lipids +94 -0
  278. data/lib/studium/exam_topics/macroeconomics +40 -0
  279. data/lib/studium/exam_topics/mathematics +254 -0
  280. data/lib/studium/exam_topics/medizin_und_biomedizinische_technik +250 -0
  281. data/lib/studium/exam_topics/medizinische_chemie_und_pharmazie +398 -0
  282. data/lib/studium/exam_topics/messtechnik_und_regeltechnik +104 -0
  283. data/lib/studium/exam_topics/metabolismus +406 -0
  284. data/lib/studium/exam_topics/microbial_ecology +35 -0
  285. data/lib/studium/exam_topics/microcontrollers +11 -0
  286. data/lib/studium/exam_topics/mikrobielle_lebensgemeinschaften +33 -0
  287. data/lib/studium/exam_topics/mikrobielle_physiologie +172 -0
  288. data/lib/studium/exam_topics/mitochondria +32 -0
  289. data/lib/studium/exam_topics/mixed +278 -0
  290. data/lib/studium/exam_topics/molecular_biology_of_plants +242 -0
  291. data/lib/studium/exam_topics/molekulare_medizin +131 -0
  292. data/lib/studium/exam_topics/nanotechnologie +453 -0
  293. data/lib/studium/exam_topics/nature_conservation_and_biodiversity +166 -0
  294. data/lib/studium/exam_topics/naturstoffe +9 -0
  295. data/lib/studium/exam_topics/netzwerke +32 -0
  296. data/lib/studium/exam_topics/neurobiology +267 -0
  297. data/lib/studium/exam_topics/nucleotide_sequencing +32 -0
  298. data/lib/studium/exam_topics/nutztierethologie +11 -0
  299. data/lib/studium/exam_topics/object_oriented_modeling +14 -0
  300. data/lib/studium/exam_topics/obstbau +234 -0
  301. data/lib/studium/exam_topics/organische_chemie +1007 -0
  302. data/lib/studium/exam_topics/organische_chemie_2 +118 -0
  303. data/lib/studium/exam_topics/paleobiology +35 -0
  304. data/lib/studium/exam_topics/parasitic_diseases_and_molecular_infection_biology +335 -0
  305. data/lib/studium/exam_topics/patent_law +55 -0
  306. data/lib/studium/exam_topics/pathologie +717 -0
  307. data/lib/studium/exam_topics/pcr +144 -0
  308. data/lib/studium/exam_topics/pentosephosphatweg +41 -0
  309. data/lib/studium/exam_topics/peroxisomes_glycosomes_and_lysosomes +54 -0
  310. data/lib/studium/exam_topics/pflanzenanatomie +255 -0
  311. data/lib/studium/exam_topics/pflanzenbau +24 -0
  312. data/lib/studium/exam_topics/pflanzenschutz +35 -0
  313. data/lib/studium/exam_topics/pflanzenwissenschaften +1009 -0
  314. data/lib/studium/exam_topics/pharmaceutical_biotechnology +250 -0
  315. data/lib/studium/exam_topics/physik +433 -1
  316. data/lib/studium/exam_topics/physikalische_chemie +86 -0
  317. data/lib/studium/exam_topics/physiology_and_histology +506 -0
  318. data/lib/studium/exam_topics/phytochemie +33 -0
  319. data/lib/studium/exam_topics/plant_biotechnology +128 -0
  320. data/lib/studium/exam_topics/plant_breeding +64 -0
  321. data/lib/studium/exam_topics/plant_development +50 -0
  322. data/lib/studium/exam_topics/populationsgenetik +136 -0
  323. data/lib/studium/exam_topics/posttranslationale_modifikation_von_proteinen +191 -0
  324. data/lib/studium/exam_topics/projektmanagement +219 -0
  325. data/lib/studium/exam_topics/prokaryote_genetics +531 -0
  326. data/lib/studium/exam_topics/protein_engineering +8 -0
  327. data/lib/studium/exam_topics/proteolyse +33 -0
  328. data/lib/studium/exam_topics/proteomik +40 -0
  329. data/lib/studium/exam_topics/prozesstechnik +95 -0
  330. data/lib/studium/exam_topics/psychologie +13 -0
  331. data/lib/studium/exam_topics/python +353 -0
  332. data/lib/studium/exam_topics/quality_management +256 -0
  333. data/lib/studium/exam_topics/rechtsgrundlagen +115 -0
  334. data/lib/studium/exam_topics/research_topics_in_immunobiology +42 -0
  335. data/lib/studium/exam_topics/rna_and_dna +395 -0
  336. data/lib/studium/exam_topics/rna_seq +11 -0
  337. data/lib/studium/exam_topics/ruby +146 -0
  338. data/lib/studium/exam_topics/ruby_on_rails +63 -0
  339. data/lib/studium/exam_topics/scientific_writing_and_publishing +38 -0
  340. data/lib/studium/exam_topics/semisynthese_von_proteinen_und_nukleotiden +120 -0
  341. data/lib/studium/exam_topics/sexualbiologie +62 -0
  342. data/lib/studium/exam_topics/signal_transduction_and_laser_systems +167 -0
  343. data/lib/studium/exam_topics/splicing_exons_and_introns +63 -0
  344. data/lib/studium/exam_topics/statistik +233 -0
  345. data/lib/studium/exam_topics/stemcells +158 -0
  346. data/lib/studium/exam_topics/stickstofffixierung +75 -0
  347. data/lib/studium/exam_topics/structural_bioinformatics +54 -0
  348. data/lib/studium/exam_topics/strukturbiologie +380 -0
  349. data/lib/studium/exam_topics/system_biology_and_synthetic_biology +101 -0
  350. data/lib/studium/exam_topics/systematische_zoologie +433 -0
  351. data/lib/studium/exam_topics/technical_ecology +144 -0
  352. data/lib/studium/exam_topics/technische_chemie +202 -0
  353. data/lib/studium/exam_topics/technische_grundlagen_der_informatik +26 -0
  354. data/lib/studium/exam_topics/technische_mikrobiologie +393 -0
  355. data/lib/studium/exam_topics/technisches_zeichnen +5 -0
  356. data/lib/studium/exam_topics/the_bacterial_cell_wall +97 -0
  357. data/lib/studium/exam_topics/the_c_plus_plus_programming_language +489 -0
  358. data/lib/studium/exam_topics/the_c_programming_language +129 -0
  359. data/lib/studium/exam_topics/the_cellcycle +81 -0
  360. data/lib/studium/exam_topics/the_european_union +119 -0
  361. data/lib/studium/exam_topics/the_interferon_system +38 -0
  362. data/lib/studium/exam_topics/the_microbiome +163 -0
  363. data/lib/studium/exam_topics/the_universe +12 -0
  364. data/lib/studium/exam_topics/theoretische_chemie +5 -0
  365. data/lib/studium/exam_topics/theoretische_informatik +157 -0
  366. data/lib/studium/exam_topics/tierzucht +94 -0
  367. data/lib/studium/exam_topics/toxikologie +408 -0
  368. data/lib/studium/exam_topics/transcription +82 -0
  369. data/lib/studium/exam_topics/translation_ribosomes_and_translational_control +142 -0
  370. data/lib/studium/exam_topics/umweltbiotechnologie +63 -0
  371. data/lib/studium/exam_topics/umweltchemie +233 -0
  372. data/lib/studium/exam_topics/urbanism_and_traffic +19 -0
  373. data/lib/studium/exam_topics/urea_cycle +55 -0
  374. data/lib/studium/exam_topics/vaccines_and_vaccination +242 -0
  375. data/lib/studium/exam_topics/vectors_and_gene_therapy +240 -0
  376. data/lib/studium/exam_topics/verfahrenstechnik +32 -0
  377. data/lib/studium/exam_topics/veterinary_medicine +10 -0
  378. data/lib/studium/exam_topics/vitamine +24 -0
  379. data/lib/studium/exam_topics/wasserkunde +137 -0
  380. data/lib/studium/exam_topics/weinbau +59 -0
  381. data/lib/studium/exam_topics/wissenschaft +18 -0
  382. data/lib/studium/exam_topics/yeast +102 -0
  383. data/lib/studium/exam_topics/zoologie +330 -0
  384. data/lib/studium/exams/afterburn/afterburn.rb +257 -0
  385. data/lib/studium/exams/ask_exam_from_the_upcoming_exams_pool.rb +150 -0
  386. data/lib/studium/exams/ask_exam_topic_question.rb +112 -0
  387. data/lib/studium/exams/ask_question_from_alias.rb +141 -0
  388. data/lib/studium/exams/ask_question_from_any_of_the_still_missing_lectures.rb +131 -0
  389. data/lib/studium/exams/ask_question_from_grouped_themes.rb +141 -0
  390. data/lib/studium/exams/ask_question_from_last_topic.rb +91 -0
  391. data/lib/studium/exams/ask_random_question.rb +195 -0
  392. data/lib/studium/exams/autoinclude.rb +7 -0
  393. data/lib/studium/exams/csv/create_csv_passed_exams_file.rb +217 -0
  394. data/lib/studium/exams/cycle.rb +291 -0
  395. data/lib/studium/exams/dataset.rb +123 -0
  396. data/lib/studium/exams/designate_ten_random_exam_topics/designate_ten_random_exam_topics.rb +88 -0
  397. data/lib/studium/exams/exam/exam.rb +130 -0
  398. data/lib/studium/exams/exam_question/README.md +3 -0
  399. data/lib/studium/exams/exam_question/answer.rb +177 -0
  400. data/lib/studium/exams/exam_question/constants.rb +111 -0
  401. data/lib/studium/exams/exam_question/exam_question.rb +1135 -0
  402. data/lib/studium/exams/exam_question/menu.rb +333 -0
  403. data/lib/studium/exams/exam_question/misc.rb +895 -0
  404. data/lib/studium/exams/exam_question/question.rb +91 -0
  405. data/lib/studium/exams/exam_question/reset.rb +96 -0
  406. data/lib/studium/exams/exam_registration_at/constants.rb +49 -0
  407. data/lib/studium/exams/exam_registration_at/exam_registration_at.rb +242 -0
  408. data/lib/studium/exams/exam_registration_at/help.rb +46 -0
  409. data/lib/studium/exams/exam_registration_at/menu.rb +81 -0
  410. data/lib/studium/exams/exam_registration_at/report_and_show.rb +133 -0
  411. data/lib/studium/exams/exam_registration_at/reset.rb +54 -0
  412. data/lib/studium/exams/exam_statistics_from_this_file/exam_statistics_from_this_file.rb +119 -0
  413. data/lib/studium/exams/exam_topics.rb +194 -0
  414. data/lib/studium/exams/exams.rb +20 -0
  415. data/lib/studium/exams/exams_per_month/exams_per_month.rb +2438 -0
  416. data/lib/studium/exams/exams_this_week.rb +182 -0
  417. data/lib/studium/exams/fix_exam_dates.rb +121 -0
  418. data/lib/studium/exams/frozen.rb +36 -0
  419. data/lib/studium/exams/last_exams/last_exams.rb +398 -0
  420. data/lib/studium/exams/lectures_without_exam_entry.rb +137 -0
  421. data/lib/studium/exams/mandatory_continuous_assessment/mandatory_continuous_assessment.rb +1956 -0
  422. data/lib/studium/exams/move_the_last_exam_question_to_the_top_of_the_file/move_the_last_exam_question_to_the_top_of_the_file.rb +111 -0
  423. data/lib/studium/exams/n_exams_in_these_topics.rb +404 -0
  424. data/lib/studium/exams/next_exam.rb +107 -0
  425. data/lib/studium/exams/next_exams.rb +378 -0
  426. data/lib/studium/exams/open_exam_associated_url.rb +154 -0
  427. data/lib/studium/exams/open_last_exam_question_asked_file/constants.rb +15 -0
  428. data/lib/studium/exams/open_last_exam_question_asked_file/initialize.rb +29 -0
  429. data/lib/studium/exams/open_last_exam_question_asked_file/open_last_exam_question_asked_file.rb +109 -0
  430. data/lib/studium/exams/pr/303/274fung.rb +289 -0
  431. data/lib/studium/exams/push_solved_questions_on_top.rb +180 -0
  432. data/lib/studium/exams/questions_solved_from_day_to_day/questions_solved_from_day_to_day.rb +377 -0
  433. data/lib/studium/exams/remote_ftp_url.rb +52 -0
  434. data/lib/studium/exams/repeat_last_question.rb +78 -0
  435. data/lib/studium/exams/show_all_passed_exams_of_this_university.rb +252 -0
  436. data/lib/studium/exams/show_backlog_of_exams.rb +117 -0
  437. data/lib/studium/exams/show_next_exams_for.rb +133 -0
  438. data/lib/studium/exams/show_themes/constants.rb +28 -0
  439. data/lib/studium/exams/show_themes/menu.rb +61 -0
  440. data/lib/studium/exams/show_themes/misc.rb +537 -0
  441. data/lib/studium/exams/show_themes/reset.rb +62 -0
  442. data/lib/studium/exams/show_themes/show_themes.rb +27 -0
  443. data/lib/studium/exams/show_upcoming_exams/consider_autogenerating_exam_aliases.rb +181 -0
  444. data/lib/studium/exams/show_upcoming_exams/constants.rb +82 -0
  445. data/lib/studium/exams/show_upcoming_exams/help.rb +33 -0
  446. data/lib/studium/exams/show_upcoming_exams/initialize.rb +77 -0
  447. data/lib/studium/exams/show_upcoming_exams/menu.rb +60 -0
  448. data/lib/studium/exams/show_upcoming_exams/report.rb +200 -0
  449. data/lib/studium/exams/show_upcoming_exams/reset.rb +45 -0
  450. data/lib/studium/exams/show_upcoming_exams/run.rb +20 -0
  451. data/lib/studium/exams/show_upcoming_exams/show_upcoming_exams.rb +544 -0
  452. data/lib/studium/exams/solve_all_questions_from_this_topic.rb +114 -0
  453. data/lib/studium/exams/solved/constants.rb +32 -0
  454. data/lib/studium/exams/solved/help.rb +24 -0
  455. data/lib/studium/exams/solved/initialize.rb +55 -0
  456. data/lib/studium/exams/solved/menu.rb +41 -0
  457. data/lib/studium/exams/solved/reset.rb +28 -0
  458. data/lib/studium/exams/solved/solved.rb +313 -0
  459. data/lib/studium/exams/unsolve_all_questions_from_this_topic.rb +162 -0
  460. data/lib/studium/exams/upcoming_exams/constants.rb +15 -0
  461. data/lib/studium/exams/upcoming_exams/help.rb +41 -0
  462. data/lib/studium/exams/upcoming_exams/initialize.rb +27 -0
  463. data/lib/studium/exams/upcoming_exams/menu.rb +79 -0
  464. data/lib/studium/exams/upcoming_exams/misc.rb +415 -0
  465. data/lib/studium/exams/upcoming_exams/reset.rb +34 -0
  466. data/lib/studium/exams/upcoming_exams/run.rb +26 -0
  467. data/lib/studium/exams/upcoming_exams/upcoming_exams.rb +32 -0
  468. data/lib/studium/exams/upcoming_exams_at_the_boku/constants.rb +23 -0
  469. data/lib/studium/exams/upcoming_exams_at_the_boku/html.rb +64 -0
  470. data/lib/studium/exams/upcoming_exams_at_the_boku/upcoming_exams_at_the_boku.rb +194 -0
  471. data/lib/studium/exams/upcoming_exams_dataset.rb +247 -0
  472. data/lib/studium/exams/upload_exam_topics.rb +360 -0
  473. data/lib/studium/graphviz/README.md +4 -0
  474. data/lib/studium/graphviz/bachelor_vector_based_strategies.dot +160 -0
  475. data/lib/studium/graphviz/master_vector_based_strategies.dot +46 -0
  476. data/lib/studium/gui/gtk3/README.md +1 -0
  477. data/lib/studium/gui/gtk3/ask_exam_question/ask_exam_question.config +6 -0
  478. data/lib/studium/gui/gtk3/ask_exam_question/ask_exam_question.rb +760 -0
  479. data/lib/studium/gui/gtk3/ask_exam_question/manifest.yml +12 -0
  480. data/lib/studium/gui/gtk3/control_panel/control_panel.rb +39 -0
  481. data/lib/studium/gui/gtk3/curriculum_viewer/curriculum_viewer.rb +510 -0
  482. data/lib/studium/gui/gtk3/ects_per_university/ects_per_university.rb +217 -0
  483. data/lib/studium/gui/gtk3/exam_question_widget/exam_question_widget.rb +1887 -0
  484. data/lib/studium/gui/gtk3/expand_time_range/expand_time_range.rb +34 -0
  485. data/lib/studium/gui/gtk3/information_about_a_lecture/information_about_a_lecture.rb +34 -0
  486. data/lib/studium/gui/gtk3/lecture_information/lecture_information.rb +200 -0
  487. data/lib/studium/gui/gtk3/show_upcoming_exams/show_upcoming_exams.rb +34 -0
  488. data/lib/studium/gui/java/exam_question/ExamQuestion$1.class +0 -0
  489. data/lib/studium/gui/java/exam_question/ExamQuestion.class +0 -0
  490. data/lib/studium/gui/java/exam_question/ExamQuestion.java +215 -0
  491. data/lib/studium/gui/javafx/exam_question_widget/exam_question_widget.rb +58 -0
  492. data/lib/studium/gui/jruby/exam_question_widget/exam_question_widget.rb +317 -0
  493. data/lib/studium/gui/libui/ask_exam_question/ask_exam_question.rb +349 -0
  494. data/lib/studium/gui/shared_code/control_panel/control_panel_module.rb +314 -0
  495. data/lib/studium/gui/shared_code/exam_question_widget/exam_question_widget_module.rb +39 -0
  496. data/lib/studium/gui/shared_code/expand_time_range/expand_time_range.css +0 -0
  497. data/lib/studium/gui/shared_code/expand_time_range/expand_time_range_module.rb +190 -0
  498. data/lib/studium/gui/shared_code/information_about_a_lecture/information_about_a_lecture_module.rb +180 -0
  499. data/lib/studium/gui/shared_code/show_upcoming_exams/show_upcoming_exams_module.rb +206 -0
  500. data/lib/studium/images/libui_ask_exam_question.png +0 -0
  501. data/lib/studium/images/small_logos/DNA.png +0 -0
  502. data/lib/studium/images/small_logos/README.md +2 -0
  503. data/lib/studium/images/studies_favicon.png +0 -0
  504. data/lib/studium/java/Mkdir.java +15 -0
  505. data/lib/studium/java/README.md +2 -0
  506. data/lib/studium/java/ask_exam_question/AskExamQuestion.java +477 -0
  507. data/lib/studium/java/solved/Solved.class +0 -0
  508. data/lib/studium/java/solved/Solved.java +110 -0
  509. data/lib/studium/java/utility_scripts/OpenLastExamQuestionurlLinkViaTheBrowser.class +0 -0
  510. data/lib/studium/java/utility_scripts/OpenLastExamQuestionurlLinkViaTheBrowser.java +80 -0
  511. data/lib/studium/logging/README.md +2 -0
  512. data/lib/studium/logging/ensure_that_the_log_directory_exists.rb +47 -0
  513. data/lib/studium/logging/html_log_directory.rb +41 -0
  514. data/lib/studium/logging/log_directory.rb +112 -0
  515. data/lib/studium/logging/store_last_question_asked_into_file.rb +137 -0
  516. data/lib/studium/parsers/README.md +2 -0
  517. data/lib/studium/parsers/custom_exam_results_parser.rb +206 -0
  518. data/lib/studium/parsers/parse_lva_dates.rb +190 -0
  519. data/lib/studium/parsers/parse_remote_lecture.rb +325 -0
  520. data/lib/studium/project/project.rb +76 -0
  521. data/lib/studium/requires/common_popular_requires.rb +37 -0
  522. data/lib/studium/requires/commonly_used_requires.rb +14 -0
  523. data/lib/studium/requires/require_class_exams_solved.rb +7 -0
  524. data/lib/studium/requires/require_ects_scripts.rb +27 -0
  525. data/lib/studium/requires/require_encoding.rb +7 -0
  526. data/lib/studium/requires/require_the_check_and_sanitize_files.rb +31 -0
  527. data/lib/studium/requires/require_the_curricula_files.rb +28 -0
  528. data/lib/studium/requires/require_the_exam_question_class.rb +7 -0
  529. data/lib/studium/requires/require_the_exams_files.rb +45 -0
  530. data/lib/studium/requires/require_the_logging_files.rb +23 -0
  531. data/lib/studium/requires/require_the_parsers.rb +28 -0
  532. data/lib/studium/requires/require_the_studium_constants.rb +10 -0
  533. data/lib/studium/requires/require_the_studium_project.rb +54 -0
  534. data/lib/studium/requires/require_the_toplevel_methods.rb +27 -0
  535. data/lib/studium/requires/require_the_utility_scripts.rb +49 -0
  536. data/lib/studium/requires/require_upcoming_exams.rb +7 -0
  537. data/lib/studium/requires/require_yaml.rb +7 -0
  538. data/lib/studium/requires/return_remote_homepage_of_this_lecture.rb +7 -0
  539. data/lib/studium/requires/with_GUI.rb +13 -0
  540. data/lib/studium/requires/www_mode.rb +17 -0
  541. data/lib/studium/statistics/README.md +4 -0
  542. data/lib/studium/statistics/best_exam_months.rb +92 -0
  543. data/lib/studium/statistics/curriculum_comparer.rb +336 -0
  544. data/lib/studium/statistics/determine_exam_statistics_from_this_file.rb +142 -0
  545. data/lib/studium/statistics/exam_topics_that_are_about_to_be_completed.rb +119 -0
  546. data/lib/studium/statistics/max_stats.rb +170 -0
  547. data/lib/studium/statistics/new_questions_per_year.rb +147 -0
  548. data/lib/studium/statistics/report_how_many_ects_points_per_curriculum_were_completed.rb +167 -0
  549. data/lib/studium/statistics/report_how_many_exam_questions_were_answered.rb +473 -0
  550. data/lib/studium/statistics/show_exam_statistics.rb +60 -0
  551. data/lib/studium/statistics/show_which_courses_are_in_a_bachelor_or_master_curriculum_respectively.rb +104 -0
  552. data/lib/studium/statistics/top_stats.rb +127 -0
  553. data/lib/studium/toplevel_methods/all_passed_exams.rb +37 -0
  554. data/lib/studium/toplevel_methods/already_solved_this_lecture.rb +100 -0
  555. data/lib/studium/toplevel_methods/available_topics.rb +156 -0
  556. data/lib/studium/toplevel_methods/average_grade.rb +141 -0
  557. data/lib/studium/toplevel_methods/calculate_pr/303/274fungsimmanente_lectures_from_this_file.rb +55 -0
  558. data/lib/studium/toplevel_methods/copy_the_last_backup_of_file_lecture_information.rb +34 -0
  559. data/lib/studium/toplevel_methods/curriculum_related_code.rb +999 -0
  560. data/lib/studium/toplevel_methods/determine_local_directory_of_this_lecture.rb +72 -0
  561. data/lib/studium/toplevel_methods/does_this_course_require_mandatory_presence.rb +51 -0
  562. data/lib/studium/toplevel_methods/download.rb +163 -0
  563. data/lib/studium/toplevel_methods/e.rb +16 -0
  564. data/lib/studium/toplevel_methods/ects_from_lectures.rb +250 -0
  565. data/lib/studium/toplevel_methods/editor.rb +65 -0
  566. data/lib/studium/toplevel_methods/esystem.rb +22 -0
  567. data/lib/studium/toplevel_methods/filter_away_invalid_questions.rb +77 -0
  568. data/lib/studium/toplevel_methods/find_exam_topic_and_exam_title.rb +3442 -0
  569. data/lib/studium/toplevel_methods/handle_archive_of_the_exam_questions.rb +136 -0
  570. data/lib/studium/toplevel_methods/has_this_lecture_been_already_passed_but_the_id_was_changed_lateron.rb +42 -0
  571. data/lib/studium/toplevel_methods/has_this_module_been_completed.rb +206 -0
  572. data/lib/studium/toplevel_methods/install_the_project_on_the_given_hostsystem.rb +32 -0
  573. data/lib/studium/toplevel_methods/is_on_roebe.rb +26 -0
  574. data/lib/studium/toplevel_methods/is_this_exam_topic_included.rb +46 -0
  575. data/lib/studium/toplevel_methods/is_this_homepage_registered.rb +31 -0
  576. data/lib/studium/toplevel_methods/is_this_lecture_a_practical_course.rb +100 -0
  577. data/lib/studium/toplevel_methods/is_this_lecture_registered_in_upcoming_exams.rb +42 -0
  578. data/lib/studium/toplevel_methods/java.rb +32 -0
  579. data/lib/studium/toplevel_methods/lecture_information.rb +106 -0
  580. data/lib/studium/toplevel_methods/lva_numbers.rb +355 -0
  581. data/lib/studium/toplevel_methods/main_dataset.rb +73 -0
  582. data/lib/studium/toplevel_methods/methods_related_to_directories.rb +225 -0
  583. data/lib/studium/toplevel_methods/methods_related_to_files.rb +205 -0
  584. data/lib/studium/toplevel_methods/misc.rb +169 -0
  585. data/lib/studium/toplevel_methods/n_questions_available.rb +137 -0
  586. data/lib/studium/toplevel_methods/n_topics_available.rb +63 -0
  587. data/lib/studium/toplevel_methods/names_of_all_solved_exams.rb +71 -0
  588. data/lib/studium/toplevel_methods/note_down_the_start_time_and_how_many_exams_have_been_already_solved.rb +69 -0
  589. data/lib/studium/toplevel_methods/opnn.rb +25 -0
  590. data/lib/studium/toplevel_methods/passed_this_exam_on.rb +105 -0
  591. data/lib/studium/toplevel_methods/pristine.rb +69 -0
  592. data/lib/studium/toplevel_methods/read_delay_between_questions_from_file.rb +34 -0
  593. data/lib/studium/toplevel_methods/regexes.rb +90 -0
  594. data/lib/studium/toplevel_methods/registered_for_this_exam.rb +62 -0
  595. data/lib/studium/toplevel_methods/remove_comments.rb +26 -0
  596. data/lib/studium/toplevel_methods/remove_exam_topics_that_were_already_answered.rb +27 -0
  597. data/lib/studium/toplevel_methods/remove_tags.rb +32 -0
  598. data/lib/studium/toplevel_methods/report.rb +419 -0
  599. data/lib/studium/toplevel_methods/return_all_exams_on_this_day.rb +66 -0
  600. data/lib/studium/toplevel_methods/return_dataset_for_this_exam_topic.rb +41 -0
  601. data/lib/studium/toplevel_methods/return_div_timetable_of_upcoming_exams.rb +498 -0
  602. data/lib/studium/toplevel_methods/return_ects_from_this_lecture_stored_in_the_file_lecture_information.rb +194 -0
  603. data/lib/studium/toplevel_methods/return_hash_of_already_solved_lectures.rb +46 -0
  604. data/lib/studium/toplevel_methods/return_last_exam_question.rb +34 -0
  605. data/lib/studium/toplevel_methods/return_local_path_of_this_pwdstud.rb +60 -0
  606. data/lib/studium/toplevel_methods/return_lva_number_of_this_lecture.rb +72 -0
  607. data/lib/studium/toplevel_methods/return_n_percent_solved_from_this_topic.rb +90 -0
  608. data/lib/studium/toplevel_methods/return_n_questions_were_answered_for_this_topic.rb +60 -0
  609. data/lib/studium/toplevel_methods/return_proper_university_image.rb +86 -0
  610. data/lib/studium/toplevel_methods/return_question_answer_string_from_this_topic.rb +63 -0
  611. data/lib/studium/toplevel_methods/return_remote_homepage_of_this_lecture.rb +9400 -0
  612. data/lib/studium/toplevel_methods/return_remote_moodle_link_of_this_lecture.rb +1661 -0
  613. data/lib/studium/toplevel_methods/return_sanitized_dataset_from_the_file_lecture_information.rb +110 -0
  614. data/lib/studium/toplevel_methods/return_theme_of_the_next_upcoming_exam.rb +38 -0
  615. data/lib/studium/toplevel_methods/rinstall2.rb +34 -0
  616. data/lib/studium/toplevel_methods/rti_conflict.rb +35 -0
  617. data/lib/studium/toplevel_methods/runmode.rb +87 -0
  618. data/lib/studium/toplevel_methods/sanitized_dataset_from_file_passed_exams_per_month.rb +52 -0
  619. data/lib/studium/toplevel_methods/set_last_file_for_exam_questions.rb +64 -0
  620. data/lib/studium/toplevel_methods/set_this_cd_alias_to.rb +86 -0
  621. data/lib/studium/toplevel_methods/show_passed_exams_having_this_grade.rb +34 -0
  622. data/lib/studium/toplevel_methods/spacer.rb +18 -0
  623. data/lib/studium/toplevel_methods/time.rb +239 -0
  624. data/lib/studium/toplevel_methods/total_ects_points_passed.rb +72 -0
  625. data/lib/studium/toplevel_methods/try_to_guess_the_most_likely_lva_id.rb +57 -0
  626. data/lib/studium/toplevel_methods/try_to_return_the_expanded_name_of_this_lecture.rb +63 -0
  627. data/lib/studium/toplevel_methods/unfinished.rb +51 -0
  628. data/lib/studium/toplevel_methods/url.rb +100 -0
  629. data/lib/studium/toplevel_methods/verbose_truth.rb +36 -0
  630. data/lib/studium/toplevel_methods/when_was_this_lecture_passed.rb +54 -0
  631. data/lib/studium/toplevel_methods/word_wrap.rb +56 -0
  632. data/lib/studium/toplevel_methods/write_into_file_related_functionality.rb +189 -0
  633. data/lib/studium/toplevel_methods/yes_or_no_ja_oder_nein.rb +33 -0
  634. data/lib/studium/universities_in_austria/README.md +2 -0
  635. data/lib/studium/universities_in_austria/boku/README.md +4 -0
  636. data/lib/studium/universities_in_austria/boku/boku_/303/266ffnungszeiten.rb +28 -0
  637. data/lib/studium/universities_in_austria/boku/show_three_pillars_of_these_lectures.rb +110 -0
  638. data/lib/studium/universities_in_austria/boku/three_pillars.rb +237 -0
  639. data/lib/studium/universities_in_austria/tu_vienna/README.md +6 -0
  640. data/lib/studium/universities_in_austria/tu_vienna/tu_ferien.rb +42 -0
  641. data/lib/studium/universities_in_austria/tu_vienna/tu_/303/266ffnungszeiten.rb +34 -0
  642. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_boku_lecture_to_curriculum.rb +384 -0
  643. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_lecture_to_curriculum.rb +238 -0
  644. data/lib/studium/utility_scripts/attribute_lectures_to_university/attribute_lectures_to_university.rb +375 -0
  645. data/lib/studium/utility_scripts/audio_stats.rb +171 -0
  646. data/lib/studium/utility_scripts/auto_stud/auto_stud.rb +252 -0
  647. data/lib/studium/utility_scripts/auto_stud/constants.rb +18 -0
  648. data/lib/studium/utility_scripts/auto_stud/initialize.rb +23 -0
  649. data/lib/studium/utility_scripts/auto_stud/misc.rb +18 -0
  650. data/lib/studium/utility_scripts/autopurge_this_lecture_date.rb +93 -0
  651. data/lib/studium/utility_scripts/average_grade_of_this_curriculum.rb +101 -0
  652. data/lib/studium/utility_scripts/calendar/README.md +2 -0
  653. data/lib/studium/utility_scripts/calendar/calendar.rb +251 -0
  654. data/lib/studium/utility_scripts/calendar/misc.rb +35 -0
  655. data/lib/studium/utility_scripts/check_description_of_these_lectures.rb +221 -0
  656. data/lib/studium/utility_scripts/create_database/create_database.rb +106 -0
  657. data/lib/studium/utility_scripts/current_lectures_belonging_to_both_bachelor_and_master_curriculum.rb +113 -0
  658. data/lib/studium/utility_scripts/currently_participating_in_these_lectures/currently_participating_in_these_lectures.rb +104 -0
  659. data/lib/studium/utility_scripts/display_lecture_url.rb +160 -0
  660. data/lib/studium/utility_scripts/expand_time_range/expand_time_range.rb +414 -0
  661. data/lib/studium/utility_scripts/finished_exams_at_this_university.rb +94 -0
  662. data/lib/studium/utility_scripts/foreign_language_percentage/constants.rb +23 -0
  663. data/lib/studium/utility_scripts/foreign_language_percentage/foreign_language_percentage.rb +149 -0
  664. data/lib/studium/utility_scripts/foreign_language_percentage/help.rb +31 -0
  665. data/lib/studium/utility_scripts/foreign_language_percentage/initialize.rb +25 -0
  666. data/lib/studium/utility_scripts/foreign_language_percentage/menu.rb +158 -0
  667. data/lib/studium/utility_scripts/foreign_language_percentage/report.rb +62 -0
  668. data/lib/studium/utility_scripts/foreign_language_percentage/reset.rb +50 -0
  669. data/lib/studium/utility_scripts/foreign_language_percentage/run.rb +19 -0
  670. data/lib/studium/utility_scripts/generate_spreadsheet/generate_spreadsheet.rb +354 -0
  671. data/lib/studium/utility_scripts/generate_spreadsheet/misc.rb +144 -0
  672. data/lib/studium/utility_scripts/holidays/holidays.rb +150 -0
  673. data/lib/studium/utility_scripts/homepage_of_these_courses.rb +118 -0
  674. data/lib/studium/utility_scripts/lecture_downloader.rb +107 -0
  675. data/lib/studium/utility_scripts/lectures_attributed_to_universities.rb +336 -0
  676. data/lib/studium/utility_scripts/lva_dates_of_the_important_courses.rb +111 -0
  677. data/lib/studium/utility_scripts/lva_nummer.rb +431 -0
  678. data/lib/studium/utility_scripts/mandatory_lectures_in_this_month/mandatory_lectures_in_this_month.rb +316 -0
  679. data/lib/studium/utility_scripts/name_of_this_lva_id.rb +110 -0
  680. data/lib/studium/utility_scripts/new_stud.rb +324 -0
  681. data/lib/studium/utility_scripts/next_week.rb +103 -0
  682. data/lib/studium/utility_scripts/open_last_exam_question_url_link_via_the_browser.rb +76 -0
  683. data/lib/studium/utility_scripts/passed_ects_per_year/passed_ects_per_year.rb +177 -0
  684. data/lib/studium/utility_scripts/passed_pr/303/274fungsimmanente_courses/passed_pr/303/274fungsimmanente_courses.rb +181 -0
  685. data/lib/studium/utility_scripts/pdf/README.md +2 -0
  686. data/lib/studium/utility_scripts/pdf/create_pdf_file_for_this_exam_topic.rb +355 -0
  687. data/lib/studium/utility_scripts/pdf/hexapdf_support.rb +50 -0
  688. data/lib/studium/utility_scripts/preparatory_meetings/preparatory_meetings.rb +312 -0
  689. data/lib/studium/utility_scripts/priority.rb +164 -0
  690. data/lib/studium/utility_scripts/priority_points/priority_points.rb +263 -0
  691. data/lib/studium/utility_scripts/publish_my_exams.rb +174 -0
  692. data/lib/studium/utility_scripts/regexes/README.md +1 -0
  693. data/lib/studium/utility_scripts/regexes/generate_regex.rb +300 -0
  694. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_available_moodle_links.rb +55 -0
  695. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_registered_lectures.rb +48 -0
  696. data/lib/studium/utility_scripts/report_outdated_timetable_entries/report_outdated_timetable_entries.rb +142 -0
  697. data/lib/studium/utility_scripts/report_total_amount_of_questions_and_answers_for.rb +116 -0
  698. data/lib/studium/utility_scripts/report_whether_this_lecture_is_registered_in_the_file_lecture_information.rb +128 -0
  699. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/individual_resolve_practical_courses_date_conflicts.rb +254 -0
  700. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/resolve_practical_courses_date_conflicts.rb +265 -0
  701. data/lib/studium/utility_scripts/scrape_remote_university_url.rb +138 -0
  702. data/lib/studium/utility_scripts/semester_schedule_creator/semester_container.rb +144 -0
  703. data/lib/studium/utility_scripts/semester_schedule_creator/semester_schedule_creator.rb +374 -0
  704. data/lib/studium/utility_scripts/semesterplaner.rb +289 -0
  705. data/lib/studium/utility_scripts/set_aliases_based_on_this_file.rb +95 -0
  706. data/lib/studium/utility_scripts/show_all_passed_master_lectures.rb +119 -0
  707. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/show_conflicting_lva_lectures.rb +1238 -0
  708. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/constants.rb +23 -0
  709. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/menu.rb +63 -0
  710. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/reset.rb +33 -0
  711. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/run.rb +50 -0
  712. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/show_descriptions_of_lectures_belonging_to_this_module.rb +145 -0
  713. data/lib/studium/utility_scripts/show_lecturers/show_lecturers.rb +147 -0
  714. data/lib/studium/utility_scripts/show_lectures/constants.rb +11 -0
  715. data/lib/studium/utility_scripts/show_lectures/help.rb +34 -0
  716. data/lib/studium/utility_scripts/show_lectures/initialize.rb +23 -0
  717. data/lib/studium/utility_scripts/show_lectures/menu.rb +127 -0
  718. data/lib/studium/utility_scripts/show_lectures/misc.rb +584 -0
  719. data/lib/studium/utility_scripts/show_lectures/reset.rb +89 -0
  720. data/lib/studium/utility_scripts/show_lectures/run.rb +27 -0
  721. data/lib/studium/utility_scripts/show_lectures/show_lectures.rb +48 -0
  722. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_language/show_lectures_fitting_to_this_language.rb +121 -0
  723. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_theme/show_lectures_fitting_to_this_theme.rb +105 -0
  724. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/constants.rb +17 -0
  725. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/determine.rb +673 -0
  726. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/help.rb +44 -0
  727. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/html.rb +605 -0
  728. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/initialize.rb +56 -0
  729. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/konsole.rb +32 -0
  730. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/menu.rb +472 -0
  731. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/misc.rb +837 -0
  732. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/reset.rb +121 -0
  733. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/run.rb +44 -0
  734. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/show.rb +106 -0
  735. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/show_lectures_on_the_commandline.rb +261 -0
  736. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/sorted_individual_curricula.rb +121 -0
  737. data/lib/studium/utility_scripts/show_lectures_on_this_day.rb +149 -0
  738. data/lib/studium/utility_scripts/show_lva_dates_of_this_lecture.rb +169 -0
  739. data/lib/studium/utility_scripts/show_mixed_bachelor_master_courses/show_mixed_bachelor_master_courses.rb +91 -0
  740. data/lib/studium/utility_scripts/show_outdated_lva_dates/show_outdated_lva_dates.rb +210 -0
  741. data/lib/studium/utility_scripts/show_solved_english_lectures/show_solved_english_lectures.rb +139 -0
  742. data/lib/studium/utility_scripts/steop/README.md +4 -0
  743. data/lib/studium/utility_scripts/steop/show_all_steop_lectures.rb +93 -0
  744. data/lib/studium/utility_scripts/steop/steop_lectures_in_this_curriculum.rb +284 -0
  745. data/lib/studium/utility_scripts/steop/steop_lva_dates.rb +119 -0
  746. data/lib/studium/utility_scripts/studienkennzahl.rb +116 -0
  747. data/lib/studium/utility_scripts/studium_skeleton/studium_skeleton.rb +227 -0
  748. data/lib/studium/utility_scripts/stundenplan.rb +595 -0
  749. data/lib/studium/utility_scripts/sync_studium_relevant_entries_one_level_downwards.rb +217 -0
  750. data/lib/studium/utility_scripts/ufind/ufind.rb +98 -0
  751. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/constants.rb +26 -0
  752. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/run.rb +20 -0
  753. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/upcoming_mandatory_presence_courses.rb +181 -0
  754. data/lib/studium/utility_scripts/week_parser/constants.rb +23 -0
  755. data/lib/studium/utility_scripts/week_parser/help.rb +32 -0
  756. data/lib/studium/utility_scripts/week_parser/menu.rb +59 -0
  757. data/lib/studium/utility_scripts/week_parser/misc.rb +373 -0
  758. data/lib/studium/utility_scripts/week_parser/reset.rb +65 -0
  759. data/lib/studium/utility_scripts/week_parser/run.rb +18 -0
  760. data/lib/studium/utility_scripts/week_parser/show.rb +236 -0
  761. data/lib/studium/utility_scripts/week_parser/week_parser.rb +49 -0
  762. data/lib/studium/utility_scripts/weekday_parser.rb +155 -0
  763. data/lib/studium/utility_scripts/weekly_schedule.rb +198 -0
  764. data/lib/studium/utility_scripts/wochenplanung.rb +261 -0
  765. data/lib/studium/version/version.rb +46 -0
  766. data/lib/studium/www/curricula_displayer.cgi +197 -0
  767. data/lib/studium/www/curriculum_displayer.rb +162 -0
  768. data/lib/studium/www/exams.cgi +53 -0
  769. data/lib/studium/www/fast_ask_exam_question.cgi +155 -0
  770. data/lib/studium/www/sinatra/app.rb +231 -0
  771. data/lib/studium/www/sinatra/misc.rb +115 -0
  772. data/lib/studium/www/statistics/statistics.cgi +59 -0
  773. data/lib/studium/yaml/ad_hoc_trainer/README.md +2 -0
  774. data/lib/studium/yaml/ad_hoc_trainer/exam_topics.md +15 -0
  775. data/lib/studium/yaml/allowed_themes_for_exams.yml +344 -0
  776. data/lib/studium/yaml/array_allowed_entries_for_the_file_lecture_information.yml +70 -0
  777. data/lib/studium/yaml/available_exam_topics/available_exam_topics.yml +234 -0
  778. data/lib/studium/yaml/backlog_of_exams.yml +37 -0
  779. data/lib/studium/yaml/colours/custom_colours.yml +28 -0
  780. data/lib/studium/yaml/colours/use_colours.yml +1 -0
  781. data/lib/studium/yaml/current_exams.yml +19 -0
  782. data/lib/studium/yaml/curricula/README.md +9 -0
  783. data/lib/studium/yaml/curricula/bachelor/bachelor_agrarwissenschaften_033255.yml +142 -0
  784. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_basisblock_033630.yml +65 -0
  785. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_botanik_033630.yml +84 -0
  786. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_ecology_033630.yml +74 -0
  787. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_mikrobiologie_und_genetik_033630.yml +120 -0
  788. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_molekulare_biologie_033630.yml +104 -0
  789. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_zoologie_033630.yml +87 -0
  790. data/lib/studium/yaml/curricula/bachelor/bachelor_chemie_033662.yml +165 -0
  791. data/lib/studium/yaml/curricula/bachelor/bachelor_dummy_curriculum.yml +183 -0
  792. data/lib/studium/yaml/curricula/bachelor/bachelor_elektrotechnik_und_informationstechnik_033235.yml +13 -0
  793. data/lib/studium/yaml/curricula/bachelor/bachelor_forstwirtschaft_033225.yml +115 -0
  794. data/lib/studium/yaml/curricula/bachelor/bachelor_informatik_033521.yml +130 -0
  795. data/lib/studium/yaml/curricula/bachelor/bachelor_ktww_033231.yml +84 -0
  796. data/lib/studium/yaml/curricula/bachelor/bachelor_lmbt_033217.yml +118 -0
  797. data/lib/studium/yaml/curricula/bachelor/bachelor_medizinische_informatik_033533.yml +203 -0
  798. data/lib/studium/yaml/curricula/bachelor/bachelor_molekularbiologie_033665.yml +95 -0
  799. data/lib/studium/yaml/curricula/bachelor/bachelor_nutrition_science_033638.yml +119 -0
  800. data/lib/studium/yaml/curricula/bachelor/bachelor_pharmazie_033305.yml +170 -0
  801. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_chemie_033290.yml +129 -0
  802. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_informatik_033535.yml +23 -0
  803. data/lib/studium/yaml/curricula/bachelor/bachelor_ubrm_033227.yml +136 -0
  804. data/lib/studium/yaml/curricula/bachelor/bachelor_verfahrenstechnik_033273.yml +167 -0
  805. data/lib/studium/yaml/curricula/bachelor/bachelor_wirtschaftsinformatik_033526.yml +29 -0
  806. data/lib/studium/yaml/curricula/individual/bachelor_informatik_und_molekulare_biologie.yml +1161 -0
  807. data/lib/studium/yaml/curricula/individual/bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +1157 -0
  808. data/lib/studium/yaml/curricula/individual/master_bioinformatics_and_nanobiotechnology_in_molecular_medicine.yml +306 -0
  809. data/lib/studium/yaml/curricula/individual/master_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +741 -0
  810. data/lib/studium/yaml/curricula/master/master_bioinformatik_066875.yml +76 -0
  811. data/lib/studium/yaml/curricula/master/master_biologie_molekulare_mikrobiologie_mikrobielle_oekologie_und_immunbiologie_066830.yml +78 -0
  812. data/lib/studium/yaml/curricula/master/master_biologische_chemie_066863.yml +61 -0
  813. data/lib/studium/yaml/curricula/master/master_dummy_curriculum.yml +197 -0
  814. data/lib/studium/yaml/curricula/master/master_genetik_und_entwicklungsbiologie_066877.yml +89 -0
  815. data/lib/studium/yaml/curricula/master/master_lmbt_066418.yml +111 -0
  816. data/lib/studium/yaml/curricula/master/master_molekulare_biologie_066834.yml +142 -0
  817. data/lib/studium/yaml/curricula/master/master_pharmazie_066605.yml +170 -0
  818. data/lib/studium/yaml/curricula/master/master_technische_chemie_066490.yml +123 -0
  819. data/lib/studium/yaml/curricula/outdated/master_bioinformatics_and_molecular_biotechnology_including_aspects_from_molecular_medicine.yml +438 -0
  820. data/lib/studium/yaml/curricula/outdated/master_food_science_and_plant_biotechnology.yml +31 -0
  821. data/lib/studium/yaml/curricula.yml +538 -0
  822. data/lib/studium/yaml/daily_questions_solved.yml +1468 -0
  823. data/lib/studium/yaml/default_delay.yml +4 -0
  824. data/lib/studium/yaml/default_encoding.yml +1 -0
  825. data/lib/studium/yaml/directory_to_the_exam_topics.yml +0 -0
  826. data/lib/studium/yaml/editor.yml +1 -0
  827. data/lib/studium/yaml/file_for_exam_questions.yml +1 -0
  828. data/lib/studium/yaml/german/README.md +2 -0
  829. data/lib/studium/yaml/german/german_to_english_month_names.yml +16 -0
  830. data/lib/studium/yaml/grouped_themes.yml +192 -0
  831. data/lib/studium/yaml/holidays.yml +194 -0
  832. data/lib/studium/yaml/important_exams.yml +226 -0
  833. data/lib/studium/yaml/inscription_dates_of_universities.yml +60 -0
  834. data/lib/studium/yaml/lecture_aliases.yml +138 -0
  835. data/lib/studium/yaml/lecture_information/lecture_information.yml +55870 -0
  836. data/lib/studium/yaml/log_dir.yml +1 -0
  837. data/lib/studium/yaml/main_topic.yml +11 -0
  838. data/lib/studium/yaml/max_stats.yml +241 -0
  839. data/lib/studium/yaml/meta_themes/README.md +13 -0
  840. data/lib/studium/yaml/meta_themes/biochemistry.md +6 -0
  841. data/lib/studium/yaml/meta_themes/bioinformatics.md +6 -0
  842. data/lib/studium/yaml/meta_themes/biotechnology.md +9 -0
  843. data/lib/studium/yaml/meta_themes/chemistry.md +9 -0
  844. data/lib/studium/yaml/meta_themes/genetics.md +10 -0
  845. data/lib/studium/yaml/meta_themes/immunology.md +5 -0
  846. data/lib/studium/yaml/meta_themes/metabolic_pathways.md +12 -0
  847. data/lib/studium/yaml/meta_themes/molecular_biology.md +9 -0
  848. data/lib/studium/yaml/meta_themes/protein_engineering.md +10 -0
  849. data/lib/studium/yaml/meta_themes/statistics.md +2 -0
  850. data/lib/studium/yaml/mitbelegung/README.md +4 -0
  851. data/lib/studium/yaml/mitbelegung/mitbelegung.yml +23 -0
  852. data/lib/studium/yaml/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.yml +363 -0
  853. data/lib/studium/yaml/n_total_questions.yml +1 -0
  854. data/lib/studium/yaml/rename_konsole_tab.yml +1 -0
  855. data/lib/studium/yaml/show_topic.yml +1 -0
  856. data/lib/studium/yaml/statistics/max_stats.yml +239 -0
  857. data/lib/studium/yaml/statistics/statistics.yml +69 -0
  858. data/lib/studium/yaml/week/01_monday.yml +5 -0
  859. data/lib/studium/yaml/week/02_tuesday.yml +75 -0
  860. data/lib/studium/yaml/week/03_wednesday.yml +62 -0
  861. data/lib/studium/yaml/week/04_thursday.yml +14 -0
  862. data/lib/studium/yaml/week/05_friday.yml +31 -0
  863. data/lib/studium/yaml/week/06_saturday.yml +16 -0
  864. data/lib/studium/yaml/week/07_sunday.yml +0 -0
  865. data/lib/studium/yaml/week/README.md +13 -0
  866. data/lib/studium.rb +5 -0
  867. data/studium.gemspec +80 -0
  868. data/test/testing_studium.rb +244 -0
  869. data/test/testing_studium_base_class.rb +17 -0
  870. data/test/testing_time_component.rb +29 -0
  871. metadata +1078 -0
@@ -0,0 +1,995 @@
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
+ - A human cell has <one>a typical diameter of n micrometres</one>? <one>20 micrometres</one>.
13
+ - In cellbiology: name a classic model of <one>motor functions</one>. A: <one>Skin pigmentation in fish</one>.
14
+ - Menschliche Zellen haben typischerweise einen Zellkern, ausgenommen ... ? Ausgenommen der <one>roten Blutkörperchen</one>. URL: https://de.wikipedia.org/wiki/Erythrozyt
15
+ - <one>Average lifetime for a mitochondrium</one> in a liver cell? About <one>10 days</one>. []
16
+ - Andere Bezeichnung für <one>transversale Bewegung</one> eines Proteins in einer Zellmembran? <one>Flip-flop</one>. []
17
+ - Name two <one>microtubule motors</one>. A: (1) <one>Kinesin</one> (2) <one>Dynein</one> []
18
+ - Was passiert mit Glykoproteinen die <one>phosphorylierte Mannosereste</one> aufweisen? Sie <one>werden in die Lysosomen transportiert</one>.
19
+ - <one>How</one> does a cell cope with a <two>residual body</two>? (1) it can release the content of residual body by exocytosis (2) it can be retained within the cytoplasm, and become a "lipofuscin granule".
20
+ - <one>Nebulin</one> is an actin-binding protein. It is a very large protein. <two>Up to how many actin monomers can Nebulin bind</two>? It can bind bind up to as many as <one>200 actin monomers</one>.
21
+ - Warum ist <one>Rapamycin</one> (RAPA) in der Zellbiologie wichtig? Weil Rapamycin als <two>Immunosuppressivum</two> wirken kann, und auch die Entwicklung von Krebs behindert.
22
+ - In der Zellbiologie: was ist <one>Vimentin</one>? <one>Vimentin</one> ist ein Typ 3 Intermediärfilament das eine wichtige Rolle bei der Verankerung von Organellen im Cytosol spielt.
23
+ - What is the <one>common feature</one> among Golgi? They are adjacent to <one>endoplasmic reticulum (ER) exit sites</one>.
24
+ - <one>When</one> was the <two>first human neocentromere</two> discovered? In the year <one>1993</one>.
25
+ - Name one big difference between the lumen of a lysosome and the cytoplasm. A: The lumen of a lysosome is <one>more acidic</one> than the cytoplasm.
26
+ - What does it tell us if a protein has the designation <one>p38</one> or <one>p53</one> or <one>p88</one>? This refers to the relative molecule mass of 38K or 53K or 88K. []
27
+ - <one>Where in a cell</one> can the <two>Ras protein</two> be found? <one>Ras</one> is usually attached to the cell membrane owing to its <two>prenylation</two> and <two>palmitoylation modification</two>.
28
+ - <one>Welche Zellen</one> besitzen viel an <two>Albumin-mRNA</two>? <one>Hepatocyten</one>. URL: https://en.wikipedia.org/wiki/Hepatocyte
29
+ - Nenne <one>vier Motorproteinklassen</one> in alphabetischer Reihenfolge. A: (<one>D</one>, <one>K</one>, <one>M</one>, <one>P</one>) (1) Dynein (2) Kinesin (3) Myosin (4) <two>Prestin</two>
30
+ - What does the enzyme <one>guanylate cyclase</one> produce? <one>cGMP</one>, which is <two>cyclic GMP</two>, synthesized from GTP. URL: https://de.wikipedia.org/wiki/Cyclisches_Guanosinmonophosphat
31
+ - Bei den <one>pH Werten in biologischen Systemen</one>: <two>wie liegt die phosphoryl head group in Membranen vor</two>? <one>Negativ geladen</one>, als <two>Phosphatidate</two>.
32
+ - <one>Welche Zellen</one> sind gegenüber den Effekten einer ionisierenden Strahlen allgemein sehr empfindlich? Zellen die sehr Mitose-aktiv sind.
33
+ - <one>Phagosomes</one> have diameters that are determined by what exactly? The <one>diameters</one> <two>are determined</two> by the <three>size of the ingested particle</three>. In fact, a Phagosome can be almost as large as the phagocytic cell itself!
34
+ - <one>Plectin</one> is a <two>cytoskeletal linker protein</two>. <three>What size does it have</three>? Plectin is very large, with a size of over <one>500 kDa</one>.
35
+ - What is the <one>Interphase</one>? All but Mitosis; so we have G1, S and G2.
36
+ - What is <one>Hemifusion</one> 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.
37
+ - Nenne ein <one>Kompartiment</one>, das man nur in (manchen) Eukarya findet - ausgenommen <two>Chloroplasten</two>, <two>Nucleus</two> und "Mitochondrien". A: Die <one>pulsierende Vakuole</one>.
38
+ - The <one>Shibire mutation</one> <two>in Drosophila</two> led to <three>the discovery of which cellular protein</three>? <one>Dynamin</one>. URL: https://pubmed.ncbi.nlm.nih.gov/1674590/ []
39
+ - In der Zelle: <one>welche Aufgabe</one> hat <two>Stathmin</two>? Stathmin reguliert <one>microtubule dynamics</one>.
40
+ - In cell biology, in the <one>chaperone-mediated variant of autophagy pathway</one>: <two>which complex</two> is the most important one? The hsc70-containing complex.
41
+ - What is the <one>cis-Golgi</one>? The Golgi stack <one>closest to the ER</one>.
42
+ - Wofür steht die Abkürzung bei der <one>MAP Kinase</one>? <one>Mitogen-activated protein kinase</one>. URL: https://de.wikipedia.org/wiki/MAP-Kinase-Weg []
43
+ - What is <one>crinophagy</one>? The direct fusion of lysosomes with secretory vesicles.
44
+ - Andere Bezeichnung für <one>three-layered</one>? <one>Trilaminar</one>. URL: https://en.wiktionary.org/wiki/trilaminar []
45
+ - In cell biology: what does the abbreviation <one>Nups</one> stand for? <one>Nucleoporins</one>.
46
+ - Das <one>Zellweger-Syndrom</one> beruht auf ...? Mutationen in den Genen, die für die Entstehung von Peroxisomen erforderlich sind.
47
+ - Innerhalb der Zelle: wo spielen <one>Actinfilamente</one> eine Rolle? Sie bilden dynamische Netze unterhalb der Zellmembran.
48
+ - Bei den Eukarya: wie wirkt <one>cAMP</one>? Indirekt, über die <one>Proteinkinase A</one>.
49
+ - <one>With which assay</one> can we determine if a nuclear protein shuttles in or out of the nucleus? With help from a <one>Heterokaryon assay</one>.
50
+ - <one>Welche Aufgaben</one> hat das raue ER, <one>welche Aufgaben</one> hat das glatte ER? (1) Aufgaben des rauen ER: Synthese von Membran-, Export- und Lysosomenproteinen (2) Aufgaben des glatten ER: <one>Lipidsynthese</one>
51
+ - Anteil, in Prozent, von <one>Actin</one> an den Gesamtproteinen in einer eukaryotischen Zelle (<two>von-bis</two>)? Etwa <one>10-20%</one>.
52
+ - The <one>human mtDNA</one> codes for <two>n transfer RNAs</two>? <one>22</one>. URL: https://pubmed.ncbi.nlm.nih.gov/15983868/
53
+ - <one>Welche Kategorie</one> sind I-Cell diseases? <one>Lysosomal storage diseases</one>.
54
+ - Name <one>a drug</one> that can be used to <two>inhibit the function of lysosomes</two>. A: <one>Chloroquin</one>.
55
+ - A single <one>gap junction channel</one> is composed of two ... ? <one>Connexons</one>.
56
+ - Andere Bezeichnung für <one>Aktin</one>? <one>Mikrofilamente</one>. Sie haben ja nur einen Durchmesser von etwa 6nm.
57
+ - What does the abbreviation <one>Gamma-TuRC</one> stand for? <one>Gamma-tubulin ring complex</one>.
58
+ - Aus Sicht der Zellbiologie: was passiert wenn das Gen <one>N-Acetylglucosamin-Phosphotransferase</one> ausfällt? Essenzielle Enzyme, wie zum Beispiel Hydrolasen, können nicht mehr ins Lysosom gelangen.
59
+ - Do <one>phospholipids</one> <two>spontaneously form bilayers</two>? Yes, under the appropriate conditions they will. []
60
+ - Nenne etwas bemerkenswertes bei <one>Mikrotubuli</one> und Genexpression? Mikrotubuli bestehen aus zwei Untereinheiten. Diese Untereinheiten werden gekoppelt exprimiert.
61
+ - Can <one>a cell</one> 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.
62
+ - <one>Autophagy</one> is induced <two>upon nutrient depletion</two> - or alternatively, treatment with which particular drug? With <one>Rapamycin</one>.
63
+ - Give another name for the <one>cyclin-dependent kinase inhibitor 1</one>. A: <one>p21</one>.
64
+ - <one>Welche Reaktion</one> führt die <two>Luciferase</two> genau durch? Nenne Input und Output. A: "Luciferin" + ATP + O2 -> "Oxyluciferin" + AMP + CO2.
65
+ - Nenne zwei (allgemeine) Bedingungen die eine Zelle erfüllen muss um in die Mitose eintreten zu können. A: (1) es dürfen <one>keine DNA-Schäden</one> vorhanden sein (2) die Zellen müssen eine "ausreichende Größe" erreicht haben
66
+ - What is a <one>Rab cascade</one> in cell biology? This is the ordered recruitment of sequentially active Rab proteins.
67
+ - What do the <one>MPRs</one> (<two>Mannose 6-Phosphate Receptors</two>) bind? They bind to newly synthesized lysosomal hydrolases in the trans-Golgi network (TGN) and deliver them to pre-lysosomal compartments.
68
+ - What exactly is the backbone in <one>phosphoglycerides</one>? The 3-carbon <one>glycerol</one> is the backbone.
69
+ - Das <one>wichtigste transmembranale Protein in Mitochondrien</one> ist ... ? <one>Porin</one>. []
70
+ - What is a <one>clonogenic assay</one>? A <one>clonogenic assay</one> is a cell biology technique for studying the effectiveness of specific agents on the survival and proliferation of cells.
71
+ - <one>How</one> can we visualize <one>lipid rafts</one> in membranes? Via the <one>AFM</one> (<two>atomic force microscope</two>).
72
+ - In der Zellbiologie: was sind <one>reticulons</one>? <one>Reticulons</one> sind membranständige Proteine, die das tubuläre endoplasmic reticulum (ER) bilden.
73
+ - <one>Where</one> can we find "RanGAP" and "RanGEF", respectively? (1) "RanGAP": only in the "cytoplasm" (2) <one>RanGEF</one>: only in the <two>nucleus</two>
74
+ - In <one>Live Imaging</one> 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 <two>spatial resolution</two>
75
+ - <one>Plant RNA editing</one> modifies what to what? Plant RNA editing modifies <one>cytidines</one> (C) to <one>uridines</one> (<two>U</two>), at specific sites in the transcripts.
76
+ - <one>DnaA-Protein</one> can be <two>activated by which molecule</two>? <one>ATP</one>. []
77
+ - The <one>cytosylic pH</one> is at ...? At about a value of <one>7.2</one>. []
78
+ - <one>Which chaperone</one> is important for <two>posttranslation translocation</two>? <one>BiP</one>.
79
+ - <one>Water molecules</one> passage into a cell via ... ? This can occur via <one>aquaporines</one>. []
80
+ - How do we call <one>the interior of the nucleus</one>, for the most part? <one>Nucleoplasm</one>. URL: https://en.wikipedia.org/wiki/Nucleoplasm
81
+ - Was bedeutet <one>Eutelie</one>? <one>Zellkonstanz</one>. []
82
+ - <one>Welches Protein</one> ist Bestandteil der Centrosomen? <one>Gamma-Tubulin</one>. URL: https://de.wikipedia.org/wiki/Tubuline#.CE.B3-Tubulin
83
+ - Wo genau kann <one>Sphingomyelin</one> gefunden werden? In der <one>Myelinscheidenmembran der neuronalen Axone</one>.
84
+ - Nenne <one>sechs Organellen</one>. A: (1) <one>Zellkern</one> (2) Mitochondrien (3) Chloroplast (4) Lysosom (5) Peroxisom (6) endoplasmatische Retikulum (7) Golgi-Apparat (bei manchen Definitionen)
85
+ - What is <one>exocytosis</one>? <one>Exocytosis</one> is an energy-using process by which a cell directs the contents of secretory vesicles into its extracellular space.
86
+ - Wie können wir den Zerfall der Mikrotubuli bewirken? Durch Einsatz von <one>Colchicin</one>. []
87
+ - Give another name for the <one>cyclins</one>. A: <one>Cdk regulators</one>.
88
+ - <one>Which stain</one> was originally used to identify the Golgi-apparatus? A <silver>silver stain</silver>.
89
+ - <one>Rab-Proteins</one> are what type of proteins exactly? They are <one>monomeric GTPases</one>.
90
+ - The alkaloid <one>colchicine</one> was first described as a mitotic poison in what year? In the year <one>1934</one>.
91
+ - Nenne <one>eine Tiergruppe</one> die <two>keine Intermediärfilamente</two> aufweist. A: <one>Arthropoden</one> haben keine Intermediärfilamente; Pflanzen übrigens auch nicht. URL: http://www.bionity.com/de/lexikon/Intermedi%C3%A4rfilamente.html
92
+ - <one>Welche zwei Enzyme</one> konvertieren <two>dUTP</two> zu dTTP? (1) <one>Phosphatase</one> (2) <one>Kinase</one>
93
+ - What are <one>Biologics</one>? Genetically engineered proteins derived from human genes, designed to inhibit specific components of the immune system, especially those that play a role in inflammation.
94
+ - Wie gross kann eine <one>aerobe Zelle</one> werden? So gross das sie gerade noch Sauerstoff aufnehmen und verteilen kann.
95
+ - In cell biology: what is meant with the expression <one>intrinsic fluorescence</one>? When some proteins or small molecules, in a given cell, are <one>naturally fluorescent</one>.
96
+ - What is the protein <one>SOS</one> (<two>son of sevenless</two>) doing? It <one>exchanges GDP → GTP</one>. URL: https://en.wikipedia.org/wiki/Son_of_Sevenless
97
+ - On the outside, the <one>nuclear pore complex</one> contains <two>cytoplasmic filaments</two>. Name two cellular functions that these filaments participate in. A: (1) protein transport (2) <one>mRNA export</one>
98
+ - Wie nennt man <one>die Verschmelzung verschiedenartiger Genome in einer Zelle</one>? <one>Intertaxonische Kombination</one>. (Solche Organismen sind aus genetischer Sicht Chimären).
99
+ - Was heisst <one>GPI-anchor</one>? <one>Glycophosphatidylinositol anchor</one>. URL: https://en.wikipedia.org/wiki/Glycosylphosphatidylinositol
100
+ - Do <one>plant cells</one> <two>make use of the KDEL sequence</two>? <one>Yes</one>.
101
+ - What is <one>autophagy</one>? Degradation of intracellular substrates.
102
+ - Durch <one>Anreicherung nicht abbaufähiger Materialien in der Zelle</one> entstehen ...? <one>Residualkörper</one>.
103
+ - What is the <one>brain</one> of the cell? The <one>nucleus</one>. []
104
+ - <one>Welches Protein</one> kann <two>die cytosolische Menge an cytochrom c</two> <three>messen</three>? <one>Apaf-1</one>.
105
+ - An <one>animal cell</one> <two>contains about n protein molecules</two>? 10¹0 protein molecules.
106
+ - Nenne <one>zwei Beispiele</one> für <two>amphiphile Moleküle</two>. A: (1) <one>Phospholipide</one> (2) <one>Lecithine</one>
107
+ - Andere Bezeichnung für <one>Mikrofilamente</one>? <one>Actinfilamente</one>.
108
+ - Nenne <one>drei verschiedene Plastid-Typen</one> in alphabetischer Reihenfolge. A: (1) Chloroplasten (2) Chromoplasten (3) Leukoplasten
109
+ - <one>Welche zwei Formen</one> des Co-Transport gibt es für eine Zelle? (1) Symport (2) Antiport
110
+ - <one>Export</one> and import receptors are structurally related. They belong to which family? To the family of <one>karyopherins</one>.
111
+ - Eine <one>aktive Muskelzelle</one> regeneriert pro Sekunde wieviel ATP Moleküle? <one>10 Millionen</one>.
112
+ - Give another word for a normally shaped "red blood cell". A: A <one>discocyte</one>.
113
+ - Für den <one>Zellkern-Export bestimmte Proteine</one> haben oft was? <one>Leucin-reiche Sequenzen</one>. []
114
+ - <one>Proteins</one> have different half-lives. What determines the half-life of a protein? The <one>amino acids present at the N-terminus</one>. []
115
+ - The <one>Integral of viable cells</one> (IVC) is required for determination of "cell-specific rates". It is calculated from ... ? The <one>growth curve</one>.
116
+ - Can <one>Integrins</one> bind <two>laminins</two>? <one>Yes</one>. []
117
+ - Name three <one>functional classification</one> of cell junctions. A: (1) Occluding junctions (2) Anchoring junctions (3) <one>Communicating junctions</one>
118
+ - Give another name for <one>how cells move</one>. A: <one>Cell motility</one>.
119
+ - <one>Clathri</one> is <two>a coating protein</two>. It is associated with proteins, which connect clathrin to vesicle membrane. How do we call these latter proteins? <one>Adaptins</one>.
120
+ - <one>Why</one> do we use a <two>Langmuir-Blodgett trough</two> 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.
121
+ - Sind <one>Centrioles</one> wichtig? Ja - sie organisieren die <one>mitotic spindle</one>.
122
+ - <one>Zellen</one> besitzen <two>welche drei Typen</two> von Zell-Zell Verbindungen? (1) tight junctions (2) adhering junctions (3) gap junctions (Merkslogan: T,A,G junctions)
123
+ - In cell biology: what is the main statement central to the <one>cisternal maturation hypothesis</one>? <one>Endoplasmic reticulum ER-derived membranes</one> nucleate new Golgi cisternae.
124
+ - Name <one>two categories</one> of <two>endocytosis</two>. A: (1) bulk-phase endocytosis (2) receptor-mediated endocytosis
125
+ - <one>Inositol phospholipids</one> can be <two>phosphorylated at how many positions</two>? <one>3</one> - at <two>3'</two>, 4' and 5'.
126
+ - Proteine können an den Golgi-Komplex gelangen und von dort, über Vesikel, in welche 3 Zielareale gelangen? (1) in <one>Lysosomen</one> (2) an die "Plasmamembran" (3) "ausserhalb der Zelle"
127
+ - Welche drei Kräfte dominieren bei der <one>Ligandenbindung</one>? (1) ionische Wechselwirkungen (2) <one>van-der-Waals-Kräfte</one> (3) <one>Wasserstoffbrücken</one>
128
+ - In der Zelle: wie wird <one>dGTP</one> 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.
129
+ - <one>Welche Aufgabe</one> hat das Protein <one>Ran</one>? <one>Ran</one> setzt das Importprotein im Zellkern frei, wenn es in seiner aktiven Form vorliegt (also als Ran/GTP).
130
+ - <one>Theodor Engelmann</one> <two>used which organism</two> in his photosynthesis experiment? <one>Cladophora engelmann</one>.
131
+ - <one>When</one> exactly is the <two>sister-chromatid cohesin</two> destroyed? At the start of the <one>Anaphase</one>.
132
+ - Wie <one>nennen</one> wir die charakteristische <two>innere</two> Anordnung der Geißeln der Eukaryoten? <one>9x2+2</one>.
133
+ - Which <one>energy form</one> does the cell use for actin and tubulin subunits? (1) Actin: ATP (2) <one>Tubulin</one>: <two>GTP</two>
134
+ - Wenn wir <one>Nocodazol</one> zu Zellen geben, was passiert dann? <one>Arrest in der Mitose</one>.
135
+ - What is a <one>chromocyte</one>? Any cell that contains a pigment. URL: https://en.wiktionary.org/wiki/chromocyte
136
+ - Durch <one>Kernporen</one> können <two>kleinere Proteine bis zu einer Grösse von n kDa</two> passiv eindringen? Bis zu <one>60 kDa</one>.
137
+ - The activity of the <one>protein kinase A</one> depends on ... ? The <one>cellular levels of cyclic AMP</one> (<two>cAMP</two>).
138
+ - <one>Wie</one> wird der Export eines Proteins aus dem Nucleus gesteuert? Über <one>NES</one>: <two>Nuclear Export Signal</two>.
139
+ - Bei der <one>Renaturierung von DNA</one> benötigen wir <two>warum</two> eine hohe Salzkonzentration? Um die negativen Ladungen der Phosphatgruppen der DNA zu neutralisieren.
140
+ - What is <one>the job</one> of the <two>lipoprotein particles</two>? Carry lipids via the bloodstream to other parts of the body.
141
+ - Name an <one>actin motor</one>. A: <one>Myosin</one>. URL: https://en.wikipedia.org/wiki/Myosin []
142
+ - Wie entsteht ein <one>Autolysosome</one>? Durch Fusion eines <one>Lysosome</one> mit einem <one>Autophagosome</one>.
143
+ - Name the <one>three major coat proteins</one> in a cell. A: (1) clathrin-coated (2) COPI-coated (3) <one>COPII-coated</one>
144
+ - <one>Desmosomes</one> are <two>anchorage sites</two> for ...? <one>Intermediate filaments</one>.
145
+ - In the cell cycle: what means <one>MUGs</one>? <one>Mitosis</one> with <two>unreplicated genomes</two>.
146
+ - <one>Welche Aufgabe</one> hat das "Tat protein export system" und was heisst "tat" überhaupt? <one>tat</one> heißt <two>twin arginine translocase</two>. Es transportiert gefaltete Proteine aus dem Cytoplasma hinaus.
147
+ - Name <one>an adaptor protein</one> for <two>Ras-Proteins</two>. A: <one>Grb2</one>.
148
+ - Wenn ein Aktinfilament <one>gecapped</one> wird, was bedeutet das für das Wachstum? Das Wachstum dieses Aktinfilaments kommt zum Erliegen.
149
+ - Is <one>robustness</one> <two>in biological systems</two> always a good thing? <one>No</one>. A robust cancer cell is not a good thing for the patient!
150
+ - Name <one>four structural components</one> of a mitochondrium. A: (1) Outer Membrane (2) <one>Matrix</one> (3) Inner Membrane (4) Intermembrane space
151
+ - Was kann das Protein <one>BAX</one> bewirken? Die <one>Apoptose einer Zelle</one>. URL: https://de.wikipedia.org/wiki/Bax_(Protein) []
152
+ - In cell biology: <one>ARF-GAP1</one> senses what? <one>Membrane curvature</one>. URL: https://en.wikipedia.org/wiki/ARFGAP1 []
153
+ - <one>Humans</one> have n actin genes in their genome? <one>6</one>.
154
+ - <one>Andere Bezeichnung</one> für <two>anaphase-promoting complex</two>? The <one>cyclosome</one> (Merkhilfe: APC/C heisst der Komplex eigentlich, das 2. C steht eben für <two>Cyclosome</two>).
155
+ - Warum der Name <one>P-Selectine</one>? <one>Platelets</one> (<two>Plättchen</two>).
156
+ - Die <one>Motordomäne von Myrosin</one> <two>kann</two> <three>welche zwei Substanzen binden</three>? (1) <one>ATP</one> (2) <one>Actin</one>
157
+ - In <one>Tunel Labeling</one>: <two>which antibodies are used</two>? <one>Br(d)U specific antibodies</one>.
158
+ - <one>Where exactly</one> do we find the <two>SECIS element</two>? The <one>SECIS element</one> can be found in the <two>3' UTR</two>. []
159
+ - Die <one>Bax-Proteine</one> werden durch welches Protein freigesetzt? <one>p53</one>.
160
+ - The <one>SRP</one> (<two>signal recognition particle</two>) can bind to ...? (1) The <one>ribosome</one> (2) signal sequence
161
+ - Name <one>a small molecule inhibitor of Dynamin</one> that also begins with the letter D. A: <one>Dynasore</one>.
162
+ - <one>Muskelfasern</one> zeigen im Elektronenmikroskop eine <two>charakteristische Querstreifung</two>, die wodurch verursacht wird? Diese Querstreifung wird durch die <one>Sarkomere</one> verursacht.
163
+ - <one>cGMP</one> <two>can bind to which protein kinase</two>? To the <one>protein kinase G</one>.
164
+ - Ein <one>schnelles</one> Protein benötigt für die Durchquerung des Zellkerns wie lange? <one>Wenige Minuten</one>.
165
+ - <one>Wieviel % der Proteine</one> einer <two>Leberzelle</two> werden <three>pro Stunde über Autophagy degradiert</three>? <one>1%</one>. []
166
+ - <one>Menschliche Zellkerne</one> besitzen im Durchschnitt <two>n Kernporen</two> / Zellkern? <one>3000</one>. []
167
+ - Do <one>plants</one> use <two>cAMP for signalling</two>? <one>No</one>. []
168
+ - Which <one>categories of SNAREs</one> exist? (1) <one>vesicle</one> or <one>v-SNAREs</one>: these are incorporated into the membranes of transport vesicles during budding (2) <one>target</one> or <one>t-SNAREs</one>: these are located in the membranes of target compartments
169
+ - In general: <one>which two types of cilia exist</one>? (1) motile cilia (2) nonmotile cilia, also called <two>primary cilia</two>
170
+ - The LDL-LDLR endocytosis pathway begins with sequestering the LDL-LDLR complex on the cell surface into ... ? <one>clathrin-coated pits</one>.
171
+ - In LDL endocytosis: what does LDL stand for? <one>Low Density Lipoprotein</one>.
172
+ - <one>Cells</one> contain <two>extensive sets of intracellular membranes</two>. <three>Together these are called the ... </three>? The <one>endomembrane system</one>. URL: https://en.wikipedia.org/wiki/Endomembrane_system
173
+ - The process by which an aged organelle is degraded in a lysosome is called ... ? <one>autophagy</one>.
174
+ - <one>Wie lange</one> dauert die S-Phase in einer Säugetierzelle (von-bis)? <one>10-12 Stunden</one>.
175
+ - The <one>smooth endoplasmic reticulum</one> is called smooth because ... ? Because it <one>lacks ribosomes</one>.
176
+ - Wo kann das Protein <one>Spectrin</one> gefunden werden? <one>Spectrin</one> ist ein <two>Cytoskelett-Protein</two>, das wir "in Erythrozyten" finden können. Es bildet unterhalb der Erythrozytenmembran ein Proteinnetzwerk.
177
+ - The endoplasmic reticulum is especially important in the synthesis of ... ? <one>lipids</one>.
178
+ - <one>Importins</one> <two>belong to which family</two>? <one>Karyopherins</one>. URL: https://en.wikipedia.org/wiki/Karyopherin []
179
+ - In <one>induction of autophagy</one>: <two>who normally inhibits Atg1</two>? The <one>TOR kinase</one>.
180
+ - The <one>Golgi cisternae stack</one> has which 4 functional regions? (1) the cis-Golgi network (CGN) (2) the medial-Golgi (3) the endo-Golgi (4) the <one>trans-Golgi network</one> (<two>TGN</two>)
181
+ - Give another expression for the phenomenon of two, or more, organelles coming into close apposition. A: <one>Inter-organellar membrane contacts</one>.
182
+ - The <one>focal adhesion kinase</one> (FAK) is <two>constitutively associated with</two> ... which subunit of integrins? With the <one>β-integrin</one>.
183
+ - <one>Wieviele Ribosomen</one> könnte man in eine <one>Mycoplasma-Zelle</one> (im Durchmesser) packen? 10.
184
+ - Nenne ein Zellorganell das <one>Cardiolipin</one> enthält. A: Das Mitochondrium und zwar die innere Membran des Mitochondriums.
185
+ - Finden wir <one>in Skelettmuskelzellen</one> <two>mehr ATP</two> oder <two>mehr Kreatinphosphat</two>? Mehr <one>Kreatinphosphat</one>. []
186
+ - Give another name for <one>intracellular containers</one>? <one>Transport vesicles</one>.
187
+ - Can the <one>nuclear lamins</one> be <two>phosphorylated</two>? Most likely, because they can definitely be <one>dephosphorylated</one>.
188
+ - Wie schnell sind <one>G-Proteine</one>, allgemein? Etwa 3 Umwandlungen / <one>Minute</one>.
189
+ - <one>Woran</one> binden die <two>Rab-Domänen</two> 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.
190
+ - The <one>Triskelion</one> is <two>made up of which subunits called ... </two>? <one>Clathrin</one>.
191
+ - Nenne die <one>drei Hauptgruppen von Membranlipiden</one>. A: (1) Glykolipide (2) Phospholipide (3) <one>Cholesterin</one>
192
+ - Wie können wir <one>beweisen</one> das sich Membranproteine lateral in der Membran bewegen können? Indem wir humane und Maus-Zellen fusionieren. Es kommt dadurch zum Durchmischen artspezifischer Proteine.
193
+ - Why is the <one>histone fold</one> so important? So that the <one>histone octamer</one> can form.
194
+ - <one>Welche zwei Proteine</one> 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>
195
+ - Vorläufer der <one>Ceramide</one>? <one>Sphingosine</one>.
196
+ - In der Zellbiologie: was heißt "ESCRT"? The <one>endosomal sorting complex required for Transport</one>.
197
+ - A typical animal cell is <one>n μm in diameter</one>. A: <one>10-20 μm in diameter</one>.
198
+ - In der <one>Autophagie</one> bei der Zellbiologie: was heisst <one>PAS</one>? <two>Phagosome assembly site</two>.
199
+ - <one>G-Proteine</one> besitzen was für eine Aktivität? Eine <one>GTPase Aktivität</one>. URL: https://de.wikipedia.org/wiki/G-Proteine []
200
+ - What does the <one>signal hypothesis</one> state? The site of synthesis of a protein was determined by the sequence of amino acids in the N-terminal portaion of the polypeptide.
201
+ - Wieso benötigt eine Zelle <one>Ribose-5-phosphat</one>? Zur <one>Synthese</one> von <two>RNA</two> und <two>DNA</two>.
202
+ - Wie heißt das <one>endoplasmatische Retikulum</one> auf Englisch? <one>Endoplasmic reticulum</one>. URL: https://en.wikipedia.org/wiki/Endoplasmic_reticulum []
203
+ - Give another, more interesting expression for the <one>addition of a ubiquitin tail</one>. A: The <one>kiss-of-death</one>. []
204
+ - How is the inner part of a <one>plasmodesma</one> called? <one>Desmotubule</one>.
205
+ - Nenne ein Protein das den Zellzyklus blockieren kann. A: <one>p21</one>.
206
+ - <one>How many different cell types</one> can we find in the human body? <one>210</one>.
207
+ - In cellbiology, related to G proteins: what are the <one>RGS</one>? <one>RGS</one> are <two>Regulators of G protein signaling</two>. They can activate GTPases for heterotrimeric G-protein alpha-subunits.
208
+ - Nenne <one>eine sterolähnliche Verbindung in der Zellmembran</one> von <i>Pseudomonas syringae</i>. A: <one>Hopanoide</one>.
209
+ - <one>Welches Protein</one> dissoziiert vSNARE/tSNARE Komplex? <one>NSF</one> (unter ATP Verbrauch).
210
+ - Die <one>ATPase</one> besitzt einen <two>F0 Teil</two> und einen <two>F1 Teil</two>. <three>Welcher dieser beiden Teile ist der katalytisch wirkende Teil</three>? <one>F1</one>. []
211
+ - The <one>lipid molecules in a cell membrane's continuous double layer</one> are <two>about n nm thick</two>? About <one>5 nm thick</one>. []
212
+ - In der Zellbiologie: was kann Dank <one>GFP-tagging</one> zellulär erreicht werden? Wir können so zum Beispiel die Kompartimentierung von Proteinen in der Zelle untersuchen.
213
+ - <one>Wann</one> wurde die <two>RNA-World Hypothesis</two> vorgestellt? Im Jahre <one>1986</one>.
214
+ - Name <one>the three principal organelles</one> of the <two>secretory pathway</two>. A: (1) The <one>ER</one> (2) The <one>Golgi apparatus</one> (3) The <one>plasma membrane</one>
215
+ - <one>Which protein</one> <two>assembles new nucleosomes</two>? <one>CAF-1</one> - the <two>chromatin assembly factor</two>. URL: https://en.wikipedia.org/wiki/CAF-1
216
+ - How do <one>wee-mutants</one> look in general? They are <one>small</one>.
217
+ - Name a domain in an <one>initiator procaspase</one>. A: <one>CARD</one> - the <two>Caspase recruitment domain</two>.
218
+ - The <one>SV40 T-Antigen</one> can be imported into the nucleus by <two>importins</two>, thanks to the <one>PPKKKRKV signal sequence</one>. <three>How amenable is said sequence to change</three>? Not very amenable at all. If one lysine is replaced by a threonine, no import will happen at all.
219
+ - Der <one>retrograde transport</one> bei <two>COP I</two> verläuft von ... zu ...? Von Golgi, zum ER. []
220
+ - Was ist das <one>major cargo protein</one> im zellulären <two>Cvt Pathway</two>? Aminopeptidase I (Ape1).
221
+ - <one>Ionenkanäle</one> <two>können kontrolliert werden</two>. Nenne hierzu drei Möglichkeiten. A: (1) spannungskontrolliert (2) ligandenkontrolliert (Transmitter, Ionen, Nukleotide) (3) <one>mechanisch kontrolliert</one>
222
+ - Nenne <one>drei allgemeine Funktionen der Mikrotubuli</one>. A: (1) Formerhalt der Zelle (2) Geißeln (3) Bewegung der Chromosomen bei der Mitose
223
+ - What is <one>the total mass</one> of the <two>ATP synthase</two>, <three>in Daltons</three>? <one>600.000 Daltons</one>.
224
+ - Can <one>gap junctions</one> be found in <three>erythrocytes</three>? No. URL: https://en.wikipedia.org/wiki/Gap_junction []
225
+ - What happens if the <one>NLS</one> <two>is mutated</two>? This will lead to <one>cytosolic localization of the given package</one>.
226
+ - Name <one>the three principal organelles of the secretory pathway</one>. A: (1) the <one>endoplasmic reticulum</one> (2) the <one>Golgi apparatus</one> (3) the <one>plasma membrane</one>
227
+ - Aus welchen <one>Domänen</one> besteht ein <two>Motorprotein</two>? Aus einer <one>Kopfdomäne</one> sowie einer <one>Schwanzdomäne</one>.
228
+ - In der Zellbiologie ist eine <one>Darmepithelzelle</one> ein Beispiel für eine <two>polarisierte Zelle</two>. Welche drei Seiten können wir hier unterscheiden? (1) Apikal (2) Lateral (3) <one>Basal</one>
229
+ - Nenne <one>zwei Typen membranständiger Multiproteinkomplexe</one>, die am <two>Transport mitochondrialer Proteine</two> beteiligt sind. A: (1) <one>TIM</one> (2) <one>TOM</one>
230
+ - Name <one>a trivial difference</one> between a <two>late endosome</two> and an <two>early endosome</two>. A: A late endosome is larger than the early endosome.
231
+ - <one>When</one> is a <two>Rab Protein</two> active? When it has bound <one>GTP</one>. []
232
+ - <one>Wo</one> spalten <two>Caspasen</two>? <one>Hinter</one> einem <two>Aspartat</two>.
233
+ - <one>Microtubules</one> are nucleated at which end? Their <one>minus (-) end</one>.
234
+ - The <one>cell's library</one> is ... ? <one>DNA</one>. []
235
+ - What are <one>sad cells</one>? <one>Cells in culture that die after some weeks</one>.
236
+ - In der Zellbiologie: was ist eine <one>Signalsequenz</one>? Eine <one>Signalsequenz</one> ist eine Peptidsequenz mit der Information wie und wohin ein Protein innerhalb einer Zelle transportiert werden soll.
237
+ - Sind Membranen einer Zelle <one>Polymere</one>? Nein - Membranen sind <one>Aggregate</one>.
238
+ - The <one>outer nuclear membrane</one> is continuous with ... ? the <one>endoplasmic reticulum</one>.
239
+ - The longest cells are typically ... ? <one>Nerve cells</one>, aka neurons. Some of these neurons stretch from spine to toe.
240
+ - Was ist ein <one>Tendinozyt</one>? Ein Tendinozyt ist eine Fibroblastenart, die im straffen kollagenen parallelfaserigen Bindegewebe von Sehnen vorkommt.
241
+ - Define the term <one>cytosol</one>. A: The <one>cytosol</one> is the organelle-free part of the cytoplasm.
242
+ - An <one>amoeba</one> (a single-celled protozoan) can have a cell diameter of approximately ... ? <one>0.5 mm</one>.
243
+ - <one>Was</one> kann man mit <one>Inhibitors</one> und <two>Uncouplers</two> demonstrieren? Den Elektronenfluss durch Zellkomplexe wie ATPase.
244
+ - The <one>plasma membrane</one> contains how many layers of phospholipids? <one>Two</one>.
245
+ - Are <one>phospholipid membranes</one> permeable to water? No, they are <one>impermeable to water</one>.
246
+ - Is membrane synthesis, for a given cell, is templated by a parental structure? Yes, always.
247
+ - The conserved building blocks of all cellular membranes are ... ? The <one>phospholipids</one>.
248
+ - Cells produce which three types of large macromolecules? (1) <one>polysaccharides</one> (2) <one>proteins</one> (3) <one>nucleic acids</one>
249
+ - Eine typische Eukaryotenzelle hat etwa n Nuclear Pore Complexes (NPC)? Etwa 3000-5000 dieser NPCs.
250
+ - The basis for asexual reproduction is given by ... ? <one>Mitosis</one>.
251
+ - Proteine die ins <one>Peroxisom</one> transportiert werden, tragen die Signalsequenz am N-Terminus oder am C-Terminus? Am <one>C-Terminus</one>.
252
+ - How do we call <one>the vesicles</one> derived from the <three>ER</three>? <one>Microsomes</one>.
253
+ - What is the best source for microtubules? Brains.
254
+ - Give another term for "chaperones". A: Folding proteins.
255
+ - For the retention of a protein in the lumen of the ER, which three aminoacids are important, linked together? <one>K-D-Q</one>.
256
+ - Nenne einen Regulator der ras-Aktivität. A: <one>NF1</one>.
257
+ - The <one>KDEL sequence</one> in peptides is located on the N-terminus or the C-terminus? It is located on the C-Terminus of an amino acid sequence of a protein.
258
+ - Was heisst <one>Tom complex</one>? <one>Translocase of the outer mitochondrial membrane</one>.
259
+ - Was ist die Rolle des <one>Pyruvat Dehydrogenase Complex</one> (<one>PDC</one>) in der Zelle? Dieser mitochondriale Porenkomplex <one>importiert Acetyl-CoA</one>.
260
+ - <one>Nitric oxide</one> (NO) has an impact on which part of the Mitochondria? On "Complex IV", cytochrome c oxidase.
261
+ - In a <one>hepatocyte</one>, name the two major constituents belonging to an intracellular compartment, in regards to the "total cell volume". A: (1) Cytosol ("54%") (2) <one>Mitochondria</one> (<two>22%</two>)
262
+ - Definiere Heterotrophy. A: At least two genetically different types of mitochondria (or other organelles) are present in the same cell.
263
+ - From the point of view of cellbiology: how can the DNA in a cell be called, in regards to the cell as the focus of the question? DNA is the <b>genomic repository of a cell</b>.
264
+ - In the cytoplasm, hydrolysis of ... to ... causes <one>dissociation of the export complex</one>. A: "Ran-GTP" -> <one>Ran-GDP</one>.
265
+ - In der Biologie, wo finden wir <one>rafts</one>? In der <one>Membran</one> (es sind <two>Membranproteine</two>).
266
+ - What happens when we increase the concentration of detergents above the CMC? Some of the <one>detergent molecules</one> will form <two>micelles</two>.
267
+ - Was sind die <one>Elektronenüberträger</one> innerhalb der Zelle? NAD/H + NADP/H.
268
+ - Does <one>organelle DNA</one> replicate even in <two>cells that do not divide</two>? <one>Yes</one>. []
269
+ - Andere Bezeichnung für <one>zwischen den Zellen</one>? <one>Interstitiell</one>. URL: https://flexikon.doccheck.com/de/Interstiti []
270
+ - Ein <one>Lariat</one> hat was für eine Struktur genau? Zirkuläre RNA mit <one>3' OH-Gruppe-</one>.
271
+ - <one>Activated Raf</one> ultimately activates ... ? <one>MAP Kinase</one>.
272
+ - Unterschied zwischen den <one>saturated fatty acids</one> und <one>unsaturated fatty acids</one>? Die saturated fatty acids haben C-C Bindungen die nur Einzelbindungen sind. Die unsaturated fatty acids hingegen haben C=C Bindungen, also Doppelbindungen.
273
+ - The protein "Dysferlin" is linked to which cellular function ...? To <one>skeletal muscle repair</one>.
274
+ - What is the <one>coatomer</one> in cell biology? The <one>coatomer</one> is a protein complex that coats membrane-bound transport vesicles.
275
+ - <one>Phospholipase C</one> <two>can activate which pathway</two>? The <one>inositol 1,4,5-trisphosphate pathway</one>.
276
+ - Why the name <one>cadherin</one>? <one>Cadherin</one> depend on Ca2⁺ ions - removing Ca2⁺ from the extracellular medium causes adhesion mediated by cadherin to come apart.
277
+ - The interiors of cellular compartments communicate with one another via ... ? Via <one>transport vesicles</one>. []
278
+ - <one>Sphingosine</one> 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>NH₂</one>).
279
+ - The <one>main phospholipids</one> in most animal cell membranes are ... ? The <one>phosphoglycerides</one>.
280
+ - What are <one>Neocentromeres</one> and how do they originate? Neocentromeres are ectopic centromeres that originate occasionally from noncentromeric regions of chromosomes.
281
+ - Im rauhen <one>cytoplasmatischen Retikulum</one>: wo findet man die Ribosomen? Auf der <one>Cytosol-Seite</one>.
282
+ - Can cells pick up other cells through <one>endocytosis</one>? Yes. []
283
+ - <one>Microfilaments</one> in a cell derive from which <three>protein</three>? From <one>actin</one>. URL: https://en.wikipedia.org/wiki/Microfilament []
284
+ - <one>ARF-GAP1</one> ist was für ein Proteintyp? Ein GAP (GTPase-activating protein)
285
+ - Was wird durch <one>Pinocytose</one> aufgenommen? <one>Flüssigkeiten</one>. []
286
+ - In cell biology: what is a <one>retromer</one>? A complex of proteins that has been shown to be important in recycling transmembrane receptors from the endosomes to the trans-Golgi network.
287
+ - Chaperone-mediated autophagy (CMA) involves the recognition by ... which complex? The <one>hsc70-containing complex</one>.
288
+ - Nenne <one>drei konkrete Funktionen des glatten ERs</one>. A: (1) Synthese von Lipiden (2) Kohlenhydratstoffwechsel (3) Detoxifizierung von Giften
289
+ - Anteil von <one>Calmodulin</one> in % an der Proteinmasse in einer typischen eukaryoten Zelle? <one>1%</one>.
290
+ - <one>When</one> was the structure of the <two>nucleosome core particle</two> solved? In the year <one>1997</one>.
291
+ - <one>Which hormone</one> causes <two>apoptotic loss of the tail in frogs</two>? The <one>thyroid hormone</one>. []
292
+ - <one>Cytokines</one> 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) <one>cell movement</one>
293
+ - What activity does <one>Dynamin</one> have? <one>Dynamin</one> has <two>a GTPase activity</two>. URL: https://en.wikipedia.org/wiki/Dynamin
294
+ - The <one>Coatomer</one> consists of <two>how many different coat ("COP")-proteins</two>? <one>7</one>. URL: https://en.wikipedia.org/wiki/Coatomer []
295
+ - <one>Inter-organellar connections</one> depend on ... which act as tethers to bridge the respective organelle membranes. A: interacting proteins.
296
+ - What is the <one>end stage</one> of an autolysosome? A <one>residual body</one>.
297
+ - Der Farbstoff <one>Hämatoxylin</one> färbt was genau innerhalb einer Zelle an? Den <one>Zellkern</one>.
298
+ - Wie messen wir die <one>Funktion eines Ionenkanals</one>? Mit Hilfe der <one>patch clamp</one> Technik. []
299
+ - Was machen <one>GTPasen</one>? <one>GTPasen</one> binden GTP und hydrolysieren dieses dann zu GDP.
300
+ - A <one>transport vesicles</one> in general carries ... ? <one>Cargo</one>. []
301
+ - What is the <one>primary function</one> for "intermediate filaments" for a cell? To <one>provide mechanical strength</one>.
302
+ - What means <one>dynamic instability</one> in <two>microtubules</two>? That microtubules undergo phases of growth and shrinkage.
303
+ - Microscopy is very important in cell biology. We can see the <one>refractive index</one> here. If we see a value such as 1.33, which is indicative of water, what does this mean? That <one>light travels 1.33 times slower in water than it does in a vacuum</one>.
304
+ - There is the <one>Ras superfamily</one>. What does <two>Rab</two> stand for? <one>Ras-like in Brain</one>. URL: https://en.wikipedia.org/wiki/Rab_(G-protein) []
305
+ - Nenne einen sehr wichtigen <one>cell survival factor</one>. A: Der <one>Transkriptionsfaktor NF-Kappa Beta</one>. Er aktiviert Gene die für <two>cell-survival Proteine</two> kodieren.
306
+ - Give an example for <one>a monomeric GTPase</one>. A: The <one>Ras-proteins</one>. URL: https://en.wikipedia.org/wiki/Ras_GTPase []
307
+ - Name <one>two general advantages</one> associated with subcellular components. A: (1) <one>concentrate metabolic intermediates</one> (2) <one>sequester toxic compounds</one>
308
+ - In cellbiology: what is <one>Dynamin</one>? Dynamin is a large GTPase, involved in the scission of nascent vesicles from parent membranes.
309
+ - How can we detect <one>apoptotic cells</one>? Via <one>TUNEL Labeling</one>.
310
+ - Give another name for the <one>G0-phase</one>. A: <one>Resting state</one>.
311
+ - What is <one>Transcytosis</one>? Transcytosis is the process by which various macromolecules are transported across / through the interior of a cell.
312
+ - Was geschieht beim <one<Spindel-Checkpoint</one>? Die Zelle überprüft ob alle Chromosomen an Spindeln angehängt sind.
313
+ - For its synthesis, <one>Cyclin D</one> requires which specific transcription factor? <one>E2F</one>.
314
+ - What does it mean when we say that <one>the subunits of actin filaments are asymmetrical</one>? These subunits bind to one another head-to-tail, so that they all point in one direction.
315
+ - <one>Durchmesser einer Kernpore</one>, <two>in nm</two>? Etwa <one>120 nm</one>.
316
+ - An die <one>Kernmembran</one> schließt ... ? Das <one>Endoplasmatische Retikulum</one> (<one>ER</one>).
317
+ - <one>Wo</one> befinden sich <one>tSNARE Proteine</one> allgemein? <one>tSNARE Proteine</one> befinden sich in der <two>Membran der Zielorganelle</two>.
318
+ - Give another name for <one>photoreceptors</one>. A: <one>Molecular light switches</one>.
319
+ - Was bedeutet der Name bei der <one>I-cell disease</one>? <one>Inclusion-cell disease</one>.
320
+ - <one>Kompartimente</one> erfordern ...? Proteinsortierung.
321
+ - <one>Which three components</one> do we require for <one>a human artificial chromosome</one>? (1) Centromere (2) Telomere (3) <one>Replication Origin</one>
322
+ - What is <one>ferroptosis</one>? <one>Ferroptosis</one> is <two>a type of programmed cell death dependent on iron</two>.
323
+ - Name an enzyme that helps in "protein folding". A: The <one>protein disulfide isomerase</one>.
324
+ - What is the <one>transitional ER</one>? These are areas of smooth ER that bud off for transport to the Golgi apparatus.
325
+ - <one<Glucose transport</one> in a cell is connected to which gradient? Na+ Gradient.
326
+ - Andere Bezeichnung für den <one>Golgi-Komplex</one>. A: <one>Sortierungszentrum</one>.
327
+ - How do we call the vesicles derived from the <one>endoplasmic reticulum</one>? <one>Microsomes</one>. URL: https://en.wikipedia.org/wiki/Microsome []
328
+ - Name <one>an important, extracellular matrix protein</one>. A: <one>Fibronectin</one>.
329
+ - Warum sind <one>vesicles</one> für die Zelle so wichtig? Weil sie damit Moleküle zwischen Organellen und dem Aussenmilieu verschicken kann.
330
+ - A. W. für <one>lösen</one>, in bezug auf die Zellbiologie? <one>Solubilisieren</one>.
331
+ - Which <one>three components</one> can we find in the ABC transport system? (1) substrate-binding protein (2) membrance-integrated transporter (3) ATP-hydrolyzing protein
332
+ - Name one <one>microtubule severing protein</one>. A: <one>Katanin</one>. It is named after the japanese sword katana. URL: URL: https://en.wikipedia.org/wiki/Katanin []
333
+ - Welche <one>drei Aussagen</one> 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.
334
+ - <one>Welche Hypothese</one> konnte durch <two>Louis Pasteur</two> widerlegt werden? Die <one>Spontanzeugungshypothese</one>.
335
+ - <one>Welche Aufgabe</one> hat die <one>kontraktile Vakuole</one>? Überschüssiges Wasser wird über die kontraktile Vakuole aus der Zelle gepumpt. []
336
+ - Name a common (functional) feature of <one>karyopherins</one>. A: <one>Karyopherins</one> interact with <two>Ran proteins</two>.
337
+ - Name the <one>two main classes of membrane proteins</one> that mediate transmembrane traffic. A: (1) <one>transporters</one> (2) <one>channels</one>
338
+ - In cell biology: the <one>ARF-GAP1</one> can do what? ARF-GAP1 <one>can sense membrane curvature</one>. []
339
+ - Was sind <one>MDCK Zellen</one>? <one>Madin-Darby canine kidney cells</one>.
340
+ - Give another word/term for the <one>centrosome</one>. A: <one>Microtubule organizing center</one>. URL: https://en.wikipedia.org/wiki/Microtubule_organizing_center []
341
+ - Wo finden wir den <one>Intermembranraum</one> eines Mitochondriums? Zwischen der äusseren und der inneren Membran.
342
+ - Was ist ein <one>RNA-Thermosensor</one>? Dies bezeichnet eine RNA, die mittels Veränderung ihrer Sekundärstruktur Temperatur "messen" kann.
343
+ - Die gängige Bezeichnung für <one>Mitochondrien</one> ist ... ? <one>Kraftwerke der Zelle</one>.
344
+ - Was macht das <one>Tus Protein</one>? Es blockiert die "DnaB-Helikase" und bringt damit die Wanderung der Replikationsgabel zum Stillstand.
345
+ - <one>Wo</one> finden wir innerhalb einer Zelle <two>Phosphoanhydride</two>? In <one>ATP-Molekülen</one>.
346
+ - <one>Dynamin</one> uses which energy source? <one>GTP</one>. URL: https://en.wikipedia.org/wiki/Dynamin []
347
+ - In which stage of the cell cycle can we readily mark a cell with <one>radioactive thymidine</one>? In the <one>S phase</one>. []
348
+ - <one>Caspases</one> cleave the target proteins at? At a specific <one>aspartic acid</one>. URL: https://en.wikipedia.org/wiki/Caspase []
349
+ - <one>Wie</one> gelangt Pyruvat in das Mitochondrium? Über einen <one>H⁺</one>-Symporter.
350
+ - Wie werden die <one>drei Stapel</one> im Golgi-Apparat genannt? (1) <one>cis</one> (2) <one>medial</one> (3) <one>trans</one>
351
+ - What is the <one>intracellular signal</one> that triggers macroautophagy? The intracellular levels of particular amino acids.
352
+ - Das Medikament <one>Eribulin</one> bindet woran? An das <one>+Ende wachsender Mikrotubuli</one>.
353
+ - Why is <one>PAS</one> (<two>pre-autophagosomal structure</two>) so important? Most proteins involved in autophagosom formation localize to the PAS at some stage.
354
+ - In cellbiology: what is the primary role of SNARE proteins? <one>SNARE proteins</one> <two>mediate vesicle fusion</two>, that is, the exocytosis of cellular transport vesicles with the cell membrane at the porosome or with a target compartment, such as a lysosome.
355
+ - <one>Diacylglycerol</one> wird als Ausgangssubstanz für welches Phospholipid benötigt? <one>Phosphatidylcholin</one>. URL: https://de.wikipedia.org/wiki/Lecithine []
356
+ - In der Zelle führt die <one>TPST</one> (<one>tyrosylprotein sulfotransferase</one>) im Golgi Apparat Sulfonierungen (Sulfation) durch. Woher stammt aber der Schwefel? Der Schwefel stammt von <one>PAPS</one> (<one>3'-Phosphoadenosine-5-Strich-Phosphosulfate</one>).
357
+ - When an <one>early endosome</one> becomes a <two>late endosome</two>, aside from morphology, what else may change that is rather important? It will become <one>increasingly acidic</one>.
358
+ - <one>Receptor-mediated endocytosis</one> is initiated how? When a specific ligand binds to receptors that are present on the cell surface.
359
+ - Do <one>growth factors</one> also belong to the group of <two>cytokines</two>? Yes. URL: https://en.wikipedia.org/wiki/Growth_factor []
360
+ - Um auf ein <one>Hormon</one> reagieren zu können, brauchen die Zellen ... ? einen <one>Rezeptor</one>. []
361
+ - Name the 3 Ras Proteins in humans. A: (1) H-Ras (2) K-Ras (3) N-Ras []
362
+ - <one>COPII-coated vesicles</one> go from→to? From <one>ER→Golgi</one>.
363
+ - Lysosomaler Enzym-Schutz? Zum einen pH-Optimum von 5-6; zum anderen ein <one>Oligosaccharidpanzer</one>, also <two>hochglykosyliert</two> als Schutz vor Autolyse durch lysosomale Proteasen.
364
+ - In der Zellbiologie: wofür steht die Abkürzung <one>NA Wert</one>? <one>Numerical Aperture</one>.
365
+ - Die <one>Phospholipid-Synthese</one> erfolgt wo in der Zelle? An <one>der cytosolischen Seite der glatten ER-Membran</one>.
366
+ - How do we call the <one>heterotrimeric G-protein of Rhodopsin</one>? <one>Transducin</one>. URL: https://en.wikipedia.org/wiki/Transducin
367
+ - Allgemein: welche 4 chemische Gruppen-Reste können Aminosäuren haben? (1) sauer (2) basisch (3) polar (4) <one>unpolar</one>
368
+ - Was heisst <one>Tor-Kinase</one>? <one>Target of Rapamycin</one>. []
369
+ - <one>pH Wert</one> in einem <two>Lysosome</two>? <one>5</one>. []
370
+ - The <one>fluid mosaic model</one> includes, obviously, the word <two>mosaic</two>. What should this word indicate? That this model refers to the presence of proteins suspended in the membrane bilayer.
371
+ - Nenne einen Marker in <one>smooth muscle cells</one>. A: <one>Calponin</one>.
372
+ - Wenn <one>eine Zellmembran nur bestimmte Ionen durchlässt</one>, <two>wie nennen wir dieses Phänomen</two>? <one>Selektive Permeabilität</one>.
373
+ - In der Zellbiologie: was heisst <one>ERGIC</one>? <one>ER-Golgi intermediate compartment</one>.
374
+ - <one>5-Methylcytosin</one> ist methyliert, und kann über eine Oxidation in welche 3 anderen Nukleotide konvertiert werden? (1) 5-Hydroxymethylcytosin (hmC) (2) <one>5'-Formylcytosin</one> (<two>fC</two>) (3) <one>5'-Carboxycytosin</one> (<two>caC</two>)
375
+ - What is the major task of the <one>cis-Golgi network</one>? The cis-Golgi network receives the biosynthetic output from the ER.
376
+ - In einer eukaryoten Zelle: ist eher das ER näher am Zellkern oder der Golgi Komplex? Das ER ist deutlich näher am Zellkern als der Golgi Komplex.
377
+ - <one>Cell surfaces</one> in general tend to be rather positively or rather negatively charged? <one>Cell surfaces</one> tend to be <two>negatively charged</two>.
378
+ - <one>How</one> is the pH of Lysosomes maintained? By the <one>vacuolar adenosine triphosphatase proton pump</one>.
379
+ - Wo kann das Protein <one>RanGAP1</one> gefunden werden? Auf der <one>Aussenseite des Zellkern</one>.
380
+ - How many <one>NPCs</one> does <two>a typical mammalian cell</two> have (from-to)? <one>3000-4000 NPCs</one>. []
381
+ - <one>Integral membrane proteins</one> can be categorized as type I and type II. What is the difference there? (1) <one>Type I</one>: these have their C-terminus towards the cytoplasm. (2) <one>Type II</one>: these have their N-terminus towards the cytosol.
382
+ - <one>What type of light</one> is used in microbiology? <one>Visible light</one> + <one>UV light</one>.
383
+ - <one>Welches Signalpeptid</one> wird nicht abgespalten? Das <one>Kernlokalisationssignal</one>.
384
+ - Welches <one>Phospholipid</one> trägt eine negative Ladung nach aussen hin? <one>Phosphatidylserin</one>. URL: https://de.wikipedia.org/wiki/Phosphatidylserin []
385
+ - Was ist mit dem Begriff <one>primäre Endocytobiose</one> gemeint? Das Aufnehmen eines Prokaryoten und dessen Reduktion auf die Stufe eines Organells im Laufe der Evolution. Wichtig bei der Mitochondrien und Chloroplasten-"Entstehung".
386
+ - <one>Calmodulin</one> besitzt <two>n Ca²⁺ binding sites</two>? <one>4</one>. URL: https://en.wikipedia.org/wiki/Calmodulin []
387
+ - What is <one>Pyknosis</one>? This is <one>the irreversible condensation of chromatin in the nucleus of a cell undergoing necrosis or apoptosis</one>.
388
+ - Name <one>one important receptor</one> that is degraded within lysosomes. A: <one>EGFR Receptor</one> (this is a safety mechanism).
389
+ - Die <one>M-Phase</one> im Zellzyklus wird unterteilt in welche Phasen? (1) "Karyokinese" (2) <one>Zytokinese</one>
390
+ - <one>Phospholipide</one> können in der Membran bewegt werden. Nenne die 4 grundlegenden <two>Bewegungsarten</two>. A: (1) laterale diffusion (2) Flexion (3) Rotation (4) <one>transversale Diffusion</one>
391
+ - In cell biology: what is the <one>kiss of death</one>? <one>The addition of Ubuiqitin to proteins</one>. This addition often commits the labelled protein to degradation in the 26-S proteasome. []
392
+ - Name <one>three detergents</one> used in cellbiology. A: (1) <one>SDS</one> (2) Triton X-100 (3) Beta-octylglucoside
393
+ - In cellbiology, we have an abbreviation called <one>Cvt</one>. Why this weird name? <one>Cvt</one> means <two>Cytoplasm vacuole targeting</two>. It is sometimes called <three>Cytoplasm-to-vacuole targeting</three>, which may be confusing. URL: https://en.wikipedia.org/wiki/Cytoplasm-to-vacuole_targeting []
394
+ - <one>Welches Protein</one> erreicht eine <two>Abschnürung von Vesikeln</two>? <one>Dynamin</one>. URL: https://de.wikipedia.org/wiki/Dynamine []
395
+ - What do we mean with <one>Translational frameshifting</one>? When we ignore a stop codon.
396
+ - <one>Wo</one> 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.
397
+ - How was the function of the <one>SRP</one> (Signal recognition particle) discovered? By the study of processed and unprocessed immunoglobulin light chains.
398
+ - <one>Wann</one> wurde <two>NLS</two> entdeckt und wo findet man sie? <one>1982 entdeckt</one>; am C-Terminus befindlich. Sie kann jedoch auch an anderer Stelle der Peptidkette auftauchen.
399
+ - <one>Neu synthetisierte Proteine</one> müssen <two>korrekt gefaltet werden</two>. Die dazu <three>notwendigen Hilfsproteine</three> heißen ... ? <one>Chaperone</one>. URL: https://de.wikipedia.org/wiki/Chaperone []
400
+ - Name something in cell biology that has a <one>triskelion structure</one>. A: <one>Clathrin</one>. URL: https://en.wikipedia.org/wiki/Clathrin []
401
+ - Welche Aufgabe hat der <one>ComEC Complex</one>? Der ComEC Komplex macht einen Channel (wichtig für die Kompetenz).
402
+ - Das <one>raue endoplasmatische Reticulum</one> verdankt seine Bezeichnung ... ? Den vielen <one>Ribosomen</one>. []
403
+ - Andere Bezeichnung für <one>Zellkörper</one>? <one>Perikaryon</one>.
404
+ - <one>Fibrinogen</one> kann vor allem an die Rezeptoren welcher Zellen binden? An die <one>Thrombozyten</one>.
405
+ - How can a cell make sense of many different (external) signals? It can respond to these signals selectively by <one>selectively expressing appropriate receptors</one>.
406
+ - Zellbiologisch heraus betrachtet: wieso hat <one>Koffein</one> eine <two>stimulierende Wirkung</two>? Es <one>hemmt die Phosphodiesterase</one>, und bedingt dadurch einen langsameren Abbau von cAMP.
407
+ - In der Zellbiologie gibt es eine Technik namens <one>FRAP</one>. Was heisst das? <one>Fluorescence Recovery after Photobleaching</one>.
408
+ - <one>Telomere fusion</one> may, in general, lead to ... ? <one>Chromosomal instability</one>.
409
+ - What do we mean with <one>Tyr-P</one>? This is <one>a phosphorylated tyrosine</one>. URL: https://en.wikipedia.org/wiki/Tyrosine []
410
+ - Name two <one>microtubule organizing centers</one>. A: (1) centrosome (2) <one>centrioles</one>
411
+ - A. W. für <one>Innendruck des Cytoplasmas</one>? <one>Turgor</one>.
412
+ - Was produziert die <one>Phosphodiesterase</one>? <one>AMP</one>.
413
+ - Ein Botenmolekül <one>will</one> eine Zelle beeinflussen. Was braucht die Zelle hierfür unbedingt? Einen <one>Rezeptor</one>.
414
+ - In der Zellbiologie: was genau heisst <one>Caspase</one>? <one>Cysteinyl-aspartat-spezifische Proteinase</one>.
415
+ - Nenne 3 Typen an <one>Membranproteinen</one>. A: (1) <one>peripher</one> (2) <one>integral</one> (3) <one>glykolipid-verankert</one>
416
+ - <one>NSF</one> is an <two>ATPase</two>, involved in membrane fusion. How many subunits does it have? <one>NSF</one> is homohexameric, so it has <two>six subunits</two>.
417
+ - What is a <one>chromocyte</one>? A chromocyte is any cell that contains a pigment, especially red blood cells. URL: https://en.wiktionary.org/wiki/chromocyte
418
+ - In cell biology: what does <one>FAOS</one> stand for? <one>Fluorescence-assisted organelle sorting</one>.
419
+ - Nenne die fünf Phasen der <one>Meiose I</one> 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> []
420
+ - In cellbiology: what is an <one>organotypic culture</one>? This is the case when we grow cells in a "three-dimensional (3-D) environment".
421
+ - Bis etwa 1970 wurde in der Cytologie das <one>Feulgen reagent</one> verwendet. Welche Farbe hat dies? Ein <crimson>dunkles rot</crimson>. []
422
+ - Name the <one>3 Ras Proteins in Humans</one>. A: (1) <one>H</one>-Ras (2) <one>K</one>-Ras (3) <one>N</one>-Ras
423
+ - Gehören die <one>Lysosomen</one> zum <two>Endomembransystem</two>? <one>Ja</one>. []
424
+ - <one>Microfilaments</one> are formed by ... ? <one>Actin</one>.
425
+ - Welches Enzym erzeugt <one>dTMP</one>? <one>Thymidylate Synthetase</one> (ausgehend von dUMP).
426
+ - <one>When</one> was the <two>nucleosome</two> discovered? In the year <one>1974</one>.
427
+ - Nenne eine besondere Domäne am <one>EGF-Rezeptor</one>. A: Die <one>Dimerisierungsdomäne</one>.
428
+ - Die <one>Fluidität der Plasmamembran</one> ist geringer als die in der intrazellulären Membran auf Grund des hohen Gehalts an ... ? <one>Cholesterin</one>. []
429
+ - <one>Wo</one> in der Zelle finden <two>N-Glykosylierung</two> und <two>O-Glykosylierung</two> statt? (1) Die <one>O-Glykosylierung</one> findet nur im Golgikomplex statt. (2) Die N-Glykosylierung beginnt im ER und wird im Golgi-Komplex fortgeführt.
430
+ - Was heisst <one>iPS</one>? <one>Induzierte, pluripotente Stammzellen</one>. []
431
+ - <one>Which Cdc</one> activates the APC/C complex? <one>Cdc20</one>.
432
+ - Nenne 3 Vertreter des <one>Endomembransystems</one>. A: (1) Golgi (2) Endoplasmatisches Retikulum (3) <one>Lysosom</one>
433
+ - Is <one>lampbrush DNA</one> special? Yes. The DNA in these lampbrush loops appears to be <one>transcriptionally active</one>, while the majority of DNA in axis is inactive.
434
+ - Das <one>Porin</one>-Protein in Mitochondrien erlaubt einen Durchtritt von Molekülen bis zu n Dalton durch? <one>600 Dalton</one>.
435
+ - Name a complex similar to the <one>Gamma-TuRC complex</one>. A: The <one>ARP complex</one>.
436
+ - Give another name for the term <one>autophagy</one>. A: <one>Organelle turnover</one>. URL: https://en.wikipedia.org/wiki/Organelle []
437
+ - What is the function of the <one>ECM</one> (<one>extracellular matrix</one>)? The ECM <one>ties cells together</one>, enabling them to "form complex tissues". URL: https://en.wikipedia.org/wiki/Extracellular_matrix
438
+ - Was heisst <one>ERAD</one> in der Zellbiologie? <one>ER-associated degradation</one>.
439
+ - Within a <one>monolayer</one>, <two>where</two> can we find Cholesterol? <one>Cholesterol</one> is preferentially localized to the upper region of the monolayer because the hydroxyl-group prefers an aqueous environment.
440
+ - Was ist ein <one>Gewebe</one>? Dies ist <one>ein Verbund von Zellen mit gemeinsamer Funktion</one>.
441
+ - Nenne <one>three photoproteins</one>. A: (1) <one>Aequorin</one> (2) <one>Obelin</one> (3) <one>Phialidin</one>
442
+ - What is the RNA component of SRP? The <one>7SL-RNA</one>. URL: https://en.wikipedia.org/wiki/Signal_recognition_particle_RNA
443
+ - <one>Who</one> and <two>when</two> published the molecular structure of the first nucleotide? <one>Furbery</one>, 1951.
444
+ - Nenne ein zelluläres Ereignis, das durch <one>exogene Noxen</one> ausgelöst werden kann. A: Die <one>Nekrose</one>.
445
+ - What is the job of the <one>satellite muscle cells</one>? They repair injured muscle cells. Satellite cells can self-renew and proliferate, thus providing new myogenic cells.
446
+ - Was genau ist die <one>Matrix</one> der Mitochondrien? Das ist genau <one>der innerste Teil der Mitochondrien</one>.
447
+ - What is <one>the most important parameter</one> in animal cell culture? The <one>concentration of cells</one>.
448
+ - A. W. für <one>histone writers</one>? <one>Histone modifying enzymes</one>.
449
+ - <one>Desmin</one> is a protein, a type III intermediate filament. It can also be found in humans. In which type of cells may we find it? Desmin can be found in <two>muscle cells</two>.
450
+ - In der Zellbiologie: was heisst <one>ICAM</one>? <one>Intercellular adhesion molecule</one>. URL: https://en.wikipedia.org/wiki/Intercellular_adhesion_molecule
451
+ - In the cell, tethering proteins of the membrane do recognize which proteins? They recognize <one>Rab proteins</one>.
452
+ - Was heisst <one>EDTA</one> und wozu setzt man es in der Zellbiologie ein? <one>EDTA</one> heisst <two>Ethylendiamintetraacetid acid</two>. Es bindet Ca2+ Ionen, die wiederum für Zell-Zell Adhesionskontakte wichtig sind. Das Zell-Gewebe kann daraufhin leichter getrennt werden.
453
+ - Name <one>an advantage of optical microscopy</one>, in regards to visualizing biological systems. A: Light is relatively <one>nondestructive</one>.
454
+ - <one>How much</one> of the ER comprise of <two>newly-synthesized proteins</two>? Only about <one>1%</one>.
455
+ - What is the job of the <one>PIN Proteins</one> in plants? They serve as secondary active transporters in the cell membrane, regulating the influx and efflux of auxins.
456
+ - <one>Below a certain temperature</one>, lipids are in ... which form? They tend to be in a <one>paracrystalline</one> form. []
457
+ - Name one general way to inhibit translation. A: <one>Make use of a microRNA</one>.
458
+ - <one>Welche Gene</one> verzögern den Zellzyklus? <one>Tumorsuppressor-Gene</one>.
459
+ - <one>Inositol</one> besitzt <two>n OH-Gruppen</two>? <one>6</one>. URL: https://en.wikipedia.org/wiki/Inositol []
460
+ - In general, <one>activation of p53</one> has which two different possible "cellular outcomes"? (1) "cell-cycle arrest" (2) <one>apoptosis</one>
461
+ - <one>Wo</one> findet man die <two>tSNAREs</two>? Auf der <one>Zielorganelle</one>. []
462
+ - <one>G-Proteine</one> bestehen aus drei Untereinheiten. Welche davon bindet GTP? Die <one>alpha-Untereinheit</one> bindet (und hydrolysiert) GTP. []
463
+ - Aufgabe der <one>Calpaine</one>? <one>Calpaine</one> <two>bauen Muskeleiweiß ab</two>. URL: https://en.wikipedia.org/wiki/Calpain
464
+ - Consider an <one>integrin</one> that is in an <two>active state</two>. What do we know, then? That this integrin will <one>readily form attachments</one>.
465
+ - The ability of <one>importins</one> and <one>exportins</one> to transport their cargo is regulated by ...? <one>Ran</one>, a small Ras-related GTPase.
466
+ - What is <one>the central component of the translocon</one>? The <one>Sec61 complex</one>.
467
+ - What is the <one>most abundant disaccharide</one> in Biology? <one>Sucrose</one> (this is Saccharose, but we prefer the term Sucrose in the english language).
468
+ - Wie erfolgt <one>der Import von NLS-haltigen Proteinen</one>? Durch <one>Importin Alpha</one> und <one>Importin Beta</one>.
469
+ - How comes a cell manages to counteract <one>incorrect stop codons</one>? This is achieved by a process called <one>NMD</one> (<slateblue>nonsense mediated decay</slateblue>).
470
+ - Wozu braucht die Zelle <one>Mikrotubuli</one>? Mikrotubuli funktionieren wie <one>Schienen</one>, entlang derer Mitochondrien, Chloroplasten, Vesikel, Proteine und mRNA transportiert werden kann.
471
+ - Are <one>Endosomes</one> organelles? Yes. []
472
+ - <one>How</one> is the <two>Ras signal-transduction pathway</two> activated? When e. g. EGF binds to a receptor.
473
+ - To which family do the "death receptors" belong to? <one>TNF receptor family</one>.
474
+ - Give a shorter word for "cytoskeletal linker proteins". A: <one>Cytolinkers</one>.
475
+ - In der Zellbiologie, was heisst <one>SNARE</one>? <one>SNAP-(Soluble NSF Attachment Protein)-REceptor</one>. Wenn man das NSF auch noch ausschreibt so kommt man auf "Soluble N-ethylmaleimide-sensitive-factor Attachment Receptor".
476
+ - What cellular effect may be caused by a <one>phenobarbital-treatment</one>? This will <one>stimulate liver cell division</one> - and thereby liver enlargement.
477
+ - Name <one>a potent inhibitor of autophagy</one>. A: <one>Amino Acids</one>.
478
+ - Give another, prettier name for <one>pigments</one>. A: <one>Rainbow catchers</one>.
479
+ - Woraus besteht <one>ein einzelnes Tubulin-Molekül</one>? Es handelt sich hierbei um ein <one>Heterodimer</one>, bestehend aus <two>Alpha</two> und <two>Beta-Tubulin</two>. []
480
+ - Inside of a given cell, where may the protein <one>Profilin</one> be found? It can be found <one>bound to an actin monomer</one>.
481
+ - In der Zellbiologie gibt es die <one>Microbodies</one>. Was wird damit bezeichnet? (1) <one>Peroxisomen</one> (2) <one>Glyoxisomen</one> (3) <one>Glykosomen</one>
482
+ - How can a <one>lysosome</one> <two>maintain its acidic pH</two>? It contains a H+ pump in its membrane, which uses the energy from ATP hydrolysis to pump more H+ into the lysosome.
483
+ - <one>Where</one> does the <two>signal peptidase</two> reside? In the <one>ER membrane</one>.
484
+ - <one>cdc42</one> belongs to which family? The <one>Rho family</one>.
485
+ - Give an example for a <one>quaternary RNA Structure</one>. A: The <one>ribosome</one>.
486
+ - What is a <one>Ionophore</one>? This is a lipid-soluble molecule usually synthesized by microorganisms, able to transport ions across the lipid bilayer of the cell membrane.
487
+ - Es gibt <one>SUN</one> und <one>KASH</one> 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).
488
+ - Der <one>MPF</one> (<one>Mitosis-promoting factor</one>) wird wann und wie aktiviert? MPF wird am Ende der G2-Phase durch eine Phosphatase aktiviert, die eine hemmende (inhibitory) Phosphat-Gruppe entfernt.
489
+ - Welche Aufgabe haben die <one>RAB-Proteine</one> in der Zelle? Sie überprüfen die Spezifität des Andockens eines Vesikels an die Zielorganelle.
490
+ - Name one <one>lysosomal storage disease</one>. A: The <one>Tay Sachs disease</one>. []
491
+ - Is it easy <one>to stretch a membrane</one>? No. []
492
+ - How can we <one>visualize lateral diffusion of membrane proteins</one>? Via <one>FRAP</one>: <two>Fluorescent Recovery after Photobleaching</two>.
493
+ - In der Zellbiologie gibt es ein sehr wichtiges, dimeres (genauer: heterodimeres) Protein namens <one>MPF</one>. Was heisst <one>MPF</one>? Maturation-promoting factor. Manchmal wird es aber auch <one>mitosis-promoting factor</one> bezeichnet.
494
+ - <one>Griseofulvin</one> wirkt wie? Griseofulvin hemmt den Spindelapparat der Zelle, indem es an Tubulin bindet.
495
+ - Was fungiert als <one>allgemeine, zelluläre Zeitschaltuhr</one> in einer Zelle? Die G-Alpha Untereinheit mit gebundenem GTP, in den trimeren G-Proteinen.
496
+ - <one>Welche Zellen</one> bilden die <two>Myelinschicht</two>? Die <one>Gliazellen</one>. []
497
+ - Wie werden die <one>Intermediärfilamente in Nervenzellen</one> genannt? <one>Neurofilamente</one>. URL: https://de.wikipedia.org/wiki/Intermediärfilamente#Typen
498
+ - Name <one>an organism</one> in which cilia assemble in the cytoplasm. A: <one>Plasmodium falciparum</one>.
499
+ - The <one>Nuclear pore complexes</one> consist of about <two>n different proteins</two>? About <one>30</one>.
500
+ - Wie werden die <one>Intermediärfilamente im Zellkern</one> genannt? <one>Lamina</one>. []
501
+ - Which <one>tubulin-subunits</one> are known? (1) Alpha-Tubulin (2) Beta-Tubulins (3) <one>Gamma-Tubulins</one>
502
+ - What happens if we treat a <one>rat</one> with the drug <two>phenobarbitol</two>? This drug stimulates liver cell division, thereby causing "liver enlargement".
503
+ - Nenne die zwei <one>Ionenkanaltypen</one>. A: (1) <one>spannungs-gesteuerte Ionenkanäle</one> (2) <one>liganden-gesteuerte Ionenkanäle</one>
504
+ - <one>Chromatin</one> besteht grob formuliert, in Prozent, aus? <one>45% Protein</one>, <two>55% DNA</two>.
505
+ - Was heisst <one>mTOR</one> in der Zellbiologie? <one>Mammalian target of rapamycin</one> - beziehungsweise heutzutage <one>mechanistic target of rapamycin</one>). URL: https://de.wikipedia.org/wiki/MTOR
506
+ - Give one example for <one>actin based motor proteins</one>. A: <one>Myosins</one>. []
507
+ - What does a <one>mast cell</one> secrete? <one>Histamine</one>. []
508
+ - Can <one>p53</one> be both <two>acetylated</two> AND <two>phosphorylated</two>, in principle? Yes. []
509
+ - Was meinen wir mit <one>zellulärer Proteinsortierung</one>? Wenn die Zelle "unterscheidet" wohin ein Protein geschick werden soll.
510
+ - Define <one>transmembrane proteins</one>. A: These are proteins that span the lipid bilayer.
511
+ - The fibrillar extension of <one>NPC proteins</one> (<three>nucleoporins</three>) contain many repeats of which two amino acids? <one>FG-repeats</one> (<two>Phenylalanine</two> and <two>Glycine</two>).
512
+ - <one>COP-Proteine</one> in Vesikeln dienen dem Transport zwischen ...? <one>ER</one> und <one>Golgi</one>.
513
+ - The <one>SCF complex</one> promotes ...? <one>Degradation of CKIs</one>.
514
+ - In der Zellbiologie: was heisst <one>Cvt-Pathway</one>? <one>Cytoplasm-to-vacuole targeting</one>. URL: https://en.wikipedia.org/wiki/Cytoplasm-to-vacuole_targeting
515
+ - <one>Integrins</one> have how many <two>switchable conformations</two>? <one>2</one> (active/inactive conformation). []
516
+ - Nenne einen Prozess, mit dem man <one>RNA-Aptamere herstellen kann</one>. A: <one>SELEX</one>.
517
+ - Warum haben <one>Integrine</one> ihren Namen? Sie haben die Fähigkeit, extrinsische Signale in Veränderungen des Cytoskeletts der betreffenden Zelle zu "integrieren".
518
+ - What are <one>ameloblasts</one>? These are cells that are important for tooth development. They <one>deposit tooth enamel</one>.
519
+ - How is the <one>interior of the ER</one> called? <one>lumen</one>.
520
+ - Durchmesser eines <one>clathrin triskelion polyhedral lattice</one>? <one>80nm</one>. []
521
+ - In humans: <one>Phospholipase C</one> activates which cellular enzyme? <one>Proteinkinase C</one>. URL: https://en.wikipedia.org/wiki/Phospholipase_C#Biological_function
522
+ - Wo befinden sich <one>vSNARE Proteine</one>? Sie befinden sich <one>in der Vesikelmembran</one>.
523
+ - Is <one>a human egg</one> or <one>a human red blood cell</one> larger? A <one>human egg is larger</one> than a red blood cell. []
524
+ - Give another name for <one>DNA-protein intermediary</one>. A: <one>RNA</one>.
525
+ - <one>Diffusion</one> erfolgt nach <two>welchem Gesetz</two>? Nach dem <one>Fickschen Diffusionsgesetz</one>. URL: https://de.wikipedia.org/wiki/Diffusion#Erstes_Ficksches_Gesetz []
526
+ - Wo speichert eine Zelle <one>Ca2⁺</one>? Im <one>Lumen des endoplasmatischen Reticulums</one>. []
527
+ - <one>How many nucleosomes</one> does a single, diploid human cell have? It should have about <one>30 million nucleosomes</one>.
528
+ - The <one>ER</one> cycles between ...? The <one>ER membrane</one> and the <one>cytosol</one>.
529
+ - What is the job of <one>Bacteriorhodopsin</one>? This protein functions as <one>a light-activated H+ pump</one> that transfers H+ out of the archaeal cell.
530
+ - Name <one>two things</one> that <two>mature mammalian red blood cells</two> lack. A: (1) <one>nucleus</one> (2) <one>cytoplasmic organelles</one>
531
+ - In cell biology: what does "autophagy" ensure or a given normal cell? <one>Autophagy</one> ensures the synthesis, degradation and recycling of cellular components.
532
+ - <one>Which protein</one> separates Ran-GTP from importin? The <one>RanBP</one> (Ran Binding Protein).
533
+ - Warum besitzen <one>Archaea</one> <two>Etherbindungen</two>? Da <one>Esterbindungen</one>, wie in Bacteria und Eukaryoten, unter extremen Bedingungen rasch hydrolysieren würden.
534
+ - The main reaction types of <one>cell synthesis</one> are ... ? <one>Polymerization Reactions</one>.
535
+ - How do we call the three <one>MAP-Kinases</one> in mammalian cells? (1) Raf (2) Mek (3) <one>Erk</one>
536
+ - In cellbiology: we may see something called <one>Endo H</one>. What is this? This is the enzyme <one>Endoglycosidase H</one>.
537
+ - We may wish to <one>determine the concentration of dead cells</one>. How to do so, experimentally? We stain via <one>trypanblue</one>, which is a <two>dye exclusion methods</two>.
538
+ - The Protein <one>synaptotagmin</one> binds what? <one>Calcium</one>, und zwar die <two>C2-Domäne</two>. URL: de.wikipedia.org/wiki/Synaptotagmine
539
+ - <one>Pro Sekunde</one> produziert ein erwachsener Mensch wieviele Erythrocyten? <one>33.000</one>.
540
+ - Wieso werden <one>Sterole</one> 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.
541
+ - Why was the name <one>Rab</one> chosen for the <one>Rab proteins</one>? <one>Rab</one>: <two>Rat sarcoma-related in brain</two> proteins.
542
+ - Welche Aufgabe haben die <one>Cajal-Körper</one>? Sie synthetisieren kleine Kern-RNAs (<one>small nuclear RNAs</one>).
543
+ - <one>Cyclin-dependent kinases</one> are a subclass of ... which family? They belong to the <one>serine</one>/<one>threonine protein kinases</one>.
544
+ - Why is <one>CO₂</one> used for Live Imaging? Because this will yield a buffer (CO2/HCO3-).
545
+ - What is <one>Allotransplantation</one>? When the donor organ comes from a <one>closely related species</one>.
546
+ - Kann das <one>26S-Proteasom</one> im Zellkern gefunden werden? <one>Ja</one>. []
547
+ - Was ist die sogenannte <one>korpuskuläre Absorption</one>? (1) Phagocytose (2) Pinocytose (3) <one>Endocytose</one>
548
+ - Wie wird die <one>PKA</one> (<one>Proteinkinase A</one>) aktiviert? Über <one>cAMP</one>. URL: https://en.wikipedia.org/wiki/Protein_kinase_A []
549
+ - What are <one>spheroid cells</one>? This is <one>a 3D cell culture method</one> where a small aggregate of cells grows free of foreign materials.
550
+ - In <one>cell biology</one>: what means <two>Transfection</two>? The process of deliberately introducing nucleic acids into cells.
551
+ - Aufgabe der <one>SUN</one> und <one>KASH</one> Proteine? Sie verbinden den Nucleus und das Cytoplasma durch die Zellkern-Membran.
552
+ - What are <one>primary cultures</one>? These are <one>cultures prepared directly from the tissues of an organism</one>.
553
+ - <one>Ribosomes</one> are one of the most abundant macromolecules in the cell. Compare the amount of ribosomes <two>per yeast cell</two> and <two>per HeLa cell</two>, in numbers. A: (1) <one>yeast cell</one>: about <one>200.000 ribosomes</one> (2) <one>HeLa cell</one>: about <one>3.000.000 ribosomes</one> [Warner, 1999]
554
+ - Wie schützt die Zelle die <one>Plus-Enden von Mikrotubuli</one> vor Depolymerisation? Durch Verankerung in einem capping Protein geschützt werden.
555
+ - <one>Eps15</one> in der Zelle ist ein "multifunctional adaptor protein". Welche Aufgabe hat dies? Reguliert <one>intracellular trafficking</one>.
556
+ - <one>Human CDKs</one> have a modified ATP-binding site that can be regulated by ... ? It can be regulated by <one>cyclin binding</one>.
557
+ - Where do we find the <one>SRP-Receptor</one>? In the <one>ER membrane</one>.
558
+ - <one>Vorgänger</one> eines Lysosoms? Ein <one>late endosome</one>.
559
+ - Wie wird <one>die Länge der Aktinfilamente</one> <two>reguliert</two>? Mit Hilfe der <one>Motorproteine</one>. Diese bewegen sich entlang der Filamente und kürzen sie, wenn sie zu lang werden.
560
+ - Nenne ein Beispiel für ein kleines Signalmolekül, das eine zelluläre Rolle spielt. A: <one>NO</one> (<two>Stickstoffmonoxid</two>).
561
+ - <one>Microtubules</one> are made of which protein? <one>Tubulin</one>. []
562
+ - Name the <one>two proteins</one> that control the transition from G2 to M-phase. A: (1) cdk1 (2) <one>cyclin B</one>
563
+ - What is <one>the most typical trigger of autophagy</one>? <one>Nutrient starvation</one>. Lack of any type of essential nutrient can induce autophagy. In yeast, nitrogen starvation is the most potent stimulus.
564
+ - Name the <one>two classes</two> of <two>microtubule-based motors</two>. A: (1) <one>Dynein</one> (2) <one>Kinesin</one>
565
+ - What are <one>cathepsins</one> and where are they activated? <one>Cathepsins</one> are Proteases which become activated at the low pH found in Lysosomes.
566
+ - Was sind <one>Kinozilien</one>? Das sind <one>Wimpern</one> beim, zum Beispiel, Wimpertierchen.
567
+ - Der <one>Proteingehalt einer bakteriellen Zelle</one> beträgt etwa n Prozent der Trockenmasse (es reicht ein Wert, der innerhalb des Intervalls liegt)? Etwa <one>50-60% der Trockenmasse</one>.
568
+ - Nenne ein Beispiel für einen <one>bidirektionalen Rezeptor</one> der Zelle. A: <one>Integrine</one>.
569
+ - <one>Wann</one> sind Chromosomen <two>unsichtbar</two>? In der <one>Interphase</one>. []
570
+ - In cellbiology: what is <one>Shibire</one>? This is a "temperature sensitive phenotype" in Drosophila.
571
+ - <one>Portaler Transport</one> innerhalb der Zelle ... ? Durch die <one>Kernporen des Zellkerns</one>.
572
+ - For any given eukaryotic cell: <one>when</one> is <two>supercoiling</two> extremely important? When it comes to the <one>replication of DNA</one>.
573
+ - What is meant with the term <one>Autophagy</one>? <one>Autophagy</one> is a cellular, catabolic mechanism that involves cell degradation of unnecessary cellular components through the actions of lysosomes.
574
+ - In der Zellbiologie steht die Abkürzung <one>CDK</one> für ... ? <one>Cyclin dependent kinase</one>. []
575
+ - What kind of information can we gain by <one>Endo H Cleavage</one>? 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.
576
+ - <one>Which enzyme</one> catalyzes the synthesis of cGMP? <one>Guanylate cyclase</one>.
577
+ - There is <one>a hormone</one> which <two>transforms</two> a tadpole into a frog. Which hormone is that? <one>Thyroid hormone</one>.
578
+ - <one>Fibroblasts</one> secrete what? <one>Collagen</one>.
579
+ - <one>KDEL</one> ist ein intrazelluläres <two>retention signal</two> für das ER. Aber wie hat man dies nachweisen können, experimentell? Durch <one>in-vitro Mutagenese</one>.
580
+ - What is the purpose of a <one>caveole</one>? A caveole protects a cell from stretching.
581
+ - Wofür steht der Name <one>P-bodies</one> in der Zellbiologie? <one>Processing bodies</one>. []
582
+ - <one>Cell lines</one> are <two>usually derived from</two> ... ? <one>Tumors</one>. []
583
+ - Das <one>Glykoproteinhormon EPO</one> hat n AA? <one>165</one>.
584
+ - <one>Integrine</one> bestehen aus wievielen Untereinheiten? <one>2</one>; Integrine sind <two>Heterodimere</two>. []
585
+ - How do we call <one>the tethering proteins of the Golgi complex</one>? <one>Golgins</one>.
586
+ - When <one>lipids</one> go below the paracrystalline temperature, what do they "lose"? The ability to <one>rotate</one>.
587
+ - Lassen <one>tight junctions</one> Nährstoffe durch? <one>Nein</one>. []
588
+ - Erlauben <one>Transfersequenzen</one> den gerichteten (= Polarität) Einbau von Proteinen in Membranen? Ja. []
589
+ - <one>Nanodiscs</one> are surrounded by ...? A belt of proteins.
590
+ - <one>Durchmesser eines Nucleosoms</one>? <one>11 nm</one>.
591
+ - Zellulär betrachtet, was heisst <one>Atg8</one> und warum ist <one>Atg8</one> 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.
592
+ - Name 3 general roles of <one>actin filaments</one>: A: (1) cellular contraction (2) migration (3) <one>signalling</one>
593
+ - <one>Karyopherins</one> are <two>nuclear transport receptors</two> that bind to ... ? <one>Nups</one>.
594
+ - In nm: what is the <one>diameter</one> of a typical <two>Nuclear Pore Complex</two>? <one>125 nm diameter</one>.
595
+ - What is the <one>rate-limiting step</one> in the <two>formation of actin filaments</two>? <one>Nucleation</one>. []
596
+ - <one>Nitric oxide</one> can activate what inside of a cell? The <one>Guanylyl cyclase</one>.
597
+ - Chemischer Name für <one>Caffeine</one>? <one>1,3,7-trimethylxanthine</one>.
598
+ - <one>With which technique</one> could we prove that signal sequences in proteins are important? With a <one>transfection experiment</one>.
599
+ - What effect may <one>TGF-Beta</one> have on cells? TGF-Beta may <one>force a halt to proliferation</one>.
600
+ - <one>Welcher Wachstumsfaktor</one> spielt bei <two>Blutgerinnung</two> und <two>Wundheilung</two> eine Rolle? <one>PDGF</one>. URL: https://en.wikipedia.org/wiki/Platelet-derived_growth_factor
601
+ - <one>Microtubules</one> are organized from ...? <one>Centrosomes</one>.
602
+ - A <one>32 base pair deletion</one> can confer <two>HIV resistance</two>. In which human Gene? <one>CCR5</one>. []
603
+ - What is <one>the main signal</one> for protein delivery into lysosomes? <one>M6P</one> (<two>Mannose 6-phosphate</two>).
604
+ - <one>Mice without p53</one> show what phenomen, in general? They are <one>susceptible to early tumours</one>.
605
+ - Das <one>KDEL Signal</one> lässt sich wo finden? Am <one>C-terminalen Ende</one> einer Polypeptidkette.
606
+ - In cell biology: what do we mean with the term <one>free ribosome</one>? Ribosomes that are not attached to the RER.
607
+ - Name <one>two ways</one> how a cell culture can become immortalized. A: (1) spontaneously (2) by oncogenes
608
+ - In cellbiology: what are the <one>CAKs</one>? <one>Cdk-activating kinases</one>.
609
+ - Why is the <one>26S-proteasome</one> important for a cell? (1) It can <one>eliminate defective proteins</one>. (2) It can <one>regulate cellular processes</one>.
610
+ - <one>Which genes</one> are required for the "autophagic pathway"? <one>Atg-genes</one>.
611
+ - How many <one>different types of autophagy</one> can we distinguish? <one>Three</one>. []
612
+ - What is the purpose of the <one>caveolae</one> within a given cell? They can protect a cell from stretching. (<one>Caveola mechanosensing</one>)
613
+ - Das Enzym <one>Thymidylate Synthetase</one> benötigt eine Methyl-Gruppe. Woher stammt diese? Von <one>Tetrahydrofolate</one>.
614
+ - Give another name for <one>cytokinesis</one>. A: <one>Cytoplasmic division</one>.
615
+ - Die Form von Mitochondrien ist unter anderem wovon abhängig? Vom <one>metabolischen Zustand</one>.
616
+ - <one>Dystrophin</one> bindet ... an die Zellmembran von Muskelzellen. A: <one>Actinfilamente</one>.
617
+ - Nenne eine <one>Pumpe</one> in den Membranen der Lysosomen. A: H+ ATPase.
618
+ - Bei <one>G-Proteinen</one>: ist der Komplex aus GDP + G(alpha,beta,gamma) aktiv? Nein, er ist <one>inaktiv</one>. []
619
+ - We can convert <one>heme</one> into which "photoreceptor pigment"? Into <two>phycocyanobilin</two>.
620
+ - What happens to <one>p53</one> upon activation? It will be <one>translocated into the nucleus</one>.
621
+ - Give <one>three examples</one> for G-protein-coupled receptors. A: (1) muscarinic receptor (2) adrenergic receptor (3) opioid receptor
622
+ - What does <one>pinocytosis</one> literally mean? <one>Cellular drinking</one>.
623
+ - Was für ein Typ sind <one>RAB-Proteine</one>? <one>Kleine GTPasen</one>.
624
+ - Wo finden wir <one>Kupffer cells</one>? In der <one>Leber</one>. []
625
+ - Name a way how <one>lipid rafts</one> can be observed. A: Via <one>AFM</one> (<two>Atomic Force Microscopy</two>).
626
+ - <one>Dendritische Zellen</one> - was heisst <two>dendritus</two>? <one>Verzweigt</one>.
627
+ - <one>G-Proteine</one> 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.
628
+ - Do <one>chloroplast</one> <two>contain ribosomes</two>? <one>Yes</one>. They are smaller than the regular ribosomes though.
629
+ - Nenne eine Möglichkeit wie man den Zeitpunkt der <one>S-Phase</one> experimentell bestimmen kann. A: Durch Verwendung von <one>Bromodeoxyuridin</one>.
630
+ - <one>Which COP protein</one>, COP I or COP II, functions in <two>intra-Golgi trafficking</two>? <one>COP I</one>.
631
+ - Within a cell, <one>ArfGAP1</one> contains motifs which specifically bind to ...? Small liposomes.
632
+ - <one>Plectin</one> can bind to ... ? <one>Desmin</one>.
633
+ - <one>Macroautophagy</one> creates what? An <one>autophagic vacuole</one>.
634
+ - Is <one>cell fusion</one> important in <two>practical cellbiology</two>? Give an example. A: Yes, it can be <one>used to produce monoclonal antibodies</one>.
635
+ - Wie wirkt das Gift <one>Phalloidin</one>? Phalloidin stabilisiert Aktinfilamente, die dadurch ihre Dynamik verlieren.
636
+ - Andere Bezeichnung für die <one>Vakuolenmembran</one>? <one>Tonoplast</one>. URL: https://de.wikipedia.org/wiki/Tonoplast []
637
+ - <one>When</one> are compartments said to be <two>topologically equivalent</two>? 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.
638
+ - <one>FtsZ</one> ähnelt in Eukarya was? <one>Tubulin</one>.
639
+ - Was wird im <one>smooth endoplasmic reticulum</one> gebildet? <one>Lipide</one> werden hier gebildet.
640
+ - <one>Formine</one> können die <two>Polymerisation von</two> ... induzieren. A: <one>Aktin</one>.
641
+ - <one>Microglia</one> are scavenger cells. What is meant with that term? Scavenger cells are cells that engulf and digests debris, as well as invading microorganisms.
642
+ - How do we call the clear gel that is part of <one>the matrix surrounding animal cells</one> in a tissue? The <one>extracellular fluid</one> (<one>ECF</one>).
643
+ - 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>.
644
+ - What is the <one>opposite</one> of the secretory pathway? The <one>endocytic pathway</one>.
645
+ - Give another name for <one>Ubiquitin E1</one>. A: <one>Ubiquitin-activating enzyme</one>.
646
+ - Wie weit sind <one>die Membranen des Zellkerns</one> voneinander entfernt (von, bis)? <one>10-50 nm</one>.
647
+ - 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".
648
+ - What is the main task of <one>SNARE proteins</one>? SNARE proteins mediate <one>fusion of lipid bilayers</one>.
649
+ - The only <one>direct intercellular junctions</one> that exist in plants are ... ? <one>Plasmodesmata</one>. []
650
+ - 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
651
+ - <one>Acetyl-Coenyzm A</one> besteht aus? Pyruvat und Coenzym A.
652
+ - For <three>autophagy</three> to properly function, which <one>organelle</one> is the most important? The <one>lysosome</one>. []
653
+ - <one>Integrins</one> can, on the outside of a cell, bind to ... ? <one>Fibronectin</one>.
654
+ - 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.
655
+ - 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.
656
+ - Was meinen wir mit einer <one>asymmetrischen Zellteilung</one>? Dies ist schlicht eine Zellteilung, bei der die beiden Tochterzellen unterschiedlich groß sind.
657
+ - Was ist die Grundlage eines <one>Riboswitch</one>? Wirkt wie ein <one>Schalter</one> - einmal kann er abgelesen werden, ein anderes mal nicht.
658
+ - Who initiates the <one>metaphase-to-anaphase</one> transition? The <one>APC</one>/<one>C complex</one>.
659
+ - Most <one>animal cells</one> have a covering over the plasma membrane. How is this covering called? <one>Glycocalyx</one>.
660
+ - Why do the <one>osteoclasts</one> need <three>acid</three>? In order to <one>dissolve the bone minerals</one>. []
661
+ - In der Zellbiologie: was meinen wir mit dem Begriff <one>Heterophagie</one>? Dies ist <one>das Verdauen zellfremder Substanzen</one>.
662
+ - Wie gross (in nm; von-bis) sind <one>caveolae</one>? <one>50-100 nm</one>.
663
+ - <one>Cadherins</one> are linked to the Actin Cytoskeleton by ...? <one>Catenins</one>.
664
+ - Why is <one>Cholesterol</one> preferentially localized to the upper region of the lipid monolayer? Because its hydroxyl-group prefers an aqueous environment.
665
+ - Are <one>tetraspanins</one> glycosylated? Some are, at the <one>N-terminus</one>.
666
+ - What was the first <one>membrane transport protein</one> whose structure was determined? <one>Bacteriorhodopsin</one>.
667
+ - 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>.
668
+ - Der <one>Austausch von Ionen im ladungsneutralen Gegenstrom</one> heißt ... ? <one>Antiport</one>. []
669
+ - Wo finden wir die <one>Cathepsine</one>? Im <one>Lysosom</one>. []
670
+ - Warum das <three>g</three> in <one>G1-Phase</one>? <one>g</one> steht hier für <one>gap</one>. []
671
+ - Im Jahre 2015 waren etwa wieviele <one>kleine G-Proteine</one> bekannt? Etwa <one>100</one>.
672
+ - In cell biology: whats means <one>dynamic instability</one>? This refers to the coexistence of assembly and disassembly at the + end of a microtubule.
673
+ - Der Durchmesser eines <one>Histon-Oktamers</one> beträgt ... ? <one>11 nm</one>. []
674
+ - Name <one>a protein that requires a large vesicle for its transport</one>. A: <one>Collagen</one>.
675
+ - Nenne einen <one>Inhibitor der Phosphodiesterase</one>. A: <one>Koffein</one>. URL: https://de.wikipedia.org/wiki/Coffein []
676
+ - Name a factor that may counteract <one>VEGF</one> (vascular endothelial growth factor). A: <one>Endostatin</one>.
677
+ - Warum heissen <one>G-Proteine</one> so (das <one>G</one> in ihrem Namen)? Weil sie <one>Guanin-Nukleotide</one> binden.
678
+ - Im Golgi Apparat können wir kleine Transportvesikel (small vesicles) finden. Welchen Durchmesser haben diese Vesikel (von-bis)? <one>60-80 nm</one>.
679
+ - What does the cyclosome/anaphase promoting complex degrade? It degrades the <one>anaphase inhibitor</one>, via the "ubiquitin-degradation pathway".
680
+ - 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>
681
+ - 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.
682
+ - 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.
683
+ - Wer entdeckte das Phänomen <one>splicing</one>? <one>Joan Steitz</one>. URL: https://medicine.yale.edu/lab/steitz/
684
+ - In der Zellbiologie: was heisst <one>ERAD</one>? <one>ER-associated degradation</one>. URL: https://en.wikipedia.org/wiki/Endoplasmic-reticulum-associated_protein_degradation
685
+ - How do we call an <one>inactive caspase</one>? <one>Procaspase</one>. []
686
+ - Is <one>Autophagy</one> 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>.
687
+ - In der Zellbiologie, gib ein anderes Wort an für das <one>KDEL Signal</one>, auf Englisch. A: <one>ER retention sequence</one>. []
688
+ - <one>Clathrin</one> besteht aus? 3 leichten und 3 schweren Ketten.
689
+ - In <one>cell biology</one>: give another expression for <two>reversable cell cycle arrest</two>. A: <one>Quiescence</one>.
690
+ - <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.
691
+ - Name a big advantage that multicellularity brought. A: Bigger organisms are able to access more nutrients than do unicellular organisms.
692
+ - <one>Collagen fibrils</one> are ropes with tunable ... ? <one>Stiffness</one>.
693
+ - What is the <one>glycosome</one>? The glycosome is a membrane-enclosed organelle that <one>contains glycolytic enzymes</one>.
694
+ - 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>.
695
+ - 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.
696
+ - Is it possible to detect a small object below the resolution limit, in light microscopy? Yes, if said object itself emits light.
697
+ - 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>
698
+ - 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.
699
+ - <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.
700
+ - <one>Schleiden</one> and <one>Schwann</one> proposed the cell doctrine in which year? In the year <one>1838</one>.
701
+ - A typical animal cell is n (from-to) µm in diameter? <one>10-20 µm</one>.
702
+ - Das <one>ced-4 Genprodukt</one> aktiviert welches andere Protein? Die <one>ced-3 Caspase</one>.
703
+ - 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
704
+ - <one>Prenylation</one> is what? The linkage of C15/C20 units to <one>cysteine side chains</one>.
705
+ - 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.
706
+ - Welches <one>radioaktive Isotop</one> kann genutzt werden, um die Teilungsaktivität von proliferierenden Zellen zu beobachten? <one>P32</one>.
707
+ - Welchen Durchmesser haben <one>Ribosomen</one> (von-bis)? Etwa <one>20nm - 25nm</one>. URL: https://de.wikipedia.org/wiki/Ribosom#Aufbau_und_Arten
708
+ - <one>Mikrotubuli</one> sind am Centrosom + oder -? <one>-</one>
709
+ - Was sind "speckles"? <one>Protein-Aggregate</one> im Zellkern. URL: https://www.uniprot.org/locations/SL-0186
710
+ - Cell membranes prevent passage of which type of molecules, aside from the size of that molecule? <one>Polar molecules</one>.
711
+ - Name a protein that has a "pleckstrin homology domain". A: <one>Dynamin</one>.
712
+ - What defines the "character of a cellular compartment"? The <one>composition of the enclosing membrane</one>.
713
+ - Can proteins contain "multiple nuclear localization signal" (<one>NLS</one>) sequences? Yes.
714
+ - "Ras proteins in the cytoplasm" tend to have what at their carboxy termini? <one>Lipid groups</one>.
715
+ - Warum der Name "F-Aktin" und "G-Aktin"? (1) F-Aktin: <one>filamentöses Aktin</one> (2) G-Akin: <one>globuläres Aktin</one>
716
+ - Periphere Mikrotubuli in den Geisseln sind miteinander wie verbunden? Durch das Motorprotein <one>Dynein</one>.
717
+ - Was heisst "ERES" in der Zellbiologie? <one>ER export sites</one>.
718
+ - An "autophagic vesicle" can fuse with ...? A <one>lysosome</one>.
719
+ - <one>Coated pits</one> give rise to which structure? <one>Coated vesicles</one>.
720
+ - 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).
721
+ - What does a "secretory protein" truly hate? The <one>cell membrane</one>.
722
+ - In Biology, where can we find a "lagging head"? In the cell, in <one>kinesin</one>.
723
+ - Name a binding protein for beta 1 integrin. A: <one>Talin</one>.
724
+ - 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".
725
+ - Name a dangerous but very effective way to stop all cell division. A: <one>High exposure to x-rays</one>.
726
+ - What is the most important group of enzymes in the lysosome? The <one>hydrolases</one>.
727
+ - Name a protein that can "severe actin filaments". A: <one>Gelsolin</one>. URL: https://en.wikipedia.org/wiki/Gelsolin
728
+ - Name an ER-resident protein start with the letter "P". A: Protein disulfide isomerase (PPI).
729
+ - Nenne eine Grenze der Lichtmikroskopie. A: Die <one>Abbe-Grenze</one>.
730
+ - 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.
731
+ - 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.
732
+ - The Adaptor protein "Epsin" in a cell helps which other molecule? <one>Clathrin</one>.
733
+ - The "Ras protein" has a slow intrinsic ... activiy. A: It has a slow intrinsic <one>phosphatase-activity</one>, converting GTP -> GDP.
734
+ - How does mRNA with premature stop codons arise in humans, most likely? Due to <one>improper splicing</one>.
735
+ - 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.
736
+ - Die <one>RNA Helicasen</one> können im zellulären Kontext was machen? Sie können "RNA binding proteins" von der RNA lösen.
737
+ - The <one>lysosomal membrane</one> has a single or double phospholipid bilayer? It has <one>a single phospholipid layer</one>.
738
+ - Within the cell, the so-called FG repeats are associated with ... ? <one>Karyopherins</one>.
739
+ - Wo finden wir eine "glykosidische Bindung" in einem Nukleotid? Zwischen der <one>Base</one> und dem <one>Zucker</one>.
740
+ - In der Mikroskopie, was sind <one>chromophore groups</one>? Groups with conjugated double bonds that give the dye its color.
741
+ - The "Gamma-Tubulin Ring complex" is built where exactly? At the <one>minus end of Microtubules</one>.
742
+ - 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>.
743
+ - Where inside of a cell can we find the "Cajal bodies"? In the <one>nucleus</one>.
744
+ - 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
745
+ - Welche Mikrotubuli reichen von Zellpol zu Zellpol? Die <one>Polar-Mikrotubuli</one>.
746
+ - Incoming transport vesicles move to the Golgi apparatus. Where to first? Towards the <one>cis-face</one> of the Golgi apparatus.
747
+ - A single <one>NPC</one> can transport n macromolecules per second? <one>1000</one>.
748
+ - Vinculin kann welch anderes Protein binden? <one>Actin</one>.
749
+ - In cell biology, what happens if a late endosome combines with a lysosome? An <one>autolysosome</one> is created.
750
+ - Name something in a cell that is "bipolar". A: The <one>mitotic spindle</one>.
751
+ - 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.
752
+ - 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>.
753
+ - Ran-GTP can bind to ... ? <one>Importin</one>.
754
+ - Do lipids <one>flip-flop</one>? No.
755
+ - In Cellbiology, what is a <one>CKI</one>? This is a <one>cyclin-dependent kinase inhibitor</one>.
756
+ - Who proposed the structure for the <one>nucleosome</one>? <one>Roger Kornberg</one>.
757
+ - Do <one>gap junctions</one> allow passage? Yes; of <one>small water-soluble molecules</one>.
758
+ - Innerhalb der Zelle, wo docken "incoming transport vesicles" an? Am <one>CGN</one> ("cis golgi network") des Golgi apparatus.
759
+ - Rab Proteins are anchored on two cysteins in their C-terminus through which group? Through <one>prenyl groups</one>.
760
+ - How do we call the "specialized domain" in cell membranes? <one>Lipid rafts</one>.
761
+ - 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".
762
+ - Why the Z in <one>FtsZ</one>? Because it will build the Z ring at the site where the septum forms.
763
+ - Was enthält das <one>Peroxisom</one>? Enzyme, die <one>H2O2</one> bilden und abbauen kann.
764
+ - The signal sequence of a protein is related to folding in what way? It may "interfere" with the folding process.
765
+ - Welche drei Autophagen-Mechanismen existieren? (1) <one>crinophagy</one> (2) <one>macroautophagy</one> (3) <one>microautophagy</one>
766
+ - Zellulär betrachtet, wo findet man das Protein "Cathepsin D"? In <one>Lysosomen</one>.
767
+ - When a protein does not have a "sorting signal", what will be the result? This protein will <one>permanently reside in the cytosol</one>.
768
+ - Name two "ER-resident chaperones". A: (1) <one>Calnexin</one> (2) <one>Calreticulin</one>
769
+ - Das <one>BiP Protein</one> ähnelt welch anderem Protein? <one>Hsp70</one>.
770
+ - Der cis-golgi ist "wem" zugewandt? Dem <one>ER</one>.
771
+ - Name a protein that can dissociate SNARE pairs. A: <one>NSF</one>.
772
+ - Innerhalb einer Zelle schaffen Membranen ...? <one>Abgegrenzte Reaktionsräume</one>.
773
+ - Give another (fancy) term for "phagocytosis". A: <one>Cellular cannibalism</one>.
774
+ - In prokaryotic cells (such as E. coli), what is the most abundant membrane Phospholipid? <one>Phosphatidylethanolamine</one>.
775
+ - Name two components of the <one>ER lumen</one>. A: (1) ER tubules (2) ER sheets
776
+ - Paired strands of RNA are arranged how ...? <one>Antiparallel</one>.
777
+ - Wo innerhalb der Zelle findet man die "zelluläre Phosphotransferase"? Dies ist <one>ein Enzym des Golgi apparatus</one>.
778
+ - Was ist "Transmission" in der Mikroskopie? Dies ist <one>das Durchdringen eines Objektes mit Licht</one>.
779
+ - Vorgänger des "Lysosome"? The <one>late endosome</one>. URL: https://en.wikipedia.org/wiki/Endosome#Late_endosomes_to_lysosomes
780
+ - Was ist eine <one>isokonte Begeißelung</one>? Wenn eine Zelle mehrere Geißeln trägt.
781
+ - Phospholipid molecules also include <one>choline</one>. Is this hydrophilic or hydrophobic? Choline is fairly <one>hydropholic</one>; it is part of the hydrophilic head group of phospholipids as well.
782
+ - In general, most cell lines used in cell culture technology were derived from? From <one>tumors</one>.
783
+ - Why do we make use of the Yeast-one-hybrid system? To study <one>protein-DNA interactions</one>.
784
+ - Das <one>clathrin triskelion</one> besteht aus ... ? Es ist ein <one>Hexamer</one>, bestehend aus 3x schweren Ketten und 3x leichten Ketten.
785
+ - Wieso schaffen es <one>Lysosomen</one> 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.
786
+ - What is the net effect of "mitosis without cytokinesis"? <one>Cells with multiple nuclei</one> will be the result.
787
+ - If we wish to add a "fluorescent dye" to Tubulin, which one should we use? <crimson>Rhodamine</crimson>.
788
+ - Welche Zellen reparieren Skelettmuskelfasern? <one>Satellitenzellen</one>.
789
+ - How was "autophagy" initially called? <one>Autolysis</one>.
790
+ - The <one>clathrin triskelion</one> is specifically made up of ... ? 3 light chains - and 3 heavy chains.
791
+ - "FSH" in humans means what? <one>Follicle-stimulating hormones</one>.
792
+ - <one>Taxol</one> bindet an welche Tubulin-Form? Taxol bindet an <one>Beta-Tubulin</one>, anstelle von GTP.
793
+ - In cellbiology we can see the <orange>CVT pathway</orange>. This abbreviation stands for ... ? <one>Cytoplasm-to-vacuole targeting pathway</one>.
794
+ - Wie nennen wir die Hülle einer Muskelfaser? <one>Sarkolemma</one>. URL: https://de.wikipedia.org/wiki/Muskulatur
795
+ - 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.
796
+ - Haben Zellen normalerweise mehr GTP oder mehr GDP? Mehr GTP.
797
+ - What is <one>the most remarkable ER specialization</one>? The <one>rough ER</one>.
798
+ - Wie nennen wir den <one>G1-Kontrollpunkt</one> in Säugetierzellen? Restriktionspunkt (<one>R-Punkt</one>).
799
+ - Membrane bending by ... domains? <one>BAR domains</one>. They can induce different curvatues.
800
+ - 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
801
+ - Nenne einen Hemmer von <one>MDM2</one>. A: Das Arf-Gen Produkt.
802
+ - <one>Selenocystein</one> ist was genau? Ein <one>Cystein</one>, bei dem die Schwefelgruppe durch ein reaktiveres Selenium-Atom ausgetauscht wurde.
803
+ - Nenne ein Enzym, das beim lysosomalen Proteinabbau Verwendung findet. A: <one>Cathepsin</one>.
804
+ - Name a way how to detect cells in the S-phase. A: For instance, via <one>BrdU Incorporation</one>.
805
+ - Inermediärfilamente können mit anderen Intermediärfilamenten eine Interaktion eingehen. Wie geschieht dies? Über <one>Heptad-Repeats</one>.
806
+ - Was ist zum <one>Zellkern von Osteoklasten</one> zu sagen? Diese Zellen sind <one>mehrkernig</one>.
807
+ - <one>Detergents</one> are soluble in which specific medium? In <one>water</one>.
808
+ - Who or what can produce "transit amplifying cells"? <one>Stem cells</one> can.
809
+ - Wo findet man <one>Rab-GTP</one>? An einem <one>Vesikel</one>.
810
+ - Wie kann Autophagie (ein "degradation process") induziert werden? Durch <one>Hungern</one> (<one>starvation</one>).
811
+ - <one>Actin</one> macht n% der Proteinmasse in einer eukaryoten Zelle aus? <one>Bis zu 20%</one> der Proteinmasse.
812
+ - For "clathrin-coated buds", which protein assembles at the neck of the bud? <one>Dynamin</one>.
813
+ - Die "stoffliche Zusammensetzung einer Säugetierzelle" - wieviel % Wasseranteil? <one>70%</one>.
814
+ - Who has a <one>DEAD box motif</one>? <one>RNA Helicases</one>.
815
+ - Which "cellular phenomenon" was first discovered in <one>C. elegans</one>? <one>Apoptosis</one>.
816
+ - How can we observe lipid rafts in a cell membrane? We can use the <one>AFM</one> (atomic force microscope).
817
+ - Welches Protein spaltet Vesikel in einer Zelle ab? <one>Dynamin</one>. URL: https://en.wikipedia.org/wiki/Dynamin
818
+ - Why is <one>Cholesterol</one> preferentially localized to the upper region of a monolayer? Because the hydroxyl-group prefers an aqueous environment.
819
+ - Aus welchen vier Untereinheiten besteht "Cohesin"? (1) SMC1 (2) SMC3 (3) Scc1 (4) Scc3
820
+ - 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.
821
+ - Give another term for the "Protein kinase A". A: <one>cAMP-dependent protein kinase</one>.
822
+ - Nenne zwei Genprodukte die für die Bildung des Autophagosoms wichtig sind. A: (1) Atg1 Kinase Komplex (2) PI3K
823
+ - Wieso kann Chlorophyll mit Lipiden assoziieren? Weil es eine <one>Alkoholseitenkette</one> besitzt.
824
+ - How do we call the proteins that make up the "nuclear pore complex"? The <one>nucleoporins</one>. URL: https://en.wikipedia.org/wiki/Nucleoporin
825
+ - Nenne zwei zentrale, sekundäre Botenstoffe. A: (1) <one>cAMP</one> (2) <one>cGMP</one>
826
+ - Give another name for the <one>centrosome</one>. A: <one>MTOC</one>: <one>Microtubule organizing center</one>. URL: https://en.wikipedia.org/wiki/Microtubule_organizing_center
827
+ - The main phospholipids in most animal cell membranes are ...? The <one>phosphoglycerides</one>.
828
+ - Was ist "negative staining"? The background but not the cell is stained. Unstained cells appear as bright objects against a dark background.
829
+ - What does "phagocytosis" literally mean? <one>Cellular eating</one>.
830
+ - How do we call a fused t-SNARE and v-SNARE? <one>trans-SNARE complex</one>.
831
+ - Der Begriff "Autophagy" in der Cellbiologie wurde von <one>Christian de Duve</one> geprägt. In welchem Jahr? <one>1963</one>.
832
+ - Die <one>t-SNARES</one>: kann man sich das merken, was die auf zellulärer Ebene machen? Ja, über das "t ... tethering factor" mnemonic.
833
+ - Why do <one>Caspases</one> not instantly kill a cell? They are synthesized as <one>inactive precursors</one>.
834
+ - Who produces Lysosomes? The <one>Golgi complex</one>. URL: https://en.wikipedia.org/wiki/Golgi_apparatus
835
+ - Ist <one>Myoglobin</one> an intrazellulären Prozessen beteiligt? Ja - und zwar am "intrazellulären O2-Transport".
836
+ - Name 3 skeletal proteins, starting with the letters A,V,F. A: (1) Actin (2) Vinculin (3) Fibronectin
837
+ - Diameter of the "megakaryocytes"? Up to <one>60 micrometer</one>.
838
+ - Welche zwei wichtige Aufgaben hat <one>Ran/GTP</one>? Es hilft beim Import und Export von Proteinen in und aus dem Nucleus.
839
+ - In cell biology, what does "Nups" stand for? <one>Nucleoporins</one>.
840
+ - <one>Chaperones</one> not only help during protein folding, but may also reduce which unwanted side effect? <one>Aggregation</one>, e. g. of <one>unfolded proteins</one>.
841
+ - 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
842
+ - Nenne zwei Hemmstoffe der "cAMP-Phosphodiesterase". A: (1) Coffein (2) Theophyllin
843
+ - Besitzen Pilze <one>Centriolen</one>? Nein.
844
+ - <one>Adrenalin</one> bindet an eine Leberzelle. Effekt innerhalb dieser Zelle? Die Glykogenphosphorylase wird aktiviert.
845
+ - A. W. für "Tay-sachs disease"? <one>GM2 gangliosidosis</one>.
846
+ - How do we call the disc-like compartments of the Golgi apparatus? <one>Golgi cisternae</one>.
847
+ - Wie können wir die <one>Phosphodiesterase</one> hemmen? Durch <one>Koffein</one>.
848
+ - The <one>Rab GTPase</one> is important for ... ? <one>Organelle identity</one>.
849
+ - Wie kann ich die Mitose genetisch ausschalten? Durch <one>Deletion des Centromers</one>.
850
+ - What is the "time hormone"? <one>Melatonin</one>. URL: https://en.wikipedia.org/wiki/Melatonin
851
+ - In seiner chemischen Struktur ähnelt "Phycocyanin" wem? Einem <one>unfolded chlorophyll molecule</one>.
852
+ - Was findet am glatten ER statt? Dies ist allgemein <one>der Ort der Lipidsynthese</one>.
853
+ - Der <one>SRPT</one> wirkt auch als ...? GEF - Guanin nucleotide exchange factor.
854
+ - Zellmembranen wirken als ...? <one>Osmotische Schranken</one>.
855
+ - What is the main minus-end directed <one>motor-protein</one> on microtubules? <one>Dynein</one>.
856
+ - Nenne das wichtigste <one>monomere G-Protein</one>. A: Das "Ras-Protein".
857
+ - Wo genau spalten die "Caspasen"? Spezifisch hinter <one>Aspartatresten</one>.
858
+ - Warum sieht das <one>rauhe Endoplasmatische Reticulum</one> so aus wie es aussieht? Da multiple Ribosomes dort zu sehen sind.
859
+ - Nenne ein Protein, das an das "ER-Retentionssequenz" <one>KDEL</one> bindet. A: "BiP". URL: https://www.ncbi.nlm.nih.gov/pubmed/28769758
860
+ - Name an "ER stress reaction". A: The "unfolded protein response", <one>UPR</one>.
861
+ - Nenne zwei Aufgaben der Peroxisomen. A: (1) Oxidativer Abbau von Fettsäuren (2) Entgiftung von toxischen Substanzen
862
+ - The Glucose-Transporter (<one>GLUT</one>) is an example for what kind of transporter? GLUT is a "uniporter transporter protein". URL: https://en.wikipedia.org/wiki/Glucose_transporter
863
+ - Allgemein formuliert - welche Zellen sind vor allem in der G0 Phase? <one>Ausdifferenzierte Zellen</one>.
864
+ - What is the <one>I-cell disease</one>? 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.
865
+ - Which organelle produces Lysosomes? The <one>Golgi Apparatus</one>.
866
+ - 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
867
+ - Der <one>Zellzyklus</one> hat 7 prominente Punkte (die checkpoints ausgenommen). Welche? A: (G0)G1,R,S,G2,M,Cytokinese.
868
+ - Hohe Apertur, niedrige Auflösung? Nein! Gute Auflösung.
869
+ - Wieviele Billionen Zellen hat ein adulter Mensch in etwa? <one>37.2 Billionen Zellen</one>.
870
+ - Who can reverse ubiquitination events? The <one>Deubiquitinases</one>.
871
+ - <one>Tubulin subunits</one> (Alpha and Beta) can bind what exactly? GDP or GTP.
872
+ - 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.
873
+ - Wann gibt <one>Aequorin</one> Licht ab? Bei Zugabe von (geringen Mengen) <one>Ca2+</one>.
874
+ - Ferroptosis is a type of programmed cell death. In this type, we can see the accumulation of ... ? <one>lipid peroxides</one>.
875
+ - Name the two major roles that <one>autophagy</one> has. A: (1) to remove damaged organelles and macromolecules (2) to recycle amino acids during periods of starvation
876
+ - Wann wurde der "Golgi-Apparat" entdeckt? <orange>1898</orange>.
877
+ - Name a component of the "signal recognition particle (SRP)" complex. A: The "signal recognition particle RNA", which is also known as 7SL RNA.
878
+ - 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".
879
+ - Anderes Wort für VCCD ("Viable Cumulative Cell Days"? "Viability Index".
880
+ - Which three general functions may a "P body" have? (1) "storeage" (2) "repression" (3) "degradation"
881
+ - Cell division creates ... ? New cells.
882
+ - 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"
883
+ - Centrioles are essential for development of ... ? cilia and flagella.
884
+ - Welche zwei verschiedene Arten von "Membrantransport" gibt es? (1) Transport durch die Membran hindurch (2) Transport innerhalb der Membran selbst (zum Beispiel Elektronentransport)
885
+ - Die Synthese "cytoplasmatisher Proteine" erfolgt ...? An "nichtmembran-assoziierten Ribosomen".
886
+ - 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".
887
+ - Welche Aufgabe hat die Alpha-Subunit bei G-Proteinen? Dies ist eine "GTPase". Sie hydrolysiert GTP zu GDP; dies inaktiviert das G-Protein.
888
+ - Karyopherins are, or can be broadly grouped into, ...? (1) "importins" (2) "exportins"
889
+ - Nenne die "vier Bewegungsmöglichkeiten von Phospholipiden". A: (1) "flexion" (2) "rotation" (3) "laterale Diffusion" (4) "transversale Diffusion"
890
+ - 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.
891
+ - Name two ways how proteins to be exported can be identified by the cell. A: (1) SecA protein (2) signal recognition particles (SRP)
892
+ - Inside cilia there is a "microtubule-based cytoskeleton". What is its name? The "axoneme". URL: https://en.wikipedia.org/wiki/Axoneme
893
+ - Name 2 different forms of "cell senescence". A: (1) "replicative senescence" (2) "induced senescence"
894
+ - Give an example for "gated transport" in cell biology. A: The transfer of material through "nuclear pore complexes".
895
+ - Proteins can move from one intracellular compartment to another, by which 3 mechanisms? (1) gated transport (2) protein translocation (3) vesicular transport
896
+ - Nenne die 3 Domänen des "Glykophorin". A: (1) extrazelluläre Domäne (2) Transmembrandomäne (3) cytoplasmatische Domäne
897
+ - Wo vor allem könnte ich das Protein "Dynein" finden? In "Flagellen" oder "Spermatozoa".
898
+ - 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.
899
+ - Nucleoporins contain in particular which two-aminoacid repeats? FG, aka "Phe/Gly repeats".
900
+ - A. W. für "Glykoprotein der Zelloberfläche"? Aggregationsfaktoren.
901
+ - Name the four main families of motor proteins in human cells. A: (1) Integrins (2) Immunoglobulins (3) Cadherins (4) Selectins
902
+ - In cell biology, how do we call the methodological step necessary for releasing organelles? Homogenization step.
903
+ - 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".
904
+ - Name one famous "cellular Cdk inhibitor". A: p21.
905
+ - Gib 3 Nucleosid Beispiele an. A: (1) Cytidin (2) Uridin (3) Guanosin
906
+ - 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
907
+ - Nenne 2 viel verwendete Detergenzien für bzw. gegen eine "biologische Membran". A: (1) Tritox X-1000 (2) Natriumdodecylsulfat
908
+ - Wie bezeichnen wir die Diffusion durch eine Membran? Passiver Transport.
909
+ - Was ist das gemeinsame Merkmal aller G-Proteine? Eine "hoch konservierte G-Domäne".
910
+ - Nenne 1 Substanz, die Mikrotubuli stabilisieren kann. A: Taxol.
911
+ - Cells can degrade proteins without lysosomes - give a proof for this statement. A: Reticulocytes lack lysosomes but can still selectively degrade abnormal proteins.
912
+ - Name a "lipid-soluble second messenger". A: Diacylglycerol.
913
+ - Warum führt die Zelle "Farnesylierungen" durch? Um Proteine fest mit der Membran zu assoziieren.
914
+ - 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.
915
+ - Anderer Name für "importin-beta-like protein"? Karyopherin-Beta-family.
916
+ - Where are "cell membranes" synthesized? Membranes and their constituent proteins are assembled in the ER.
917
+ - Wann wurde das "Fluid-Mosaic-Modell" vorgeschlagen? 1972.
918
+ - Eine typische Eukaryotenzelle hat wieviele Proteasome pro Zelle? 30.000
919
+ - Die Rab Proteinfamilie haben allgemein wieviele Untereinheiten? Eine.
920
+ - Name 2 "degradation organelles". A: (1) the 26S-Proteasome (2) the lysosomes
921
+ - 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.
922
+ - What would happen if we would knock out "lysosomal hydrolases"? Undigested molecules would accumulate in lysososomes, causing the cell to swell and ultimately die.
923
+ - 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.
924
+ - 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")
925
+ - 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.
926
+ - 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.
927
+ - Give an example for a "single-pass transmembrane protein". A: The LDL-Receptor.
928
+ - What is the "D" and "T" form of actin filaments? D form ... bound ADP. T form ... bound ATP.
929
+ - Within the cell, the centromeres play a critical and very important role where exactly? In the "segregation of chromosomes".
930
+ - Was meinen wir in der Zellbiologie mit dem "retrograden Transport"? Dies ist Transport von der Zellmembran hin zum Zellkern.
931
+ - Name a way how to experimentally measure DNA replication. A: Use [3H] thymidine.
932
+ - Give 2 examples for materials cells like to adhere to. A: (1) polylysine (2) extracellular matrix components
933
+ - Which 2 classes of "apoptotic caspases" exist? (1) initiator caspases (2) executioner caspases
934
+ - Name the three most commonly used scaffolds for 3D cultures. A: (1) Agarose (2) Collagen (3) Fibronectin
935
+ - What is "Transdifferentiation"? Transdifferentiation is the conversion of a differentiated cell type into another differentiated cell type.
936
+ - Name 1 bacterial homolog of actin. A: MreB.
937
+ - What is the "most fundamental task" for a cell? The passing on of its genetic information to the next generation of cells.
938
+ - How are "lysosomal hydrolases" tagged in the Golgi apparatus? Via "mannose-6-phosphate" groups.
939
+ - Name 3 "Biogenesis Strategies" for making a new organelle (duplication). A: (1) de novo nucleation growth (2) templated assembly/growth (3) growth/fission
940
+ - What is the general role of Gamma-Tubulin? This protein is involved in the nucleation of microtubule growth.
941
+ - In Cell Biology, we know the "ARP complex". What other name is given to this complex? The Arp 2/3 complex.
942
+ - What do we mean with "non-bilayer lipids"? These are lipids that can not build a bilayer of lipids.
943
+ - Who are the most complex "glycolipids"? The gangliosides.
944
+ - Welche Cytoskelett-Elemente sind apolar? Nur die Intermediärfiamente.
945
+ - What does the name "Ras" stand for? Ras is an abbreviation of "Rat sarcoma".
946
+ - Most laminopathies (== diseases of the lamina) are associated with ..., in a cellular context? A mutant version of lamin A.
947
+ - 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".
948
+ - What means "cellular respiration"? This is how cells consume O2 and produce CO2.
949
+ - Another term for "the translocon"? Protein-conducting channel.
950
+ - Name 3 important jobs for the ER (Endoplasmatic Reticulum). A: (1) lipid-biosynthesis (2) protein biosynthesis (3) intracellular Ca 2+ store
951
+ - In cell biology, what do we mean with "INM"? inner nuclear membrane.
952
+ - What are "professional phagocytes"? (1) macrophages (2) neutrophils
953
+ - Nenne die 3 Komponenten beim Aufbau eines Lipidmoleküls. A: (1) Cholin (2) Phosphat (3) Glycerin
954
+ - Nenne 4 Phospholipide, die wir in einer Membran finden können. A: (1) Phosphatidylcholin (PC) (2) Phosphatidylserin (PS) (3) Phosphatidylinositol (PI) (4) Phosphatidylethanolamin (PE)
955
+ - Wer etablierte das "Flüssig-Mosaik-Modell" 1972? Singer und Nicolson.
956
+ - Proteine die in die Mitochondrien importiert werden sollen, haben was für eine leader sequence? Am N-Terminus 20 oder mehr Aminosäuren.
957
+ - The MPF ("maturation promoting factor") consists of how many subunits? 2.
958
+ - The ER lumen can store what? It can store "calcium" (Ca2+).
959
+ - Folded proteins inside of a cell leave the ER where? At "ER exit sites".
960
+ - What exactly is a "neoplasm"? An accumulation of "abnormally dividing cells".
961
+ - 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.
962
+ - Do Microfilaments have a plus and minus end? Yes.
963
+ - In cell biology, what means "Photobleaching"? Photobleaching is the photochemical destruction of a fluorophore.
964
+ - Which class of enzymes trigger the events in the cell cycle? Kinases.
965
+ - Eine bakterielle Zelle hat wieviele Moleküle ATP? 1 Million.
966
+ - 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.
967
+ - Was ist die "Glykokalyx"? Die Gesamtheit der Zuckerketten an der extrazellulären Zelloberfläche.
968
+ - Wer stellte die <one>Zelltheorie</one> auf? <one>Matthias Schleiden</one> und <one>Theodor Schwann</one>.
969
+ - Rab6 Proteins haben was für eine Aufgabe? They direct a vesicle to specific spots on the correct target membrane.
970
+ - Eine menschliche Pankreaszelle hat wieviele Ribosomen? Einige Millionen.
971
+ - Was ist "Endocytose"? Die Aufnahme von Flüssigkeit sowie großen und kleineren Molekülen in eine eukaryotische Zelle (nicht bei Prokaryoten)
972
+ - What functions do the "Synaptotagmins" have? They function as calcium sensors in the regulation of neurotransmitter release and hormone secretion.
973
+ - In der Zellbiologie, welche Rolle spielen "multivesicular bodies"? Sie spielen eine Rolle beim Transport von ubiquitinierten Proteinen und Rezeptoren in ein Lysososome.
974
+ - Give two hormone-examples for vesicular proteins. A: (1) insulin (2) erythropoietin (EPO)
975
+ - 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
976
+ - 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).
977
+ - What is the main signal for protein delivery into lysosomes via endosomes? The Mannose 6-Phosphate Receptor (MPR).
978
+ - 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.
979
+ - Name 3 functions of autophagy. A: (1) starvation (recycling of nutrients) (2) protein aggregation (neurodegenerative importance) (3) damaged organelles
980
+ - Name one important but unusual environmental cue for a cell in a multicellular organism. A: Signals from the other cells.
981
+ - Which three main pathways are involved in autophagy? (1) Macroautophagy (2) Microautophagy (3) Chaperone-mediate autophagy (CMA)
982
+ - 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.
983
+ - Within a cell, what happens if a protein loses its KDEL Sequence? It can no longer be retained within the ER.
984
+ - 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.
985
+ - Nenne einen Unterschied zwischen Mitosis und Meiosis. A: Die Produkte der Meiosis sind haploid.
986
+ - Wann setzt die Zelle das Enzym "Glutamine Synthetase" ein? Wenn die NH3-Konzentration niedrig ist.
987
+ - In der Zellbiologie, was ist 3D5? Eine "tetracycline inducible transfectant cell line".
988
+ - Wie funktioniert der Import von Proteinen in das Mitochondrium? Mitochondrien haben Rezeptoren, die bestimmte Signalsequenzen binden können.
989
+ - Der Mensch hat wieviele Zellen? 10 ** 14.
990
+ - A. W. für Nucleotide? Nucleoside-5-Prime-Phosphate.
991
+ - Gib ein Beispiel für eine Serin/Threoninkinase. A: Proteinkinase A.
992
+ - Was ist die "H & E Färbung"? Hämatolysin + Eosin.
993
+ - Wann genau bildet sich der synaptonemale Komplex? Im Zygotän.
994
+ - Nenne die 3 Typen von Membranrezeptoren. A: (1) G-Protein gekoppelte Rezeptoren (2) Rezeptortyrosinkinasen (3) Liganden-gesteuerte Ionenkanäle.
995
+ - A. W. für "Oberfläche einer Zelle"? Cytoplasmamembran.