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,764 @@
1
+ # =========================================================================== #
2
+ # === Antibodies and Antigens
3
+ #
4
+ # Antibodies tag, Antigens tag. Antibody tag. Antibod tag.
5
+ # Abod tag. Atag. Anti tag. Antikörper tag. Abody tag.
6
+ #
7
+ # Everything about antibodies and antigens. It is also ok to collect
8
+ # information related to the natural production of antibodies in this
9
+ # file here. Antibody engineering is also stored here.
10
+ #
11
+ # "Therapeutic Antibodies" are collected in the file biological_therapeutics.
12
+ # =========================================================================== #
13
+
14
+ - The suffix <one>-omab</one> for a monoclonal antibody means ... ? This must be a <one>murine monoclonal antibody</one>. []
15
+ - An <one>antigen-antibody complex</one> can be removed by reacting the solution with <two>which protein</two>? With <one>protein A</one>. URL: https://en.wikipedia.org/wiki/Protein_A []
16
+ - The <one>Fc segment of an antibody</one> typically has two domains, called <two>CH₂</two> and <two>CH₃</two>. The <two>CH₂</two> domain is especially important for <three>effector functions</three>, but the CH3 may also have at the least one important function. Which one is that? It helps for a <one>long half-life</one> of this antibody.
17
+ - Give a technical example for an <one>antibody-antigen interaction</one>. A: The <one>ELISA</one>. URL: https://en.wikipedia.org/wiki/ELISA []
18
+ - The <one>molecular weight</one> <two>of a typical IgG molecule</two> is, on average, about ... <two>n kDa</two>? ~<one>150 kDa</one>. []
19
+ - Ist <one>IgE</one> größer, vom Molekulargewicht her betrachtet, als <one>IgG1</one>? Ja, sogar deutlich grösser - <mediumseagreen>IgE</mediumseagreen> hat ein Molekulargewicht von <one>190 kDa</one> versus dem Molekulargewicht von <one>150 kDa</one> für <mediumseagreen>IgG1</mediumseagreen>. []
20
+ - <one>Antibodies</one> allow the immune system to t..... a microbe. A: To <one>tag</one> a microbe.
21
+ - Name one disadvantage of <one>IgM</one>. A: <one>IgM</one> has a <two>low affinity</two> (<three>low binding strength</three>) for antigens.
22
+ - <one>Welcher Antikörper</one> liegt typischerweise als ein <two>Dimer</two> vor? <one>IgA</one>. URL: https://de.wikipedia.org/wiki/Immunglobulin_A []
23
+ - <one>Which company</one> created the <two>Nanobodies</two>? <one>Ablynx</one>. URL: https://en.wikipedia.org/wiki/Ablynx []
24
+ - Can <one>Plasmin</one> <lightseagreen>cut antibodies</lightseagreen>? <one>Yes</one>. URL: https://en.wikipedia.org/wiki/Plasmin []
25
+ - <one>Circulating IgM</one> <two>has a half-life of about n days</two>? <one>4 days</one>.
26
+ - The <one>Kd of antibodies</one> produced <two>in a typical humoral immune response</two> usually varies from about which value to which other value M? From about <one>10⁻⁷ M</one> to about <one>10⁻¹¹ M</one>.
27
+ - Was sind <one>S-Antikörper</one>? Antikörper gegen das <one>Spike-Protein</one> eines Virus.
28
+ - In early investigations of antigen binding to antibodies: what was the major source of large quanitities of <one>a single type</one> of antibody molecule? <one>Tumors of antibody-secreting cells</one>. []
29
+ - Can the <one>binding of an antigen to an antibody</one> <two>induce a conformational change in the latter</two>? <one>Yes</one>. []
30
+ - In <one>immunotherapy</one>: what general kind of <two>antigens</two> may be very useful? <one>Differentiation antigens</one>. URL: https://lvts.fr/Pages_html/Encyclopedies/FundamentalImmunology/ramiCOMMAND=applyStylesheet(interface.xsl,pau@CH048S0302.pub)&p_userid=pau.html []
31
+ - <one>Antikörper</one> gehören zu welcher <two>Proteinfamilie</two>? Antikörper sind <one>Glykoproteine</one> und gehören zu den <two>Globulinen</two>. []
32
+ - <one>Pepsin</one> kann verwendet werden um Antikörper zu spalten. <one>Pepsin</one> ist was für ein Enzymtyp genau? <one>Pepsin</one> ist eine <two>Serinprotease</two>.
33
+ - <one>Which company</one> developed the <two>SEEDbody</two>? <one>EMD Serono</one>. URL: https://en.wikipedia.org/wiki/Merck_Serono []
34
+ - <one>Protective antibodies</one> against <two>viruses</two> recognize ... ? <one>Viral coat proteins</one>. []
35
+ - What is <one>sIgA</one>? This refers to <one>secretory IgA</one>. URL: https://en.wikipedia.org/wiki/Immunoglobulin_A []
36
+ - <one>Hybridomas</one> are usually <two>used for the creation of monoclonal antibodies</two>. Name two problems that hybridomas may often have. A: (1) <royalblue>Hybridomas</royalblue> are <one>often unstable</one> (2) <one>Hybridomas</one> have <two>a tendency to lose productivity</two>
37
+ - Which <one>IgG subclass</one> can <lightseagreen>NOT</lightseagreen> activate the <two>classical complement pathway</two>? <one>IgG4</one>. []
38
+ - <one>Welcher Antikörper</one> wurde zuerst zur <two>Behandlung von Brustkrebs</two> eingesetzt? <one>Herceptin</one>. URL: https://en.wikipedia.org/wiki/Trastuzumab []
39
+ - Für die <one>Produktion von monoklonalen Antikörper</one>: <two>was genau benötigen wir von der Maus</two>? Die <one>Milzzellen</one>. []
40
+ - The <one>structure of an antibody</one> is related to ... ? its <one>function</one>. []
41
+ - The <one>typical linker</one> used for the construction of <two>scFvs</two> has which formula and how many amino acids? (<royalblue>GGGGS</royalblue>)3 - aka <one>Gly-Gly-Gly-Gly-</one><mediumseagreen>Ser</mediumseagreen> <one>-Gly-Gly-Gly-Gly-</one><mediumseagreen>Ser</mediumseagreen> <one>-Gly-Gly-Gly-Gly-</one><mediumseagreen>Ser</mediumseagreen> and so forth, for a total of 15 amino acids. (Mnemonic: <royalblue>scFv-(GGGGS)3</royalblue>). []
42
+ - <one>Mutations outside of the CDR-loops</one> are also called ... ? <one>framework mutations</one>. []
43
+ - Besitzt das <one>dsFV-Fragment</one> einen <two>Linker</two>? <one>Nein</one> - nur eine <two>Disulfidbrücke</two> zwischen den beiden Fragmenten.
44
+ - Is the <one>sequence variability</one> evenly distributed in the variable region of an antibody? <one>No</one> - it is <two>concentrated in certain segments</two>.
45
+ - How many <one>disulfide bonds</one> can be seen between an <two>antibody's light chain</two> and an <two>antibody's heavy chain</two>? <one>One</one>. []
46
+ - Bei <one>welchen Antikörpern</one> sehen wir <two>Subklassen</two> im menschlichen Organismus? (1) <one>IgA</one> (2) <one>IgG</one> []
47
+ - <one>scFv-Fragment</one>: Größe dieses Fragments, <two>in kDa</two>? Etwa <one>27 kDa</one>. URL: https://blog.allelebiotech.com/tag/scfv/
48
+ - <one>Which three different antibodies</one> can cause <two>hypersensitivity reactions</two>? (1) <one>IgG</one> (2) <one>IgE</one> (3) <one>IgM</one> (Mnemonic: <two>GEM</two>) []
49
+ - The <one>nanobodies</one>, derived from antibodies of the <two>camelidae</two>, <three>lack which constant domain</three> (CH)? They lack the constant domain <one>CH1</one>. They do have the two constant domains <two>CH2</two> and <two>CH3</two>. URL: https://media.nature.com/lw926/nature-assets/srep/2014/141024/srep06760/images_hires/srep06760-f1.jpg []
50
+ - Wo beziehungsweise durch wen werden <one>rekombinante Antikörper</one> produziert? In/durch <one>Bakterien</one> - oder durch <two>Zellen in Zellkultur</two>.
51
+ - <one>Welcher Antikörper</one> wird von <two>Säugetieren</two> am meisten (quantitativ betrachtet) produziert? <one>IgA</one>. []
52
+ - Kann <one>IgG</one> die <two>Plazentaschranke</two> überqueren? <one>Ja</one> - mit Hilfe bestimmter <two>Transportrezeptoren</two>.
53
+ - The <one>Fc fragment</one> of <two>a typical IgG</two> corresponds to which domains? (1) <one>CH₂</one> (2) <one>CH₃</one> []
54
+ - Does <one>IgD</one> <two>bind complement</two>? <one>No</one>. []
55
+ - Name <one>three different methods</one> <two>for enhancing the serum half-life of monovalent antibodies</two>. A: (1) Conjugation of <one>polyethylene glycol</one> (<two>PEGylation</two>) (2) Conjugation of <one>fatty acids</one> (<two>bind to serum albumin</two>) (3) Fusion to <one>albumin-binding peptides</one>
56
+ - <one>65 VH segments</one> code for the N-aminoterminal heavy (H) chains of human antibodies. Each of these <two>VH segments</two> encodes most of the N-terminal of the antibody, including ... how many of the hypervariable regions? <one>The first two</one> - but not the third.
57
+ - Wieso mögen wir <one>monoklonale Antikörper</one> in der angewandten molekularen Medizin? Da sie gegen <one>Krebszellen</one> eingesetzt werden können; wir können dadurch gezielt <two>Krebszellen bekämpfen</two>. []
58
+ - <one>Antibodies</one> often have what kind of amino acids in their <two>antigen-binding site</two>? <one>Aromatic amino acids</one>. URL: https://www.jbc.org/article/S0021-9258(20)35719-7/fulltext
59
+ - Why does a prepared <one>HAT medium</one> have to be <two>stored in the dark</two>? Because <one>aminopterin</one> is <two>light-sensitive</two>.
60
+ - In <one>Immunooncology</one> the protein PD-1 is important, which was first described in the year <two>1992</two> by Tasuku Honjo and colleagues. The abbreviation <three>PD-1</three> stands for ... ? <one>Programmed cell death 1</one>. URL: https://en.wikipedia.org/wiki/Programmed_cell_death_protein_1
61
+ - The <one>farmer's lung</one> is <two>caused by dust</two>, stimulating the production of which antibody? <one>Immunoglobulin G</one> (<two>IgG</two>). []
62
+ - Give <one>two reasons</one> as to why early efforts to <one>generate bispecific antibodies</one> failed. A: (1) <one>low production yields</one> (2) a <one>lack of stability</one>
63
+ - Gegeben sei <one>Immunglobulin G</one>. Wir setzen die Enzyme <two>Papain</two> und <two>Pepsin</two> ein. <three>Wieviele verschiedene Fragmente erhalten wir hierdurch jeweils</three>? (1) <one>Papain</one>: liefert uns <two>3 Fragmente</two> (2) <one>Pepsin</one>: liefert uns <two>2 Fragmente</two> []
64
+ - Why is it desired to have antibodies that display <one>good tissue movement</one>? So that these antibodies can <one>infiltrate into tumors</one>. []
65
+ - <one>Which antibody</one> is the main actor that <two>blocks the entry of microorganisms from external surfaces to the tissues</two> themselves? <one>IgA</one>. []
66
+ - Name an important function of the <one>C domain of the antibodies</one>. A: <one>Complement binding</one>. []
67
+ - Can <one>IgM</one> bind to cells via their <two>Fc receptors</two>? <one>Yes</one> - at the least to some of these cells. []
68
+ - In <one>ADCs</one> (<two>antibody-drug conjugates</two>) we can sometimes see <three>hydrazone</three> used in the linker. How many N-atoms do <three>hydrazones</three> typically contain? <one>Two</one>.
69
+ - What is meant with the term <one>epitope mapping</one>? <one>Epitope mapping</one> is <two>the process of identifying the binding site of a protein to its corresponding antigen</two>.
70
+ - The <one>D-segments</one>, aka <two>diversity gene segments</two>, code for ... ? The <one>third hypervariable region</one>. []
71
+ - Warum können wir nicht <one>normale B-Zellen</one> für die Produktion monoklonaler Antikörper verwenden? Da sie auch unter hervorragenden Kulturbedingungen <one>in-vitro</one> <two>nur ein paar Tage überleben würden</two>. []
72
+ - What means <one>humAb</one>? This refers to a <one>human monoclonal antibody</one>. URL: https://en.wikipedia.org/wiki/Monoclonal_antibody#Human_antibodies []
73
+ - Define the term <one>Serology</one>. A: The <one>use of serum antibodies</one> to <two>detect antigens</two>. Thus, this refers to the <three>diagnostic identification of antibodies in the serum</three>. URL: https://en.wikipedia.org/wiki/Serology []
74
+ - Bei den <one>menschlichen Antikörpern</one> sehen wir auch einen <lightseagreen>Kohlenhydratanteil</lightseagreen>. Dieser reicht von ... bis ... %? Von <one>3%</one> (<two>IgG</two>) - <one>13%</one> (<two>IgE</two>).
75
+ - What is meant with: <one>the act of immuno-localizing a particular antigen in a tissue</one>? <one>Immunohistochemistry</one>. URL: https://en.wikipedia.org/wiki/Immunohistochemistry
76
+ - Ein <one>bispezifischer Antikörper</one> besteht aus ... ? Zwei verschiedenen <one>scFv-Fragmenten</one>. URL: https://de.wikipedia.org/wiki/Bispezifischer_Antik%C3%B6rper []
77
+ - <one>Which antibody</one> is the most important one for <two>allergy-based immune reactions</two>? The <one>IgE antibody</one>. URL: https://en.wikipedia.org/wiki/Immunoglobulin_E []
78
+ - <one>Protein A</one> can be <two>used in affinity purification</two> to bind to the Fc-domain of monoclonal antibodies, but we often try to avoid it. Why? Because of the <one>high price</one> of <two>protein A</two>.
79
+ - <one>Omalizumab</one> <two>neutralizes which antibody in the blood</two>? <one>IgE</one>. []
80
+ - Kommt der <one>IgD Antikörper</one> membrangebunden auf <two>B-Zellen</two> vor? Ja. []
81
+ - The <one>hinge-region of an antibody</one> is rich in which particular <two>aminoacid</two>? <one>Proline</one>. []
82
+ - Give another name for a <one>scFv fragment</one>. A: An <one>antigen-binding fragment</one>. URL: https://en.wikipedia.org/wiki/Single-chain_variable_fragment
83
+ - What is meant with the word <one>mIg</one>? This refers to a <one>membrane-bound Immunoglobulin</one> - on <two>B cells</two>. URL: https://www.ncbi.nlm.nih.gov/pubmed/12886015 []
84
+ - Does the <one>CAR T-cell Therapy</one> make use of a <two>virus</two>? Yes - <one>an inactive viral vector</one>, <two>which introduces the artificial gene in the C-cells</two>.
85
+ - Is the <one>scFv</one> a <two>homodimer</two>? No, it is a (non-covalent) <one>heterodimer</one>.
86
+ - The <one>Zybody</one> from <two>Zyngenia</two> has a <three>MRD</three>. <four>What does this abbreviation stand for</four>? <one>MRD</one> is <two>a molecular recognition domain</two>. URL: https://www.creativebiolabs.net/zybody.htm []
87
+ - Do <one>monovalent antibody fragments</one> form <two>immune complexes</two>? <one>No</one>, they do not. []
88
+ - Most typically, <one>antibody fragments</one> such as <two>scFv</two> are <three>expressed in which organism</three>? In <one>E. coli</one>. []
89
+ - An <one>antibody's heavy chain</one> contains <two>n constant domains</two>? <one>3-4</one>. []
90
+ - Human serum <one>IgM</one> antibodies have <two>how many glycosylation sites on the heavy chain</two>? <one>5</one>. []
91
+ - The <one>Immuno-PCR</one> relies on the use of an antibody which has been <two>conjugated</two> to ... ? An <one>oligonucleotide</one>. []
92
+ - The <one>first cleavable linkers</one> used were ... ? <one>Acid-cleavable linkers</one>. URL: https://www.sciencedirect.com/science/article/pii/S2211383521001143 []
93
+ - What is the <one>length</one> of a typical antibody, in nm? About <one>12nm</one> (or <one>10nm-15nm</one>). URL: https://www.leica-microsystems.com/science-lab/new-labeling-tools-can-help-to-realize-the-full-potential-of-super-resolution-microscopy/ []
94
+ - Is the <one>Fab-mediated</one> function of an antibody dependent on its <lightseagreen>Fc part</lightseagreen>? Not really; that is why antibodies can be quite easily modified in various ways. []
95
+ - The <one>heavy chain V domain</one> of an antibody is encoded through which genes? <one>V, D and J genes</one>. []
96
+ - How toxic is <one>PEG</one> when it is conjugated to an antibody? <one>PEG is non-toxic</one>, at the least in this context. []
97
+ - Seit welcher <one>Tiergruppe</one> gibt es (oder finden wir) Antikörper? Seit den <one>Chordatieren</one>. URL: https://de.wikipedia.org/wiki/Antik%C3%B6rper []
98
+ - <two>Herceptin</two> does what exactly? Herceptin binds to <one>HER2-receptor</one> and then <two>inhibits the growth of that cell</two>. This may be helpful to <three>breast cancer patients</three>.
99
+ - Der <one>Mensch</one> hat <two>welche Subklassen von IgA</two>? (1) <one>IgA1</one> (2) <one>IGA2</one> []
100
+ - <one>Fab'</one> versus <one>Fab</one> Fragment - <two>welches der beiden Fragmente ist größer</two>? Das <one>Fab'-Fragment</one> ist größer. []
101
+ - The <one>Fc</one> portion of an antibody <two>includes which CH domains</two>? (1) the <one>CH2 domain</one> of the heavy chain constant region (2) the <one>CH3 domain</one> of the heavy chain constant region []
102
+ - If we apply the enzyme <one>papain</one> onto an antibody, <two>how many fragments will be (usually) obtained</two>? <one>3</one>; at the least if the antibody is <two>IgG</two>. []
103
+ - Der monoklonale Antikörper <two>TGN1412</two> ist gegen <one>welches CD-Molekül</one> gerichtet? Gegen <one>CD28</one>. URL: https://en.wikipedia.org/wiki/Theralizumab []
104
+ - The <one>INN System for Monoclonal Antibodies</one> <two>specifies which general stem for their name</two>? <one>-mab</one>. URL: https://www.thelancet.com/journals/lancet/article/PIIS0140-6736(21)02732-X/fulltext []
105
+ - <one>Welche Person</one> entdeckte die <two>Antikörper</two>? <one>Emil von Behring</one>. URL: https://en.wikipedia.org/wiki/Emil_von_Behring []
106
+ - When we say <one>sweeping antibody</one>, what is meant with that expression? That we will <one>accelerate the turnover rate of antigen degradation</one> (at the least for a <two>recycling-antibody</two>).
107
+ - <one>Where</one> could <two>monomeric IgM</two> be bound? <one>Membrane-bound</one>, <two>on B cells</two>. []
108
+ - <one>IgE</one> has a <two>half-life</two> of about n days when circulating? About <one>2 days</one> only. []
109
+ - Say that a company provides you with <one>monoclonal antibodies that may block an enzyme from functioning</one>. Yet, when these antibodies are used, and it is in fact determined that these antibodies also do happen to bind to the target enzyme, the enzyme still remains active. Why may that be the case? It may be that the antibody is <orange>binding</orange> to an area on the protein/enzyme that <one>is not important for enzymatic activity</one> and so may not have the classic <royalblue>blocking</royalblue> activity.
110
+ - Jeder <one>IgG-Antikörper</one> besteht aus <two>n Untereinheiten</two>? <one>4</one>. []
111
+ - The <one>Fc-domain of an antibody</one>, such as <two>IgG</two>, typically includes which domains? <one>CH2</one> and <one>CH3</one>. []
112
+ - Was zeigt der Zusatz <one>Pegol</one> an bei einem Antikörper? Das dieser Antikörper <one>pegyliert</one> ist. URL: https://en.wikipedia.org/wiki/Pegol []
113
+ - Does <one>ADCC</one> (<two>antibody-dependent cellular cytotoxicity</two>) <three>depend</three> on the <four>immune complement system</four>? No it does not. []
114
+ - In <one>antibody-drug conjugates</one>, we can <two>attach cleavable linkers to the antibody</two>. Name the three main mechanisms as to how these can be cleaved off. A: (1) through an <one>acidic pH</one> (2) by reduction of disulfide bonds (3) by <one>cleavage via lysosomal proteases</one>
115
+ - What is an <one>antigen</one>? That is a substance that <one>can evoke the production of one or more antibodies</one> - or, more accurately, it will amplify the response of the B-cell that synthesizes this antibody. []
116
+ - A human produces n gram of <one>secretory IgA</one> every day? <one>5g - 15g</one>. []
117
+ - Can <one>haptens</one> be <two>recognized by antibodies</two>? <one>Yes</one>. []
118
+ - Do <one>antigen-specific antibodies</one> <two>persist</two> in the circulation for many years? <one>Yes</one>, which can be shown by survivors of an infection (e. g. the Influenza pandemic in 1918). []
119
+ - Following the binding of a monoclonal antibody to a specific target on a tumour cell, <one>which complement factor</one> interacts with the CH₂ constant region of the monoclonal antibody? The <one>C1q complement factor</one>. []
120
+ - A <one>carbohydrate</one> that may be found in an antibody, can typically be found where? In the <one>heavy chain</one>; in particular in the <two>CH2</two> domain.
121
+ - Von den verschiedenen <one>IgG Unterklassen</one>: <two>welche ist am größten, physisch betrachtet</two>? <one>IgG3</one>. []
122
+ - In <one>antibody engineering</one>: what does the abbreviation <two>ADAs</two> stand for? <one>Antidrug antibodies</one>. []
123
+ - <one>IgY</one> können wir, zum Beispiel, woraus isolieren? Aus dem <one>Eigelb</one> (<two>Y</two> steht hier für <two>yolk</two>). []
124
+ - <one>From the natural immunoglobulins</one>: which one tends to be the most stable, that is the one with the longest half-life? <one>IgG</one>. []
125
+ - Name a very well known <one>motif</one> in antibodies. A: The <one>immunoglobulin fold</one>. URL: https://en.wikipedia.org/wiki/Immunoglobulin_domain []
126
+ - Nenne <one>drei verschiedene Beispiele</one> für <two>Antikörper-Fragmente</two>. A: (1) <one>scFv</one> (2) <one>Fab</one> (3) <one>Fv</one>
127
+ - The <one>Ka</one> between an <two>antigen</two> and an <two>antibody</two> can be determined via ... ? <one>Equilibrium dialysis</one>. URL: https://www.harvardapparatus.com/overview-equilibrium-dialysis
128
+ - All <lightseagreen>naive B cells</lightseagreen> express which <one>cell-surface antibodies</one>? (1) <one>IgD</one> (2) <one>IgM</one> []
129
+ - Bei einem <one>Fc-Fragment</one>: <two>wo</two> finden wir die Region, die für die <three>Komplementerkennung</three> wichtig ist? In der <one>CH₂-Region</one> - also nicht ganz am Ende des Antikörpers.
130
+ - <one>Which complement factor</one> can interact with the <two>CH₂ constant region</two> of a monoclonal antibody? The <one>C1q complement factor</one>. URL: https://en.wikipedia.org/wiki/Complement_component_1q []
131
+ - <one>IgM</one> has <two>how many four-chain units</two>? <one>5</one>. []
132
+ - The linker in a <one>scFv fragment</one>, is <two>typically made up of which aminoacid</two>? <one>Glycine</one>, due to <two>Glycine's flexibility</two>. []
133
+ - In the method called <one>Hydrogen</one>/<one>Deuterium eXchange mass spectrometry</one>, which is also <two>used to study epitopes</two>, the protein is submerged into ... ? <one>D₂O</one>. []
134
+ - <one>Welcher Antikörper</one> spielt eine wichtige Rolle bei <two>Autoimmunkrankheiten</two>? <one>IgD</one>. URL: https://de.wikipedia.org/wiki/Immunglobulin_D []
135
+ - A <one>scFv</one> has <two>how many different components</two>, if we ignore the linker? <one>Two</one>: <two>VH</two> and <two>VL</two>.
136
+ - When we do happen to find <one>IgA</one> in a <two>polymeric form</two>, what do we also instantly know about it, <three>structure-wise</three>? That this IgA-antibody must have a <one>J-chain</one>. URL: https://en.wikipedia.org/wiki/Immunoglobulin_A []
137
+ - What is a <one>trifunctional antibody</one>? A <royalblue>trifunctional antibody</royalblue> is a <one>monoclonal antibody</one> with <three>binding sites for two different antigens</three>.
138
+ - <one>Catumaxomab</one>, ein <two>bispezifischer Antikörper</two>, wird eingesetzt zur Behandlung welcher Krankheit? Der <one>malignen Aszites</one>. URL: https://en.wikipedia.org/wiki/Catumaxomab []
139
+ - For the mechanism of action of immunotoxins and antibody-drug conjugates: <one>what is the second step</one>? Internalization of the <one>receptor-immunotoxin complex</one>.
140
+ - If we see a <one>19S immunoglobulin</one>, we know that this is which antibody? <one>IgM</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC322453/ []
141
+ - <one>IgM</one> versus <one>IgG</one>: which of these two antibodies is more efficient at <two>activating complement</two>? <one>IgM</one>. []
142
+ - Wie gross, <two>in kDa</two>, ist ein <one>scFv-Fragment</one>? Etwa <one>25 kDa</one>. URL: https://en.wikipedia.org/wiki/Single-chain_variable_fragment []
143
+ - How long, in <three>n aminoacids</three>, is a typical <one>human antibody light chain</one>? About <one>211</one> to <one>217</one> amino acids long. (<one>211-217</one>) []
144
+ - <one>Rituximab</one> is a chimeric monoclonal antibody against the protein <one>CD20</one>. What happens when this antibody binds to <two>CD20</two>? <one>Rituximab</one> will <two>trigger cell death</two>.
145
+ - The presence of <one>multiple identical determinants</one> in an antigen is referred to as ... ? <one>Polyvalency</one> / <one>Multivalency</one>. []
146
+ - Hat die <one>Milz</one> irgendeinen Bezug zu den Antikörpern? Ja; <one>in der Milz</one> werden die Immunglobuline <two>teilweise zerlegt</two>. URL: https://de.wikipedia.org/wiki/Milz#Die_wichtigsten_Aufgaben_der_Milz []
147
+ - Können <one>Antikörper</one> eine Antikörper-Bildung auslösen? Ja - sogenannte <one>anti-Antikörper</one>, wie bei der <two>HAMA response</two>. URL: https://en.wikipedia.org/wiki/Human_anti-mouse_antibody
148
+ - In <one>phage display</one>, we may have <two>a phagemid</two> and a helper phage. Can the helper phage reproduce? <one>Yes</one>.
149
+ - Given a <one>typical IgG antibody</one>, we may find <two>three hypervariable regions</two> in the V domain - <violet>HV1</violet>, <violet>HV2</violet> and <violet>HV3</violet>. Which of these three is the most variable one? The <one>HV3 region</one>. []
150
+ - <one>Herceptin</one> erkennt <two>welchen Oberflächenrezeptor</two>? <one>HER2</one>. URL: https://en.wikipedia.org/wiki/HER2/neu []
151
+ - Welche <one>vier Kräfte</one> sind bei der <two>Antigen-Antikörper Bindung</two> wichtig? (1) <one>Wasserstoffbrücken</one> (2) <one>Elektrostatische Kräfte</one> (3) <one>Van-der-Waals-Wechselwirkungen</one> (4) <one>Hydrophobe Kräfte</one>
152
+ - What could be another word for an <one>immunoconjugate</one>? <one>Antibody-drug conjugate</one>. URL: https://en.wikipedia.org/wiki/Antibody-drug_conjugate []
153
+ - What is <one>the minimal length</one>, <two>in n aminoacids</two>, of the linker required to bridge from the C-terminus of VH to the N-terminus of VL, in a scFv fragment? About <one>15 amino acids</one>. []
154
+ - <one>Which antibody</one> is typically called to be <two>heat-labile</two>? <one>IgE</one>. []
155
+ - <one>Where</one> in an antibody can the <twoe>CDR</two> be found? Within the <one>amino-terminal area</one>.
156
+ - <one>Naive mature B cells</one> <two>produce which two antibodies</two>? (1) <one>IgD</one> (2) <one>IgM</one> []
157
+ - Give an example for <one>an amino acid</one> that is <lightskyblue>over-represented</lightskyblue> in antigen-binding site of an antibody. A: <one>Tyrosine</one>. URL: https://en.wikipedia.org/wiki/Tyrosine []
158
+ - Das <one>adaptive Immunsystem</one> kann <two>n verschiedene Antikörper</two> produzieren? <one>10⁸</one>.
159
+ - Name the two general <one>types</one> of epitopes. A: (1) <one>linear epitopes</one> (2) <one>discontinuous epitopes</one> []
160
+ - Some antibodies may be either <one>membrane-bound</one>, or <one>soluble</one> in the serum. <two>What is the molecular reason as to how this can be achieved</two>? This can be achieved via <one>differential splicing</one>. []
161
+ - Name an <one>anti-VEGF</one> <two>monoclonal antibody</two>. A: <one>Avastin</one>. URL: https://de.wikipedia.org/wiki/Avastin []
162
+ - <one>Immunglobulin G</one> hat welche schwere Kette? <one>Gamma</one>. URL: https://pubmed.ncbi.nlm.nih.gov/6787596/ []
163
+ - What is a <one>hapten</one>? This is a substance that <one>can bind to antibodies</one>, but <two>cannot induce an immune response because it is too small</two>. URL: https://en.wikipedia.org/wiki/Hapten
164
+ - Say that we may wish to <one>use antibodies against membrane proteins</one>. <two>What problem may we face here</two>? <one>Membrane proteins</one> tend to have quite short antigenic regions - aka <two>short epitopes</two>. <three>These often only fold correctly in the context of a lipid bilayer</three>.
165
+ - Can <one>antibodies</one> <two>cross the plazenta barrier</two>? Yes - see <one>Rh-negative</one> and <one>Rh-positive</one> mother/offspring situations.
166
+ - <one>Fab-Fragment</one> versus <one>Fv-Fragment</one>. <two>Welches Fragment ist stabiler</two>? Das <one>Fab-Fragment</one>, da es eine <two>Disulfidbrücke</two> enthält, die das Protein stabilisiert.
167
+ - Do we find <one>IgD-dimers</one>? No - <one>IgD</one> is only found as <two>a monomer</two> (at the least in humans). []
168
+ - <one>Which cells</one> have <two>Fc receptors</two> for <three>IgE</three>? <one>Eosinophils</one>. URL: https://en.wikipedia.org/wiki/Eosinophil []
169
+ - Die <one>Immunglobulinfraktion</one> im Serum beträgt etwa <lightseagreen>n%</lightseagreen>? <one>30%</one>. []
170
+ - What is the <one>diameter</one> of a typical (<peru>IgG</peru>) antibody, give or take? About <one>12nm</one>. []
171
+ - A <one>single serum IgM molecule</one> can bind how many larger antigens simultaneously? Only <one>5 or fewer</one>, due to <two>steric hindrance</two>. []
172
+ - Name <one>two points</one> how the <two>four different IgG-subclasses</two> differ from one another. A: (1) The <one>size of their hinge region</one> (2) Number and position of the <one>interchain disulfide bond</one>, between their <two>heavy chains</two>
173
+ - In <one>secondary responses</one> where antibodies may become more refined (<two>affinity maturation</two>), the <three>affinity increases</three> and the Kd value decreases to ... a value of about? <one>10⁻¹¹ M</one> or even less.
174
+ - Name a <one>hapten</one> that was used by <two>Karl Landsteiner</two>. A: <one>Aminobenzene</one>. URL: https://en.wikipedia.org/wiki/Aminobenzene []
175
+ - <one>Triomab</one> combines <two>hybridoma-generated segments</two> <two>from which two animals</two>? (1) <one>rat</one> (2) <one>mouse</one> []
176
+ - Is <one>IgM</one> a <two>secretory immunoglobulin</two>? Yes. Not as important as IgA, but it can bind to <one>receptors on secretory cells</one>, thanks to its <two>J chain</two>.
177
+ - In der <one>Allergieforschung</one> gibt es den <two>Prick-Test</two>. Welcher Antikörper wird dadurch indirekt getestet? <one>IgE</one>. URL: https://en.wikipedia.org/wiki/Skin_allergy_test []
178
+ - Warum hat <one>IgM</one> den Buchstaben <lightseagreen>M</lightseagreen>? <one>M</one> steht hier für <two>Makroglobulin</two>. URL: https://de.wikipedia.org/wiki/Immunglobulin_M []
179
+ - <one>Isotype switching</one>: does it occur in the <lightseagreen>V-region</lightseagreen> or in the <lightseagreen>C-region</lightseagreen> of an antibody? It occurs in the <one>C-region</one>, as a <two>B-cell</two> matures and proliferates. []
180
+ - Bei den <one>Antikörpern</one>: was meinen wir mit dem Begriff <two>IVIG</two> und wo kommt dieser Begriff zur Anwendung? Dies sind <one>intravenöse Immunglobuline</one>. Diese finden zum Beispiel bei <two>Bluttransfusionen</two> Verwendung.
181
+ - Is the role of <one>IgD</one> in serum known? <one>No</one> - the role that <two>IgD</two> plays in the serum is uncertain. []
182
+ - Does <one>IgE</one> have <two>an extra domain</two>? Yes, in its <one>constant region</one>; called <two>CH4</two>. []
183
+ - <one>Protein A</one> kann an den Fc-Teil von IgG binden. <two>Wie können wir diese Bindung aufbrechen</two>? Eine <one>Elution</one> kann <two>durch Senken des pH-Wertes</two> erreicht werden (sprich: <three>Zugabe einer Säure</three>).
184
+ - Initially, the <one>first-generation mAbs</one> (mAbs: <two>monoclonal Antibodies</two>) were generated from mouse and rat hybridomas, but they found only limited use in clinic usage. Give <three>two reasons</three> as to why that was the case. A: (1) <one>high immunogenicity</one> (2) <one>short half-lives</one>
185
+ - The <one>antigen-antibody interactions</one> occur in <two>n stages</two>? <one>Three</one> (<two>3</two>).
186
+ - What is meant with the term <one>Mumab</one>? <one>Murine mAb</one>: <two>murine monoclonal antibody</two>. URL: https://www.proteogenix.science/scientific-corner/antibody-production/murine-monoclonal-antibodies-and-their-use-in-modern-medicine/ []
187
+ - Which <one>human herpes virus</one> shows <two>significant B cell tropism</two>? The <one>Epstein-Barr virus</one>. URL: https://www.nature.com/articles/ncomms13557 []
188
+ - Hat <one>IgD</one> ein höheres Molekulargewicht als <one>IgE</one>? Nein. <one>IgE</one> hat <two>190 kDa</two> und <one>IgD</one> hat <two>175 kDa</two>. []
189
+ - Monoclonal antibodies: <one>-zumab</one> versus <one>-umab</one> - which ones are more human? (1) <one>-umab</one> refers to <two>human monoclonal antibodies</two> (2) <one>-zumab</one> refers to <two>humanized monoclonal antibodies</two>.
190
+ - <one>Pepsin digestion</one> applied onto an <two>IgG-molecule</two> will lead to ... ? One <one>F(ab)₂</one> fragment. []
191
+ - <one>Yeast display</one> is also <two>used for the display of antibodies</two>. At the cell wall of the yeast cells, which particular yeast protein is usually used here? The <one>Aga2p mating agglutinin protein</one>.
192
+ - <one>When</one> was the antibody <two>IgE</two> discovered? In the year <one>1966</one>, and also in the year <one>1967</one>, ironically enough. A joint paper was written in <one>1969</one>. URL: https://en.wikipedia.org/wiki/Immunoglobulin_E#Discovery []
193
+ - <one>Dual targeting IgGs</one> can be engineered to use their 6 CDRs in order to accomodate two binding sites against two structurally unrelated antigens. <two>Give two such examples for antigens like this</two>. A: (1) <one>EGFR</one> (2) <one>Her3</one>
194
+ - <one>ADCC</one> (<two>antibody dependent cell-mediated cytotoxicity</two>) <three>was first described in which year</three>? In <one>1967</one>. []
195
+ - Sind <one>polyklonale Antikörper</one> funktionell unterschiedlich? <one>Ja</one> - sie <two>besitzen eine unterschiedliche Affinität in Bezug auf die unterschiedlichen Epitope eines Antigens</two>.
196
+ - <one>Chimeric antibodies</one>, even though perceived as less foreign and therefore less immunogenic than mouse monoclonal antibodes, <two>have been shown to induce ... which response</two>? The <one>HACA response</one> (<two>human anti-chimeric antibody response</two>). URL: https://en.wikipedia.org/wiki/Human_anti-chimeric_antibody
197
+ - <one>Lipids</one> <two>can stimulate the production of which antibody</two>, in the human body? <one>IgM</one>. []
198
+ - The <one>scFv</one> has a viable linker peptide, which typically has the two aminoacids <two>Glycine</two> and <two>Serine</two>. <three>Why ought the aminoacids be hydrophilic</three>? This may avoid intercalation of the peptide with or between the variable domains throughout protein folding.
199
+ - The ability of an antibody to communicate with the other components of the immune system is mediated via its <one>Fc region</one>, which is located at the base of the "Y"-structure. This area also contains a conserved glycosylation site. <two>Is this site involved in these interactions</two>? <one>Yes</one>.
200
+ - Hersteller von <one>Trastuzumab</one> ist ... ? Die Firma <one>Roche</one>. URL: https://de.wikipedia.org/wiki/Trastuzumab []
201
+ - Name <one>three roles</one> that antibodies play in <two>host defence</two>. A: (1) <one>neutralization</one> (2) <one>opsonization</one> (3) <one>complement activation</one> []
202
+ - <one>Which antibody</one> is, by far, <two>the most efficient one</two> at <three>complement fixing</three>, among the different natural antibodies? <one>IgM</one>. []
203
+ - In a <one>typical IgG molecule</one>, the <two>CL domain</two> is paired with ... ? The <one>CH1 domain</one>. []
204
+ - Einige wenige Antikörper, wie zum Beispiel IgM, besitzen eine <one>J-Kette</one>. <two>Dieses Peptid hat ein Molekulargewicht von n kD</two>? <one>15 kD</one>. []
205
+ - Andere Bezeichnung für <one>sezernierte Antikörper</one>? <one>Lösliche Antikörper</one>. URL: https://www.spektrum.de/lexikon/biochemie/immunglobuline/3076 []
206
+ - <one>ZMapp</one> is <two>an experimental biopharmaceutical drug</two> comprising ... how many chimeric monoclonal antibodies, for treatment of the Ebola virus disease? There are <one>three</one> chimeric monoclonal antibodies part of ZMapp. URL: https://en.wikipedia.org/wiki/ZMapp
207
+ - <one>Humanized antibodies</one> are human antibodies that contain <two>mouse-derived CDRs</two> ... where? In their <one>variable regions</one>.
208
+ - Der <one>monoklonale Antikörper</one> <two>Herceptin</two> bindet an ...? <one>HER2-Rezeptoren</one>. URL: https://en.wikipedia.org/wiki/HER2/neu []
209
+ - Do antibodies that are <one>able to bind to the native protein</one> also bind to its <two>denatured state</two>? No, <one>not necessarily so</one>. []
210
+ - <one>Plasma cells</one> <two>produce and release about n antibodies per second</two>? About <one>2.000 antibodies per second</one>. []
211
+ - The <one>coating of target cells with antibodies</one> is called ... ? <one>Opsonization</one>. URL: https://en.wikipedia.org/wiki/Antibody_opsonization []
212
+ - For the <one>production of monoclonal antibodies</one>, we also need <two>myeloma cells</two>. <three>Which gene is lacking in these cells</three>? The <one>HGPRT gene</one> (thus <two>HGPRT-</two>). The full name is <three>Hypoxanthine-guanine phosphoribosyltransferase</three>. URL: https://en.wikipedia.org/wiki/Hypoxanthine-guanine_phosphoribosyltransferase
213
+ - Besitzt ein <one>Fab-Fragment</one> eine <two>Disulfidbrücke</two>? Ja. []
214
+ - In <one>humans</one> we can find <two>the kappa-light chain</two> and <two>the lambda-light chain</two> in antibodies. Which one is more frequently found? The <one>kappa light chain</one>; in a <two>2:1 ratio</two>. []
215
+ - <one>ADCC</one> (<two>antibody-dependent cellular cytotoxicity</two>) usually <two>requires a specific cell</two>; and <three>a specific antibody</three>. In most cases, these two are ... ? (1) a <one>natural killer cell</one> (a <two>NK cell</two>) (2) an <one>IgG antibody</one> []
216
+ - <one>Circulating IgA</one> has a <two>half-life</two> of about n days? <one>3 days</one>. []
217
+ - Give another name for the <one>llama antibodies</one>, also two words. A: <one>Miniature antibodies</one>. []
218
+ - For <one>murine monoclonal antibodies</one>, what is the <two>suffix</two>? <one>-omab</one> (<two>-o-</two>).
219
+ - Name <one>two prominent aminoacids</one> that are part of the <two>hinge region</two> of a typical antibody. A: (1) <one>cysteine</one> (<two>C</two>) (2) <one>proline</one> (<two>P</two>)
220
+ - <one>Bence-Jones proteins</one> are essentially ... ? <one>Immunoglobulin L-chains</one>. URL: https://en.wikipedia.org/wiki/Bence_Jones_proteins []
221
+ - Say that there is <one>an antibody-antigen complex</one> within a (living) cell. <two>What will happen with this complex in the long run</two>? It will eventually be <one>degraded</one> in a <two>lysosome</two>. URL: https://en.wikipedia.org/wiki/Lysosome
222
+ - Say that we have <one>a cleavable linker</one> attached to an antibody. <two>Where inside of the cell</two> will this linker be cleaved off? It will be cleaved off in the <one>endosome</one> or in the <one>lysosome</one> of the target cell. []
223
+ - Welches <one>Immunoglobulin-Molekül</one> hat die längste Halbwertszeit und wie lang ist diese? <one>IgG - und zwar etwa 3 Wochen</one> (also <two>21 Tage</two>). []
224
+ - Wir können viele Antikörper auch bei <one>-20°C</one> einlagern, wenn wir <two>welche Substanz hinzufügen</two>? <one>Glycerin</one> (<two>Glycerinzusatz</two>). URL: https://upload.wikimedia.org/wikipedia/commons/d/dc/Glycerin_Skelett.svg []
225
+ - Given a typical <one>IgG</one> molecule, which area(s) are quite <two>flexible</two>? (1) the <one>hinge area</one> (2) the <one>V-C junction</one>
226
+ - <one>Peptide arrays</one> can be used to screen antibody specificities, through the presentation of overlapping peptides. <two>They are quite limited, though</two>. Name a reason as to why that is so. A: The general approach is limited by the fact that most broadly neutralizing antibodies recognize <one>conformational epitopes</one> and <one>glycans</one> that are not represented in the arrays.
227
+ - Andere Bezeichnung für die <one>Bindungsstärke eines Antikörpers</one>? <one>Avidität</one> - zumindest bei einem multivalenten Antikörper. URL: https://de.wikipedia.org/wiki/Avidit%C3%A4t []
228
+ - Which antibody can be found to be <one>especially prevalent in human breast milk</one>? <one>Secretory IgA</one>. URL: https://en.wikipedia.org/wiki/Immunoglobulin_A#Secretory_IgA []
229
+ - Name three <one>Fc-mediated effector functions</one> of antibodies. A: (1) <one>ADCC</one>: <two>antibody-dependent cell-mediated cytotoxicity</two> (2) <one>ADCP</one>: <two>antibody-dependent cellular phagocytosis</two> (3) <one>CDC</one>: <two>complement-dependent cytotoxicity</two>
230
+ - The <one>FLAG epitope</one> is recognized by commercially available <two>M1</two> and <two>M2 antibodies</two> in a .... dependent binding. A: <one>Calcium-dependent binding</one>. []
231
+ - From <one>IgG1</one>, <one>IgG2</one>, <one>IgG3</one>, <one>IgG4</one> - which one of these four antibody subtypes has <two>11 interchain disulfide bonds</two>? <one>IgG3</one> - in other words - <two>the largest IgG variant also has the highest amount of disulfide bonds</two>. []
232
+ - Das Medikament heisst <one>Herceptin</one> - aber <two>wie heißt der dazugehörende Antikörper</two>? <one>Trastuzumab</one> (<two>Tras-tu-zu-mab</two>). URL: https://en.wikipedia.org/wiki/Trastuzumab []
233
+ - What is the general reason why <one>antibodies of camels and llamas</one> may be so important in biotechnology? Because <one>their antibodies have only heavy chains</one>. Such antibodies may thus be able to attach to some targets that are not accessible to conventional antibodies.
234
+ - What does the abbreviation <one>mAb</one> stand for? <one>Monoclonal antibody</one>. URL: https://en.wikipedia.org/wiki/Monoclonal_antibody []
235
+ - <one>Which antibody</one> is also known as <two>11S immunoglobulin</two>? <one>sIgA</one> - aka <two>secretory IgA</two>.
236
+ - The <one>Fc fragment</one> of an antibody has a role in <one>effector functions</one> and <one>complement fixation</one>. But aside from this it is also important ... why? The Fc fragment <one>influences the half-life of the antibody</one>.
237
+ - How heavy is <one>a single Fab fragment</one>, in kDa - aka one light chain and half a heavy chain combined. A: The <one>molecular weight</one> of a single Fab fragment is about <two>~50 kDa</two>. []
238
+ - <one>Attenuated vaccines</one> require how many doses in order to <three>induce long-lasting immunity</three>? Usually <one>only one</one>. []
239
+ - Für den <one>selektiven Transport von IgG</one>, von der Mutter auf den Fötus, ist <two>welcher Rezeptor in der Plazenta</two> verantwortlich? <one>FcRn</one> - <two>das IgG-Transportprotein</two>.
240
+ - <one>Where</one> may <two>epitope mapping</two> be useful? For <one>vaccine development</one>.
241
+ - Kann das <one>Bence-Jones Protein</one> <two>kristallisiert</two> werden? Ja. Es war auch als <one>Paraprotein</one> bekannt. []
242
+ - Bei der <one>Synthese monoklonaler Antikörper</one> kann es <two>zwei falsche Hybridome</two> geben. Welche sind diese? (1) <one>B+B</one>: also <two>zwei fusionierte B-Lymphozyten</two> (2) <one>M+M</one>: also <two>zwei fusionierte Myelomzellen</two>
243
+ - Antibodies can occur in which <one>physical forms</one>? (1) a <one>soluble form</one> that is secreted from the cell to drift free in the blood plasma (2) a <one>membrane-bound</one> form that can be found attached to the surface of a B cell []
244
+ - Welcher Antikörper <one>'übernimmt'</one> nach <two>IgM</two>, nach Exposition mit einem Antigen? <one>IgG</one>. URL: https://en.wikipedia.org/wiki/Immunoglobulin_G []
245
+ - In the 1940s, <one>Linus Pauling</one> confirmed the <two>lock-and-key theory</two> proposed by Ehrlich by showing that the interactions between antibodies and antigens depended more on their ... than their chemical composition. A: <one>shape</one>. []
246
+ - Just about the <one>most frequently seen antigens</one> are of what class ... ? <one>Proteins</one>. []
247
+ - For the hybridoma technique in a <lightseagreen>HAT medium</lightseagreen>, we make use of antibody-producing plasma cells and myeloma cells. Which of these two cells <one>will survive in a HAT medium</one>? Only the <one>antibody producing plasma cells</one> will survive in a HAT medium. []
248
+ - In <lightseagreen>antigen-binding</lightseagreen>: does the <one>Vh domain</one> or the <one>Vl domain</one> contribute more? The <one>Vh domain</one> contributes more, usually. []
249
+ - If we wish to obtain <one>F(ab)₂</one> - aka <two>two Fab fragments bound together</two> - <three>which enzyme should we use</three>? <one>Pepsin</one> - so we should <two>perform a pepsin digestion</two>. []
250
+ - <one>Wodurch</one> wird die Antikörperklasse festgelegt? Durch die <one>konstante Region der schweren Immunglobulinkette</one>.
251
+ - <one>Welche zwei Klassen von Proteinen</one> können <two>im Blutserum</two> unterschieden werden? (1) <one>Albumine</one> (2) <one>Globuline</one>
252
+ - Sind <one>Globuline</one> wasserlöslich? Nein, sie sind salzlöslich.
253
+ - The <one>hybridomas</one> created in <two>1975</two>: <three>do they secrete antibodies in culture</three>? <one>Yes</one>. []
254
+ - <one>Nanobodies</one> <two>have only which chain</two>? They have only <one>a heavy-chain</one>. []
255
+ - <one>Infliximab</one> is <two>a purified, recombinant DNA-derived chimeric IgG monoclonal antibody</two>. <three>From which two species has it been derived</three>? <one>Human</one> and <one>mouse</one> - thus, it is a <two>human-mouse monoclonal antibody</two>.
256
+ - Kann eine <one>Antikörperbindung</one> zu einer <two>Konformationsänderung eines Antigens</two> führen? <one>Ja</one>. []
257
+ - <one>Polyclonal antibodies</one> are derived from the serum of ... ? <one>Immunized individuals</one>. []
258
+ - Bei der <one>Herstellung monoklonaler Antikörper</one>: <two>wie bringen wir die Milzzellen und die Myelomzellen zur Fusion</two>? Wir können <one>Polyethylenglykol</one> (<royalblue>PEG</royalblue>) hinzufügen, dann beobachtet man <two>Fusions-Ereignisse</two>.
259
+ - In <one>flow cytometry</one>: <two>which type of antibodies are typically used</two>? <one>Fluorescent antibodies</one>. []
260
+ - Bei der <one>Herstellung polyklonaler Antikörper</one>: <two>wie werden die Tiere immunisiert</two>? Über eine <one>intramuskuläre Injektion unseres Antigens</one>.
261
+ - Bei <one>IgY</one>: wofür steht das <two>Y</two>? Für <one>yolk</one>. URL: https://en.wikipedia.org/wiki/Yolk []
262
+ - A healthy, <one>70kg adult human</one> produces how many <two>serum-antibodies</two> every day, in gram? <one>2-3g</one> of antibodies every day. []
263
+ - Compare the amount of amino acids found in an <one>antibody heavy chain</one> and in an <one>antibody light chain</one>. A: (1) The <one>heavy chain</one> has <two>440 AA</two>. (2) The <one>light chain</one> has <two>220 AA</two>. []
264
+ - <one>IgG</one> is <lightseagreen>the major Immunoglobulin in serum</lightseagreen>. <two>How much percent of serum Immunoglobulin is IgG</two>? About <one>75%</one>. []
265
+ - Say that we may wish to want to <one>study the antibody flexibility and fluctuation</one>. Name a <peru>technique</peru> that could be used for this. A: Via <one>ET</one>, aka <two>electron tomography</two>. URL: https://en.wikipedia.org/wiki/Electron_tomography
266
+ - <one>Antikörper</one> können in Glyzerin-hältiger Lösung mit ... als <two>Konservierungsmittel</two> viele Jahre gelagert werden. A: <one>Natriumazid</one> (<two>NaN₃</two>).
267
+ - If a human being lacks <one>IgG2</one> antibodies, <two>which infection type may increase as a consequence</two>? <one>Infection with encapsulated bacteria</one>.
268
+ - Gelangen Antikörper in die <one>Lymphe</one>? <one>Ja</one>. []
269
+ - <one>Nanobodies</one> could be <two>used against which disease</two>? <one>Nanobodies</one> could be used against the <two>Parkinson disease</two>.
270
+ - Can <one>antibodies</one> recognize <two>polysaccharide coats</two>? <one>Yes</one>. []
271
+ - Name the two different <one>forms</one> of <two>IgM</two>. A: (1) <one>planar form</one> (2) <one>staple form</one> []
272
+ - The <one>antibody structure</one>: <two>antibodies are organized into ... </two>? <one>domains</one>. []
273
+ - The <one>total collection of antibodies with different specificities</one> <two>represents</two> the ... ? <one>antibody repertoire</one>. []
274
+ - <one>Epitopes</one> are generally divided into which <two>two general classes</two>? (1) <one>linear</one> (2) <one>conformational</one>
275
+ - Nenne <one>drei Eigenschaften</one>, die <two>ein guter Antikörper</two> besitzen sollte. A: (1) möglichst <one>hohe Antigenspezifität</one> (2) möglichst <one>hohe Avidität zum spezifischen Antigen</one> (3) möglichst <one>hohe Eigenstabilität</one>
276
+ - When we see an antibody, such as <one>ipilimumab</one> - what can we infer from the suffix <two>-mumab</two>? That this is <one>fully human</one>.
277
+ - How many <one>different heavy chain constant regions</one> are known to exist for the <two>heavy antibody chains</two>? <one>5</one>. []
278
+ - <one>Fab-Fragmente</one> werden hergestellt durch ... im Bereich ... ? <one>proteolytische Spaltung</one> ... im Bereich der <one>hinge-Region</one>. []
279
+ - Top ten selling drugs in the year <one>2018</one> - <two>which antibody reigns supreme here</two>? <one>Humira</one>. URL: https://en.wikipedia.org/wiki/Adalimumab []
280
+ - Ein typisches <one>IgG</one>-Molekül besitzt, in Summe, <two>n CDRs</two>? <one>12</one>. URL: https://en.wikipedia.org/wiki/Complementarity-determining_region []
281
+ - Can <one>monoclonal antibodies</one> be <two>used in protein purification</two>? <one>Yes</one>, as they have a high affinity for a particular epitope. []
282
+ - Können <one>Antikörper</one> die <two>Blut-Hirn-Schranke</two> durchqueren? <one>Nein</one>. []
283
+ - The <one>CAR T-cell Therapy</one> has a step call <two>leukapheresis</two>. What does this mean, basically? That <one>we collect T-cells with a specialized blood filtration system</one>.
284
+ - <one>Nanobodies</one> may be fused with a to a bispecific antibody fragment. <two>Why are HSA-specific nanobodies used in general</two>, though? They show an <one>improved serum half life</one> compared to plain nanobodies.
285
+ - Name a <one>mammalian cell platform for antibody selection</one>. A: <one>IONTAS</one>. URL: https://www.iontas.co.uk/ []
286
+ - Wie nennen wir den Bereich <one>zwischen</one> den beiden <two>scFv-Fragmenten</two> eines <two>diabodies</two>? <one>Linker</one>. URL: https://en.wikipedia.org/wiki/Single-chain_variable_fragment []
287
+ - Sind alle <one>IgG Antikörper</one> <two>plazentagängig</two>? Nein - <one>IgG2</one> ist nicht plazentagängig.
288
+ - Antibodies can have <two>a linker</two>. Which <three>two general groups</three> can we distinguish for these linkers? (1) <one>cleavable</one> (2) <one>stable</one> []
289
+ - <one>Welche Antikörpertypen</one> finden wir in <two>Muttermilch</two> vor allem? <one>IgA</one>. URL: https://www.spektrum.de/magazin/immunschutz-durch-muttermilch/822831 []
290
+ - Name an antibody that is involved in <one>ADCC</one> (<two>antibody-dependent cell-mediated cytotoxicity</two>). A: <one>IgG</one>. URL: https://en.wikipedia.org/wiki/Antibody-dependent_cell-mediated_cytotoxicity#By_NK_cells []
291
+ - <one>Wie schwer</one> ist die leichte und die schwere Kette eines Antikörpers (in kDa)? (1) <one>Leichte Kette</one>: <two>25 kDa</two> (2) <one>Schwere Kette</one>: <two>55 kDa</two> []
292
+ - Are <one>mAbs</one> <two>toxic</two> for the cells that express them? Usually not. []
293
+ - <one>Heavy-chain only antibodies</one> were discovered in the serum of camelids, by Hamers-Casterman, <two>in which year</two>? In <one>1995</one>.
294
+ - <one>IgG</one> bound to an antigen can bind to which receptor? <one>FcRs</one>: <two>gamma heavy chain-specific Fc receptors</two>.
295
+ - Name one <one>intrinsic disadvantage of IgM</one>. A: Because of its <one>large size</one>, <two>IgM does not diffuse well</two>. []
296
+ - The <one>strength</one> of binding between one V domain and an antigen is called ... ? The <one>affinity</one> of the antibody. []
297
+ - Why can only antibodies bound to antigen <one>trigger effector functions</one>? (1) <one>First</one> - <two>this ensures that free antibodies do not wastefully and inappropriately trigger these responses</two>. (2) <one>Second</one> - the reason as to why only two or more antibodies trigger a response is that they need to be adjacent in order to invoke this effector response. In other words: there is a <two>requirement for adjacent antibody molecules</two>.
298
+ - What is <one>the major antibody</one> that can be found in <two>tears</two>? <one>IgA</one>. []
299
+ - Do <one>antibody microarrays</one> exist? <one>Yes</one>. URL: https://en.wikipedia.org/wiki/Antibody_microarray []
300
+ - <one>Wo</one> finden wir die <two>Effektorfunktion eines Antikörpers</two>? Im <one>Fc-Teil</one>.
301
+ - For an <cadetblue>effector cell</cadetblue> to be able to <one>interact with antibodies coating a pathogen</one>: <two>which structural entity is especially important for said antibody</two>? The <one>Fc domain</one> / <one>Fc region</one>.
302
+ - <one>Epitopes</one> formed by several <two>adjacent amino acid residues</two> are called ... ? <one>Linear determinants</one>. []
303
+ - Do the <one>CH3 domains</one> in a typical <two>IgG</two> antibody pair with one other? <one>Yes</one>. []
304
+ - <one>Which antibody</one> <two>deals with virus</two> <three>on mucosal surfaces</three>? <one>IgA</one>. []
305
+ - <one>Which Immunoglobulin</one> can <three>agglutinate viral particles</three> especially well? <one>IgM</one>. []
306
+ - The <one>secondary antibody</one> recognizes what? The <one>primary antibody</one>. []
307
+ - <one>Protein A</one> ist ein Membranprotein aus Staphylococcus aureus, mit einem Molekulargewicht von <two>42 kDa</two>. Es kann an IgG binden. Diese Bindung erfolgt über welchen Bereich in IgG? Die Bindung erfolgt über den <one>Fc-Teil</one> von IgG. URL: https://de.wikipedia.org/wiki/Protein_A []
308
+ - When we notice a <one>nonliving-antigen</one>, what will we also know? That this antigen can <one>NOT</one> proliferate. []
309
+ - <one>Antibodies</one> are <two>what kind of proteins</two>? <one>Antibodies</one> are <two>Glycoproteins</two>. []
310
+ - What was the <one>first fully human antibody product from transgenic mice</one>? <one>Panitumumab</one> (<two>Panitum-u-mab</two>).
311
+ - <one>Anti-Rh antibodies</one> <two>belong to which immunoglobulin class</two>? <one>IgG</one>. []
312
+ - Even <one>monoclonal antibodies can evoke negative effects</one>, such as <two>the cytokine release syndrome</two>. This release of cytokines depends on which structural part of the antibody? It depends on the <one>Fc region</one> of the antibody.
313
+ - <one>If</one> we wish to use an antibody that is <two>good at agglutinating</two>, <three>which antibody should we use first</three>? <one>IgM</one>. []
314
+ - In einem <one>schwach sauren Medium</one> bewirkt der Zusatz von <two>kurzkettigen Fettsäuren</two> (<three>Caprylsäure</three>) das Ausfällen der meisten Serumproteine - <four>mit Ausnahme welchen Antikörpers</four>? <one>IgG</one>. []
315
+ - <one>Which antibody</one> is essentially the <two>BCR</two>? <one>IgD</one>. URL: https://en.wikipedia.org/wiki/Immunoglobulin_D []
316
+ - In general: <one>which antibody types</one> can <two>activate the classical complement pathway</two>? (1) <one>IgG</one> (2) <one>IgM</one> []
317
+ - Können <one>Antikörper</one> <two>reversibel denaturiert</two> werden? <one>Ja</one>. []
318
+ - What is the target for <one>Catumaxomab</one>? <one>EpCam</one> (<two>Epithelia cell adhesion molecule</two>).
319
+ - Say that you have the two antibodies <one>rituximab</one> and <one>trastuzumab</one>. You treat <one>genetically modified mice</one> with these antibodies and <two>observe no therapeutic activity in these mice</two>. What might be the reason for this? These mice may lack expression of activating Fc-gamma-R or be defective in Fc-gamma-R signaling.
320
+ - <one>Since when</one> is it possible to <two>produce monoclonal antibodes</two>? Since as of the year <one>1975</one>. []
321
+ - <one>Halbwertszeit</one> von <two>IgG</two> im menschlichen Körper? <one>21 Tage</one> - also <two>drei Wochen</two>. []
322
+ - Is the <one>Fv fragment</one> smaller than the <one>Fab fragment</one>? <one>Yes</one>. []
323
+ - Are <one>monoclonal antibodies</one> <two>commercially important</two>? <one>Yes</one> - they show a <two>high commercial revenue</two>. 6 of the 10 best-selling biopharmaceutics in 2013 were <three>therapeutic mAbs</three>.
324
+ - <one>Where</one> in a typical <two>IgG</two> antibody can we find the CDRs? In <one>VH</one> and <one>VL</one>.
325
+ - In antibody engineering: the <one>FcRn</one> is ... ? The <one>neonatal Fc receptor</one>. URL: https://en.wikipedia.org/wiki/Neonatal_Fc_receptor
326
+ - Antibody in-vivo half life is mediated by contact between Fc and ... which receptor? The <one>neonatal Fc receptor</one>.
327
+ - <one>Infliximab</one>, the first biosimilar monoclonal antibody approved, is used to treat ... ? <one>Autoimmune diseases</one>.
328
+ - Since <one>which year</one> is it possible to <two>efficiently produce monoclonal antibodies</two> (<three>mAbs</three>)? Since as of the year <one>1975</one>. URL: https://en.wikipedia.org/wiki/Monoclonal_antibody#History []
329
+ - If we wish to obtain a <one>Fab</one> fragment (<two>antigen-binding fragment</two>), which enzyme should we use? <one>Papain</one> - thus, we ought to perform a <two>papain digestion</two>. []
330
+ - Bei der <one>Kryopräservierung</one> wird oft welche Substanz eingesetzt, um <lightseagreen>Antikörper langgfristig lagern zu können</lightseagreen>? <one>Glycerin</one>. URL: https://de.wikipedia.org/wiki/Glycerin []
331
+ - Do <one>antibody microarrays</one> exist? <one>Yes</one> they do. []
332
+ - <one>Where</one> in an antibody can we find the <two>hinge region</two>? The <one>hinge region</one> can be found between the <two>CH1 domain</two> and the <two>CH2 domain</two>.
333
+ - Which person discovered <one>the genetic principle of antibody diversity</one> in the year <two>1976</two>? <one>Susumu Tonegawa</one>. URL: https://en.wikipedia.org/wiki/Susumu_Tonegawa []
334
+ - Are <one>Immunglobulins</one> <two>glycoproteins</two>? Yes. []
335
+ - <one>Infliximab</one> <two>mimics which immunoglobulin specifically</two>? <one>IgG</one>. []
336
+ - How many different <one>classes of antibodies</one> can we find based on the structure of their <two>heavy-chain C domains</two>? <one>Five</one> (<one>5</one>). []
337
+ - When <one>IgA</one> is found in secretions it also has another protein associated with it called ... ? The <one>secretory piece</one>; also called the <two>T piece</two>. URL: https://en.wikipedia.org/wiki/Secretory_component
338
+ - Can a <one>single hapten</one> <two>simultaneously bind to two antibodies, at the same time</two>? <one>No</one>. []
339
+ - Nenne <one>drei wichtige Kriterien</one> bei der <two>Reinigung von Antikörpern</two>. A: (1) <one>Ausbeute</one> (2) <one>Erhöhung der Reinheit</one> (3) <one>Erhaltung der biologischen Aktivität</one>
340
+ - <one>Recombinant Therapeutic Antibodies</one> can be sold. <two>Which group</two> of antibodies are the commercially most successful ones? The <one>anti-TNF antibodies</one>. URL: https://en.wikipedia.org/wiki/TNF_inhibitor []
341
+ - The <one>covalent association of heavy and light chains of antibodies</one>, stabilized by the formation of disulfide bonds, occurs where inside of a cell? In the <one>endoplasmic reticulum</one> (<two>ER</two>). []
342
+ - Die <one>Leihimmunität</one> von Mutter-zu-Kind, über die Plazenta, wird über welches Immunglobulin vermittelt? <one>IgG</one>. []
343
+ - Beim <one>Menschen</one>: welche Antikörper binden bevorzugt an das <two>Protein G</two>? Die <one>IgG-Antikörper</one> (leicht zu merken!). []
344
+ - Name <one>four different ways</one> how to disrupt the interaction between an antibody and its antigen. A: (1) by <one>high salt concentration</one> (2) extremes of pH (3) <one>detergents</one> (4) competition with high concentrations of the pure epitope itself
345
+ - Give another name for <one>humanized antibodies</one>. A: <one>CDR-grafted antibodies</one>.
346
+ - Which <one>IgG subclasses</one> exist in the human species? (1) <one>IgG1</one> (2) <one>IgG2</one> (3) <one>IgG3</one> (4) <one>IgG4</one> []
347
+ - Do <one>monovalent antibody fragments</one> form <two>immune complexes</two>? <one>No</one>. []
348
+ - Both <one>IgG</one> and <one>IgM</one> <two>can initiate the complement cascade</two>. <three>Which one of these two is more efficient here</three>? <one>IgM</one> is <two>much more efficient at initiating the complement cascade</two>. []
349
+ - An antibody has <one>HV regions</one> and <one>FR regions</one>. HV are the Hypervariable regions, but what is <lightseagreen>FR</lightseagreen>? The <one>Framework regions</one> - with a fairly <two>low variability</two>.
350
+ - The <one>IgA</one> antibody has <two>how many subclasses</two>? <one>Two</one>. []
351
+ - In the <one>mouse</one>: which antibody has only <lightgreen>two</lightgreen> rather than <lightgreen>three</lightgreen> constant regions in its <two>heavy chain</two>? <one>IgD</one>. []
352
+ - <one>Infliximab</one> is <two>what kind of antibody</two>? <one>Infliximab</one> is a <two>chimeric monoclonal antibody</two>.
353
+ - Wie liegt <one>IgE</one> im Körper normalerweise vor? <one>IgE</one> liegt <two>an Mastzellen gebunden</two> vor. URL: https://flexikon.doccheck.com/de/Mastzelle []
354
+ - Bei den <one>chimären, monoklonalen Antikörpern</one> von Maus und Mensch: woher jeweils stammen die konstanten Regionen und woher die variablen Regionen? (1) Die <one>konstante Region</one> stammt aus dem <two>Menschen</two>. (2) Die <one>variable Region</one> stammt aus der <two>Maus</two>. []
355
+ - A <one>single Fab fragment</one> has a molecular mass of <two>n kDa</two>? About <one>55 kDa</one>.
356
+ - In the past, <one>horse antiserum</one> was sometimes applied against ... ? Infection by <i>Clostridium tetani</i> in a wound, in particular against its <one>Tetanus toxin</one>.
357
+ - <one>Which immunoglobulin</one> is responsible for <two>the hypersensitivity reaction</two>? <one>IgE</one>. []
358
+ - The <one>human fetus</one> <two>synthesizes which antibody first</two>? <one>IgM</one>. []
359
+ - Ein typisches <one>IgG</one>-Molekül hat <two>wieviele Fab-Fragmente</two> und <two>wieviele Fc-Fragmente</two>? <one>2 Fab-Fragmente</one> und <one>1 Fc-Fragment</one>. URL: https://upload.wikimedia.org/wikipedia/commons/e/e2/2fab_fc.svg []
360
+ - Can modern <one>Antibody-Drug Conjugates</one> (<two>ADCs</two>) <three>release the cytotoxic agent inside of cells</three>? <one>Yes</one>. []
361
+ - <one>Naive B cells</one> <two>simultaneously produce which two antibodies</two> that <three>function as membrane receptors for antigens</three>? (1) <one>IgD</one> (2) <one>IgM</one> []
362
+ - Are <one>monovalent antibody fragments</one> secreted through the <two>kidneys</two>? <one>Yes</one>. []
363
+ - Die <one>Antigen-Antikörper</one> <two>Reaktion</two> ist mit welchen zwei anderen <two>Reaktionen</two> vergleichbar? (1) <one>Enzym-Substrat Bindung</one> (2) <one>Ligand-Rezeptor Bindung</one> []
364
+ - Can <one>vitamins</one> act as <two>haptens</two>? <one>Yes</one>. []
365
+ - From <one>IgG1</one>, <one>IgG2</one>, <one>IgG3</one>, <one>IgG4</one> - which one is the largest? <one>IgG3</one>. []
366
+ - There are <one>5 different heavy chains</one> in humans. <two>How are these collectively called</two>? <one>Isotypes</one>. []
367
+ - <one>Disulfide linkers</one> are typically <two>cleaved</two> how and where? They are typically cleaved by <one>glutathione</one>, in the <two>endosome</two>.
368
+ - The complement protein <one>C1q</one> <two>can bind to which two antibodies</two> in particular? (1) <one>IgG</one> (2) <one>IgM</one> []
369
+ - Andere Bezeichnung für künstliche <one>Schwerketten-Antikörper</one>. A: <one>Nanobodies</one>. URL: https://de.wikipedia.org/wiki/Einzeldom%C3%A4nenantik%C3%B6rper []
370
+ - Nenne einen typischen <one>Früh-Antikörper</one>. A: <one>IgM</one>. []
371
+ - What do we mean with <one>antibody-recycling</one> in biotechnology/antibody engineering? This is, for example, <one>when the antigen is selectively degraded</one>, whereas the antibody is not. The idea here is <one>to be able to re-use the antibody</one>. <two>SMART-IG</two> makes use of that, for instance. The same antibody can thus bind to the antigen multiple times.
372
+ - Werden <one>Antikörper</one> eher durch <two>alkalische</two> oder <two>azide</two> Bedingungen geschädigt? Eher durch <one>alkalische Bedingungen</one>. []
373
+ - <one>Which antibody</one> is generally thought to have been <two>the first to appear during evolution</two>? <one>IgM</one>. []
374
+ - Can the <one>Fab fragment</one> be expressed in <two>yeast</two>? <one>Yes</one>. []
375
+ - Wofür steht die Abkürzung <one>mAb</one>? <one>Monoclonal antibody</one>. []
376
+ - Does <one>lysis of cells</one> occur in <two>antibody-dependent cellular cytotoxicity</two> (<three>ADCC</three>)? <one>Yes</one>.
377
+ - Give an example of <one>how</one> the determinant of an antigen may be <two>lost</two>. A: For example, due to <one>denaturation</one>, such as through <two>significant heat increase</two>.
378
+ - Antibodies can be used to <one>quantitate the presence of an antigen</one>. <two>Name two techniques that allow us to do so</two>. A: (1) using a <one>radioimmunoassay</one> (<springgreen>RIA</springgreen>) (2) using an <one>enzyme-linked immunoabsorbent assay</one> (<springgreen>ELISA</springgreen>)
379
+ - <one>Welche Antikörper</one> können den <two>klassischen Komplementweg</two> aktivieren? (1) <one>IgG</one> (2) <one>IgM</one> []
380
+ - Name two different ways how infants acquire <one>maternal antibodies</one>. A: (1) through the <one>placenta</one> (2) through <one>breast milk</one> []
381
+ - Is a <one>Fv fragment</one> smaller than an <one>Fab fragment</one>? <one>Yes</one>. []
382
+ - Give another name for the <one>antibody-binding</one> and the <one>antibody tail</one> part of an IgG molecule. A: (1) <one>antibody-binding</one>: <two>Fab</two> (2) <one>antibody tail</one>: <two>Fc</two>
383
+ - If we wish to generate <one>a single F(ab)2 fragment</one>, which enzyme should we employ? <one>Pepsin</one>. URL: https://en.wikipedia.org/wiki/Pepsin []
384
+ - <one>Which antibody</one> <two>remains membrane-bound</two>? <one>IgD</one>. []
385
+ - Ist <one>IgG</one> <two>plazentagängig</two>? Ja - <one>IgG</one> ist ein <two>sehr kleiner Antikörper</two>. []
386
+ - <one>Welches spezifische Antigen</one> wird bei der <two>Blutgruppe AB</two> gebildet? <one>Keines</one>.
387
+ - <one>Antibody-drug-conjugates</one> (<two>ADCs</two>) may have <three>which advantage over classical chemotherapy</three>? <one>ADCs may kill only the cancer cells</one> - and spare healthy cells.
388
+ - <one>IgM</one> has how many <two>identical binding domains</two>? <one>10</one>. []
389
+ - <one>Which antibody</one> is <two>the phylogenetically oldest immunoglobulin</two>? <one>IgM</one>. (See the book "Monoclonal Antibodies: Principles and Practice", Chapter 5.3.1, IgM). []
390
+ - Can <one>unbound antibodies</one> <two>initiate effector functions</two>? <one>No</one>. They must have bound antigens, in order to <two>make use of the effector functions of antibodies</two>. []
391
+ - The <one>crescendo discovery platform</one> is based on ... ? <one>Transgenic mice</one>. URL: https://www.crescendobiologics.com/vh-technology/discovery-and-development/
392
+ - Nenne ein Beispiel für einen <one>Frühantikörper</one>, der üblicherweise zudem ein Hinweis für eine Infektion ist. A: <one>IgM</one>. URL: https://de.wikipedia.org/wiki/Immunglobulin_M []
393
+ - Compared to the other antibodies, why does <one>IgM</one> not diffuse well? Due to its <one>large size</one>. URL: https://en.wikipedia.org/wiki/Immunoglobulin_M []
394
+ - Two <one>Fab fragments</one> can be gained by the action of <two>which enzyme</two>? <one>Papain</one>. URL: https://de.wikipedia.org/wiki/Papain []
395
+ - If we compare <one>chimeric antibodies</one> and <one>humanized antibodies</one>, which ones contain more foreign parts, e. g. <two>more murine parts</two>? The <one>chimeric antibodies</one> <two>contain more foreign parts</two>; humanized antibodies have mostly just the CDR part modified. []
396
+ - On an antibody: what does the abbreviation <one>CDR</one> stand for? <one>Complementarity determining region</one>. URL: https://en.wikipedia.org/wiki/Complementarity-determining_region []
397
+ - The <one>Bence-Jones protein</one> actually refers to ... ? The <one>antibody light chain</one>. URL: https://de.wikipedia.org/wiki/Bence-Jones-Protein []
398
+ - Which <one>IgG subclass</one> <two>does not fix complement very well</two>? <one>IgG4</one>. []
399
+ - Mit welcher <one>Technik</one> kann der <two>KD-value eines Antikörpers</two> bestimmt werden? Mit Hilfe eines <one>indirekten ELISAs</one>. []
400
+ - Can we <one>use antibodies against</one> <lightseagreen>5-methyl-cytosine</lightseagreen>? Yes we can. []
401
+ - <one>Human antibody-secreting cells</one> (<two>ASCs</two>) can be immortalized by ... ? An <one>Epstein-Barr virus</one> (<two>EBV</two>) infection. []
402
+ - Besitzt <one>DNA</one> eine <two>antigene Wirkung</two>? Unter bestimmten Umständen <one>ja</one>. []
403
+ - Does <one>ADCC</one> (<two>antibody-dependent cell-mediated cytotoxicity</two>) depend on <three>phagocytosis</three>? No it does not. []
404
+ - Welche <one>natürlichen Antikörper</one>, zumindest im Menschen, besitzen eine <two>J-Kette</two>? (1) <one>sekretorische IgA</one> (2) <one>IgM</one> []
405
+ - <one>Welche Antikörpergruppe</one> führt zu <two>allergischen Reaktionen vom Soforttyp</two>? Die <one>Immunglobulinklasse E</one> (<two>IgE</two>). []
406
+ - <one>In order to produce antibodies</one>, a <two>B cell</two> <three>must receive signals from which other cell</three>? From <one>T helper cells</one>. URL: https://en.wikipedia.org/wiki/T_helper_cell []
407
+ - The number of <one>different</one> kinds of antibody molecules that a human can generate is about ... ? <one>2.5 x 10⁷</one>.
408
+ - Can <one>monoclonal antibodies</one> recognize a <two>phosphorylated epitope</two>? <one>Yes</one>, <two>in principle they can</two>. []
409
+ - What is meant with the term <one>cryoglobulin</one>? A <one>cryoglobulin</one> is <two>an antibody that precipitates on cooling of a blood sample</two>.
410
+ - <one>To which part of a monoclonal antibody</one> does <two>Protein A</two> from Staphylococcus aureus bind to? To the <one>Fc-region</one> (<two>fragment crystallisable</two>).
411
+ - <one>Which antibody</one> appears to function only on the <two>surface of B cells</two>? <one>IgD</one>. URL: https://en.wikipedia.org/wiki/Immunoglobulin_D []
412
+ - Does <one>IgD</one> bind <two>complement</two>? <one>No</one>. []
413
+ - In <one>yeast display</one>: <two>why is mating important</two>? Mating allows the generation of libraries with <two>randomly paired heavy and light chain</two>.
414
+ - <one>Welche Antikörper</one> sind <two>plazentagängig</two>? Nur <one>Immunglobulin G</one> (<two>IgG</two>). URL: https://de.wikipedia.org/wiki/Immunglobulin_G []
415
+ - How to <one>improve the half-life of an antibody</one>? Attach <one>Polyethylene glycol</one> (<two>PEG</two>) to it.
416
+ - <one>Catumaxomab</one> <two>can bind three different cells</two>. Which ones specifically? (1) A <one>tumour cell</one>, via <two>EpCAM</two> (2) A <one>T cell</one> via <orange>CD3</orange> (3) A <one>Macrophage</one> (or a NK cell or a dendritic cell), via the Rc receptor
417
+ - Does <one>ADCC</one> belong to the <two>adaptive immune response</two>? <one>Yes</one>. URL: https://en.wikipedia.org/wiki/Antibody-dependent_cellular_cytotoxicity []
418
+ - For the <one>production of mAbs in mammalian cells</one>: <two>which promoter is typically used</two>? The <one>CMV promoter</one>, which is <two>a strong constitutive promoter</two>. URL: https://en.wikipedia.org/wiki/Cytomegalovirus#Genetic_engineering
419
+ - Are there <one>plasma cells</one> that can produce and secrete <two>IgA</two>? Yes. []
420
+ - What is a <one>sdAb</one>? A <one>single-domain antibody</one>. URL: https://en.wikipedia.org/wiki/Single-domain_antibody []
421
+ - Warum der Name <one>D segments</one> in Antibody <two>CDR3 segment</two>? <one>D</one> ... stands for <two>diversity</two>. []
422
+ - Was sind <one>Abzyme</one>? <one>Abzyme</one> sind <two>katalytisch wirksame Antikörper</two>. URL: https://en.wikipedia.org/wiki/Abzyme []
423
+ - <one>IgG</one> can bind to <two>FcRn</two> - but <three>where does it do so</three>, exactly? In an <one>endosome</one>.
424
+ - Antibodies are, in general, structured like a <one>Y</one>. The lower part of this <one>Y</one> has which end? It has a <one>carboxy-terminus</one> (<two>COO⁻</two>).
425
+ - Hat das <one>scFV-Fragment</one> einen <two>Linker</two>? <one>Ja</one>. []
426
+ - <one>Mastzellen</one> haben an ihrer Oberfläche Rezeptoren für <two>welches Immunglobulin</two>? Für das Immunglobulin <one>IgE</one>. []
427
+ - <one>Recombinant antibodies</one> <two>for use in humans</two> <three>are typically expressed in which cell system</three>? In <one>CHO cells</one>. URL: https://en.wikipedia.org/wiki/Chinese_hamster_ovary_cell []
428
+ - Can <one>Protein A</one> <two>bind to monoclonal antibodies</two>? <one>Yes</one>. []
429
+ - In immunology: what is meant with the abbreviation <one>BsAb</one>? This refers to <one>bispecific antibodies</one>. URL: https://en.wikipedia.org/wiki/Bispecific_monoclonal_antibody []
430
+ - <one>IgA</one> verwendet <two>welchen Rezeptor</two> um an Schleimhautdeckgewebe zu binden? Den <one>Poly-Ig-Rezeptor</one>. URL: https://en.wikipedia.org/wiki/Polymeric_immunoglobulin_receptor
431
+ - Is <one>phage displayed</one> <two>used to engineer antibodies for pharmaceutical use</two>? Yes. []
432
+ - <one>Bevacizumab</one>, <two>a humanized mAb</two>, is used to treat ... ? <one>Various tumors</one>.
433
+ - <one>Antigenic determinants</one> depend not only on <two>primary structure</two>, but also on ... ? <one>Protein folding</one> - in other words, <two>the conformation of the protein at hand</two>.
434
+ - Nenne einen <one>monoklonalen Antikörper</one> mit dem <two>Brustkrebs</two> behandelt werden kann. A: <one>Herceptin</one>. URL: https://en.wikipedia.org/wiki/Trastuzumab []
435
+ - Can the <one>MAC</one> (<three>membrane-attack complex</three>) <two>lead to the lysis of tumour cells</two>? <one>Yes</one>. []
436
+ - Which antibody is <one>the first one</one> that is produced in a primary response to an antigen? <one>IgM</one>. URL: https://de.wikipedia.org/wiki/Immunglobulin_M []
437
+ - Does <one>IgA</one> <two>fix complement</two>? <one>No</one>. []
438
+ - Does <one>a humanised monoclonal antibody</one> contain more human parts than <one>a chimeric monoclonal antibody</one>? Yes. []
439
+ - Can the method called <one>Hydrogen</one>/<one>Deuterium eXchange mass spectrometry</one> (<two>HDX-MS</two>) be used to study both linear and conformational epitopes of antigens? <one>Yes</one>. []
440
+ - In der <one>menschlichen Schleimhaut</one> finden wir <two>vor allem welchen Antikörpertyp</two>? Den <one>IgA-Typ</one>. []
441
+ - Wogegen richten sich <one>monoklonale Antikörper</one>? Sie richten sich <one>gegen ein einzelnes Epitop</one>. []
442
+ - In general: a <one>typical IgG-molecule</one> has how many domains in total? <one>12</one>. []
443
+ - Name the two <one>antibody light chains</one>. A: (1) <one>kappa</one> (2) <one>lambda</one> - Menmonic: <royalblue>KL</royalblue>, like in the alphabet. []
444
+ - Wie gross sind <one>Nanobodies</one>, verglichen mit <two>herkömmlichen Antikörpern</two>? Sie sind nur etwa <one>1</one>/<one>10</one> so groß wie herkömmliche Antikörper. []
445
+ - Welche Antikörperklasse führt zur <one>Antikörper-vermittelten Zelltoxizität</one> als auch zur <one>Antikörper-vermittelten Opsonierung</one> und <one>Phagozytose</one>? <one>IgG</one>. []
446
+ - <one>Streptavidin-protein A</one> can bind to biotin and ... <two>which antibody</two>? <one>Streptavidin-protein A</one> can also bind to <two>immunoglobulin G</two> (<three>IgG</three>). []
447
+ - <one>Which person</one> coined the term <two>antibody</two>? <one>Paul Ehrlich</one>. He called them <two>Antikörper</two>, which is the german word for <three>antibody</three>. []
448
+ - Are the <one>IgG's</one> monomers? Yes. []
449
+ - Every <one>B cell</one> begins by expressing ... which antibody? <one>IgM</one>. []
450
+ - The three main components of <one>ADCs</one> (<two>antibody-drug conjugates</two>) are ... ? (1) the <one>antibody</one> (2) the <one>linker</one> (3) the <one>payload</one>
451
+ - <one>Nanobodies</one> can not only be found in the camelidae but also in ... ? <one>Sharks</one>. URL: https://en.wikipedia.org/wiki/Single-domain_antibody#From_heavy-chain_antibodies []
452
+ - In <one>ADCs</one>, we may see the term called <one>bystander killing</one>. <three>What is meant with this term</three>? This means that the <one>cytotoxic payload</one> can escape from the targeted cell and, in the process called <two>bystander killing</two>, <three>attack neighboring cells</three>.
453
+ - <one>Monoclonal Antibodes</one> (<two>mAbs</two>) can be used alone, aka naked, or coupled. Give another name for a <three>coupled mAb</three>. A: <one>Conjugated</one>. []
454
+ - <one>Pollen antigens</one> are combated by which <two>Ig</two>? <one>IgE</one>. []
455
+ - Antibodies are <one>glycoproteins</one>. The <three>site of attachment for carbohydrates</three> is usually restricted to ...? The <one>constant region</one>. []
456
+ - In der Biotechnologie: welches Ziel verfolgen wir mit einem <one>scFv-Fragment</one> oft? Ein bestimmtes Zielmolekül mit Hilfe dieses <one>scFv-Fragments</one> zu erkennen.
457
+ - The <one>hinge region</one> of a typical antibody can be <two>subdivided into which distinct regions</two>? (1) <one>upper hinge region</one> (2) <one>core hinge region</one> (3) <one>lower hinge region</one>
458
+ - Können wir Antikörper als <one>Rezeptoren</one> bezeichnen? Ja. []
459
+ - Is it possible to <one>patent</one> <two>the precise definition of an epitope</two>? <one>Yes</one>. []
460
+ - In antibody-drug conjugates: <one>when</one> are the <two>table linkers</two> released? Only <one>after complete degradation of the antibody</one>.
461
+ - Was ist ein <one>diabody</one>? Dies sind <one>zwei scFv-Fragmente</one>, die mit Hilfe eines <one>linkers</one> miteinander verbunden sind.
462
+ - Nenne <one>drei Beispiele für Antikörper-Fragmente</one>. A: (1) <one>Fab Fragment</one> (2) <one>Fv Fragment</one> (3) <one>scFv Fragment</one>
463
+ - Give an example for a 'breakthrough' in antibody engineering. A: The <one>single-chain Fv</one> can be considered to have been a breakthrough in antibody engineering.
464
+ - In human serum, <one>IgG</one> is the most prevalent antibody. <two>IgG has four different subtypes</two>. What is their corresponding percentage value in the serum there? (1) <one>IgG1</one>: <two>60%</two> (2) <one>IgG2</one>: <two>25%</two> (3) <one>IgG3</one>: <two>10%</two> (4) <one>IgG4</one>: <two>5%</two>
465
+ - The <one>membrane-bound form of an antibody</one> may be called a <two>membrane immunoglobulin</two> (<three>mIg</three>). Give another name for this. A: A <one>surface immunoglobulin</one> (<two>sIg</two>).
466
+ - How can we measure the <one>protection level</one> in immunology? With the <one>antibody titer</one>. URL: https://en.wikipedia.org/wiki/Antibody_titer
467
+ - The <one>pentameric IgM antibody</one> can be in the <two>planar form</two> or in the <two>staple form</two>. It can also interact (bind to) with C1q, a complement protein. Which IgM form is significantly more effective in binding to C1q? The <one>staple form</one>.
468
+ - Name an advantage of a high half-life of an antibody in circulation, from the point of view of the patient. A: A <one>longer half-life</one> means <two>patients don't need to be dosed as often</two>.
469
+ - Are <one>monovalent antibody fragments</one> transported through the <two>placenta</two>? <one>No</one>; <two>this functionality is mediated by the Fc-Receptor</two>, which these fragments can not bind to, as <three>they lack the Fc domain</three>.
470
+ - <two>Antibodies</two> generated by B-cells can <one>switch to other isotypes</one>, but this can only happen when ... ? These B-cells have been <one>stimulated by antigen</one>.
471
+ - Why is the name <one>poly-IG receptor</one> partially a <two>misnomer</two>? Because the receptor is also transported, along with e. g. IgA, across a membrane and then released together with polymeric IgA into the "mucous secretion".
472
+ - Name <one>three methods</one> how to enhance the serum half-life of antibody fragments. A: (1) <one>Conjugation of polyethylene glycol</one> (<two>pegylation</two>) (2) Conjugation of fatty acids (bind to <one>serum albumin</one>) (3) Fusion to <one>albumin-binding peptides</one>
473
+ - <one>IgG</one> is not as efficient as <one>IgM</one> when it comes to activating the complement cascade. In fact, two IgG molecules must be within a distance of <three>n nm</three> on a target surface in order to provide attachment sites for <lightseagreen>C1q</lightseagreen>? About <one>30-40 nm</one>.
474
+ - Wofür steht die Abkürzung <one>FaB</one> eigentlich? Für <one>Fragment antigen-binding</one> - aber einfacher merken lässt es sich mittels <two>Fragment of antigen binding</two>. URL: https://en.wikipedia.org/wiki/Fragment_antigen-binding
475
+ - The <one>J segment</one> for antibodies contains how many amino acids? <one>13-15</one>.
476
+ - Die <one>Antigen-Antikörper-Reaktion</one> ist eine Gleichgewichtsreaktion. Das Antigen kann an den Antikörper binden. Wie geht die <two>Massenwirkungsformel</two> dieser Reaktion? <one>[Ag:Ak]</one> / <one>[Ag] x [Ak]</one>
477
+ - During the <one>cytokine release syndrome</one>, we can see that monoclonal antibodies bind to target cells and then may secrete ... what kind of cytokines? <one>Inflammatory cytokines</one>.
478
+ - Does <one>IgM</one> exist as a <two>monomer</two>? <one>Yes</one> - normally it exists as a pentamer, but it can also exist as a monomer, expressed on the plasma membrane of B lymphocytes.
479
+ - Im Jahre <one>2013</one> wurde <two>der erste biosimilare monoklonale Antikörper</two> zugelassen. Wie war sein Name? <one>Infliximab</one>. URL: https://de.wikipedia.org/wiki/Infliximab
480
+ - Which <one>cells</one> make antibodies? (1) <one>B cells</one> (2) <one>plasma cells</one>
481
+ - Can <one>antibodies</one> be used to <two>identify DNA-binding proteins</two>? Yes.
482
+ - What was the name of the <one>first monoclonal antibody</one> that was approved for <two>treating tumors</two>? <one>Rituximab</one> (<two>1997</two> zugelassen von der FDA). URL: https://de.wikipedia.org/wiki/Rituximab
483
+ - Give another term for <one>Fc-mediated functions</one>. A: <one>Effector functions</one>. URL: https://absoluteantibody.com/antibody-resources/antibody-overview/antibody-effector-functions/
484
+ - Ist <one>IgY</one> grösser als <one>IgG</one>? Ja - <one>IgY</one> hat eine Molekülmasse von etwa <two>167 kDa</two> (<one>IgG</one> hat eine Molekülmasse von <two>150 kDa</two>; also <royalblue>+17 kDa Differenz</royalblue>.
485
+ - In <one>phage display</one>: to the protein product of gene III we typically add ... ? <one>scFv</one> which will protrude to the outside, ready to bind to an antigen.
486
+ - <one>DVD-IgG</one> has been created by which company? <one>Abbott</one>. URL: https://en.wikipedia.org/wiki/Abbott_Laboratories
487
+ - Wie entfernt der menschliche Körper <one>Immunkomplexe</one> aus Antikörpern und Viruspartikeln? <one>Makrophagen</one> und <one>neutrophile Granuloycten</one> phagozytieren diese.
488
+ - Name a vaccine that is <one>formaldehyde inactivation</one>. A: The <one>Salk polio vaccine</one>.
489
+ - <one>Humanized monoclonal antibodies</one> carry which suffix? <one>-zumab</one>. URL: https://en.wikipedia.org/wiki/Monoclonal_antibody_therapy#Chimeric_and_humanized
490
+ - The <one>7S immunoglobulin</one> is which antibody? <one>IgG</one>.
491
+ - The antibody <one>recognizes</one> an antigen via ... ? <one>The Fab's variable region</one>.
492
+ - <one>Which antibody</one> is the one that most often goes through <two>transcytosis</two>? <one>IgA</one>. URL: https://en.wikipedia.org/wiki/Transcytosis
493
+ - A <one>Natural Killer cell</one> expresses Fc receptors, which allows them to bind to the Fc portion of an antibody, such as IgG. Give an example for such a Fc receptor. A: <one>CD16</one>.
494
+ - Name an antibody with a <one>CH₄ domain</one>. A: <one>IgM</one>. URL: https://en.wikipedia.org/wiki/Immunoglobulin_M
495
+ - <one>Antibody-dependent cellular cytotoxicity</one> (<two>ADCC</two>) requires a target cell coated with IgG antibodies, and an effector cell which is typically which cell? A <one>natural killer (NK) cell</one>.
496
+ - If we have a monoclonal antibody with the suffix <one>-ximab</one>, what do we know about this antibody? It must be a <one>chimeric monoclonal antibody</one>.
497
+ - <one>Elotuzumab</one> is <two>a humanized therapeutic monoclonal antibody</two> directed to the surface glycoprotein ... ? <one>SLAMF7</one>. URL: https://en.wikipedia.org/wiki/SLAMF7
498
+ - <one>Which IgG antibody subtypes</one> can <two>activate the classical complement pathway</two>? (1) <one>IgG1</one> (2) <one>IgG2</one> (3) <one>IgG3</one>
499
+ - Does the <one>human circulating antibody repertoire</one> retain specificity to <two>self</two> proteins? <one>No</one> - at the least not normally.
500
+ - The first biological assay for <one>IgE activity</one> was the <two>P-K reaction</two>. Why this name? The name is from the two who developed that assay; <one>Prausnitz</one> and <one>Küstner</one>. URL: https://en.wikipedia.org/wiki/Prausnitz%E2%80%93K%C3%BCstner_test
501
+ - In <one>M13</one>, for <two>phage display</two>, the <two>scFv</two> is fused to ... which gene? <one>gene III</one>.
502
+ - The <one>first monoclonal antibody</one> approved by the <three>FDA</three> occurred in which year? In <one>1986</one>.
503
+ - What is <one>the primary advantage of scFv fragments</one>? The antigen binding side, that is the paratope, can be retained, whereas the overall size of the fragment was decreased.
504
+ - The <one>MMR vaccine</one> is not given before 12-15 months of age. Why not? Because passively acquired maternal antibody may interfere with the effectiveness of the measles vaccine.
505
+ - Welche Antigene werden in der Regel zuerst als <one>fremd</one> erkannt? <one>Antigene auf der Oberfläche eines fremden Mikroorganismus</one>.
506
+ - If we mix <one>antibodies</one> with <one>antigens</one> and observe large complexes being formed, how do we call such a <orange>zone</orange>? <one>Zone of equivalence</one>. URL: https://medical-dictionary.thefreedictionary.com/zone+of+equivalence
507
+ - Reagiert das <one>Immunsystem</one> gegen <two>monoklonale Antikörper</two>? Ja.
508
+ - How do we make <one>polyclonal antibodies</one> against a protein of interest? We use that protein to <one>immunize an animal</one>. At some later time, we then collect <one>blood serum</one> (=the <three>harvesting</three> step).
509
+ - In any given natural <one>antibody</one>, their <two>Fc mediated effects</two> are directed at ... ? (1) <one>effector cells</one> (2) <one>effector molecules</one>
510
+ - There is one antibody that <one>binds to Fc-receptors</one>, without having bound any antigen. Which one is it? <one>IgE</one>.
511
+ - Immune complexes with <one>IgE</one> bound to a passively administered antibody can mediate ... ? <one>Systemic mast cell degranulation</one>, which may lead to <two>systemic anaphylaxis</two>.
512
+ - A <one>secondary antibody</one> is frequently made by generating an immune response to ... the <one>primary antibody</one> in another species. A: <one>the Fc region</one> of the <two>primary antibody</two>.
513
+ - The <one>long half-life of IgG</one> can be attributed to its ability to ... ? Bind to <one>a specific Fc receptor</one> called the <two>neonatal Fc receptor</two> (<royalblue>FcRn</royalblue>).
514
+ - What do we mean with the word <one>heteromyelomas</one>? These are, for example, <one>mouse-human hybrid myelomas</one>.
515
+ - <one>Historically</one>, what was <three>the first source of antibodies</three>? <one>Serum</one>. URL: https://en.wikipedia.org/wiki/Serum_%28blood%29
516
+ - The <one>names given to antibodies</one>, such as <two>IgG</two> or <two>IgE</two>, is based on ... ? The <one>migration distance</one>.
517
+ - <one>HDX-MS</one> can be <two>used to determine the 3D structure of antibodies</two>. What does this abbreviation stand for? <one>Hydrogen</one>/<one>Deuterium eXchange mass spectrometry</one>.
518
+ - Name the two most popular (that is, most widely used) <one>antibody fragments</one>. A: (1) <one>Fab</one> (2) <one>scFv</one>
519
+ - The <one>poly-Ig receptor</one> interacts specifically with ... ? The <one>J chain of antibodies</one> - such as those carried by the antibodies <orange>IgM</orange> and <orange>IgA</orange>.
520
+ - What kind of <one>epitopes</one> may we wish to <two>add to a recombinant antibody</two>, in order to <lightseagreen>induce tolerance</lightseagreen>? <one>Regulatory epitopes</one>.
521
+ - When <one>IgM</one> is <two>sialylated</two>, which cell may be inhibited in its response? The <one>T cell</one>.
522
+ - How is it actually possible that <one>a single antibody</one> may bind to an antigen with more than one of its binding capabilities? This is possible thanks to the <one>hinge region</one> of an antibody, which is <two>quite flexible</two>.
523
+ - What do we mean with <one>the Stone Age of Antibody Engineering</one>? <one>Chimerization</one>. URL: http://crdd.osdd.net/raghava/absource/chimeric.html
524
+ - Name an <one>in-vivo method</one> used in combination with antibodies. A: <one>Immunoscintigraphy</one>. URL: https://en.wikipedia.org/wiki/Immunoscintigraphy
525
+ - Name <one>two different diseases</one> that can generate large amounts of antibody. A: (1) <one>multiple myeloma</one> (2) <one>polyclonal gammopathies</one>
526
+ - Name a <one>huge advantage</one> that <two>nanobodies</two> have compared to <three>conventional antibodies</three>. A: Due to their small size and flexibility, <one>they can bind to epitopes that are normally not accessible to regular antibodies</one>.
527
+ - Anderer Begriff für <one>Mischungen von verschiedenen Antikörpern</one>? <one>Polyklonale Antikörper</one>. URL: https://de.wikipedia.org/wiki/Polyklonaler_Antik%C3%B6rper
528
+ - A typical immunoglobulin has a <one>Fc region</one> containing a <two>N-linked glycosylation site</two> at residue ... ? <one>297</one>.
529
+ - The <one>affinity</one> between an antibody and a bound antigen is commonly represented by ... ? A <one>dissociation constant</one>, called <two>Kd</two>. URL: https://en.wikipedia.org/wiki/Dissociation_constant
530
+ - For the <one>production of human monoclonal antibodies</one>, one popular production protocol requires the transformation of B cells with an Epstein-Barr virus. However, EBV entry into B cells is partially dependent upon expression of ... ? <one>CD21</one>.
531
+ - Give one example for an <one>antibody mimetic</one>. A: The <one>Kunitz domain peptides</one> (<orange>KDP</orange>; easier to remember: <two>Kunitz-domain</two>). URL: https://en.wikipedia.org/wiki/Kunitz_domain
532
+ - Nenne zwei <one>Vorteile polyklonaler Antikörper</one>. A: (1) <one>rasch</one> (2) <one>billig</one>
533
+ - Wenn wir <one>polyklonale Antikörper</one> herstellen so müssen wir nicht nur die aktive Immunisierung eines höheren Wirbeltieres berücksichtigen, sondern auch ... ? Einem <one>festgelegten Immunisierungsschema folgen</one>.
534
+ - In order to <one>create a scFv</one>, we <two>employ PCR</two> and PCR-amplify the left and the right part separately. We will then have something like this: <three>VL - Linker - VH</three>, but what may be at the right end? A <one>His-Tag</one>.
535
+ - Name an <one>approved therapeutic radiolabeled antibody</one>. A: <one>Zevalin</one>. URL: https://de.wikipedia.org/wiki/Ibritumomab-Tiuxetan
536
+ - The <one>HAMA response</one> may be related to monoclonal antibodies. What does HAMA stand for? <one>Human anti-mouse antibody</one>.
537
+ - Antibody functions can be manipulated through <one>recombinant engineering</one> of the Fc region of an antibody, such as <two>IgG</two>. Name two different means how to do so. A: (1) by <one>mutating amino acid residues</one> (2) by <one>changing glycosylation patterns</one> (Note: these are not mutually exclusive, so both can be done on the same modified antibody.)
538
+ - What do we mean with <one>antibody allotypes</one>? These are <one>variations</one> that distinguish the Ig molecules of some individuals from others; this is thus similar to "blood groups" between different individuals.
539
+ - Typically in <one>SIP</one> (<two>selectively infecting phage techniques</two>) for <three>phage display</three>, the helper phage is sensitive towards ... ? <one>Trypsin</one>.
540
+ - Name one of the first <one>epitope tag systems</one>. A: The <one>FLAG-tag</one> system. URL: https://en.wikipedia.org/wiki/FLAG-tag
541
+ - The <one>antibody isotypes</one> are defined by ... ? The <one>Fc region</one>.
542
+ - Nenne einen Vorteil <one>rekombinanter Antikörper</one>. A: Sie lassen sich auch ohne Immunisierung <one>in-vitro</one> gewinnen.
543
+ - Can we say that <one>antibodies</one> would be <two>heterodimeric proteins</two>? Yes - they consist of heavy chains and light chains, that typically combine into a basic <one>Y</one> shaped structure - at the least for <two>IgG</two>.
544
+ - In most cases, the first detectable antibody response in the plasma of a human being is that of the <one>IgM</one> class. A few weeks after an infection, a class-switch occurs to which two other immunoglobulins? (1) <one>IgG</one> (2) <one>IgA</one>
545
+ - Was ist ein <one>Paratop</one>? Das Paratop ist der Teil des Antikörpers, der an das <one>Epitop</one> (eines Antigens) binden kann.
546
+ - Name some kind of <one>animal</one>, natural or modified, that is <two>devoid of endogenous serum immunoglobulins</two>. A: The <one>SCID mice</one>. URL: https://en.wikipedia.org/wiki/Severe_combined_immunodeficient_mice
547
+ - Die <one>sensitivste Methode die Antigenkonzentration</one> zu bestimmen erfolgt über welche Methode? Den <one>Radioimmunoassay</one> (<two>RIA</two>).
548
+ - A <one>single-chain Fv</one> consists of which three components, essentially? (1) <one>V-heavy</one> (2) <one>V-light</one> (3) a <one>linker</one>
549
+ - Why the name <one>Fc fragment</one>? Because it was found to <one>crystallize during cold storage</one>, so the name is <two>fragment, crystallizable</two>. URL: https://en.wikipedia.org/wiki/Fragment_crystallizable_region
550
+ - What <one>dual use</one> do antibodies against human proteins have? (1) they can be used for <one>diagnostic purposes</one> (2) they can be used as a <one>therapeutic agent</one>
551
+ - Wie unterscheiden sich die <one>IgG-Subklassen</one> voneinander? Die verschiedenen <one>IgG-Subklassen</one> unterscheiden sich untereinander in der <two>Zahl ihrer Disulfid-Brücken</two>.
552
+ - <one>Affinity maturation</one> on antibodies occurs in which area? <mediumseagreen>Affinity maturation</mediumseagreen> occurs in the <one>variable region</one> of an antibody.
553
+ - Woraus besteht ein <one>Fab-Fragment</one>? Aus einer <one>leichten Kette</one> und der Hälfte einer <one>schweren Kette</one> eines (natürlichen) Antikörpers. URL: https://upload.wikimedia.org/wikipedia/commons/e/e2/2fab_fc.svg
554
+ - <one>Antibody genes</one> are re-organized in a <two>process</two> called ... ? <one>Class switching</one>.
555
+ - Do the <one>CH₂ domains</one> in a typical <two>IgG</two> antibody <three>pair with one other</three>? No. (Note that some drawings show that, though, so this answer is uncertain.)
556
+ - How could we generate <one>aglycosyl antibodies</one>? We could create them <one>by altering the peptide recognition sequence for N-linked glycosylation</one>.
557
+ - What advantage does the creation of <one>library-derived antibodies</one> have, compared to the creation of <two>polyclonal antibodies</two> or <two>monoclonal antibodies</two>? We <one>do not need to immunize an animal</one> in a <two>library-derived antibody creation</two> step.
558
+ - Nenne <one>drei Faktoren</one>, die die natürliche <two>Antikörper-Bildung</two> beeinflussen. A: (1) <royalblue>A</royalblue>djuvantien (2) <royalblue>D</royalblue>osis (3) <royalblue>E</royalblue>intrittsweg
559
+ - We have <lightseagreen>IgG1</lightseagreen>, <lightseagreen>IgG2</lightseagreen>, <lightseagreen>IgG3</lightseagreen> and <lightseagreen>IgG4</lightseagreen>. Which one is the most efficient one in recruiting the <one>alternative complement pathway</one>? <one>IgG4</one>.
560
+ - How can we <one>extend the half-life of nanobodies</one>? By <one>binding it to serum albumin</one>.
561
+ - The first cleavable linkers used were <one>acid-cleavable linkers</one>. What was their major disadvantage? They showed a <one>limited stability in the serum</one>.
562
+ - Name a modification that the <one>Ig heavy chains</one> go through. A: <one>N-glycosylation</one>.
563
+ - Given a typical <one>IgG</one> antibody, we can identify <lightblue>three hypervariable regions</lightblue> in the variable domain. Name the <royalblue>three aminoacid-ranges</royalblue> where these can be found in a typical heavy chain of the IgG antibody (it is ok to give just a rough estimate, +/- 3 aminoacids in position are perfectly fine to give to this answer). A: (1) <one>30-36</one> [<two> 6 aminoacids</two>] (2) <one>49-65</one> [<two>16 aminoacids</two>] (3) <one>95-103</one> [<two> 8 aminoacids</two>]
564
+ - We can <one>measure the affinity between an antibody and an antigen</one>. We have two constants here: <two>k1</two> and <two>k-1</two>. What are they, respectively? (1) <one>k1</one>: <two>forward rate constant</two> (2) <one>k -1</one>: <two>reverse rate constant</two>
565
+ - How are the four <one>IgG-subclasses</one> <two>ordered</two>/<two>numbered</two>? According to their <one>decreasing, average serum concentration</one>.
566
+ - When we refer to <one>oligoclonal antibodies</one>, we typically refer to ... ? This refers to a mixture of antibodies; often <one>a mixture of different monoclonal antibodies</one>. URL: https://onlinelibrary.wiley.com/doi/abs/10.1002/9783527682423.ch44
567
+ - In order to create monoclonal antibodies, <one>PEG</one> (<two>polyethylenegylcol</two>) is employed. Is <one>PEG</one> toxic to cells? Yes.
568
+ - Name <one>an autoimmune disease</one> where affected individuals produce antibodies against their own proteins. A: <one>Systemic lupus erythematosus</one>. URL: https://en.wikipedia.org/wiki/Systemic_lupus_erythematosus
569
+ - Name two <one>functional limitations of therapeutic antibodies</one>. A: (1) <one>Tissue accessibility</one>. (2) <one>Impaired interactions with the immune system</one>.
570
+ - Name <one>two advantages</one> of the <two>sloning technology</two>. A: (1) <one>Codons can be chosen freely</one> (2) <one>No unwanted stop codons</one>
571
+ - In <one>2017</one>, give or take: how many different monoclonal Antibodies have been approved by the EMA and the USFDA? More than <one>40</one>.
572
+ - The <one>SEEDbody</one> antibody ... what does the <two>SEED</two> stand for here? <one>Strand exchange engineered domain</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/20299542
573
+ - Was ist das Problem wenn wir Patienten mit monoklonalen Antikörpern gegenüber <one>entzündungsfördernden Cytokinen</one> behandeln? Diese Patienten mögen dadurch allgemein <one>gegenüber Infektionen anfälliger</one> werden.
574
+ - What is <one>the typical half-life</one> of an <two>IgM molecule</two>? About <one>5 days</one>. URL: http://thescienceinfo.com/immunoglobulin-m-igm-structure-and-properties/
575
+ - Name a <one>yeast platform for antibody selection</one>. A: <one>Adimab</one>.
576
+ - <one>Humanized antibodies</one> are human antibodies that have ... in their variable regions. A: <one>mouse-derived CDRs</one>.
577
+ - <one>Rituximab</one> is used to treat ... ? Certain <one>autoimmune diseases</one>. URL: https://en.wikipedia.org/wiki/Rituximab
578
+ - Since <one>which year</one> is it possible to assemble scFv antibody fragments, at the least in Escherichia coli? Since as of <one>1988</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/3285470
579
+ - Ein <one>dsFv-Fragment</one> besteht, abgesehen von der zentral gelegenen Disulfidbrücke, aus welchen <two>zwei Komponenten</two>? (1) <one>VH</one> (2) <one>VL</one>
580
+ - Der <one>sekundäre Antikörper</one> in einem <two>ELISA</two> kann an ein Enzym gekoppelt sein. Nenne 3 Beispiele hierzu. A: (1) <one>Alkalische Phosphatase</one> (2) <one>Peroxidase</one> (3) <one>Urease</one>
581
+ - Name three use cases for <one>scFvs</one>. A: (1) in <one>flow cytometry</one> (2) in <one>immunohistochemistry</one> (3) in <one>antigen-binding domains of artificial T cell receptors</one>
582
+ - In the genes for antibodies, we have <one>CDR1</one> and <one>CDR2</one> and <one>CDR3</one>. Which area comes before these three? The <royalblue>framework regions</royalblue> - aka <one>framework region 1</one>, <one>framework region 2</one> and <one>framework region 3</one>.
583
+ - <one>Antibody-Allotypes</one> are <two>variants caused by intraspecies genetic differences</two>. They are practically used where, for example? In <one>paternity testing</one>.
584
+ - The ability of antibodies in any individual to <one>specifically bind a large number of different antigens</one> is a reflection of ... ? <one>Antibody diversity</one>.
585
+ - Name the <one>four components</one> of a typical <two>Fab</two>, such as one produced from <three>IgG</three>. A: (1) <one>VL</one> (2) <one>CL</one> (3) <one>VH</one> (4) <one>CH1</one>
586
+ - Name one <one>receptor</one> for the <two>IgE Antibodies</two>. A: <one>Fc-Epsilon-RI</one>.
587
+ - <one>Drugs</one> that would <two>target tumor cells</two> and ignore others was conceived in 1900 by ... ? <one>Paul Ehrlich</one>.
588
+ - Nenne zwei typische <one>Trägerproteine für Haptene</one>. A: (1) <one>Bovines Serum Albumin</one> (<one>BSA</one>) (2) <one>Thyreoglobulin</one>
589
+ - Side effects of <one>Herceptin</one>? In about <one>~4%</one> of the patients, the <two>heart tissue may be damaged</two>.
590
+ - How is the area <one>between</one> the <two>hypervariable region</two> of a typical antibody called? This is called the <one>framework region</one>.
591
+ - In <one>affinity screening</one> during phage display, at the <two>panning step</two> - which two different outcomes can we see for phage/proteins? (1) <one>binders</one>: these will be selected and <two>kept</two> (2) <one>non-binders</one>: these will be washed away and are <two>not kept</two>
592
+ - Which animals possess <one>fully functional antibodies</one> that <lightseagreen>consist of only heavy chains</lightseagreen>, thus lacking light light chains? The <one>camelidae</one> - aka <two>llamas</two> and <two>camels</two>.
593
+ - The <one>biochemical properties of antigen-antibody binding interactions</one> were examined in more detail in the late 1930s by which person? <one>John Marrack</one>.
594
+ - Which <one>company</one> created the <two>Crossbody</two>? <one>Roche</one>. URL: https://www.roche.com/research_and_development/what_we_are_working_on/research_technologies/protein-related_technologies/crossmab_technology.htm
595
+ - Name an <one>anti-TNF</one> monoclonal antibody. A: <one>Humira</one>. URL: https://en.wikipedia.org/wiki/Adalimumab
596
+ - <one>Catumaxomab</one> is approved since which year? <one>2009</one>.
597
+ - <one>Rituximab</one> targets which cell surface marker? It targets <one>CD20</one>, a <mediumturquoise>B cell antigen</mediumturquoise> (thus, it is <royalblue>anti-CD20</royalblue>). URL: https://en.wikipedia.org/wiki/Rituximab
598
+ - Was sind <one>humanisierte Antikörper</one>? Dies sind Antikörper, die <one>Teile aus verschiedenen Lebewesen enthalten</one>.
599
+ - The <one>scFv</one> (<two>single-chain Fv</two>) consists of which two chains/domains? (1) <one>VH</one> (2) <one>VL</one>
600
+ - Many therapeutic monoclonal antibodies <one>target conformational epitopes</one>. If such an antibody then binds to a <two>conformational epitope</two>, what can we assume about the target protein? That this protein must be in its <one>native state</one>, aka <two>in its properly folded state</two>, as otherwise this antibody would not be able to bind.
601
+ - How many <one>framework regions</one> exist in each V domain of an antibody? <mediumseagreen>Four</mediumseagreen>, called <one>FR1</one>, <one>FR2</one>, <one>FR3</one> and <one>FR4</one>, respectively.
602
+ - Ist die <one>Antigen-Antikörper Reaktion</one> eine <two>Gleichgewichtsreaktion</two>? Ja.
603
+ - The <one>antigen-binding site of an antibody</one> can usually accomodate a <two>linear determinant</two> made up of about n amino acids? About <one>six amino acids</one>.
604
+ - Name <one>two methods for cell fusion</one> used for production of antibodies. A: (1) <springgreen>polyethylenegylcol</springgreen> (<one>PEG</one>) (2) <springgreen>electric pulses</springgreen> (aka <one>electrofusion</one>)
605
+ - Say that an antibody does not bind to a folded protein; but it <one>may bind to the unfolded protein</one>. What may we be able to conclude from this? That there may be <one>new linear determinants</one> in the <one>unfolded protein</one> for this antibody, but not in the <two>folded protein</two>.
606
+ - The <one>antigen-antibody interaction</one> is a biomolecular association similar to an <lime>enzyme-substrate interaction</lime>, but there is one important distinction - name this distinction. A: There is <one>no irreversible chemical alteration</one> in either the antibody or the antigen.
607
+ - <one>Probiotika</one> steigern die Menge welchen Igs? Des <one>sekretorischen IgA</one>.
608
+ - <one>Biovation</one>, a company based in the UK, has developed the <two>DeImmunization technology</two> consisting of identification and removal of ... what exactly from antibodies? It will remove <one>helper (Th) cell epitopes</one>.
609
+ - How can we <one>extend the half-life of nanobodies</one>? By <one>binding it to serum albumin</one>.
610
+ - <one>Antikörper</one> + <one>reduzierende Bedingungen</one>? Die Antikörpermoleküle fallen unter reduzierenden Bedingungen auseinander, da wieder SH-Gruppen entstehen - und somit <one>die Disulfidbrücken kollabieren</one>.
611
+ - The sizes of <one>antigen-antibody complexes</one> are a function of ... ? The <one>relative concentrations of antigen and antibody</one>.
612
+ - Name a <one>transgenic antibody discovery platform</one> that is able to offer the entire human variable gene diversity in a single organism. A: The <one>Trianni Mouse platform</one>.
613
+ - The <one>CovX body</one> antibody shows a chemical conjugation of peptides to a single reactive ... residue in CDRs (and it targets <two>VEGF</two>/<two>Ang2</two>). A: <one>Lysine</one>.
614
+ - <one>Antibodies</one> can deliver <two>toxic cargo</two>. Give two general examples here how this is done. A: (1) through <one>antibody conjugates</one> (2) through <one>fusion proteins</one>
615
+ - In regards to antibodies: <one>which theory</one> did Paul Ehrlich propose? The <one>Lock and key theory</one>. URL: https://en.wikipedia.org/wiki/Side-chain_theory
616
+ - Name a use case for <one>oligoclonal antibodies</one>. A: For example when we wish to target <one>highly variable antigens</one>, such as <two>RhD</two>.
617
+ - Some aminoacid residues in the antibodies of mice are referred to as the <one>Vernier zone residues</one>. They have been shown to affect the affinity of antibody. Where can this Vernier zone be found? In the <one>framework region</one> (e. g. the <two>CDR loop</two>).
618
+ - The <one>antibody IgE</one> has how many <two>glycosylation sites</two>? <one>6</one>.
619
+ - Why is <one>a stable ADC linker</one> important? Such a linker <one>ensures that less of the cytotoxic payload falls off before reaching a tumor cell</one>.
620
+ - Do we need animals in order to create <one>monoclonal antibodies</one>? Yes; we require immunized animals, which are usually <one>mice</one>.
621
+ - Antikörper gegen <one>ClfA</one> (<two>clumping factor A</two>) verhindern die Kolonisierung durch <three>welches Bakterium</three>? <one>Staphylococcus aureus</one>. URL: https://en.wikipedia.org/wiki/Clumping_factor_A
622
+ - <one>Radioimmunotherapy</one> (<two>RIT</two>) makes use of antibodies labeled with a radionuclide to deliver cytotoxic radiation to a target cell. This can only work if ... ? If the tumor cells express an antigen that is unique to the neoplasm or is otherwise not accessible in normal cells.
623
+ - From the different <one>IgG subtypes</one>: which one among them is <two>the best opsonin</two>? <one>IgG1</one>.
624
+ - How can <one>monoclonal antibodies</one> be used for <two>in-vivo research</two>? They can be used to determine the importance of a particular molecule in-vivo.
625
+ - For treating the <one>Alzheimer's disease</one>, Biogen (in 2020) plans to file for FDA approval of its candidate called <two>A...</two>? <one>Aducanumab</one>.
626
+ - In a simple manner: <one>how can Fab fragments be created</one>? By making use of <one>papain</one> or <one>pepsin</one>.
627
+ - In <one>antibody engineering</one>, in particular through <two>glyco-engineering</two>, the presence of an oligosaccharide attached to the asparagine residue at position 297 (N297) in IgG1 antibodies is critical for binding to Fc-gamma-R and ... which complement factor? <one>C1q</one>.
628
+ - The <one>IgM</one> molecule has a protein covalently bound via a <two>S-S bond</two>, called the <three>J chain</three>. What is the primary function of this chain? To polymerize the molecule into a <one>pentamer</one>.
629
+ - Why the name <one>discontinuous</one> in <two>discontinuous epitopes</two>? Because the structure recognized is composed of segments of the protein that are <turquoise>discontinuous in the amino acid sequence of the antigen</turquoise> - but are brought together in the three-dimensional structure. URL: https://www.pacificimmunology.com/resources/antibody-introduction/what-is-an-epitope/
630
+ - <one>Polyclonal antibody production</one> involves the immunisation of animals with ... ? (1) an <one>antigen</one>, and (2) an <one>adjuvant</one>
631
+ - Give another term for <one>epitopes</one>. A: <one>Antigenic determinants</one>. URL: https://en.wikipedia.org/wiki/Epitopes
632
+ - In <one>antibody engineering</one>: if we reduce the content of fucose or sialic acid, how may this <two>impact ADCC-related activity</two>? This would normally <one>improve ADCC activity</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5649276/
633
+ - Ein normaler <one>IgG-Antikörper</one> hat wieviele <two>Disulfidbrücken</two>? <one>4</one>. (Eigentlich <one>16</one>, aber die 4 sind die prominentesten).
634
+ - <one>scFv</one> were originally created to ... ? <one>Facilitate phage display</one>. Here it is very convenient to <mediumseagreen>express the antigen-binding domain as a single peptide</mediumseagreen>.
635
+ - <one>Circulating IgG</one> has a half-life of about m to n days? <one>21 - 28 days</one>.
636
+ - Was meinen wir mit einem <one>monoklonalen Antikörper</one> eigentlich? Dies ist ein Antikörper der <one>aus einer einzelnen B-Zell-Linie</one> hervorgeht; und gegen ein einzelnes Epitop gerichtet ist.
637
+ - What is <one>the size range</one> of <lightseagreen>Ablynx's Nanobodies</lightseagreen>, in kDa? From <one>12 kDa - 15 kDa</one>.
638
+ - We can distinguish between two different antibody-<one>modes</one> when this antibody can bind to a cell surface receptor. Which ones are these? (1) <one>agonistic antibody</one> (2) <one>antagonistic antibody</one>
639
+ - <one>Three antibodies</one> can trigger <two>ADCC</two> (<three>antibody-dependent cell-mediated cytotoxicity</three>). Which ones? (1) <one>IgA</one> (2) <one>IgG</one> (3) <one>IgE</one>
640
+ - Antibodies that are in the recent (~2018) late-stage pipeline, as <one>antibody therapeutics</one>, are often used as either <two>antibody-drug conjugates</two> or ... ? <one>Immune checkpoint modulators</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/30959079
641
+ - Der Vorläufer einer <one>Hybridomzelle</one> ist ... ? Eine <one>Myelomzelle</one>. URL: https://de.wikipedia.org/wiki/Hybridom-Technik
642
+ - <one>Serum IgA</one> (<one>sIgA</one>) found in secretions contains which two proteins that are associated with it? (1) a <one>J chain</one> (2) the <one>secretory piece</one>
643
+ - Nenne <one>zwei Nachteile polyklonaler Antikörper</one>. A: (1) <one>kein reines Reagens</one> (2) <one>individuelle Unterschiede</one>
644
+ - Does <one>IgM</one> have an advantage due to its structure, over the other antibodies? Yes - <one>due to its pentameric structure</one>, <two>IgM is extremely efficient at fixing complement</two>.
645
+ - Name an advantage that <one>antibody fragments</one> have compared to <two>full antibodies</two>. A: <one>Antibody fragments</one> can display <two>improved tissue penetration</two> due to their smaller size, compared to full antibodies.
646
+ - What may we refer to with the word <one>Immunoliposome</one>? This is a <one>scFV</one> and a <one>liposome</one>.
647
+ - Beim <one>scFv-Fragment</one>: wie lang ist das <two>linker-peptide</two>? Etwa <one>15-20</one> Aminosäuren lang.
648
+ - Why may we say that <one>ADC</one> is better than <two>chemotherapy</two>? <one>ADCs</one> can be used to target and kill tumour cells, while healthy cells are spared.
649
+ - How is the <one>J chain</one> connected to <two>IgM</two>? It is connected via a <one>-S-S- bond</one>.
650
+ - <one>CH3</one> of <two>IgG</two> may also be involved in M ... ? <one>Macrophage Binding</one>.
651
+ - Nenne einen <one>Unterschied</one> zwischen dem Immunsystem von Säugetieren und jenen von Hühnern, in bezug auf die gebildeten Antikörper. A: Hühner produzieren auch einen Antikörper der <one>IgY</one> genannt wird. URL: https://de.wikipedia.org/wiki/Immunglobulin_Y
652
+ - Unterscheide drei verschiene <one>Typen</one> von Antikörpern, deren <two>biotechnologische Herstellung</two> betreffend. A: (1) <one>Monoklonale Antikörper</one> (2) <one>Polyklonale Antikörper</one> (3) <one>Rekombinante Antikörper</one>
653
+ - Wieso benötigen wir den <one>IgE</one> Antikörper? Zur <one>Abwehr multizellulärer Parasiten</one>, insbesondere Würmer (<two>Helminthen</two>). URL: https://de.wikipedia.org/wiki/W%C3%BCrmer
654
+ - Was meinen wir mit einem <one>Spätantikörper</one>? Einer der etwa <one>2-4 Wochen</one> (14-28 Tage) <two>nach einer Infektion</two> gebildet wird.
655
+ - There is a <one>programmed cell death protein 1 (PD-1) monoclonal antibody therapy</one>, starting with the letter <two>K</two> ... A: <one>Keytruda</one>.
656
+ - Aside from holding the <one>IgM-subunits</one> together, name another reason as to why the <two>J chain</two> is important for IgM. A: The <one>presence of the J-chain</one> allows IgM-molecules to <one>bind to receptors on secretory cells</one>.
657
+ - <one>Polyvalent antigens</one> can induce clustering of ... ? Of <one>the B cell receptor</one> - and thus <one>initiate the process of B cell activation</one>.
658
+ - Name a somewhat famous example of where an <one>indirect immunoassay</one> has been used. A: It has been used <one>to detect the presence of antibody</one> to the <two>human immunodeficiency virus</two> (<three>HIV</three>).
659
+ - We can create <one>recycling antibodies</one>, such as <two>SA237</two>. We can control them through pH-change. They may bind at a neutral pH of 7.4 and dissociate at ... which pH? At an <royalblue>acidic pH</royalblue>, such as at a <one>pH 6.0</one>.
660
+ - Welche <one>natürlichen Antikörper</one> besitzen <two>J-Ketten</two>? (1) <one>IgM-Pentamer</one> (2) <one>IgA-Dimer</one>
661
+ - The <one>rheumatoid factor</one> is <two>an autoantibody</two> that targets the Fc portion of which antibody? <one>IgG</one>.
662
+ - The <one>Fc portion</one> of <two>IgG</two> can avidly bind to ... ? <one>C1q</one>. URL: https://en.wikipedia.org/wiki/Complement_component_1q
663
+ - Why is the <one>international nonproprietary name</one> important, from a global user's perspective? Having unambiguous standard names for each drug is important because a drug may be sold by many different brand names.
664
+ - <one>Panitumab</one>, ein menschlicher, monoklonaler Antikörper der spezifisch ist für <two>EGFR</two> (epidermal growth factor receptor), wurde von welcher Firma hergestellt? <one>Amgen</one>.
665
+ - Wofür steht die Abkürzung <one>scFv</one>? <one>Single chain variable fragment</one>. URL: https://en.wikipedia.org/wiki/Single-chain_variable_fragment
666
+ - The <one>ADCC response</one> (<two>antibody-dependent cellular cytotoxicity</two>) is especially important to combat ... ? <one>Tumour cells</one>.
667
+ - <one>Catumaxomab</one> is approved for the <two>treatment of</two> ... ? <one>Malign ascites</one>. URL: https://en.wikipedia.org/wiki/Catumaxomab
668
+ - <one>Multiple myeloma</one> can be treated with ... (which monoclonal antibody)? With <one>Daratumumab</one> (<two>Darzalex</two>). URL: https://en.wikipedia.org/wiki/Daratumumab
669
+ - In <one>phage display</one> for the creation of antibodies, the protein III often has ... which component attached to it? The <one>scFv</one>, which will protrude to the outside, ready to bind an antigen.
670
+ - If we wish to <one>amplify an antibody's variable region</one>, what could we use to achieve this goal? We could <one>use a mixture of degenerate PCR primers</one>.
671
+ - There are <one>two light chains</one> in antibodies, named <two>kappa</two> and <two>lambda</two>. Is the ratio found in antibodies 1:1? No, it is <one>species dependent</one>. For example, <two>mice</two> have a kappa-to-lambda ratio of 20:1 whereas <two>cattle</two> has a kappa-to-lambda ratio of 1:20.
672
+ - Why may we wish to <one>engineer mAbs</one> that could pass the <two>Blood-brain barrier</two>? Because this would allow us to generate antibody-based therapies for <one>brain diseases</one>. We might be able to treat such diseases.
673
+ - Can <one>antibodies</one> help us when we wish to <two>recruit specific effector cells</two> to target cells? Yes; if we use <one>bispecific antibodies</one>.
674
+ - The goal of <one>cancer therapy</one> is to cause the direct or indirect destruction of cancer cells, by specifically targeting the tumor or the vasculature that nourishes the tumor. Give one such example each for monoclonal antibodies used here. A: (1) targeting the <one>tumor</one>: <two>Rituximab</two> (2) targeting the <one>vasculature</one>: <two>Avastatin</two>
675
+ - A <one>single-chain variable fragment</one> (<lightseagreen>scFv</lightseagreen>) is called a fragment, as the name indicates; a <two>fragment of an antibody</two>. But what would be a better name, rather than calling this a fragment? It is <one>a fusion protein of the variable regions of the heavy (VH) and light chains (VL) of immunoglobulins</one>. URL: http://parts.igem.org/wiki/images/thumb/a/a1/AE2.png/300px-AE2.png
676
+ - We can find the so called <one>hypervariable regions</one> (<two>HV1</two>, <two>HV2</two>, <two>HV3</two>) in an antibody's V domain. Give another word for these. A: The <one>complementarity-determining regions</one> (<two>CDRs</two>).
677
+ - When was the antibody <one>IgE</one> actually identified? In the year <one>1966</one>.
678
+ - Warum wählen wir eher <one>gram-negative Bakterien</one> als <one>gram-positive Bakterien</one> für die <two>Produktion rekombinanter Antikörper</two>? Damit die <one>Antikörper richtig gefaltet werden</one>; die Disulfidbrücken können richtig geknüpft werden.
679
+ - <one>Monoclonal antibodies</one> can be produced via the <two>hybridoma technology</two>. For this, B-cells from an immunised mouse are isolated and fused with a myeloma cell line creating hybridomas. This is in general mediated by the addition of ... ? <one>PEG</one> (aka <two>polyethylene glycol</two>).
680
+ - How can <one>antibodies</one> activate or stimulate phagocytes? Through the <one>Fc receptors</one> on the <two>phagocyte</two> (<three>Fc-Gamma-RI Receptor</three>).
681
+ - Warum hat <one>IgM</one> diese <two>pentamere Struktur</two>? Sie <one>verklumpen</one> dadurch besonders gut mit den Mikroorganismen die sie gebunden haben.
682
+ - Antibodies can activate which <one>complement pathway</one>? Antibodies can activate the <one>classical complement pathway</one>. URL: https://en.wikipedia.org/wiki/Classical_complement_pathway
683
+ - Bei der <one>Gleichgewichtsreaktion Antigen-Antikörper</one> ist <two>kc</two> wovon abhängig? Von der <one>Temperatur</one>.
684
+ - Natürliche Antikörper sind <one>n-valent</one>? <one>Divalent</one> bis <one>dekavalent</one>.
685
+ - What is the <one>paratope</one> and what is its typical length/range? The <one>paratope</one> is the part of an antibody that <two>recognizes an antigen</two>. In other words, a <royalblue>paratope</royalblue> is the <three>antigen-binding site of an antibody</three>, <orange>15-22 amino acids in length</orange>.
686
+ - Reagiert das humane Immunsystem gegen <one>monoklonale Antikörper</one>? Ja; dies <one>erschwert</one> auch die Behandlung von Krebs durch <slateblue>Toxine</slateblue>, die an Antikörper gebunden sind.
687
+ - The <one>immune checkpoint therapy</one> is used primarily to treat ... ? <one>Cancer</one>.
688
+ - How could <one>bispecific antibodies</one> be used in therapy? By <one>physically linking two cells</one>, such as <two>a cancer cell</two> to <two>an immune cell</two>, which will then destroy the cancer cell.
689
+ - Give another name for <one>antisera</one>, as it was used in <two>1895</two> by Kitasato and Behring. A: <one>Polyclonal antibodies</one>.
690
+ - When we observe that an antibody <one>cross-reacts</one> with a new antigen, what may we conclude? This <one>cross-reactivity</one> occurs typically if two different antigens share an identical or a very similar epitope.
691
+ - Was meinen wir mit <one>direkter Agglutination</one> und <one>indirekter Agglutination</one>? (1) <one>direkte Agglutination</one>: dies ist Agglutination über den <two>Primärantikörper</two> (2) <one>indirekte Agglutination</one>: dies ist Agglutination über einen <two>Sekundärantikörper</two>
692
+ - Name three potential disadvantages of <one>Fab fragments</one> in clinical use. A: (1) <one>no avidity</one> (2) <one>short half-life</one> (3) <one>no effector functions</one>
693
+ - Was meinen wir mit der Abkürzung <one>pIgR</one>? <one>Polymeric immunoglobulin receptor</one>. URL: https://en.wikipedia.org/wiki/Polymeric_immunoglobulin_receptor
694
+ - A <one>single chain antibody</one> (<two>scAb</two>) fragment consists of ... ? A <one>scFv</one> with an additional constant chain - either heavy or light.
695
+ - What are <one>anti-idiotype antibodies</one>? These are <one>antibodies against the binding domain of another antibody</one>.
696
+ - The <one>scFv fragment</one> is essentially ... which part of an antibody? It is <one>the variable heavy chain</one>, and <one>the variable light chain</one>, combined into one molecule.
697
+ - Which <one>theory of antibody production</one> is the most widely one that is accepted? The <one>clonal selection theory</one>. URL: https://en.wikipedia.org/wiki/Clonal_selection
698
+ - What was the first approved <one>trifunctional antibody</one>? <one>Catumaxomab</one>. (<springgreen>Ca-tu-ma-xom-ab</springgreen>)
699
+ - Name two advantages for <one>IgA</one> associated with the <two>secretory piece</two> protein. A: (1) It <one>helps IgA to be transported across mucosa</one> (2) It <one>helps protect IgA from degradation in the secretion</one>
700
+ - <one>Antibody classes</one> are defined by ...? By their <one>heavy-chain constant domain</one>.
701
+ - In <one>1975</one> Kohler and Milstein fused together which two cells? (1) <one>antibody-producing mouse spleen cells</one> (2) <one>mouse myeloma cells</one>
702
+ - Beim <one>dsFv Fragment</one>: wofür steht die Abkürzung <two>dsFv</two>? Dies steht für <slateblue>disulfide-stabilized Fv Fragment</slateblue>. Es wurden bei diesem Fragment neue Disulfibrücken eingebaut.
703
+ - Following the binding of a monoclonal antibody to a specific target on a tumour cell, <one>C1q complement factor</one> interacts with the CH2 constant region of that monoclonal antibody. This leads to the activation of a proteolytic cascade of the complement classical pathway and subsequently induces the formation of a <two>membrane-attack complex</two> (MAC), which causes the lysis of the tumour cell. How is this functionality called? This effect is termed <royalblue>complement-dependent cytotoxicity</royalblue> (<one>CDC</one>).
704
+ - The major role of the <one>complement system</one> is to work in conjunction with antibodies <two>to lyse cells</two> via ... ? The C8 and C9 components.
705
+ - Why are <one>monoclonal antibodies</one> named that way? Because they all <one>recognize the same type of antigene</one>.
706
+ - <one>Aminopterin</one> ist ein Zellgift, das bei der Produktion von monoklonalen Antikörpern Verwendung findet. Wie wirkt es, kurz gesagt? <one>Aminopterin hemmt die Biosynthese von Purin- und Pyrimidinbasen</one>.
707
+ - Many of today's <one>therapeutic antibodies</one> have multiple modes of actions. Name three such functions that may have repurposed from the original antibody function. A: (1) <one>prevention of ligand binding</one> (2) <one>prevention of signaling</one> (3) <one>prevention of receptor dimerization</one>
708
+ - Die <one>Antikörpermenge im menschlichen Körper</one> beträgt etwa <two>n gramm Antikörper pro Liter Blut</two>? <one>10 g Antikörper pro L Blut</one>.
709
+ - Die <one>Bindung zwischen Antigen und Antikörper</one> lässt sich durch Änderung der <two>physikochemischen Milieubedingungen</two> aufheben. Gib hierzu zwei Beispiele an. A: (1) <one>pH-Erniedrigung</one> (2) <one>Erhöhung der Ionenstärke</one>
710
+ - How/Why can we claim, and proof, that <one>IgE</one> plays a role in <two>parasitic helminth diseases</two>? The <one>serum IgE levels</one> <mediumseagreen>will rise during a parasitic disease</mediumseagreen>. Thus, measuring the IgE levels is helpful when one wishes to <one>diagnose parasitic infections</one>.
711
+ - If we see the suffix <one>-zumab</one>, what do we know about this antibody? That this must be a <one>humanized antibody</one>. URL: https://en.wikipedia.org/wiki/Monoclonal_antibody_therapy#Chimeric_and_humanized
712
+ - Name a <one>technique</one> that can be used to <two>purify antigens</two>. A: We could use <one>affinity columns of immobilized antibodies</one>. URL: https://www.thermofisher.com/at/en/home/life-science/protein-biology/protein-biology-learning-center/protein-biology-resource-library/pierce-protein-methods/overview-affinity-purification.html
713
+ - What is meant with the term <one>Fc glyco-engineering</one>? These are strategies in <one>modifying the</one> <springgreen>Fc glycosylation profile</springgreen> on antibodies.
714
+ - If we design a <one>scFv</one> and we wish to make this scFv soluble, which <two>two aminoacids</two> may we add into the linker in order to increase solubility of this scFv? (1) <one>serine</one> (2) <one>threonine</one>
715
+ - In order to <one>synthesize monoclonal antibodies</one>, which two cells have to be fused together? (1) <one>antibody-producing B cells</one> (2) <one>myeloma cells</one>
716
+ - Was ist <one>Herceptin</one>? <royalblue>Herceptin</royalblue> (auch <orange>Trastuzumab</orange> genannt) ist <one>ein monoklonaler, humanisierter Antikörper</one>. URL: https://de.wikipedia.org/wiki/Trastuzumab
717
+ - For the production of recombinant antibodies, we may often have to use <one>library display methods</one>. Name three <two>important parameters</two> in the library. A: (1) Number of independent members (2) Coverage: how does actual size relate to theoretical size (3) <springgreen>Sampling</springgreen>: how many independent members are actually participating in the selection
718
+ - <one>Idiotypes</one> are antibody-variants caused by <two>structural heterogeneity</two> in the antibody ... ? <one>V regions</one>.
719
+ - <lightseagreen>Roche</lightseagreen> has invented the <one>CrossMAb technology</one> to produce ... what kind of antibodies? <one>Bispecific monoclonal antibodies</one>. URL: https://en.wikipedia.org/wiki/Bispecific_monoclonal_antibody
720
+ - What is meant with the term <one>bi-paratopic</one>? This means that an antibody may bind (two) different epitopes on the same target at the same time.
721
+ - Name a problem that <one>IgG4</one> has. A: It can not activate the <one>classical complement pathway</one>.
722
+ - In a <one>scFv</one>, VH and VL are joined. Which terminus, respectively? (1) <one>C-terminus of VH</one> (2) <one>N-terminus of VL</one>
723
+ - Name two different roles that <one>CH2</one> and <one>CH3</one> of the Fc portion of an IgG-antibody may have. A: (1) <one>complement activation</one> (2) <one>macrophage binding</one>
724
+ - If we wish to <one>produce monoclonal antibodies</one>, which cells may we typically employ here? <one>CHO cells</one>.
725
+ - Name <one>two amino acids</one> that are over-represented at antigen-binding sites in an antibody. A: (1) <one>Tyrosin</one> (<one>Y</one>) (2) <one>Arginin</one> (<one>R</one>)
726
+ - Wie heisst das Medikament das den <one>Infliximab-Antikörper</one> verwendet? <one>Remicade</one>. URL: https://en.wikipedia.org/wiki/Infliximab#Marketing
727
+ - In der Immunologie: wofür steht die Abkürzung <one>ADCC</one>? <one>Antibody dependent cell-mediated cytotoxicity</one>.
728
+ - <one>Bevacizumab</one>, ein monoklonaler Antikörper, ist auch bekannt als ... ? <one>Avastatin</one>.
729
+ - <one>Somatic hypermutation</one> operates on <lightseagreen>B-cells</lightseagreen> in ... what kind of organs? In <one>secondary lymphoid organs</one>.
730
+ - Wann zum Beispiel sind <one>bivalente Antikörper</one> nützlich? Wenn <one>zwei verschiedene Proteine</one> in der Zelle in <mediumseagreen>enge Nachbarschaft</mediumseagreen> gebracht werden sollen.
731
+ - Briefly describe the <one>F(ab')2 fragment</one>. A: It <one>can bind antigens</one> such as the original antibody, but it can not interact with effector molecules as it <orange>lacks the Fc part</orange>.
732
+ - Was ist das grösste Problem bei der <one>Lagerung von Antikörpern</one>? Der <one>Verlust der Antikörperaktivität</one>.
733
+ - How is it possible that <one>IgG</one> can pass through the placenta? Because placental cells have a receptor for the <one>Fc region of IgG</one>.
734
+ - The <one>primary antibody</one> may be a mouse IgG and the secondary antibody could be a rabbit anti-mouse antibody, which may be linked to ... ? <one>Beta galactosidase</one>.
735
+ - Nenne ein Einsatzgebiet <one>rekombinanter Antikörper</one>. A: Als <one>Immuntherapie gegen Krebs</one>.
736
+ - What are <one>antibody mimetics</one>? <royalblue>Antibody mimetics</royalblue> are <mediumseagreen>organic compounds</mediumseagreen> that, like antibodies, can specifically bind antigens - but that <one>are not structurally related to antibodies</one>.
737
+ - Which cells carry <one>membrane-bound antibodies</one>? <one>B cells</one>.
738
+ - Warum verwenden wir primär die <one>Humanisierung</one> im Menschen bei der Antikörperproduktion? Um die <royalblue>Immunogenität im Menschen</royalblue>, also <one>die Abwehrreaktionen gegen diese Antikörper</one>, zu <one>verringern</one>.
739
+ - Give another name for the <one>hybridoma technique</one>. A: <one>Somatic cell hybridization</one> technique.
740
+ - What do we mean with <one>overlapping determinants</one>? These are determinants that are blocked when an antibody is binding to one of them, sterically; the other determinant can not be bound by another antibody at the same time.
741
+ - Was sind <one>bispezifische Antikörper</one>? Dies sind Antikörper, bei denen jede der beiden Bindungsstellen ein verschiedenes Antigen binden kann.
742
+ - Nenne drei verschiedene <one>Anwendungsgebiete für monoklonale Antikörper</one>. A: (1) <one>Affinitätsreinigung von Proteinen</one> (2) <one>Diagnose</one> (3) als <one>therapeutische Agentien</one>
743
+ - Was meinen wir allgemein mit dem Begriff <one>Immunotoxin</one>? Dies ist ein <royalblue>Toxin</royalblue> (zum Beispiel ein bakterielles Exotoxin), das <one>an Antikörper</one> beziehungsweise <one>an Antikörper-Fragmente</one> gekoppelt ist.
744
+ - What was the problem with the very first monoclonal Antibodies that were <one>synthesized in mice</one>? They were <one>recognized as foreign</one> when injected into patients, which led to their elimination by the patient's immune system.
745
+ - What is the major role of the <one>Fab fragments</one>? <one>Antigen binding</one>. URL: https://en.wikipedia.org/wiki/Fragment_antigen-binding
746
+ - Why is <one>Immunoscintigraphy</one> typically used? We will <one>attempt to find cancer cells</one> in the body through this method, by <one>injecting a radioactively labeled antibody</one>.
747
+ - The <one>secretary component of sIgA</one> is formed by ... ? <one>cleavage</one> of an epithelial cell receptor used to transport the dimeric IgA across the epithelial cell.
748
+ - <one>Epitopes</one> typically tend to have which amino acids? <one>Hydrophilic aminoacids</one>.
749
+ - Why are <one>nanobodies</one> considered to be so useful in medicine? Because they <one>show a very good tissue penetration in-vivo</one>.
750
+ - Nenne ein mögliches Einsatzgebiet eines <one>diabody</one>. A: Wir könnten <one>Toxine</one> gezielt zu Krebszellen transportieren.
751
+ - What do we mean with <one>conjugated monoclonal antibodies</one>? These are monoclonal antibodies that can transport agents directly to cancer cells.
752
+ - Can we <one>detect antibody activity</one> in the blood? Yes, <one>by looking at the gamma-globulin fraction of serum</one>. If there is an on-going infection, the gamma-globulin fraction will increase, which can be shown through e. g. <orange>gelelectrophoresis</orange>.
753
+ - <one>Self-reactive antibodies</one> are not found in significant concentration in normal serum because ... ? B cells that are stimulated via their surface bound antibody in the absence of T cell help to <one>commit suicide</one>.
754
+ - What was <one>the first approved bispecific antibody</one>? <one>Catumaxomab</one>. URL: https://en.wikipedia.org/wiki/Catumaxomab#History
755
+ - How do we call the upper tips of the <one>Y</one>-shape of an antibody? This is the <one>paratope</one>. URL: https://en.wikipedia.org/wiki/Paratope
756
+ - Name an extremely important feature of a <one>monovalent antibody fragment</one>. A: It <one>may show an increased tissue permeability</one>.
757
+ - What is <one>complement fixation</one>? This is <one>when an antibody-antigen complex</one> can bind complement and <one>prevent</one> it from lysing cells.
758
+ - Give an example how <one>neoantigenic determinants</one> can arise. A: They can be created due to <one>proteolysis</one>.
759
+ - Wieso möchten wir <one>rein humane monoklonale Antikörper</one> herstellen? Diese induzieren KEINE <one>anti-Antikörper</one> mehr.
760
+ - <one>scFV-Fragment</one> versus <one>dsFv-fragment</one> - strukturell betrachtet unterscheiden sich diese beiden Fragmente wie? Nur über die <violet>Verbindungsstücke</violet>; also ein <one>linker</one> beim <thistle>scFv-Fragment</thistle>, und eine <one>Disulfidbrücke</one> beim <one>dsFv-Fragment</one>.
761
+ - Name a typical role of <one>IgA</one>. A: IgA concentrates in body fluids <one>to guard the entrances of the body</one>.
762
+ - For the generation of monoclonal antibodies, we take which type of cell from the <one>mouse</one>? <one>B-Lymphocytes</one>.
763
+ - Aside from being cleared from a patient's body quickly, name another problem that <one>monoclonal antibodies</one> created by mice had. A: These foreign antibody-molecules will not interact properly with other components of the human immune system, thus <one>restricting their biological efficacy</one>.
764
+ - Name the two major functions of antibodies in the human body. A: (1) bind specifically to molecules from the pathogen that elicited the immune response (2) to recruit other cells and molecules to destroy the pathogen to which the antibodies have bound to