studium 0.18.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (821) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +3310 -0
  3. data/bin/all_passed_exams +14 -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/d150 +7 -0
  11. data/bin/d20 +7 -0
  12. data/bin/d25 +7 -0
  13. data/bin/d3 +7 -0
  14. data/bin/d30 +7 -0
  15. data/bin/d5 +7 -0
  16. data/bin/determine_curricula +7 -0
  17. data/bin/display_lecture_url +7 -0
  18. data/bin/exam_registration_at +7 -0
  19. data/bin/exam_statistics +7 -0
  20. data/bin/exams_per_month +9 -0
  21. data/bin/finished_exams_at_this_university +7 -0
  22. data/bin/flashcards +7 -0
  23. data/bin/from_curriculum_id_to_university +9 -0
  24. data/bin/location_to_this_exam_topic.rb +7 -0
  25. data/bin/mandatory_continuous_assessment +7 -0
  26. data/bin/mandatory_upcoming_courses +10 -0
  27. data/bin/n_ECTS +7 -0
  28. data/bin/n_exam_questions_already_answered +15 -0
  29. data/bin/names_of_all_solved_exams +7 -0
  30. data/bin/not_completed_exams +7 -0
  31. data/bin/nquestions +7 -0
  32. data/bin/nsolved +7 -0
  33. data/bin/open_last_exam_question_asked_file +7 -0
  34. data/bin/passed_exams +7 -0
  35. data/bin/passed_pr/303/274fungsimmanente_courses +7 -0
  36. data/bin/passed_this_exam_on +10 -0
  37. data/bin/pdf_for +7 -0
  38. data/bin/question_answer +7 -0
  39. data/bin/random_exam_topic +7 -0
  40. data/bin/registered_for_this_exam +15 -0
  41. data/bin/report_solved_topics +7 -0
  42. data/bin/return_n_ects_from_this_file +7 -0
  43. data/bin/return_n_questions_solved_in_total +7 -0
  44. data/bin/rti_conflict +7 -0
  45. data/bin/search_for_n_ects +7 -0
  46. data/bin/show_lectures_on_the_commandline +7 -0
  47. data/bin/show_passed_exams_having_this_grade +7 -0
  48. data/bin/show_themes +7 -0
  49. data/bin/solved +9 -0
  50. data/bin/solved_ects +7 -0
  51. data/bin/studienkennzahl +7 -0
  52. data/bin/studium +7 -0
  53. data/bin/studium_actions +7 -0
  54. data/bin/studium_skeleton +7 -0
  55. data/bin/ufind +7 -0
  56. data/bin/upcoming_exams +7 -0
  57. data/bin/week_parser +7 -0
  58. data/doc/ECTS_CONSIDERATIONS/ECTS_CONSIDERATIONS.md +85 -0
  59. data/doc/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER.md +44 -0
  60. data/doc/README.gen +3263 -0
  61. data/doc/SQL_database_specification/SQL_database_specification.md +46 -0
  62. data/doc/deprecated_components/deprecated_components.md +46 -0
  63. data/doc/documentation_for_the_file_lecture_information/documentation_for_the_file_lecture_information.md +311 -0
  64. data/doc/elegant_colours/elegant_colours.md +21 -0
  65. data/doc/statistics/yearly_statistics.md +8 -0
  66. data/doc/todo/todo_for_the_graphical_parts_of_the_studium_gem_including_www_related_aspects.md +92 -0
  67. data/doc/todo/todo_for_the_studium_gem.md +55 -0
  68. data/img/STUDIES.png +0 -0
  69. data/lib/studium/actions/actions.rb +134 -0
  70. data/lib/studium/autoinclude.rb +7 -0
  71. data/lib/studium/base/base.rb +3554 -0
  72. data/lib/studium/base/commandline_arguments_module/commandline_arguments_module.rb +115 -0
  73. data/lib/studium/base/html_colours_module.rb +632 -0
  74. data/lib/studium/base/runmode_module/runmode_module.rb +103 -0
  75. data/lib/studium/c/README.md +2 -0
  76. data/lib/studium/c/a.out +0 -0
  77. data/lib/studium/c/obtain_random_entry.c +11 -0
  78. data/lib/studium/check_and_sanitize/README.md +15 -0
  79. data/lib/studium/check_and_sanitize/check_curriculum_for_correct_separation_of_bachelor_and_master.rb +141 -0
  80. data/lib/studium/check_and_sanitize/check_for_all_exam_topics_being_registered.rb +118 -0
  81. data/lib/studium/check_and_sanitize/check_for_correct_themes_of_each_course.rb +100 -0
  82. data/lib/studium/check_and_sanitize/check_for_existing_description_of_this_lecture.rb +194 -0
  83. data/lib/studium/check_and_sanitize/check_important_exams.rb +138 -0
  84. data/lib/studium/check_and_sanitize/check_the_lecture_information_file.rb +166 -0
  85. data/lib/studium/check_and_sanitize/correct_all_dates_in_the_file_lecture_information.rb +115 -0
  86. data/lib/studium/check_and_sanitize/date_sanitizer.rb +350 -0
  87. data/lib/studium/check_and_sanitize/find_duplicate_lectures.rb +124 -0
  88. data/lib/studium/check_and_sanitize/missing_priority_entry.rb +44 -0
  89. data/lib/studium/check_and_sanitize/sanitize_lecture_information.rb +434 -0
  90. data/lib/studium/colours/colours.rb +1711 -0
  91. data/lib/studium/commandline/commandline.rb +1848 -0
  92. data/lib/studium/constants/constants.rb +2063 -0
  93. data/lib/studium/css/project.css +273 -0
  94. data/lib/studium/curricula/attribute_lecture_to_curriculum/attribute_boku_lecture_to_curriculum.rb +384 -0
  95. data/lib/studium/curricula/attribute_lecture_to_curriculum/attribute_lecture_to_curriculum.rb +238 -0
  96. data/lib/studium/curricula/curricula_from_this_website/curricula_from_this_website.rb +141 -0
  97. data/lib/studium/curricula/curriculum.rb +213 -0
  98. data/lib/studium/curricula/curriculum_as_string.rb +280 -0
  99. data/lib/studium/curricula/curriculum_module_displayer/constants.rb +33 -0
  100. data/lib/studium/curricula/curriculum_module_displayer/curriculum_module_displayer.rb +417 -0
  101. data/lib/studium/curricula/curriculum_module_displayer/initialize.rb +25 -0
  102. data/lib/studium/curricula/curriculum_module_displayer/menu.rb +45 -0
  103. data/lib/studium/curricula/curriculum_module_displayer/reset.rb +74 -0
  104. data/lib/studium/curricula/curriculum_module_displayer/run.rb +20 -0
  105. data/lib/studium/curricula/curriculum_module_displayer/set_use_this_curriculum.rb +93 -0
  106. data/lib/studium/curricula/curriculum_module_displayer/show_and_report.rb +190 -0
  107. data/lib/studium/curricula/determine_curricula/constants.rb +11 -0
  108. data/lib/studium/curricula/determine_curricula/determine_curricula.rb +36 -0
  109. data/lib/studium/curricula/determine_curricula/help.rb +39 -0
  110. data/lib/studium/curricula/determine_curricula/initialize.rb +48 -0
  111. data/lib/studium/curricula/determine_curricula/menu.rb +151 -0
  112. data/lib/studium/curricula/determine_curricula/misc.rb +403 -0
  113. data/lib/studium/curricula/determine_curricula/report.rb +141 -0
  114. data/lib/studium/curricula/determine_curricula/reset.rb +59 -0
  115. data/lib/studium/curricula/determine_curricula/run.rb +19 -0
  116. data/lib/studium/curricula/determine_elective_courses_in_this_curriculum.rb +112 -0
  117. data/lib/studium/curricula/display_bachelor_curricula.rb +90 -0
  118. data/lib/studium/curricula/handle_curricula/README.md +9 -0
  119. data/lib/studium/curricula/handle_curricula/handle_curricula.rb +99 -0
  120. data/lib/studium/curricula/handle_curricula/misc.rb +798 -0
  121. data/lib/studium/curricula/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.rb +323 -0
  122. data/lib/studium/curricula/modules/display_on_the_commandline.rb +319 -0
  123. data/lib/studium/curricula/modules/return_n_ects_in_this_module.rb +74 -0
  124. data/lib/studium/curricula/n_percent_solved_in_this_curriculum.rb +73 -0
  125. data/lib/studium/curricula/prepare_individual_curriculum.rb +304 -0
  126. data/lib/studium/curricula/random_curriculum_creator/random_curriculum_creator.rb +164 -0
  127. data/lib/studium/curricula/show_all_unfinished_courses_of_this_curriculum/show_all_unfinished_courses_of_this_curriculum.rb +116 -0
  128. data/lib/studium/curricula/show_lectures_of_this_curriculum.rb +114 -0
  129. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/show_lectures_of_this_curriculum_id.rb +554 -0
  130. data/lib/studium/curricula/show_solved_percentage_among_the_registered_curricula.rb +87 -0
  131. data/lib/studium/curricula/sorted_individual_curricula.rb +121 -0
  132. data/lib/studium/ects/boku_ects_splitter.rb +128 -0
  133. data/lib/studium/ects/ects_per_university/ects_per_university.rb +179 -0
  134. data/lib/studium/ects/ects_scanner.rb +141 -0
  135. data/lib/studium/ects/ects_to_university_parser.rb +142 -0
  136. data/lib/studium/ects/last_entry_is_curriculum.rb +150 -0
  137. data/lib/studium/ects/n_ects_in_these_lectures.rb +196 -0
  138. data/lib/studium/ects/n_ects_points_in_mandatory_presence_courses.rb +47 -0
  139. data/lib/studium/ects/return_n_ects_from_this_file.rb +59 -0
  140. data/lib/studium/ects/return_n_ects_from_this_url.rb +197 -0
  141. data/lib/studium/ects/search_for_n_ects/search_for_n_ects.rb +719 -0
  142. data/lib/studium/ects/show_completed_ects_in_all_curricula.rb +245 -0
  143. data/lib/studium/ects/show_passed_credits_per_curriculum.rb +276 -0
  144. data/lib/studium/ects/simple_total_ects_points.rb +135 -0
  145. data/lib/studium/ects/solved_ects/constants.rb +19 -0
  146. data/lib/studium/ects/solved_ects/reset.rb +50 -0
  147. data/lib/studium/ects/solved_ects/solved_ects.rb +325 -0
  148. data/lib/studium/ects/solved_ects_per_university/reset.rb +25 -0
  149. data/lib/studium/ects/solved_ects_per_university/solved_ects_per_university.rb +116 -0
  150. data/lib/studium/ects/still_missing.rb +129 -0
  151. data/lib/studium/ects/sum_of_ects.rb +144 -0
  152. data/lib/studium/encoding/encoding.rb +109 -0
  153. data/lib/studium/exam_topics/RNAi_siRNA_and_miRNA +100 -0
  154. data/lib/studium/exam_topics/abfall_als_ressource +86 -0
  155. data/lib/studium/exam_topics/advanced_biochemistry +937 -0
  156. data/lib/studium/exam_topics/advanced_biotechnology +234 -0
  157. data/lib/studium/exam_topics/advanced_cellbiology +251 -0
  158. data/lib/studium/exam_topics/advanced_chemistry +547 -0
  159. data/lib/studium/exam_topics/advanced_immunology +225 -0
  160. data/lib/studium/exam_topics/advanced_microbiology +49 -0
  161. data/lib/studium/exam_topics/advanced_topics_in_plant_sciences +117 -0
  162. data/lib/studium/exam_topics/advanced_virology +273 -0
  163. data/lib/studium/exam_topics/ageing +154 -0
  164. data/lib/studium/exam_topics/agrar_ecology +67 -0
  165. data/lib/studium/exam_topics/agrarmarkt +73 -0
  166. data/lib/studium/exam_topics/agrarphysik +35 -0
  167. data/lib/studium/exam_topics/alcohols +30 -0
  168. data/lib/studium/exam_topics/algorithms +104 -0
  169. data/lib/studium/exam_topics/allergie +76 -0
  170. data/lib/studium/exam_topics/allgemeine_genetik +1006 -0
  171. data/lib/studium/exam_topics/allgemeine_mikrobiologie +1012 -0
  172. data/lib/studium/exam_topics/aminoacids +469 -0
  173. data/lib/studium/exam_topics/analytische_chemie_1 +134 -0
  174. data/lib/studium/exam_topics/analytische_chemie_2 +31 -0
  175. data/lib/studium/exam_topics/anatomie +378 -0
  176. data/lib/studium/exam_topics/anorganische_chemie +357 -0
  177. data/lib/studium/exam_topics/anthropologie +239 -0
  178. data/lib/studium/exam_topics/antibodies_and_antigens +790 -0
  179. data/lib/studium/exam_topics/apoptosis +35 -0
  180. data/lib/studium/exam_topics/archaea +112 -0
  181. data/lib/studium/exam_topics/archaeo_viruses +7 -0
  182. data/lib/studium/exam_topics/archaeology +5 -0
  183. data/lib/studium/exam_topics/architecture +8 -0
  184. data/lib/studium/exam_topics/artificial_intelligence +90 -0
  185. data/lib/studium/exam_topics/atomemissionsspektrometrie +6 -0
  186. data/lib/studium/exam_topics/audio +11 -0
  187. data/lib/studium/exam_topics/bacteriophages +266 -0
  188. data/lib/studium/exam_topics/basic_biochemistry +1008 -0
  189. data/lib/studium/exam_topics/basic_biotechnology +1011 -0
  190. data/lib/studium/exam_topics/basic_chemistry +1007 -0
  191. data/lib/studium/exam_topics/basic_virology +1008 -0
  192. data/lib/studium/exam_topics/bauwesen +6 -0
  193. data/lib/studium/exam_topics/betriebssysteme +128 -0
  194. data/lib/studium/exam_topics/betriebswirtschaftslehre +29 -0
  195. data/lib/studium/exam_topics/bioanalytik_und_biosensoren +451 -0
  196. data/lib/studium/exam_topics/biochips +80 -0
  197. data/lib/studium/exam_topics/bioelektrochemie +57 -0
  198. data/lib/studium/exam_topics/biofilms +58 -0
  199. data/lib/studium/exam_topics/bioinformatics +523 -0
  200. data/lib/studium/exam_topics/biological_therapeutics +156 -0
  201. data/lib/studium/exam_topics/biologie +152 -0
  202. data/lib/studium/exam_topics/biomarkers +137 -0
  203. data/lib/studium/exam_topics/biomaterials +90 -0
  204. data/lib/studium/exam_topics/biomedical_studies +16 -0
  205. data/lib/studium/exam_topics/biomembranes +6 -0
  206. data/lib/studium/exam_topics/bionik +65 -0
  207. data/lib/studium/exam_topics/biophysik +34 -0
  208. data/lib/studium/exam_topics/biopolymers +10 -0
  209. data/lib/studium/exam_topics/bioprozesstechnik +149 -0
  210. data/lib/studium/exam_topics/bioressourcenmanagement +78 -0
  211. data/lib/studium/exam_topics/birds +5 -0
  212. data/lib/studium/exam_topics/bodenkunde +384 -0
  213. data/lib/studium/exam_topics/bodenmikrobiologie +40 -0
  214. data/lib/studium/exam_topics/cancerbiology +488 -0
  215. data/lib/studium/exam_topics/cell_cultures +229 -0
  216. data/lib/studium/exam_topics/cellbiology +1011 -0
  217. data/lib/studium/exam_topics/cellular_transport_and_protein_secretion +27 -0
  218. data/lib/studium/exam_topics/cellular_vesicles +11 -0
  219. data/lib/studium/exam_topics/cellulose +6 -0
  220. data/lib/studium/exam_topics/chemische_technologie_anorganischer_stoffe +210 -0
  221. data/lib/studium/exam_topics/chemische_technologie_organischer_stoffe +25 -0
  222. data/lib/studium/exam_topics/chemisches_labor +60 -0
  223. data/lib/studium/exam_topics/chemokines_and_cytokines +45 -0
  224. data/lib/studium/exam_topics/chemotaxis_quorum_sensing_and_motility_in_prokaryotes +116 -0
  225. data/lib/studium/exam_topics/citric_acid_cycle +84 -0
  226. data/lib/studium/exam_topics/clinical_microbiology +520 -0
  227. data/lib/studium/exam_topics/computer_science +309 -0
  228. data/lib/studium/exam_topics/computer_vision_and_computer_graphics +15 -0
  229. data/lib/studium/exam_topics/crispr +51 -0
  230. data/lib/studium/exam_topics/cyanobacteria +45 -0
  231. data/lib/studium/exam_topics/cytogenetics_and_chromosome_biology +598 -0
  232. data/lib/studium/exam_topics/databases_and_sql +126 -0
  233. data/lib/studium/exam_topics/dna_mutation_and_dna_repair +186 -0
  234. data/lib/studium/exam_topics/dna_replication +80 -0
  235. data/lib/studium/exam_topics/ecogenetics +26 -0
  236. data/lib/studium/exam_topics/ecological_agriculture +12 -0
  237. data/lib/studium/exam_topics/ecology +332 -0
  238. data/lib/studium/exam_topics/economy +226 -0
  239. data/lib/studium/exam_topics/electron_microscopy +7 -0
  240. data/lib/studium/exam_topics/elektronenmikroskopie +356 -0
  241. data/lib/studium/exam_topics/elektrophorese +132 -0
  242. data/lib/studium/exam_topics/elektrotechnik_und_elektrizit/303/244t +42 -0
  243. data/lib/studium/exam_topics/elisa +55 -0
  244. data/lib/studium/exam_topics/embryologie_und_entwicklung +657 -0
  245. data/lib/studium/exam_topics/endospores_and_spores +104 -0
  246. data/lib/studium/exam_topics/enzymes_and_cofactors +395 -0
  247. data/lib/studium/exam_topics/epigenetik +188 -0
  248. data/lib/studium/exam_topics/erste_hilfe +414 -0
  249. data/lib/studium/exam_topics/ethik +143 -0
  250. data/lib/studium/exam_topics/evolution_and_evolutionary_genetics +372 -0
  251. data/lib/studium/exam_topics/excel +7 -0
  252. data/lib/studium/exam_topics/fish +19 -0
  253. data/lib/studium/exam_topics/fluorescence_microscopy +10 -0
  254. data/lib/studium/exam_topics/food_microbiology_and_food_biotechnology +92 -0
  255. data/lib/studium/exam_topics/forensik +65 -0
  256. data/lib/studium/exam_topics/forstwirtschaft +53 -0
  257. data/lib/studium/exam_topics/fortgeschrittene_genetik +692 -0
  258. data/lib/studium/exam_topics/fortgeschrittene_gentechnik +221 -0
  259. data/lib/studium/exam_topics/fortgeschrittene_physik +6 -0
  260. data/lib/studium/exam_topics/fungi +119 -0
  261. data/lib/studium/exam_topics/genetische_krankheiten +209 -0
  262. data/lib/studium/exam_topics/genexpression +1008 -0
  263. data/lib/studium/exam_topics/genomics_and_metagenomics +290 -0
  264. data/lib/studium/exam_topics/gentechnik_und_praktische_biochemie +961 -0
  265. data/lib/studium/exam_topics/geochemistry +67 -0
  266. data/lib/studium/exam_topics/geography +9 -0
  267. data/lib/studium/exam_topics/geologie_und_mineralogie +624 -0
  268. data/lib/studium/exam_topics/geometrie +56 -0
  269. data/lib/studium/exam_topics/geschichte +95 -0
  270. data/lib/studium/exam_topics/gluconeogenesis +72 -0
  271. data/lib/studium/exam_topics/glycogen +45 -0
  272. data/lib/studium/exam_topics/glycolysis +118 -0
  273. data/lib/studium/exam_topics/glykomik +131 -0
  274. data/lib/studium/exam_topics/glyoxylatzyklus +31 -0
  275. data/lib/studium/exam_topics/grassland_cultivation +32 -0
  276. data/lib/studium/exam_topics/hormone +152 -0
  277. data/lib/studium/exam_topics/html +8 -0
  278. data/lib/studium/exam_topics/human_ecology +8 -0
  279. data/lib/studium/exam_topics/hygiene +224 -0
  280. data/lib/studium/exam_topics/imaging_and_microscopy +270 -0
  281. data/lib/studium/exam_topics/immunanalytik +94 -0
  282. data/lib/studium/exam_topics/immunologie +1011 -0
  283. data/lib/studium/exam_topics/informatik +117 -0
  284. data/lib/studium/exam_topics/innate_immunity +52 -0
  285. data/lib/studium/exam_topics/insekten +66 -0
  286. data/lib/studium/exam_topics/insulin_and_diabetes +57 -0
  287. data/lib/studium/exam_topics/java +624 -0
  288. data/lib/studium/exam_topics/javascript +29 -0
  289. data/lib/studium/exam_topics/klima +6 -0
  290. data/lib/studium/exam_topics/kryptographie +10 -0
  291. data/lib/studium/exam_topics/landtechnik +26 -0
  292. data/lib/studium/exam_topics/lebensmittel_und_getr/303/244nke +224 -0
  293. data/lib/studium/exam_topics/lebensmitteltechnologie +16 -0
  294. data/lib/studium/exam_topics/light_microscopy +19 -0
  295. data/lib/studium/exam_topics/linux_and_unix +36 -0
  296. data/lib/studium/exam_topics/lipids +145 -0
  297. data/lib/studium/exam_topics/macroeconomics +39 -0
  298. data/lib/studium/exam_topics/marketing +53 -0
  299. data/lib/studium/exam_topics/mathematics +311 -0
  300. data/lib/studium/exam_topics/medizin_und_biomedizinische_technik +254 -0
  301. data/lib/studium/exam_topics/medizinische_chemie_und_pharmazie +441 -0
  302. data/lib/studium/exam_topics/messtechnik_und_regeltechnik +104 -0
  303. data/lib/studium/exam_topics/metabolismus +482 -0
  304. data/lib/studium/exam_topics/meteorologie_und_atmosph/303/244re +120 -0
  305. data/lib/studium/exam_topics/microbial_ecology +37 -0
  306. data/lib/studium/exam_topics/microcontrollers +11 -0
  307. data/lib/studium/exam_topics/mikrobielle_lebensgemeinschaften +58 -0
  308. data/lib/studium/exam_topics/mikrobielle_physiologie +313 -0
  309. data/lib/studium/exam_topics/mitochondria +57 -0
  310. data/lib/studium/exam_topics/mixed +287 -0
  311. data/lib/studium/exam_topics/molecular_biology_of_plants +281 -0
  312. data/lib/studium/exam_topics/molekulare_medizin +133 -0
  313. data/lib/studium/exam_topics/nanotechnologie +456 -0
  314. data/lib/studium/exam_topics/nature_conservation_and_biodiversity +247 -0
  315. data/lib/studium/exam_topics/naturstoffe +9 -0
  316. data/lib/studium/exam_topics/netzwerke +63 -0
  317. data/lib/studium/exam_topics/neuroanatomie +25 -0
  318. data/lib/studium/exam_topics/neurobiology +356 -0
  319. data/lib/studium/exam_topics/nucleotide_sequencing +41 -0
  320. data/lib/studium/exam_topics/nutztierethologie +11 -0
  321. data/lib/studium/exam_topics/object_oriented_modeling +15 -0
  322. data/lib/studium/exam_topics/obstbau +249 -0
  323. data/lib/studium/exam_topics/organische_chemie +1007 -0
  324. data/lib/studium/exam_topics/organische_chemie_2 +137 -0
  325. data/lib/studium/exam_topics/paleobiology +39 -0
  326. data/lib/studium/exam_topics/parasitic_diseases_and_molecular_infection_biology +336 -0
  327. data/lib/studium/exam_topics/patent_law +55 -0
  328. data/lib/studium/exam_topics/pathologie +761 -0
  329. data/lib/studium/exam_topics/pcr +155 -0
  330. data/lib/studium/exam_topics/pentosephosphatweg +61 -0
  331. data/lib/studium/exam_topics/peroxisomes_glycosomes_and_lysosomes +66 -0
  332. data/lib/studium/exam_topics/pflanzenanatomie +262 -0
  333. data/lib/studium/exam_topics/pflanzenbau +24 -0
  334. data/lib/studium/exam_topics/pflanzenschutz +35 -0
  335. data/lib/studium/exam_topics/pflanzenwissenschaften +1009 -0
  336. data/lib/studium/exam_topics/pharmaceutical_biotechnology +252 -0
  337. data/lib/studium/exam_topics/physik +449 -1
  338. data/lib/studium/exam_topics/physikalische_chemie +79 -0
  339. data/lib/studium/exam_topics/physiology_and_histology +592 -0
  340. data/lib/studium/exam_topics/phytochemie +33 -0
  341. data/lib/studium/exam_topics/plant_biotechnology +132 -0
  342. data/lib/studium/exam_topics/plant_breeding +64 -0
  343. data/lib/studium/exam_topics/plant_development +50 -0
  344. data/lib/studium/exam_topics/populationsgenetik +143 -0
  345. data/lib/studium/exam_topics/posttranslationale_modifikation_von_proteinen +198 -0
  346. data/lib/studium/exam_topics/programming +41 -0
  347. data/lib/studium/exam_topics/projektmanagement +226 -0
  348. data/lib/studium/exam_topics/prokaryote_genetics +587 -0
  349. data/lib/studium/exam_topics/protein_engineering +35 -0
  350. data/lib/studium/exam_topics/proteolyse +39 -0
  351. data/lib/studium/exam_topics/proteomik +42 -0
  352. data/lib/studium/exam_topics/protozoans +24 -0
  353. data/lib/studium/exam_topics/prozesstechnik +95 -0
  354. data/lib/studium/exam_topics/psychologie +21 -0
  355. data/lib/studium/exam_topics/python +391 -0
  356. data/lib/studium/exam_topics/quality_management +266 -0
  357. data/lib/studium/exam_topics/rechtsgrundlagen +126 -0
  358. data/lib/studium/exam_topics/research_topics_in_immunobiology +42 -0
  359. data/lib/studium/exam_topics/rna_and_dna +535 -0
  360. data/lib/studium/exam_topics/rna_seq +13 -0
  361. data/lib/studium/exam_topics/robotics +12 -0
  362. data/lib/studium/exam_topics/ruby +240 -0
  363. data/lib/studium/exam_topics/ruby_on_rails +63 -0
  364. data/lib/studium/exam_topics/scientific_writing_and_publishing +38 -0
  365. data/lib/studium/exam_topics/semisynthese_von_proteinen_und_nukleotiden +120 -0
  366. data/lib/studium/exam_topics/sexualbiologie +327 -0
  367. data/lib/studium/exam_topics/signal_transduction_and_laser_systems +215 -0
  368. data/lib/studium/exam_topics/sozialbiologie +17 -0
  369. data/lib/studium/exam_topics/soziologie +5 -0
  370. data/lib/studium/exam_topics/splicing_exons_and_introns +67 -0
  371. data/lib/studium/exam_topics/sport_und_sportverletzungen +6 -0
  372. data/lib/studium/exam_topics/statistik +306 -0
  373. data/lib/studium/exam_topics/stemcells +182 -0
  374. data/lib/studium/exam_topics/stickstofffixierung +91 -0
  375. data/lib/studium/exam_topics/structural_bioinformatics +54 -0
  376. data/lib/studium/exam_topics/strukturbiologie +445 -0
  377. data/lib/studium/exam_topics/system_biology_and_synthetic_biology +108 -0
  378. data/lib/studium/exam_topics/systematische_zoologie +446 -0
  379. data/lib/studium/exam_topics/technical_ecology +144 -0
  380. data/lib/studium/exam_topics/technik +5 -0
  381. data/lib/studium/exam_topics/technische_chemie +208 -0
  382. data/lib/studium/exam_topics/technische_grundlagen_der_informatik +43 -0
  383. data/lib/studium/exam_topics/technische_mikrobiologie +393 -0
  384. data/lib/studium/exam_topics/technisches_zeichnen +5 -0
  385. data/lib/studium/exam_topics/the_bacterial_cell_wall +98 -0
  386. data/lib/studium/exam_topics/the_c_plus_plus_programming_language +531 -0
  387. data/lib/studium/exam_topics/the_c_programming_language +133 -0
  388. data/lib/studium/exam_topics/the_cellcycle +102 -0
  389. data/lib/studium/exam_topics/the_european_union +121 -0
  390. data/lib/studium/exam_topics/the_interferon_system +40 -0
  391. data/lib/studium/exam_topics/the_microbiome +164 -0
  392. data/lib/studium/exam_topics/the_universe +32 -0
  393. data/lib/studium/exam_topics/theoretische_chemie +5 -0
  394. data/lib/studium/exam_topics/theoretische_informatik +161 -0
  395. data/lib/studium/exam_topics/thermodynamics +21 -0
  396. data/lib/studium/exam_topics/tierzucht +139 -0
  397. data/lib/studium/exam_topics/toxikologie +508 -0
  398. data/lib/studium/exam_topics/transcription +188 -0
  399. data/lib/studium/exam_topics/translation_ribosomes_and_translational_control +155 -0
  400. data/lib/studium/exam_topics/umweltbiotechnologie +64 -0
  401. data/lib/studium/exam_topics/umweltchemie +233 -0
  402. data/lib/studium/exam_topics/urbanism_and_traffic +19 -0
  403. data/lib/studium/exam_topics/urea_cycle +56 -0
  404. data/lib/studium/exam_topics/vaccines_and_vaccination +253 -0
  405. data/lib/studium/exam_topics/vectors_and_gene_therapy +247 -0
  406. data/lib/studium/exam_topics/verfahrenstechnik +37 -0
  407. data/lib/studium/exam_topics/verhaltensbiologie +79 -0
  408. data/lib/studium/exam_topics/veterinary_medicine +10 -0
  409. data/lib/studium/exam_topics/vitamine +32 -0
  410. data/lib/studium/exam_topics/wasserkunde +144 -0
  411. data/lib/studium/exam_topics/weinbau +86 -0
  412. data/lib/studium/exam_topics/wissenschaft +20 -0
  413. data/lib/studium/exam_topics/yeast +104 -0
  414. data/lib/studium/exam_topics/zoologie +338 -0
  415. data/lib/studium/exams/afterburn/afterburn.rb +304 -0
  416. data/lib/studium/exams/ask_exam_from_the_upcoming_exams_pool.rb +150 -0
  417. data/lib/studium/exams/ask_exam_topic_question.rb +112 -0
  418. data/lib/studium/exams/ask_question_from_alias.rb +141 -0
  419. data/lib/studium/exams/ask_question_from_any_of_the_still_missing_lectures.rb +130 -0
  420. data/lib/studium/exams/ask_question_from_grouped_themes.rb +141 -0
  421. data/lib/studium/exams/ask_question_from_last_topic.rb +91 -0
  422. data/lib/studium/exams/ask_random_question.rb +195 -0
  423. data/lib/studium/exams/autoinclude.rb +7 -0
  424. data/lib/studium/exams/average_grade/average_grade.rb +404 -0
  425. data/lib/studium/exams/csv/create_csv_passed_exams_file.rb +217 -0
  426. data/lib/studium/exams/cycle.rb +291 -0
  427. data/lib/studium/exams/dataset/dataset.rb +126 -0
  428. data/lib/studium/exams/designate_ten_random_exam_topics/designate_ten_random_exam_topics.rb +88 -0
  429. data/lib/studium/exams/exam/exam.rb +130 -0
  430. data/lib/studium/exams/exam_bubble/exam_bubble.rb +444 -0
  431. data/lib/studium/exams/exam_bubble/menu_for_the_main_loop.rb +111 -0
  432. data/lib/studium/exams/exam_question/README.md +3 -0
  433. data/lib/studium/exams/exam_question/exam_question.rb +434 -0
  434. data/lib/studium/exams/exam_registration_at/constants.rb +49 -0
  435. data/lib/studium/exams/exam_registration_at/exam_registration_at.rb +242 -0
  436. data/lib/studium/exams/exam_registration_at/help.rb +46 -0
  437. data/lib/studium/exams/exam_registration_at/menu.rb +81 -0
  438. data/lib/studium/exams/exam_registration_at/report_and_show.rb +133 -0
  439. data/lib/studium/exams/exam_registration_at/reset.rb +54 -0
  440. data/lib/studium/exams/exam_statistics_from_this_file/exam_statistics_from_this_file.rb +119 -0
  441. data/lib/studium/exams/exam_topics.rb +194 -0
  442. data/lib/studium/exams/exams.rb +20 -0
  443. data/lib/studium/exams/exams_per_month/exams_per_month.rb +2442 -0
  444. data/lib/studium/exams/exams_this_week.rb +182 -0
  445. data/lib/studium/exams/fix_exam_dates.rb +121 -0
  446. data/lib/studium/exams/frozen.rb +36 -0
  447. data/lib/studium/exams/last_exams/last_exams.rb +479 -0
  448. data/lib/studium/exams/lectures_without_exam_entry.rb +137 -0
  449. data/lib/studium/exams/mandatory_continuous_assessment/mandatory_continuous_assessment.rb +1358 -0
  450. data/lib/studium/exams/move_all_unsolved_exam_questions_to_the_top_of_the_file.rb +173 -0
  451. 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
  452. data/lib/studium/exams/n_exams_in_these_topics.rb +477 -0
  453. data/lib/studium/exams/next_exam.rb +106 -0
  454. data/lib/studium/exams/next_exams.rb +378 -0
  455. data/lib/studium/exams/not_completed/README.md +5 -0
  456. data/lib/studium/exams/not_completed/not_completed.rb +143 -0
  457. data/lib/studium/exams/open_exam_associated_url/open_exam_associated_url.rb +154 -0
  458. data/lib/studium/exams/open_last_exam_question_asked_file/constants.rb +15 -0
  459. data/lib/studium/exams/open_last_exam_question_asked_file/initialize.rb +29 -0
  460. data/lib/studium/exams/open_last_exam_question_asked_file/open_last_exam_question_asked_file.rb +110 -0
  461. data/lib/studium/exams/push_solved_questions_on_top.rb +180 -0
  462. data/lib/studium/exams/question_answer/question_answer.rb +2936 -0
  463. data/lib/studium/exams/questions_solved_from_day_to_day/questions_solved_from_day_to_day.rb +379 -0
  464. data/lib/studium/exams/remote_ftp_url.rb +52 -0
  465. data/lib/studium/exams/repeat_last_question.rb +78 -0
  466. data/lib/studium/exams/report_total_amount_of_questions_and_answers_for.rb +116 -0
  467. data/lib/studium/exams/show_all_passed_exams_of_this_university.rb +252 -0
  468. data/lib/studium/exams/show_backlog_of_exams/show_backlog_of_exams.rb +114 -0
  469. data/lib/studium/exams/show_exams_for/show_exams_for.rb +172 -0
  470. data/lib/studium/exams/show_themes/constants.rb +28 -0
  471. data/lib/studium/exams/show_themes/menu.rb +61 -0
  472. data/lib/studium/exams/show_themes/misc.rb +538 -0
  473. data/lib/studium/exams/show_themes/reset.rb +62 -0
  474. data/lib/studium/exams/show_themes/show_themes.rb +27 -0
  475. data/lib/studium/exams/show_upcoming_exams/show_upcoming_exams.rb +1537 -0
  476. data/lib/studium/exams/solve_all_questions_from_this_topic.rb +114 -0
  477. data/lib/studium/exams/solved/solved.rb +434 -0
  478. data/lib/studium/exams/timetable/constants.rb +142 -0
  479. data/lib/studium/exams/timetable/timetable.rb +448 -0
  480. data/lib/studium/exams/unsolve_all_questions_from_this_topic.rb +163 -0
  481. data/lib/studium/exams/upcoming_exams/upcoming_exams.rb +555 -0
  482. data/lib/studium/exams/upcoming_exams_at_the_boku/constants.rb +23 -0
  483. data/lib/studium/exams/upcoming_exams_at_the_boku/html.rb +64 -0
  484. data/lib/studium/exams/upcoming_exams_at_the_boku/upcoming_exams_at_the_boku.rb +194 -0
  485. data/lib/studium/exams/upcoming_exams_dataset.rb +247 -0
  486. data/lib/studium/exams/upcoming_registered_exams/upcoming_registered_exams.rb +257 -0
  487. data/lib/studium/exams/upload_exam_topics.rb +360 -0
  488. data/lib/studium/graphviz/README.md +4 -0
  489. data/lib/studium/graphviz/bachelor_vector_based_strategies.dot +160 -0
  490. data/lib/studium/graphviz/master_vector_based_strategies.dot +46 -0
  491. data/lib/studium/gui/gtk3/control_panel/control_panel.rb +40 -0
  492. data/lib/studium/gui/gtk3/lecture_information/lecture_information.rb +191 -0
  493. data/lib/studium/gui/java/exam_question/ExamQuestion$1.class +0 -0
  494. data/lib/studium/gui/java/exam_question/ExamQuestion.class +0 -0
  495. data/lib/studium/gui/java/exam_question/ExamQuestion.java +215 -0
  496. data/lib/studium/gui/javafx/exam_question_widget/exam_question_widget.rb +58 -0
  497. data/lib/studium/gui/jruby/exam_trainer/exam_trainer.rb +637 -0
  498. data/lib/studium/gui/jruby/show_upcoming_exams/show_upcoming_exams.rb +85 -0
  499. data/lib/studium/gui/libui/ask_exam_question/ask_exam_question.rb +347 -0
  500. data/lib/studium/gui/shared_code/control_panel/control_panel_module.rb +305 -0
  501. data/lib/studium/gui/shared_code/exam_trainer/exam_trainer_widget_module.rb +0 -0
  502. data/lib/studium/gui/shared_code/information_about_a_lecture/information_about_a_lecture_module.rb +0 -0
  503. data/lib/studium/gui/shared_code/show_upcoming_exams/show_upcoming_exams_module.rb +129 -0
  504. data/lib/studium/gui/universal_widgets/curriculum_viewer/curriculum_viewer.rb +549 -0
  505. data/lib/studium/gui/universal_widgets/ects_per_university/ects_per_university.rb +302 -0
  506. data/lib/studium/gui/universal_widgets/exam_trainer/exam_trainer.config +6 -0
  507. data/lib/studium/gui/universal_widgets/exam_trainer/exam_trainer.rb +3266 -0
  508. data/lib/studium/gui/universal_widgets/exam_trainer/manifest.yml +12 -0
  509. data/lib/studium/gui/universal_widgets/expand_time_range/expand_time_range.rb +309 -0
  510. data/lib/studium/gui/universal_widgets/information_about_a_lecture/information_about_a_lecture.rb +242 -0
  511. data/lib/studium/gui/universal_widgets/show_upcoming_exams/show_upcoming_exams.rb +252 -0
  512. data/lib/studium/images/libui_ask_exam_question.png +0 -0
  513. data/lib/studium/images/outdated.png +0 -0
  514. data/lib/studium/images/small_logos/DNA.png +0 -0
  515. data/lib/studium/images/small_logos/README.md +2 -0
  516. data/lib/studium/images/small_logos/solved.png +0 -0
  517. data/lib/studium/images/studies_favicon.png +0 -0
  518. data/lib/studium/java/README.md +5 -0
  519. data/lib/studium/java/studium/AskExamQuestion.java +461 -0
  520. data/lib/studium/java/studium/Base.java +123 -0
  521. data/lib/studium/java/studium/Constants.java +122 -0
  522. data/lib/studium/java/studium/EnsureThatTheLogDirectoryExists.java +57 -0
  523. data/lib/studium/java/studium/Mkdir.java +13 -0
  524. data/lib/studium/java/studium/OpenLastExamQuestionurlLinkViaTheBrowser.java +90 -0
  525. data/lib/studium/java/studium/ReturnNQuestionsSolvedInTotal.java +69 -0
  526. data/lib/studium/java/studium/Solved.java +112 -0
  527. data/lib/studium/java/studium/Test.java +60 -0
  528. data/lib/studium/java/studium/studium/AskExamQuestion.class +0 -0
  529. data/lib/studium/java/studium/studium/Base.class +0 -0
  530. data/lib/studium/java/studium/studium/Constants.class +0 -0
  531. data/lib/studium/java/studium/studium/EnsureThatTheLogDirectoryExists.class +0 -0
  532. data/lib/studium/java/studium/studium/Mkdir.class +0 -0
  533. data/lib/studium/java/studium/studium/OpenLastExamQuestionurlLinkViaTheBrowser.class +0 -0
  534. data/lib/studium/java/studium/studium/ReturnNQuestionsSolvedInTotal.class +0 -0
  535. data/lib/studium/java/studium/studium/Solved.class +0 -0
  536. data/lib/studium/java/studium/studium/Test.class +0 -0
  537. data/lib/studium/jobs/jobs.rb +80 -0
  538. data/lib/studium/logging/README.md +2 -0
  539. data/lib/studium/logging/ensure_that_the_log_directory_exists.rb +58 -0
  540. data/lib/studium/logging/html_log_directory.rb +42 -0
  541. data/lib/studium/logging/log_directory.rb +112 -0
  542. data/lib/studium/logging/store_last_question_asked_into_file.rb +138 -0
  543. data/lib/studium/parsers/README.md +2 -0
  544. data/lib/studium/parsers/custom_exam_results_parser.rb +209 -0
  545. data/lib/studium/parsers/parse_remote_lecture.rb +331 -0
  546. data/lib/studium/project/project.rb +88 -0
  547. data/lib/studium/requires/common_popular_requires.rb +37 -0
  548. data/lib/studium/requires/commonly_used_requires.rb +14 -0
  549. data/lib/studium/requires/require_class_exams_solved.rb +7 -0
  550. data/lib/studium/requires/require_ects_scripts.rb +27 -0
  551. data/lib/studium/requires/require_encoding.rb +7 -0
  552. data/lib/studium/requires/require_the_check_and_sanitize_files.rb +31 -0
  553. data/lib/studium/requires/require_the_curricula_files.rb +28 -0
  554. data/lib/studium/requires/require_the_exam_question_class.rb +7 -0
  555. data/lib/studium/requires/require_the_exams_files.rb +46 -0
  556. data/lib/studium/requires/require_the_logging_files.rb +23 -0
  557. data/lib/studium/requires/require_the_parsers.rb +28 -0
  558. data/lib/studium/requires/require_the_studium_constants.rb +7 -0
  559. data/lib/studium/requires/require_the_studium_project.rb +72 -0
  560. data/lib/studium/requires/require_the_toplevel_methods.rb +27 -0
  561. data/lib/studium/requires/require_the_utility_scripts.rb +34 -0
  562. data/lib/studium/requires/require_upcoming_exams.rb +7 -0
  563. data/lib/studium/requires/require_yaml.rb +7 -0
  564. data/lib/studium/requires/return_remote_homepage_of_this_lecture.rb +7 -0
  565. data/lib/studium/requires/with_GUI.rb +13 -0
  566. data/lib/studium/requires/www_mode.rb +17 -0
  567. data/lib/studium/statistics/README.md +4 -0
  568. data/lib/studium/statistics/best_exam_months.rb +92 -0
  569. data/lib/studium/statistics/curriculum_comparer/curriculum_comparer.rb +423 -0
  570. data/lib/studium/statistics/determine_exam_statistics_from_this_file.rb +142 -0
  571. data/lib/studium/statistics/exam_topics_that_are_about_to_be_completed.rb +117 -0
  572. data/lib/studium/statistics/max_stats.rb +169 -0
  573. data/lib/studium/statistics/new_questions_per_year.rb +147 -0
  574. data/lib/studium/statistics/report_how_many_ects_points_per_curriculum_were_completed.rb +167 -0
  575. data/lib/studium/statistics/report_how_many_exam_questions_were_answered.rb +473 -0
  576. data/lib/studium/statistics/show_exam_statistics.rb +75 -0
  577. data/lib/studium/statistics/show_which_courses_are_in_a_bachelor_or_master_curriculum_respectively.rb +104 -0
  578. data/lib/studium/statistics/top_stats.rb +126 -0
  579. data/lib/studium/toplevel_methods/e_and_esystem.rb +34 -0
  580. data/lib/studium/toplevel_methods/find_exam_topic_and_exam_title.rb +3986 -0
  581. data/lib/studium/toplevel_methods/install_the_project_on_the_given_hostsystem.rb +31 -0
  582. data/lib/studium/toplevel_methods/return_remote_homepage_of_this_lecture.rb +11611 -0
  583. data/lib/studium/toplevel_methods/return_remote_moodle_link_of_this_lecture.rb +2405 -0
  584. data/lib/studium/toplevel_methods/roebe.rb +16 -0
  585. data/lib/studium/toplevel_methods/runmode.rb +45 -0
  586. data/lib/studium/toplevel_methods/toplevel_methods.rb +7295 -0
  587. data/lib/studium/universities_in_austria/README.md +2 -0
  588. data/lib/studium/universities_in_austria/boku/README.md +4 -0
  589. data/lib/studium/universities_in_austria/boku/boku_/303/266ffnungszeiten.rb +28 -0
  590. data/lib/studium/universities_in_austria/boku/show_three_pillars_of_these_lectures.rb +110 -0
  591. data/lib/studium/universities_in_austria/boku/three_pillars.rb +237 -0
  592. data/lib/studium/universities_in_austria/tu_vienna/README.md +6 -0
  593. data/lib/studium/universities_in_austria/tu_vienna/tu_ferien.rb +42 -0
  594. data/lib/studium/universities_in_austria/tu_vienna/tu_/303/266ffnungszeiten.rb +34 -0
  595. data/lib/studium/university_course/university_course.rb +409 -0
  596. data/lib/studium/utility_scripts/attribute_lectures_to_university/attribute_lectures_to_university.rb +375 -0
  597. data/lib/studium/utility_scripts/audio_stats.rb +171 -0
  598. data/lib/studium/utility_scripts/auto_stud/auto_stud.rb +252 -0
  599. data/lib/studium/utility_scripts/auto_stud/constants.rb +18 -0
  600. data/lib/studium/utility_scripts/auto_stud/initialize.rb +23 -0
  601. data/lib/studium/utility_scripts/auto_stud/misc.rb +18 -0
  602. data/lib/studium/utility_scripts/autogeneration/autogeneration.rb +158 -0
  603. data/lib/studium/utility_scripts/autopurge_this_lecture_date.rb +100 -0
  604. data/lib/studium/utility_scripts/average_grade_of_this_curriculum.rb +153 -0
  605. data/lib/studium/utility_scripts/blocked_courses.rb +146 -0
  606. data/lib/studium/utility_scripts/calendar/README.md +2 -0
  607. data/lib/studium/utility_scripts/calendar/calendar.rb +251 -0
  608. data/lib/studium/utility_scripts/calendar/misc.rb +35 -0
  609. data/lib/studium/utility_scripts/check_description_of_these_lectures.rb +221 -0
  610. data/lib/studium/utility_scripts/course_registrations/course_registrations.rb +98 -0
  611. data/lib/studium/utility_scripts/courses/courses.rb +177 -0
  612. data/lib/studium/utility_scripts/create/README.md +2 -0
  613. data/lib/studium/utility_scripts/create/webpage_of_university.rb +129 -0
  614. data/lib/studium/utility_scripts/create/webpage_of_university_BOKU.rb +61 -0
  615. data/lib/studium/utility_scripts/create/webpage_of_university_TU.rb +60 -0
  616. data/lib/studium/utility_scripts/create/webpage_of_university_UniWien.rb +60 -0
  617. data/lib/studium/utility_scripts/create_database/create_database.rb +126 -0
  618. data/lib/studium/utility_scripts/current_lectures_belonging_to_both_bachelor_and_master_curriculum.rb +113 -0
  619. data/lib/studium/utility_scripts/currently_participating_in_these_lectures/currently_participating_in_these_lectures.rb +104 -0
  620. data/lib/studium/utility_scripts/display_lecture_url/display_lecture_url.rb +176 -0
  621. data/lib/studium/utility_scripts/expand_time_range/expand_time_range.rb +521 -0
  622. data/lib/studium/utility_scripts/finished_exams_at_this_university/finished_exams_at_this_university.rb +171 -0
  623. data/lib/studium/utility_scripts/foreign_language_percentage/constants.rb +23 -0
  624. data/lib/studium/utility_scripts/foreign_language_percentage/foreign_language_percentage.rb +149 -0
  625. data/lib/studium/utility_scripts/foreign_language_percentage/help.rb +31 -0
  626. data/lib/studium/utility_scripts/foreign_language_percentage/initialize.rb +25 -0
  627. data/lib/studium/utility_scripts/foreign_language_percentage/menu.rb +158 -0
  628. data/lib/studium/utility_scripts/foreign_language_percentage/report.rb +62 -0
  629. data/lib/studium/utility_scripts/foreign_language_percentage/reset.rb +50 -0
  630. data/lib/studium/utility_scripts/foreign_language_percentage/run.rb +19 -0
  631. data/lib/studium/utility_scripts/generate_spreadsheet/generate_spreadsheet.rb +353 -0
  632. data/lib/studium/utility_scripts/generate_spreadsheet/misc.rb +144 -0
  633. data/lib/studium/utility_scripts/holidays/holidays.rb +154 -0
  634. data/lib/studium/utility_scripts/homepage_of_these_courses/homepage_of_these_courses.rb +125 -0
  635. data/lib/studium/utility_scripts/lectures_attributed_to_universities/lectures_attributed_to_universities.rb +336 -0
  636. data/lib/studium/utility_scripts/lva_dates_of_the_important_courses.rb +111 -0
  637. data/lib/studium/utility_scripts/lva_nummer/lva_nummer.rb +427 -0
  638. data/lib/studium/utility_scripts/mandatory_lectures_in_this_month/mandatory_lectures_in_this_month.rb +316 -0
  639. data/lib/studium/utility_scripts/moodle/moodle.rb +214 -0
  640. data/lib/studium/utility_scripts/name_of_this_lva_id/name_of_this_lva_id.rb +110 -0
  641. data/lib/studium/utility_scripts/new_stud.rb +324 -0
  642. data/lib/studium/utility_scripts/next_week/next_week.rb +103 -0
  643. data/lib/studium/utility_scripts/not_yet_registered/not_yet_registered.rb +120 -0
  644. data/lib/studium/utility_scripts/open_last_exam_question_url_link_via_the_browser.rb +76 -0
  645. data/lib/studium/utility_scripts/passed_ects_per_year/passed_ects_per_year.rb +313 -0
  646. data/lib/studium/utility_scripts/passed_pr/303/274fungsimmanente_courses/passed_pr/303/274fungsimmanente_courses.rb +181 -0
  647. data/lib/studium/utility_scripts/pdf/README.md +2 -0
  648. data/lib/studium/utility_scripts/pdf/create_pdf_file_for_this_exam_topic.rb +352 -0
  649. data/lib/studium/utility_scripts/pdf/hexapdf_support.rb +50 -0
  650. data/lib/studium/utility_scripts/preparatory_meetings/preparatory_meetings.rb +317 -0
  651. data/lib/studium/utility_scripts/priority/priority.rb +164 -0
  652. data/lib/studium/utility_scripts/priority_points/priority_points.rb +261 -0
  653. data/lib/studium/utility_scripts/publish_my_exams/publish_my_exams.rb +174 -0
  654. data/lib/studium/utility_scripts/regexes/README.md +1 -0
  655. data/lib/studium/utility_scripts/regexes/generate_regex.rb +314 -0
  656. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_available_moodle_links.rb +55 -0
  657. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_registered_lectures.rb +48 -0
  658. data/lib/studium/utility_scripts/report_outdated_timetable_entries/report_outdated_timetable_entries.rb +142 -0
  659. data/lib/studium/utility_scripts/report_whether_this_lecture_is_registered_in_the_file_lecture_information/report_whether_this_lecture_is_registered_in_the_file_lecture_information.rb +129 -0
  660. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/individual_resolve_practical_courses_date_conflicts.rb +254 -0
  661. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/resolve_practical_courses_date_conflicts.rb +265 -0
  662. data/lib/studium/utility_scripts/scrape_remote_university_url.rb +138 -0
  663. data/lib/studium/utility_scripts/semester_schedule_creator/semester_container.rb +144 -0
  664. data/lib/studium/utility_scripts/semester_schedule_creator/semester_schedule_creator.rb +373 -0
  665. data/lib/studium/utility_scripts/semesterplaner/semesterplaner.rb +311 -0
  666. data/lib/studium/utility_scripts/set_aliases_based_on_this_file.rb +96 -0
  667. data/lib/studium/utility_scripts/show_all_passed_master_lectures/show_all_passed_master_lectures.rb +126 -0
  668. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/show_conflicting_lva_lectures.rb +1385 -0
  669. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/constants.rb +23 -0
  670. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/menu.rb +63 -0
  671. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/reset.rb +33 -0
  672. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/run.rb +50 -0
  673. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/show_descriptions_of_lectures_belonging_to_this_module.rb +145 -0
  674. data/lib/studium/utility_scripts/show_lecturers/show_lecturers.rb +147 -0
  675. data/lib/studium/utility_scripts/show_lectures/show_lectures.rb +906 -0
  676. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_language/show_lectures_fitting_to_this_language.rb +121 -0
  677. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_theme/show_lectures_fitting_to_this_theme.rb +105 -0
  678. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/show_lectures_on_the_commandline.rb +3160 -0
  679. data/lib/studium/utility_scripts/show_lectures_on_this_day/show_lectures_on_this_day.rb +150 -0
  680. data/lib/studium/utility_scripts/show_lva_dates_of_this_lecture/show_lva_dates_of_this_lecture.rb +182 -0
  681. data/lib/studium/utility_scripts/show_mixed_bachelor_master_courses/show_mixed_bachelor_master_courses.rb +92 -0
  682. data/lib/studium/utility_scripts/show_outdated_lva_dates/show_outdated_lva_dates.rb +214 -0
  683. data/lib/studium/utility_scripts/show_passed_exams_having_this_grade/show_passed_exams_having_this_grade.rb +91 -0
  684. data/lib/studium/utility_scripts/show_solved_english_lectures/show_solved_english_lectures.rb +139 -0
  685. data/lib/studium/utility_scripts/steop/README.md +4 -0
  686. data/lib/studium/utility_scripts/steop/show_all_steop_lectures.rb +93 -0
  687. data/lib/studium/utility_scripts/steop/steop_lectures_in_this_curriculum.rb +284 -0
  688. data/lib/studium/utility_scripts/steop/steop_lva_dates.rb +119 -0
  689. data/lib/studium/utility_scripts/studienkennzahl/studienkennzahl.rb +116 -0
  690. data/lib/studium/utility_scripts/studium_skeleton/studium_skeleton.rb +241 -0
  691. data/lib/studium/utility_scripts/stundenplan.rb +600 -0
  692. data/lib/studium/utility_scripts/sync_studium_relevant_entries_one_level_downwards.rb +217 -0
  693. data/lib/studium/utility_scripts/ufind/ufind.rb +106 -0
  694. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/constants.rb +26 -0
  695. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/run.rb +20 -0
  696. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/upcoming_mandatory_presence_courses.rb +187 -0
  697. data/lib/studium/utility_scripts/video_lecture_downloader/video_lecture_downloader.rb +107 -0
  698. data/lib/studium/utility_scripts/week_parser/constants.rb +23 -0
  699. data/lib/studium/utility_scripts/week_parser/help.rb +32 -0
  700. data/lib/studium/utility_scripts/week_parser/menu.rb +59 -0
  701. data/lib/studium/utility_scripts/week_parser/misc.rb +373 -0
  702. data/lib/studium/utility_scripts/week_parser/reset.rb +65 -0
  703. data/lib/studium/utility_scripts/week_parser/run.rb +18 -0
  704. data/lib/studium/utility_scripts/week_parser/show.rb +236 -0
  705. data/lib/studium/utility_scripts/week_parser/week_parser.rb +49 -0
  706. data/lib/studium/utility_scripts/weekday_parser.rb +155 -0
  707. data/lib/studium/utility_scripts/weekly_schedule.rb +198 -0
  708. data/lib/studium/utility_scripts/wochenplanung/wochenplanung.rb +267 -0
  709. data/lib/studium/version/version.rb +46 -0
  710. data/lib/studium/www/exams/exams.cgi +54 -0
  711. data/lib/studium/www/fast_ask_exam_question/fast_ask_exam_question.cgi +156 -0
  712. data/lib/studium/www/handle_curricula/handle_curricula.cgi +154 -0
  713. data/lib/studium/www/next_generation_exam_question_trainer/next_generation_exam_question_trainer.cgi +112 -0
  714. data/lib/studium/www/next_generation_exam_question_trainer/solved.cgi +26 -0
  715. data/lib/studium/www/sinatra/app.rb +231 -0
  716. data/lib/studium/www/sinatra/curriculum_displayer/curriculum_displayer.rb +162 -0
  717. data/lib/studium/www/sinatra/misc.rb +115 -0
  718. data/lib/studium/www/statistics/statistics.cgi +82 -0
  719. data/lib/studium/www/upcoming_exams/upcoming_exams.cgi +36 -0
  720. data/lib/studium/yaml/ad_hoc_trainer/README.md +2 -0
  721. data/lib/studium/yaml/ad_hoc_trainer/exam_topics.md +22 -0
  722. data/lib/studium/yaml/allowed_themes_for_courses/allowed_themes_for_courses.yml +348 -0
  723. data/lib/studium/yaml/array_allowed_entries_for_the_file_lecture_information/array_allowed_entries_for_the_file_lecture_information.yml +71 -0
  724. data/lib/studium/yaml/available_exam_topics/available_exam_topics.yml +234 -0
  725. data/lib/studium/yaml/backlog_of_exams.yml +37 -0
  726. data/lib/studium/yaml/colours/custom_colours.yml +50 -0
  727. data/lib/studium/yaml/colours/use_colours.yml +1 -0
  728. data/lib/studium/yaml/current_exams.yml +30 -0
  729. data/lib/studium/yaml/curricula/README.md +39 -0
  730. data/lib/studium/yaml/curricula/bachelor/bachelor_agrarwissenschaften_033255.yml +147 -0
  731. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_basisblock_033630.yml +71 -0
  732. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_botanik_033630.yml +100 -0
  733. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_ecology_033630.yml +74 -0
  734. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_mikrobiologie_und_genetik_033630.yml +122 -0
  735. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_molekulare_biologie_033630.yml +106 -0
  736. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_zoologie_033630.yml +87 -0
  737. data/lib/studium/yaml/curricula/bachelor/bachelor_chemie_033662.yml +165 -0
  738. data/lib/studium/yaml/curricula/bachelor/bachelor_dummy_curriculum.yml +182 -0
  739. data/lib/studium/yaml/curricula/bachelor/bachelor_elektrotechnik_und_informationstechnik_033235.yml +13 -0
  740. data/lib/studium/yaml/curricula/bachelor/bachelor_forstwirtschaft_033225.yml +115 -0
  741. data/lib/studium/yaml/curricula/bachelor/bachelor_informatik_033521.yml +134 -0
  742. data/lib/studium/yaml/curricula/bachelor/bachelor_ktww_033231.yml +84 -0
  743. data/lib/studium/yaml/curricula/bachelor/bachelor_lmbt_033217.yml +121 -0
  744. data/lib/studium/yaml/curricula/bachelor/bachelor_medizinische_informatik_033533.yml +283 -0
  745. data/lib/studium/yaml/curricula/bachelor/bachelor_molekularbiologie_033665.yml +95 -0
  746. data/lib/studium/yaml/curricula/bachelor/bachelor_nutrition_science_033638.yml +119 -0
  747. data/lib/studium/yaml/curricula/bachelor/bachelor_pharmazie_033305.yml +170 -0
  748. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_chemie_033290.yml +131 -0
  749. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_informatik_033535.yml +23 -0
  750. data/lib/studium/yaml/curricula/bachelor/bachelor_ubrm_033227.yml +142 -0
  751. data/lib/studium/yaml/curricula/bachelor/bachelor_verfahrenstechnik_033273.yml +167 -0
  752. data/lib/studium/yaml/curricula/bachelor/bachelor_wirtschaftsinformatik_033526.yml +29 -0
  753. data/lib/studium/yaml/curricula/experimental/bachelor_informatik_in_den_lebenswissenschaften.yml +137 -0
  754. data/lib/studium/yaml/curricula/individual/bachelor_formale_logik.yml +88 -0
  755. data/lib/studium/yaml/curricula/individual/bachelor_informatik_und_molekulare_biologie.yml +1161 -0
  756. data/lib/studium/yaml/curricula/individual/bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +1157 -0
  757. data/lib/studium/yaml/curricula/individual/master_bioinformatics_and_nanobiotechnology_in_molecular_medicine.yml +306 -0
  758. data/lib/studium/yaml/curricula/individual/master_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +741 -0
  759. data/lib/studium/yaml/curricula/master/master_bioinformatik_066875.yml +75 -0
  760. data/lib/studium/yaml/curricula/master/master_biologie_molekulare_mikrobiologie_mikrobielle_oekologie_und_immunbiologie_066830.yml +78 -0
  761. data/lib/studium/yaml/curricula/master/master_biologische_chemie_066863.yml +66 -0
  762. data/lib/studium/yaml/curricula/master/master_dummy_curriculum.yml +197 -0
  763. data/lib/studium/yaml/curricula/master/master_genetik_und_entwicklungsbiologie_066877.yml +89 -0
  764. data/lib/studium/yaml/curricula/master/master_lmbt_066418.yml +112 -0
  765. data/lib/studium/yaml/curricula/master/master_molecular_biology_066865.yml +72 -0
  766. data/lib/studium/yaml/curricula/master/master_molekulare_biologie_066834.yml +151 -0
  767. data/lib/studium/yaml/curricula/master/master_pharmazie_066605.yml +176 -0
  768. data/lib/studium/yaml/curricula/master/master_technische_chemie_066490.yml +123 -0
  769. data/lib/studium/yaml/curricula/outdated/master_bioinformatics_and_molecular_biotechnology_including_aspects_from_molecular_medicine.yml +438 -0
  770. data/lib/studium/yaml/curricula/outdated/master_food_science_and_plant_biotechnology.yml +31 -0
  771. data/lib/studium/yaml/curricula.yml +562 -0
  772. data/lib/studium/yaml/daily_questions_solved/daily_questions_solved.yml +2019 -0
  773. data/lib/studium/yaml/daily_questions_solved/daily_questions_solved.yml~ +1983 -0
  774. data/lib/studium/yaml/default_delay.yml +4 -0
  775. data/lib/studium/yaml/default_encoding.yml +1 -0
  776. data/lib/studium/yaml/directory_to_the_exam_topics.yml +0 -0
  777. data/lib/studium/yaml/editor.yml +1 -0
  778. data/lib/studium/yaml/exams/next_exams_to_do.md +9 -0
  779. data/lib/studium/yaml/file_for_exam_questions.yml +1 -0
  780. data/lib/studium/yaml/german/README.md +2 -0
  781. data/lib/studium/yaml/german/german_to_english_month_names.yml +16 -0
  782. data/lib/studium/yaml/grouped_themes/grouped_themes.yml +264 -0
  783. data/lib/studium/yaml/holidays/holidays.yml +201 -0
  784. data/lib/studium/yaml/important_exams.yml +286 -0
  785. data/lib/studium/yaml/inscription_dates_of_universities.yml +60 -0
  786. data/lib/studium/yaml/lecture_aliases.yml +138 -0
  787. data/lib/studium/yaml/lecture_information/lecture_information.yml +66145 -0
  788. data/lib/studium/yaml/log_dir.yml +1 -0
  789. data/lib/studium/yaml/main_topic/main_topic.yml +11 -0
  790. data/lib/studium/yaml/max_stats/max_stats.yml +262 -0
  791. data/lib/studium/yaml/max_stats.yml +263 -0
  792. data/lib/studium/yaml/meta_themes +1 -0
  793. data/lib/studium/yaml/mitbelegung/README.md +4 -0
  794. data/lib/studium/yaml/mitbelegung/mitbelegung.yml +21 -0
  795. data/lib/studium/yaml/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.yml +363 -0
  796. data/lib/studium/yaml/n_total_questions.yml +1 -0
  797. data/lib/studium/yaml/rename_konsole_tab.yml +1 -0
  798. data/lib/studium/yaml/roebe/ad_hoc_exam_topics.md +19 -0
  799. data/lib/studium/yaml/roebe/sommersemester_2024_opportunities.md +441 -0
  800. data/lib/studium/yaml/semester_planner/README.md +4 -0
  801. data/lib/studium/yaml/semester_planner/semester_planner.yml +189 -0
  802. data/lib/studium/yaml/show_topic.yml +1 -0
  803. data/lib/studium/yaml/statistics/lecture_information.yml +1 -0
  804. data/lib/studium/yaml/statistics/max_stats.yml +239 -0
  805. data/lib/studium/yaml/statistics/statistics.yml +77 -0
  806. data/lib/studium/yaml/week/01_monday.yml +25 -0
  807. data/lib/studium/yaml/week/02_tuesday.yml +68 -0
  808. data/lib/studium/yaml/week/03_wednesday.yml +63 -0
  809. data/lib/studium/yaml/week/04_thursday.yml +20 -0
  810. data/lib/studium/yaml/week/05_friday.yml +31 -0
  811. data/lib/studium/yaml/week/06_saturday.yml +16 -0
  812. data/lib/studium/yaml/week/07_sunday.yml +0 -0
  813. data/lib/studium/yaml/week/README.md +10 -0
  814. data/lib/studium.rb +5 -0
  815. data/studium.gemspec +82 -0
  816. data/test/testing_colourized_question_and_answer.rb +18 -0
  817. data/test/testing_studium.rb +244 -0
  818. data/test/testing_studium_base_class.rb +31 -0
  819. data/test/testing_the_file_lecture_information.rb +18 -0
  820. data/test/testing_time_component.rb +29 -0
  821. metadata +1042 -0
@@ -0,0 +1,790 @@
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, including antibody engineering
8
+ # as well as the natural production of antibodies.
9
+ #
10
+ # "Therapeutic Antibodies" are collected in the file biological_therapeutics.
11
+ # =========================================================================== #
12
+
13
+ - 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>. []
14
+ - Do antibodies bind to toxins released in body fluids? Yes.
15
+ - The most famous example of using monoclonal antibodies in a detection system, probably comes from ... ? <one>Home pregnancy test kits</one>. The monoclonal antibodies used in these kits will <two>detect human chorionic gonadotropin</two> (<three>hCG</three>).
16
+ - <one>Antibody functions</one> can be manipulated through <two>recombinant engineering</two> 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.)
17
+ - <one>Welche Antigene</one> werden in der Regel zuerst als <two>fremd</two> erkannt? <one>Antigene</one> <two>auf der Oberfläche eines fremden Mikroorganismus</one>.
18
+ - The <one>J segment</one> <two>for antibodies</two> <three>contains how many amino acids</three>? <one>13-15</one>. []
19
+ - In <one>1975</one> Kohler and Milstein <two>fused together which two cells</two>? (1) <one>antibody-producing mouse spleen cells</one> (2) <one>mouse myeloma cells</one>
20
+ - Are there <one>plasma cells</one> that can produce and secrete <two>IgA</two>? <one>Yes</one>.
21
+ - Name an <one>anti-TNF</one> <two>monoclonal antibody</two>. A: <one>Humira</one>. URL: https://en.wikipedia.org/wiki/Adalimumab []
22
+ - <one>Rituximab</one> wurde <two>erstmals weltweit (zuerst) in den USA zugelassen</two>. Er war damit der erste therpautische monoklonale Antikörper, der für Therapien zugelassen wurde. <three>Im welchen Jahr geschah dies</three>? Im Jahre <one>1997</one>.
23
+ - The <one>Bence-Jones protein</one> <two>actually refers to ... </two>? The <one>antibody light chain</one>. URL: https://de.wikipedia.org/wiki/Bence-Jones-Protein []
24
+ - Does <one>IgA</one> <two>fix complement</two>? <one>No</one>. []
25
+ - <one>Infliximab</one> <two>mimics</two> <three>which immunoglobulin specifically</three>? <one>IgG</one>. []
26
+ - Does <one>IgE</one> have <two>an extra domain</two>? <one>Yes</one>, in its <two>constant region</two>; called <three>CH4</three>. []
27
+ - A <one>single Fab fragment</one> has a molecular mass of <two>n kDa</two>? About <one>55 kDa</one>. []
28
+ - From <one>IgG1</one>, <one>IgG2</one>, <one>IgG3</one>, <one>IgG4</one> - <two>which one is the largest</two>? <one>IgG3</one>. []
29
+ - The <one>antibody structure</one>: <two>antibodies are organized into ... </two>? <one>domains</one>. []
30
+ - Do antibodies that are <one>able to bind to the native protein</one> also bind to its <two>denatured state</two>? <one>No</one>, <two>not necessarily so</two>. []
31
+ - <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>. []
32
+ - Der <one>Hersteller</one> von <two>Trastuzumab</two> ist ... ? Die Firma <one>Roche</one>. URL: https://de.wikipedia.org/wiki/Trastuzumab []
33
+ - <one>Which immunoglobulin</one> is responsible for <two>the hypersensitivity reaction</two>? <one>IgE</one>. []
34
+ - <one>Aminopterin</one> ist <two>ein Zellgift, das bei der Produktion von monoklonalen Antikörpern Verwendung findet</two>. <three>Wie wirkt es, kurz gesagt</three>? <one>Aminopterin</one> <two>hemmt die Biosynthese von Purin- und Pyrimidinbasen</two>.
35
+ - <one>Antibody in-vivo half life</one> <two>is mediated by contact between Fc and</two> ... <three>which receptor</three>? The <one>neonatal Fc receptor</one>.
36
+ - Do the <one>CH₂ domains</one> in a typical <two>IgG</two> antibody <three>pair with one other</three>? <one>No</one>. (Note that some drawings show that, though, so this answer is uncertain.)
37
+ - <one>Protein A</one> can be <two>used in affinity purification</two> to bind to the Fc-domain of monoclonal antibodies, but <three>we often try to avoid it</three>. Why? Because of the <one>high price</one> of <two>protein A</two>.
38
+ - Können <one>Antikörper</one> <two>reversibel denaturiert</two> werden? <one>Ja</one>. []
39
+ - How can the <one>half-life of nanobodies</one> <two>be extended</two>? By <one>binding it to serum albumin</one>.
40
+ - 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>. []
41
+ - <one>Antikörper</one> <two>gegen das ABO-Antigen</two> sind fast immer ... ? <one>IgM</one>.
42
+ - <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. []
43
+ - When we notice a <one>nonliving-antigen</one>, <two>what will we also know</two>? That this antigen can <one>NOT</one> proliferate.
44
+ - Name one <one>intrinsic disadvantage of IgM</one>. A: Because of its <one>large size</one>, <two>IgM does not diffuse well</two>. []
45
+ - <one>IgM</one> contains <two>how many four-chain units</two>? <one>5</one>. []
46
+ - <one>Trastuzumab</one> (Herceptin) ist nur bei Patienten mit Brustkrebs zugelassen, die welche Eigenschaft besitzen? Diese <one>Patienten müssen eine hohe Expression des HER2 Rezeptors aufweisen</one>.
47
+ - <one>Probiotika</one> <two>steigern die Menge welchen Igs</two>? Des <one>sekretorischen IgA</one>. []
48
+ - The <one>secondary antibody</one> <two>recognizes what</two>? The <one>primary antibody</one>. []
49
+ - <one>Plasma cells</one> <two>can produce up to n antibodies per minute</two>? Up to <one>100.000 antibodies per minute</one>.
50
+ - Can <one>antibodies</one> recognize <two>polysaccharide coats</two>? <one>Yes</one>. []
51
+ - Just about the <one>most frequently seen antigens</one> <two>are of what class ... </two>? <one>Proteins</one>. []
52
+ - <one>Triomab</one> combines <two>hybridoma-generated segments</two> <two>from which two animals</two>? (1) <one>rat</one> (2) <one>mouse</one> []
53
+ - The <one>structure of an antibody</one> <two>is related to ... </two>? its <one>function</one>. []
54
+ - When we refer to <one>oligoclonal antibodies</one>, we typically refer to ... ? This refers to <one>a mixture of antibodies</one>; often <two>a mixture of different monoclonal antibodies</two>. URL: https://onlinelibrary.wiley.com/doi/abs/10.1002/9783527682423.ch44
55
+ - <one>Welche Antikörper</one> können den <two>klassischen Komplementweg</two> <three>aktivieren</three>? (1) <one>IgG</one> (2) <one>IgM</one> []
56
+ - <one>Wie unterscheiden sich</one> die <two>IgG-Subklassen</two> voneinander? Die verschiedenen <one>IgG-Subklassen</one> unterscheiden sich untereinander in der <two>Zahl ihrer Disulfid-Brücken</two>. []
57
+ - Sind alle <one>IgG Antikörper</one> <two>plazentagängig</two>? <one>Nein</one> - <two>IgG2</two> ist nicht plazentagängig.
58
+ - 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 []
59
+ - What was <one>the primary reason</one> <two>why chimeric antibodies were engineered in the first place</two>? The goal here was to make these chimeric antibodies more human like.
60
+ - <one>Wogegen richten sich</one> <two>monoklonale Antikörper</two>? Sie richten sich <one>gegen ein einzelnes Epitop</one>.
61
+ - Name <one>the two</one> <two>antibody light chains</two>. A: (1) <one>kappa</one> (2) <one>lambda</one> - Mnemonic: <two>KL</two>, like in the alphabet. []
62
+ - Die <one>Antigen-Antikörper</one> <two>Reaktion</two> ist mit welchen zwei anderen <two>Reaktionen</two> <three>vergleichbar</three>? (1) <one>Enzym-Substrat Bindung</one> (2) <one>Ligand-Rezeptor Bindung</one> []
63
+ - 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 []
64
+ - Do <one>monovalent antibody fragments</one> form <two>immune complexes</two>? <one>No</one>. []
65
+ - The <one>heavy chain V domain</one> <two>of an antibody</two> is encoded through which genes? <one>V, D and J genes</one>. []
66
+ - <one>Unterscheiden sich</one> <two>IgG</two> und <two>IgA Antikörper</two> in ihrem Glykosylierungsmuster? <one>Ja</one>. []
67
+ - In <one>antibody-drug conjugates</one>, we can <two>attach cleavable linkers to the antibody</two>. <three>Name the three main mechanisms as to how these can be cleaved off</three>. A: (1) through an <one>acidic pH</one> (2) by reduction of disulfide bonds (3) by <one>cleavage via lysosomal proteases</one>
68
+ - <one>Historically</one>, what was <two>the first source of antibodies</two>? <one>Serum</one>. URL: https://en.wikipedia.org/wiki/Serum_%28blood%29
69
+ - Give <one>a technical example for</one> an <two>antibody-antigen interaction</two>. A: The <one>ELISA</one>. URL: https://en.wikipedia.org/wiki/ELISA []
70
+ - In regards to antibodies: <one>which theory</one> did <two>Paul Ehrlich</two> propose? The <one>Lock and key theory</one>. URL: https://en.wikipedia.org/wiki/Side-chain_theory
71
+ - Name <one>two different ways</one> <two>how infants acquire</two> <three>maternal antibodies</three>. A: (1) through the <one>placenta</one> (2) through <one>breast milk</one> []
72
+ - Does <one>lysis of cells</one> occur in <two>antibody-dependent cellular cytotoxicity</two> (<three>ADCC</three>)? <one>Yes</one>. []
73
+ - An <one>IgM antibody</one> <two>has a molecular weight of</two> <three>n kDa</three>, including its J-chain? <one>950 kDa</one>.
74
+ - <one>If</one> we wish to use an antibody that is <two>good at agglutination</two>, <three>which antibody should we use first</three>? <one>IgM</one>. []
75
+ - <one>Where</one> in a given antibody can the <two>CDR</two> be found? Within the <one>amino-terminal area</one>.
76
+ - Können <one>monoklonale Antikörper</one> <two>drei verschiedene Zellen binden</two>? <one>Ja</one> - manch ein monoklonaler Antikörper kann dies. []
77
+ - 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> (<two>RIA</two>) (2) using an <one>enzyme-linked immunoabsorbent assay</one> (<two>ELISA</two>) []
78
+ - <one>Panitumab</one>, ein menschlicher, monoklonaler Antikörper der spezifisch ist für <two>EGFR</two> (epidermal growth factor receptor), <three>wurde von welcher Firma hergestellt</three>? <one>Amgen</one>.
79
+ - Bei <one>welchen Antikörpern</one> sehen wir <two>Subklassen</two> <three>im menschlichen Organismus</three>? (1) <one>IgA</one> (2) <one>IgG</one> []
80
+ - Mit <one>Peyer-Plaque</one> assoziierte <two>Plasmazellen</two> <three>sezernieren meist welche Antikörper</three>? <one>IgA</one>. []
81
+ - <one>Protein A</one> ist ein Membranprotein aus Staphylococcus aureus, mit einem Molekulargewicht von <two>42 kDa</two>. <three>Dieses Protein kann an IgG binden</three>. 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
82
+ - <one>How</one> are the upper tips of the <two>Y</two>-shape of an antibody called? This is the <one>paratope</one>. URL: https://en.wikipedia.org/wiki/Paratope []
83
+ - Bei <one>IgY</one>: wofür steht das <two>Y</two>? Für <one>yolk</one>. URL: https://en.wikipedia.org/wiki/Yolk []
84
+ - The <one>strength</one> of binding between one V domain and an antigen is called ... ? The <one>affinity</one> of the antibody. []
85
+ - Antikörper gegen <one>ClfA</one> (<two>clumping factor A</two>) <three>verhindern die Kolonisierung durch</three> <four>welches Bakterium</four>? <one>Staphylococcus aureus</one>. URL: https://en.wikipedia.org/wiki/Clumping_factor_A []
86
+ - <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> []
87
+ - Nenne <one>zwei</one> <two>Vorteile polyklonaler Antikörper</two>. A: (1) <one>rasch</one> (2) <one>billig</one>
88
+ - Natürliche Antikörper sind <one>n-valent</one>? <one>Divalent</one> bis <one>dekavalent</one>. []
89
+ - Wofür steht die Abkürzung <one>mAb</one>? <one>Monoclonal antibody</one>. []
90
+ - Given a <one>typical IgG antibody</one>, we may find <two>three hypervariable regions</two> in the V domain - <three>HV1</three>, <three>HV2</three> and <three>HV3</three>. <four>Which of these three is the most variable one</four>? The <one>HV3 region</one>. []
91
+ - <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 []
92
+ - <one>Which cells</one> carry <two>membrane-bound antibodies</two>? <one>B cells</one>. []
93
+ - Does <one>ADCC</one> (<two>antibody-dependent cellular cytotoxicity</two>) <three>depend</three> on the <four>immune complement system</four>? <one>No</one> it does not. []
94
+ - Briefly describe the <one>F(ab')2 fragment</one>. A: This fragment <one>can bind antigens</one> such as the original antibody, but it can not interact with effector molecules as it <two>lacks the Fc part</two>.
95
+ - Many of today's <one>therapeutic antibodies</one> <two>have multiple modes of actions</two>. 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>
96
+ - In the method called <one>Hydrogen</one>/<one>Deuterium eXchange mass spectrometry</one>, which is also <two>used to study epitopes</two>, <three>the protein is submerged into ... </three>? <one>D₂O</one>.
97
+ - Können Antikörper als <one>Rezeptoren</one> bezeichnet werden? <one>Ja</one>. []
98
+ - In most cases, the first detectable antibody response in the plasma of a human being is that of the <one>IgM</one> class. <two>A few weeks after an infection, a class-switch occurs to which two other immunoglobulins</two>? (1) <one>IgG</one> (2) <one>IgA</one>
99
+ - The <one>crescendo discovery platform</one> <two>is based on ... </two>? <one>Transgenic mice</one>. URL: https://www.crescendobiologics.com/vh-technology/discovery-and-development/
100
+ - <one>Wie schwer</one> ist die <two>leichte</two> und die <two>schwere</two> Kette eines Antikörpers (in kDa)? (1) <one>Leichte Kette</one>: <two>25 kDa</two> (2) <one>Schwere Kette</one>: <two>55 kDa</two> []
101
+ - Following the binding of a monoclonal antibody to a specific target on a tumour cell, <one>which complement factor</one> <two>interacts with the CH₂ constant region of the monoclonal antibody</two>? The <one>C1q complement factor</one>. []
102
+ - In a <one>scFv</one>, <two>VH and VL are joined</two>. Which terminus, respectively? (1) <one>C-terminus of VH</one> (2) <one>N-terminus of VL</one>
103
+ - The <one>IgA</one> antibody has <two>how many subclasses</two>? <one>Two</one>. []
104
+ - <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 []
105
+ - <one>Which antibody</one> can be found to be <two>especially prevalent in human breast milk</two>? <one>Secretory IgA</one>. URL: https://en.wikipedia.org/wiki/Immunoglobulin_A#Secretory_IgA
106
+ - The <one>rheumatoid factor</one> is <two>an autoantibody</two> that <three>targets</three> the Fc portion of ... <four>which antibody</four>? <one>IgG</one>. []
107
+ - 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 []
108
+ - In der <one>menschlichen Schleimhaut</one> kann vor allem <two>welcher Antikörpertyp</two> gefunden werden? Den <one>IgA-Typ</one>. []
109
+ - Besitzt ein <one>Fab-Fragment</one> eine <two>Disulfidbrücke</two>? <one>Ja</one>. []
110
+ - Every <one>B cell</one> <two>begins by expressing</two> ... which antibody? <one>IgM</one>. []
111
+ - 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> <one>will rise during a parasitic disease</one>. Thus, measuring the IgE levels is helpful when one wishes to <two>diagnose parasitic infections</two>.
112
+ - <one>Streptavidin-protein A</one> <two>can bind to biotin</two> and ... <three>which antibody</three>? <one>Streptavidin-protein A</one> can also bind to <two>immunoglobulin G</two> (<three>IgG</three>). []
113
+ - The <one>typical linker</one> used for the construction of <two>scFvs</two> has which formula and how many amino acids? (<one>GGGGS</one>)3 - aka <two>Gly-Gly-Gly-Gly-</two><two>Ser</two> <two>-Gly-Gly-Gly-Gly-</two><one>Ser</one> <one>-Gly-Gly-Gly-Gly-</one><one>Ser</one> and so forth, for a total of 15 amino acids. (Mnemonic: <royalblue>scFv-(GGGGS)3</royalblue>).
114
+ - 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 []
115
+ - <one>Why</one> is <two>Immunoscintigraphy</two> 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>.
116
+ - <one>All</one> <two>naive B cells</two> express which <three>cell-surface antibodies</three>? (1) <one>IgD</one> (2) <one>IgM</one> []
117
+ - Aside from being cleared from a patient's body quickly, name another problem that <one>monoclonal antibodies</one> <two>created by mice</two> 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>.
118
+ - Können <one>Antikörper</one> <two>eine Antikörper-Bildung auslösen</two>? <one>Ja</one> - sogenannte <two>anti-Antikörper</two>, wie bei der <three>HAMA response</three>. URL: https://en.wikipedia.org/wiki/Human_anti-mouse_antibody
119
+ - <one>Polyclonal antibodies</one> <two>are derived from</two> <three>the serum of ... </three>? <one>Immunized individuals</one>. []
120
+ - 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. []
121
+ - In order to create monoclonal antibodies, <one>PEG</one> (<two>polyethylenegylcol</two>) is employed. Is <one>PEG</one> toxic to cells? <one>Yes</one>.
122
+ - Wie wird der Bereich <one>zwischen</one> den beiden <two>scFv-Fragmenten</two> eines <two>diabodies</two> genannt? <one>Linker</one>. URL: https://en.wikipedia.org/wiki/Single-chain_variable_fragment []
123
+ - Bei der <one>Gleichgewichtsreaktion Antigen-Antikörper</one> ist <two>kc</two> <three>wovon abhängig</three>? Von der <one>Temperatur</one>. []
124
+ - <one>Circulating IgG</one> has <two>a half-life</two> of about <three>m to n days</three>? <one>21 - 28 days</one>.
125
+ - <one>Monoklonale Antikörper</one> sind weitgehend ungeeignet bei welchen Tumoren? Bei <one>größeren</one>, <two>soliden Tumoren</two>.
126
+ - <one>Wie groß</one> sind <two>Nanobodies</two>, verglichen mit <three>herkömmlichen Antikörpern</three>? <one>Nanobodies</one> sind nur etwa <two>1</two>/<two>10</two> so groß wie herkömmliche Antikörper. []
127
+ - The <one>affinity</one> <two>between an antibody and a bound antigen</two> is commonly represented by ... ? A <one>dissociation constant</one>, called <two>Kd</two>. URL: https://en.wikipedia.org/wiki/Dissociation_constant
128
+ - Can <one>monoclonal antibodies</one> recognize a <two>phosphorylated epitope</two>? <one>Yes</one>, <two>in principle they can</two>. []
129
+ - 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>. []
130
+ - Define the term <one>Serology</one>. A: Serology is 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
131
+ - Name a problem that <one>IgG4</one> has. A: <one>IgG4</one> can not activate the <two>classical complement pathway</two>.
132
+ - <one>Which antibody</one> <two>remains membrane-bound</two>? <one>IgD</one>. []
133
+ - If we mix <one>antibodies</one> with <one>antigens</one> and observe large complexes being formed, how do we call such a <two>zone</two>? <one>Zone of equivalence</one>. URL: https://medical-dictionary.thefreedictionary.com/zone+of+equivalence
134
+ - What is meant with the following expression: <one>the act of immuno-localizing a particular antigen in a tissue</one>? <one>Immunohistochemistry</one>. URL: https://en.wikipedia.org/wiki/Immunohistochemistry []
135
+ - Kann das <one>Bence-Jones Protein</one> <two>kristallisiert</two> werden? <one>Ja</one>. Es war auch als <two>Paraprotein</two> bekannt.
136
+ - What is meant with the word <one>heteromyelomas</one>? These are, for example, <one>mouse-human hybrid myelomas</one>.
137
+ - What kind of <one>epitopes</one> may we wish to <two>add to a recombinant antibody</two>, in order to <three>induce tolerance</three>? <one>Regulatory epitopes</one>. []
138
+ - <one>Camelids</one> <two>contain VHHs antibodies</two>. What does this VHH mean? <one>VHH</one> is short for <two>Heavy-chain variable domains</two>.
139
+ - The <one>covalent association of heavy and light chains of antibodies</one>, <two>stabilized by the formation of disulfide bonds</two>, occurs where inside of a cell? In the <one>endoplasmic reticulum</one> (<two>ER</two>).
140
+ - In general: a <one>typical IgG-molecule</one> <two>contains how many domains in total</two>? <one>12</one>. []
141
+ - <one>How many</one> different <two>classes of antibodies</two> can we find based on the structure of their <three>heavy-chain C domains</three>? <one>Five</one> (<one>5</one>). []
142
+ - Which <one>theory of antibody production</one> <two>is the most widely one that is accepted</two>? The <one>clonal selection theory</one>. URL: https://en.wikipedia.org/wiki/Clonal_selection []
143
+ - Ist <one>IgE</one> größer, vom Molekulargewicht her betrachtet, als <one>IgG1</one>? <one>Ja</one>, sogar deutlich größer - <two>IgE</two> hat ein Molekulargewicht von <three>190 kDa</three> versus dem Molekulargewicht von <two>150 kDa</two> für <three>IgG1</three>. []
144
+ - <one>Immunglobulin G</one> <two>hat welche schwere Kette</two>? <one>Gamma</one>. URL: https://pubmed.ncbi.nlm.nih.gov/6787596/ []
145
+ - <one>Catumaxomab</one>, ein <two>bispezifischer Antikörper</two>, <three>wird eingesetzt zur Behandlung welcher Krankheit</three>? Der <one>malignen Aszites</one>. URL: https://en.wikipedia.org/wiki/Catumaxomab
146
+ - Can <one>haptens</one> be <two>recognized by antibodies</two>? <one>Yes</one>. []
147
+ - <one>Pepsin digestion</one> applied onto an <two>IgG-molecule</two> will lead to ... ? One <one>F(ab)₂</one> fragment. []
148
+ - 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. <three>Which IgM form is significantly more effective in binding to C1q</three>? The <one>staple form</one>. []
149
+ - 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>. []
150
+ - <one>From the natural immunoglobulins</one>: <two>which one tends to be the most stable</two>, that is the one with the longest half-life? <one>IgG</one>. []
151
+ - Was ist <one>Herceptin</one>? <one>Herceptin</one> (auch <two>Trastuzumab</two> genannt) ist <three>ein monoklonaler, humanisierter Antikörper</three>. URL: https://de.wikipedia.org/wiki/Trastuzumab
152
+ - Wie groß, <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 []
153
+ - What <one>dual use</one> do <two>antibodies</two> 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>
154
+ - <one>Side effects</one> of <two>Herceptin</two>? In about <one>~4%</one> of the patients, the <two>heart tissue may be damaged</two>.
155
+ - Do <one>monovalent antibody fragments</one> form <two>immune complexes</two>? <one>No</one>, they do not. []
156
+ - Kann <one>IgM</one> <two>die Plazentaschranke überwinden</two>? <one>Nein</one>. []
157
+ - Can modern <one>Antibody-Drug Conjugates</one> (<two>ADCs</two>) <three>release the cytotoxic agent inside of cells</three>? <one>Yes</one>. []
158
+ - We can create <one>recycling antibodies</one>, such as <two>SA237</two>. We can <three>control them through pH-change</three>. <four>They may bind at a neutral pH of 7.4 and dissociate at ... which pH</four>? At an <one>acidic pH</one>, such as at a <two>pH 6.0</two>.
159
+ - Die <one>Immunglobulinfraktion</one> <two>im Serum</two> beträgt etwa <three>n%</three>? <one>30%</one>.
160
+ - <one>If</one> we do happen to find <two>IgA</two> in its <three>polymeric form</three>, <four>what do we also instantly know about it</four>, <five>structure-wise</five>? That this IgA-antibody must have a <one>J-chain</one>. URL: https://en.wikipedia.org/wiki/Immunoglobulin_A
161
+ - Warum hat <one>IgM</one> den Buchstaben <two>M</two>? <one>M</one> steht hier für <two>Makroglobulin</two>. URL: https://de.wikipedia.org/wiki/Immunglobulin_M
162
+ - The <one>human fetus</one> <two>synthesizes which antibody first</two>? <one>IgM</one>. []
163
+ - Im Jahre <one>2013</one> wurde <two>der erste biosimilare monoklonale Antikörper</two> zugelassen. <three>Wie war sein Name</three>? <one>Infliximab</one>. URL: https://de.wikipedia.org/wiki/Infliximab []
164
+ - 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. <three>Give another word for these</three>. A: The <one>complementarity-determining regions</one> (<two>CDRs</two>).
165
+ - 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>. []
166
+ - <one>How</one> could <two>aglycosyl antibodies</two> be generated? We could create them <one>by altering the peptide recognition sequence for N-linked glycosylation</one>.
167
+ - <one>How long</one>, in <two>n aminoacids</two>, is a typical <one>human antibody light chain</one>? About <one>211</one> to <one>217</one> amino acids long. (<one>211-217</one>)
168
+ - <one>Welche Antikörperklasse</one> führt zur <two>Antikörper-vermittelten Zelltoxizität</two> als auch zur <two>Antikörper-vermittelten Opsonierung</two> und <two>Phagozytose</two>? <one>IgG</one>. []
169
+ - <one>Which antibody</one> <two>deals with virus</two> <three>on mucosal surfaces</three>? <one>IgA</one>. []
170
+ - 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 []
171
+ - There are <one>two light chains</one> in antibodies, named <two>kappa</two> and <two>lambda</two>. <three>Is the ratio found in antibodies 1:1</three>? 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.
172
+ - In human serum, <one>IgG</one> is the most prevalent antibody. <two>IgG has four different subtypes</two>. <three>What is their corresponding percentage value in the serum there</three>? (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>
173
+ - <one>Naive mature B cells</one> <two>produce which two antibodies</two>? (1) <one>IgD</one> (2) <one>IgM</one> []
174
+ - What is <one>the major antibody</one> that can be found in <two>tears</two>? <one>IgA</one>. []
175
+ - <one>Welcher Antikörper</one> <two>'übernimmt'</two> nach <three>IgM</three>, nach Exposition mit einem Antigen? <one>IgG</one>. URL: https://en.wikipedia.org/wiki/Immunoglobulin_G []
176
+ - Bei der <one>Kryopräservierung</one> <two>wird oft welche Substanz eingesetzt</two>, um <three>Antikörper langfristig lagern zu können</three>? <one>Glycerin</one>. URL: https://de.wikipedia.org/wiki/Glycerin
177
+ - The <one>poly-Ig receptor</one> <two>interacts specifically with ... </two>? The <one>J chain of antibodies</one> - such as those carried by the antibodies <orange>IgM</orange> and <two>IgA</two>.
178
+ - <one>ADCC enhanced antibodies</one> have a modified glycosylation pattern that lacks ... ? <one>fucose</one>. This is the signal for NK cells to step up their cytotoxic activity.
179
+ - Andere Bezeichnung für <one>sezernierte Antikörper</one>? <one>Lösliche Antikörper</one>. URL: https://www.spektrum.de/lexikon/biochemie/immunglobuline/3076 []
180
+ - Is the <one>Fv fragment</one> <two>smaller than</two> the <one>Fab fragment</one>? <one>Yes</one>. []
181
+ - Antibodies are <one>glycoproteins</one>. The <two>site of attachment for carbohydrates</two> is usually restricted to ...? The <one>constant region</one>.
182
+ - <one>Omalizumab</one> <two>neutralizes</two> <three>which antibody</three> <four>in the blood</four>? <one>IgE</one>.
183
+ - Sind <one>polyklonale Antikörper</one> <two>funktionell unterschiedlich</two>? <one>Ja</one> - sie <two>besitzen eine unterschiedliche Affinität in Bezug auf die unterschiedlichen Epitope eines Antigens</two>.
184
+ - <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>. []
185
+ - For the hybridoma technique in a <one>HAT medium</one>, 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.
186
+ - The <one>antigen-antibody interaction</one> is a biomolecular association similar to an <two>enzyme-substrate interaction</two>, 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.
187
+ - How many <one>framework regions</one> <two>exist</two> <three>in each V domain of an antibody</three>? <one>Four</one>, called <one>FR1</one>, <one>FR2</one>, <one>FR3</one> and <two>FR4</two>, respectively.
188
+ - Can <one>Plasmin</one> <two>cut antibodies</two>? <one>Yes</one>. URL: https://en.wikipedia.org/wiki/Plasmin []
189
+ - Which <one>IgG subclass</one> <two>does not fix complement very well</two>? <one>IgG4</one> (mnemonic: <two>lazy IgG4</two>). []
190
+ - <one>Catumaxomab</one> is <two>a hybrid from which two different animals</two>? <one>Catumaxomab</one> is a <two>rat</two>/<two>mouse hybrid</two>. []
191
+ - What is the <one>length</one> <two>of a typical antibody</two>, <three>in nm</three>? 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/ []
192
+ - Der <one>klassische Weg der Aktivierung des Komplementsystems</one> kann auch durch Antikörper aktiviert werden, und zwar wenn C1 mit ... welchen Antikörpern interagiert? (1) <one>IgM</one> (2) <one>IgG</one>
193
+ - <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> []
194
+ - Nenne <one>drei verschiedene</one> <two>Anwendungsgebiete für monoklonale Antikörper</two>. A: (1) <one>Affinitätsreinigung von Proteinen</one> (2) <one>Diagnose</one> (3) als <one>therapeutische Agentien</one>
195
+ - The <one>antibody isotypes</one> <two>are defined by ... </two>? The <one>Fc region</one>.
196
+ - Nenne <one>drei Faktoren</one>, die die natürliche <two>Antikörper-Bildung</two> beeinflussen. A: (1) <one>A</one><two>djuvantien</two> (2) <one>D</one><two>osis</two> (3) <one>E</one><two>intrittsweg</two>
197
+ - Werden <one>Antikörper</one> eher durch <two>alkalische</two> oder <two>azide</two> Bedingungen <three>geschädigt</three>? Eher durch <one>alkalische Bedingungen</one>. []
198
+ - 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 <four>what may be at the right end</four>? A <one>His-Tag</one>.
199
+ - Give one example for an <one>antibody mimetic</one>. A: The <one>Kunitz domain peptides</one> (<two>KDP</two>; easier to remember: <two>Kunitz-domain</two>). URL: https://en.wikipedia.org/wiki/Kunitz_domain
200
+ - <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>. []
201
+ - In <one>affinity screening</one> during phage display, at the <two>panning step</two> - <three>which two different outcomes</three> can be observed 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>
202
+ - <one>IgM</one> versus <one>IgG</one>: which of these two antibodies is more efficient at <two>activating complement</two>? <one>IgM</one>. []
203
+ - Gelangen Antikörper in die <one>Lymphe</one>? <one>Ja</one>. []
204
+ - 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> []
205
+ - <one>Which antibody</one> is <two>the phylogenetically oldest immunoglobulin</two>? <one>IgM</one>. (See the book <two>"Monoclonal Antibodies: Principles and Practice"</two>, Chapter 5.3.1, IgM). []
206
+ - The <one>clinical development of bispecific antibodies</one> focuses primarily on the treatment of ... which two use cases? (1) <one>cancer</one> (2) inflammatory disorders
207
+ - The <one>HAMA response</one> <two>may be related to monoclonal antibodies</two>. What does HAMA stand for? <one>Human anti-mouse antibody</one>.
208
+ - A <one>single serum IgM molecule</one> <two>can bind how many larger antigens simultaneously</two>? Only <one>5 or fewer</one>, due to <two>steric hindrance</two>.
209
+ - Can the <one>binding of an antigen to an antibody</one> <two>induce a conformational change in the latter</two>? <one>Yes</one>. []
210
+ - Can a <one>single hapten</one> <two>simultaneously bind to two antibodies, at the same time</two>? <one>No</one>. []
211
+ - <one>Affinity maturation</one> <two>on antibodies</two> occurs in which area? <one>Affinity maturation</one> occurs in the <one>variable region</one> of an antibody.
212
+ - Is the <one>Fab-mediated</one> function of an antibody dependent on its <two>Fc part</two>? Not really; that is why antibodies can be quite easily modified in various ways. []
213
+ - Name the two different <one>forms</one> of <two>IgM</two>. A: (1) <one>planar form</one> (2) <one>staple form</one> []
214
+ - Bei den <one>chimären, monoklonalen Antikörpern</one> von Maus und Mensch: <two>woher</two> 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>.
215
+ - Kommt der <one>IgD Antikörper</one> <two>membrangebunden auf</two> <three>B-Zellen</three> vor? <one>Ja</one>. []
216
+ - In a simple manner: <one>how</one> can <two>Fab fragments be created</two>? By making use of <one>papain</one> or <one>pepsin</one>.
217
+ - <one>Drugs</one> that would <two>target tumor cells</two> and ignore other cells <three>was conceived in 1900 by ... </three>? <one>Paul Ehrlich</one>. []
218
+ - Kann eine <one>Antikörperbindung</one> zu einer <two>Konformationsänderung eines Antigens</two> führen? <one>Ja</one>. []
219
+ - Name <one>two</one> <two>functional limitations of therapeutic antibodies</two>. A: (1) <one>Tissue accessibility</one>. (2) <one>Impaired interactions with the immune system</one>.
220
+ - <one>Infliximab</one>, <two>the first biosimilar monoclonal antibody approved</two>, is used to treat ... ? <one>Autoimmune diseases</one>.
221
+ - <one>Catumaxomab</one> <two>can cause problems due to ... </two>? <one>Fc-mediated off-target T cell activation in the liver</one>.
222
+ - In the past, <one>horse antiserum</one> was sometimes applied against ... ? Infection by <one>Clostridium tetani</one> in a wound, in particular against its <two>Tetanus toxin</two>.
223
+ - <one>Which Ig-molecule</one> is initially expressed on the surface of a differentiated B cell? <one>IgM</one>.
224
+ - Ist <one>IgY</one> größer 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 <three>+17 kDa Differenz</three>.
225
+ - <one>How heavy</one> is <two>a single Fab fragment</two>, <three>in n kDa</three> - 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>.
226
+ - If we wish to <one>amplify an antibody's variable region</one>, <two>what could we use to achieve this goal</two>? We could <one>use a mixture of</one> <two>degenerate PCR primers</two>.
227
+ - Gehört <one>HSP70</one> zur <two>Immunglobulin Superfamilie</two>? <one>Nein</one>.
228
+ - Give an example for <one>an amino acid</one> that is <two>over-represented</two> <three>in antigen-binding site of an antibody</three>. A: <one>Tyrosine</one>. URL: https://en.wikipedia.org/wiki/Tyrosine
229
+ - The <one>Fc-domain of an antibody</one>, such as <two>IgG</two>, <three>typically includes which domains</three>? <one>CH2</one> and <one>CH3</one>.
230
+ - Der <one>sekundäre Antikörper</one> in einem <two>ELISA</two> kann an ein Enzym gekoppelt sein. <three>Nenne hierzu drei Beispiele</three>. A: (1) <one>Alkalische Phosphatase</one> (2) <one>Peroxidase</one> (3) <one>Urease</one>
231
+ - <one>IgG</one> is <two>the major Immunoglobulin in serum</two>. <three>How much percent of serum Immunoglobulin is IgG</three>? About <one>75%</one>.
232
+ - We can distinguish between two different antibody-<one>modes</one> when this antibody can bind to a cell surface receptor. <two>Which ones are these</two>? (1) <one>agonistic antibody</one> (2) <one>antagonistic antibody</one>
233
+ - Given a typical <one>IgG</one> antibody, we can identify <two>three hypervariable regions</two> in the variable domain. Name the <three>three aminoacid-ranges</three> 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>]
234
+ - Name <one>four different ways</one> <two>how to disrupt the interaction between an antibody and its antigen</two>. 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
235
+ - Is the <one>sequence variability</one> <two>evenly distributed in the variable region of an antibody</two>? <one>No</one> - it is <two>concentrated in certain segments</two>.
236
+ - The ability of antibodies in any individual to <one>specifically bind a large number of different antigens</one> <two>is a reflection of ... </two>? <one>Antibody diversity</one>.
237
+ - How is it possible that <one>IgG</one> can pass through the placenta? Because <one>placental cells</one> <two>have a receptor</two> for the <three>Fc region of IgG</three>.
238
+ - 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) <one>Sampling</one>: how many independent members are actually participating in the selection
239
+ - Can we say that <one>antibodies</one> would be <two>heterodimeric proteins</two>? <one>Yes</one> - <two>they consist of heavy chains and light chains</two>, that typically combine into a basic <three>Y</three> shaped structure - at the least for <four>IgG</four>.
240
+ - Name one disadvantage of <one>IgM</one>. A: <one>IgM</one> has a <two>low affinity</two> (<three>low binding strength</three>) for antigens.
241
+ - <one>Warum</one> verwenden wir primär die <two>Humanisierung</two> im Menschen bei der Antikörperproduktion? Um die <one>Immunogenität im Menschen</one>, also <one>die Abwehrreaktionen gegen diese Antikörper</one>, zu <three>verringern</three>.
242
+ - In the <one>mouse</one>: <two>which antibody</two> has only <three>two</three> rather than <four>three</four> constant regions in its <two>heavy chain</two>? <one>IgD</one>.
243
+ - 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. <two>Where</two> can this Vernier zone be found? In the <one>framework region</one> (e. g. the <two>CDR loop</two>).
244
+ - Can we <one>detect antibody activity</one> <two>in the blood</two>? 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. <two>gelelectrophoresis</two>.
245
+ - 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.
246
+ - 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 <two>bind to receptors on secretory cells</two>.
247
+ - For an <one>effector cell</one> to be able to <two>interact with antibodies coating a pathogen</two>: <three>which structural entity is especially important for said antibody</three>? The <one>Fc domain</one> / <one>Fc region</one>.
248
+ - Was meinen wir allgemein mit dem Begriff <one>Immunotoxin</one>? Dies ist ein <one>Toxin</one> (zum Beispiel ein bakterielles Exotoxin), das <two>an Antikörper</two> beziehungsweise <two>an Antikörper-Fragmente</two> gekoppelt ist.
249
+ - Name <one>three use cases</one> for <two>scFvs</two>. A: (1) in <one>flow cytometry</one> (2) in <one>immunohistochemistry</one> (3) in <one>antigen-binding domains of artificial T cell receptors</one>
250
+ - Why the name <one>discontinuous</one> in <two>discontinuous epitopes</two>? Because the structure recognized is composed of segments of the protein that are <one>discontinuous in the amino acid sequence of the antigen</one> - but are brought together in the three-dimensional structure. URL: https://www.pacificimmunology.com/resources/antibody-introduction/what-is-an-epitope/
251
+ - There are <one>five different heavy chains</one> in humans. <two>How are these collectively called</two>? <one>Isotypes</one>.
252
+ - <one>Which animals</one> possess <two>fully functional antibodies</two> that <three>consist of only heavy chains</three>, thus lacking light light chains? The <one>camelidae</one> - aka <two>llamas</two> and <two>camels</two>.
253
+ - <one>Somatic hypermutation</one> operates on <two>B-cells</two> <three>in ... what kind of organs</three>? In <one>secondary lymphoid organs</one>.
254
+ - When <one>designing a linker</one> for a recombinant antibody, why are hydrophobic aminoacids avoided? <one>Hydrophobic aminoacids</one> <two>tend to decrease solubility</two>.
255
+ - <one>DVD-IgG</one> <two>has been created by which company</two>? <one>Abbott</one>. URL: https://en.wikipedia.org/wiki/Abbott_Laboratories
256
+ - <one>HDX-MS</one> can be <two>used to determine the 3D structure of antibodies</two>. <three>What does this abbreviation stand for</three>? <one>Hydrogen</one>/<one>Deuterium eXchange mass spectrometry</one>.
257
+ - If we see a <one>19S immunoglobulin</one>, <two>we know that this is which antibody</two>? <one>IgM</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC322453/
258
+ - Bei der <one>Synthese monoklonaler Antikörper</one> kann es <two>zwei falsche Hybridome</two> geben. <three>Welche sind diese</three>? (1) <one>B+B</one>: also <two>zwei fusionierte B-Lymphozyten</two> (2) <one>M+M</one>: also <two>zwei fusionierte Myelomzellen</two>
259
+ - Name <one>two methods for cell fusion</one> <two>used for production of antibodies</two>. A: (1) <one>polyethylenegylcol</one> (<two>PEG</two>) (2) <springgreen>electric pulses</springgreen> (aka <one>electrofusion</one>)
260
+ - 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>
261
+ - <one>Catumaxomab</one> <two>can bind three different cells</two>. <three>Which ones specifically</three>? (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
262
+ - In der Immunologie: wofür steht die Abkürzung <one>ADCC</one>? <one>Antibody-dependent cellular cytotoxicity</one>. URL: https://en.wikipedia.org/wiki/Antibody-dependent_cellular_cytotoxicity
263
+ - 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> (<three>FcRn</three>).
264
+ - Bei den <one>menschlichen Antikörpern</one> sehen wir auch einen <two>Kohlenhydratanteil</two>. Dieser reicht von ... bis ... %? Von <one>3%</one> (<two>IgG</two>) - <one>13%</one> (<two>IgE</two>).
265
+ - What is a <one>trifunctional antibody</one>? A <one>trifunctional antibody</one> is a <two>monoclonal antibody</two> with <three>binding sites for two different antigens</three>.
266
+ - The <one>Fc fragment</one> of an antibody has a role in <one>effector functions</one> and <one>complement fixation</one>. <two>But aside from this it is also important ... why</two>? The <one>Fc fragment</one> <two>influences the half-life of the antibody</two>.
267
+ - When <one>IgM</one> is <two>sialylated</two>, <three>which cell</three> <four>may be inhibited in its response</four>? The <one>T cell</one>.
268
+ - Give <one>an example</one> for a '<two>breakthrough</two>' in antibody engineering. A: The <one>single-chain Fv</one> can be considered to have been a breakthrough in antibody engineering.
269
+ - <one>Anderer Begriff</one> für <two>Mischungen von verschiedenen Antikörpern</two>? <one>Polyklonale Antikörper</one>. URL: https://de.wikipedia.org/wiki/Polyklonaler_Antik%C3%B6rper
270
+ - What is <one>the size range</one> of <two>Ablynx's Nanobodies</two>, <three>in kDa</three>? From <one>12 kDa - 15 kDa</one>.
271
+ - In <one>linker design for antibodies</one>: <two>which aminoacid should be avoided at all costs</two>? <one>Cysteine</one>, because of Sulfur and its ability to make disulfide bonds.
272
+ - Do <one>antigen-specific antibodies</one> <two>persist</two> <three>in the circulation</three> for many years? <one>Yes</one>, which can be shown by survivors of an infection (e. g. the Influenza pandemic in 1918).
273
+ - <one>Antibody classes</one> <two>are defined by ...</two>? By their <one>heavy-chain constant domain</one>.
274
+ - Does <one>ADCC</one> (<two>antibody-dependent cell-mediated cytotoxicity</two>) depend on <three>phagocytosis</three>? <one>No</one> it does not.
275
+ - <one>Nanobodies</one> <two>have only which chain</two>? Nanobodies have only <one>a heavy-chain</one>.
276
+ - Do we need animals in order to create <one>monoclonal antibodies</one>? <one>Yes</one> - <two>we require immunized animals</two>, which are usually <three>mice</three>.
277
+ - 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> contains <two>440 AA</two>. (2) The <one>light chain</one> contains <two>220 AA</two>.
278
+ - Name <one>the two major functions of antibodies</one> <two>in the human body</two>. 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
279
+ - Seit welcher <one>Tiergruppe</one> gibt es (oder finden wir) <two>Antikörper</two>? Seit den <one>Chordatieren</one>. URL: https://de.wikipedia.org/wiki/Antik%C3%B6rper
280
+ - <one>Which person</one> discovered <two>the genetic principle of antibody diversity</two> in the year <three>1976</three>? <one>Susumu Tonegawa</one>. URL: https://en.wikipedia.org/wiki/Susumu_Tonegawa
281
+ - <one>Polyclonal antibody production</one> <two>involves the immunisation of animals with ... </two>? (1) an <one>antigen</one>, and (2) an <one>adjuvant</one>
282
+ - <one>Roche</one> has invented the <two>CrossMAb technology</two> <three>to produce</three> ... <four>what kind of antibodies</four>? <one>Bispecific monoclonal antibodies</one>. URL: https://en.wikipedia.org/wiki/Bispecific_monoclonal_antibody
283
+ - In <one>Berger's disease</one>: which Ig-molecule causes <two> nephropathy</two>? <one>IgA</one>.
284
+ - <one>Warum</one> wurden Maus-Antikörper für die ersten therapeutischen Behandlungen von Antikörpern eingesetzt? Da diese am einfachsten herzustellen waren.
285
+ - <one>Catumaxomab</one> is <two>approved since which year</two>? <one>2009</one>.
286
+ - What was <one>the first approved bispecific antibody</one>? <one>Catumaxomab</one>. URL: https://en.wikipedia.org/wiki/Catumaxomab#History
287
+ - What was the first approved <one>trifunctional antibody</one>? <one>Catumaxomab</one>. (<springgreen>Ca-tu-ma-xom-ab</springgreen>)
288
+ - <one>Catumaxomab</one> is approved for the <two>treatment of</two> ... ? <one>Malign ascites</one>. URL: https://en.wikipedia.org/wiki/Catumaxomab
289
+ - What is the target for <one>Catumaxomab</one>? <one>EpCam</one> (<two>Epithelia cell adhesion molecule</two>).
290
+ - 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
291
+ - In <one>phage display</one> for the creation of antibodies, the <two>protein III</two> often has ... <three>which component attached to it</three>? The <one>scFv</one>, <two>which will protrude to the outside, ready to bind an antigen</two>.
292
+ - <one>Rituximab</one> <two>is used to treat ... </two>? Certain <one>autoimmune diseases</one>, as well as the <two>non-Hodgkin lymphoma</two>. URL: https://en.wikipedia.org/wiki/Rituximab
293
+ - 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 <one>complement-dependent cytotoxicity</one> (<two>CDC</two>).
294
+ - <one>Welche Antikörper Klasse</one> bindet mit ihrem Fc-Teil an Fc-Rezeptoren von Mastzellen? <one>IgE</one>.
295
+ - <one>Immune complexes</one> with <two>IgE</two> bound to a passively administered antibody can mediate ... ? <one>Systemic mast cell degranulation</one>, which may lead to <two>systemic anaphylaxis</two>.
296
+ - Wie heißt <one>das Medikament</one> das den <two>Infliximab-Antikörper</two> verwendet? <one>Remicade</one>. URL: https://en.wikipedia.org/wiki/Infliximab#Marketing
297
+ - <one>Antibodies</one> can deliver <two>toxic cargo</two>. <three>Give two general examples here how this is done</three>. A: (1) through <one>antibody conjugates</one> (2) through <one>fusion proteins</one>
298
+ - <one>Polyvalent antigens</one> <two>can induce clustering of ... </two>? Of <one>the B cell receptor</one> - and thus <one>initiate the process of B cell activation</one>.
299
+ - Say that we may wish to want to <one>study the antibody flexibility and fluctuation</one>. Name a <two>technique</two> that could be used for this. A: Via <one>ET</one>, aka <two>electron tomography</two>. URL: https://en.wikipedia.org/wiki/Electron_tomography
300
+ - <one>Humanized monoclonal antibodies</one> <two>carry which suffix</two>? <one>-zumab</one>. URL: https://en.wikipedia.org/wiki/Monoclonal_antibody_therapy#Chimeric_and_humanized
301
+ - A <one>Natural Killer cell</one> <two>expresses Fc receptors</two>, 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>.
302
+ - <one>Radioimmunotherapy</one> (<two>RIT</two>) <two>makes use of antibodies labeled with a radionuclide</two> 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.
303
+ - <one>Antibodies</one> allow the immune system to <two>t..... a microbe</two>. A: To <one>tag</one> a microbe.
304
+ - 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>. <two>We might be able to treat such diseases</two>.
305
+ - 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>, <two>combined into one molecule</two>.
306
+ - <one>Antibodies</one> can activate which <two>complement pathway</two>? <one>Antibodies</one> can activate the <two>classical complement pathway</two>. URL: https://en.wikipedia.org/wiki/Classical_complement_pathway
307
+ - Since <one>which year</one> is it possible <two>to assemble scFv antibody fragments</two>, at the least in Escherichia coli? Since as of <one>1988</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/3285470
308
+ - Die <one>sensitivste Methode die Antigenkonzentration</one> zu bestimmen erfolgt über <two>welche Methode</two>? Den <one>Radioimmunoassay</one> (<two>RIA</two>).
309
+ - <one>Herceptin</one> 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>.
310
+ - 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
311
+ - What do we mean with <one>overlapping determinants</one>? These are <one>determinants that are blocked when an antibody is binding to one of them, sterically</one>; the other determinant can not be bound by another antibody at the same time.
312
+ - The <one>primary antibody</one> may be <two>a mouse IgG</two> and the secondary antibody could be a rabbit anti-mouse antibody, which may be linked to ... ? <one>Beta galactosidase</one>.
313
+ - Say that an antibody does not bind to a folded protein; but it <one>may bind to the unfolded protein</one>. <two>What may we be able to conclude from this situation</two>? 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>.
314
+ - Reagiert das <one>Immunsystem</one> gegen <two>monoklonale Antikörper</two>? <one>Ja</one>.
315
+ - 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> (<two>PEG</two>) hinzufügen - danach beobachtet man <two>Fusions-Ereignisse</two>.
316
+ - In <one>M13</one>, for <two>phage display</two>, the <three>scFv</three> <four>is fused to ... which gene</four>? <one>gene III</one>.
317
+ - Give another term for <one>epitopes</one>. A: <one>Antigenic determinants</one>. URL: https://en.wikipedia.org/wiki/Epitopes
318
+ - <one>Serum IgA</one> (<one>sIgA</one>) <two>found in secretions</two> contains which two proteins that are associated with it? (1) a <one>J chain</one> (2) the <one>secretory piece</one>
319
+ - <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
320
+ - <one>Disulfide linkers</one> are typically <two>cleaved</two> <three>how and where</three>? They are typically cleaved by <one>glutathione</one>, in the <two>endosome</two>.
321
+ - 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>.
322
+ - Name <one>three potential disadvantages</one> of <two>Fab fragments</two> in clinical use. A: (1) <one>no avidity</one> (2) <one>short half-life</one> (3) <one>no effector functions</one>
323
+ - A <one>tumor</one> may become nonresponsive to an antagonistic monoclonal antibody via ... ? Mutation, such as by mutation of a cellular receptor.
324
+ - The <one>monoclonal antibody</one> <two>cetuximab</two> is used for the treatment of metastatic ... ? <one>colorectal cancer</one>.
325
+ - <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
326
+ - 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>
327
+ - <one>Monoklonale Antikörper</one> die im Zuge der Immunszintigraphie verwendet werden, werden generell mit ... markiert. A: Mit <one>schwach radioaktiven Substanzen</one> markiert.
328
+ - The first biological assay for <one>IgE activity</one> was the <two>P-K reaction</two>. <three>Why this name</three>? 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
329
+ - A <one>single-chain Fv</one> <two>consists of which three components</two>, essentially? (1) <one>V-heavy</one> (2) <one>V-light</one> (3) a <one>linker</one>
330
+ - Is the <one>scFv</one> a <two>homodimer</two>? <one>No</one>, it is a (non-covalent) <two>heterodimer</two>.
331
+ - <one>Bevacizumab</one>, <two>ein monoklonaler Antikörper</two>, ist auch bekannt als ... ? <one>Avastatin</one>.
332
+ - 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
333
+ - 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
334
+ - Name <one>two amino acids</one> that are over-represented at antigen-binding sites in an antibody. A: (1) <one>Tyrosine</one> (<two>Y</two>) (2) <one>Arginine</one> (<two>R</two>)
335
+ - <one>How</one> can we <two>extend the half-life of nanobodies</two>? By <one>binding it to serum albumin</one>.
336
+ - The <one>IgM</one> molecule has a protein covalently bound via a <two>S-S bond</two>, called the <three>J chain</three>. <four>What is the primary function of this chain</four>? To polymerize the molecule into a <one>pentamer</one>.
337
+ - <one>Wann</one> zum Beispiel sind <two>bivalente Antikörper</two> nützlich? Wenn <one>zwei verschiedene Proteine</one> in der Zelle in <one>enge Nachbarschaft</one> gebracht werden sollen.
338
+ - Name <one>two different diseases</one> <two>that can generate large amounts of antibody</two>. A: (1) <one>multiple myeloma</one> (2) <one>polyclonal gammopathies</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
+ - How can <one>antibodies</one> <two>activate or stimulate phagocytes</two>? Through the <one>Fc receptors</one> on the <two>phagocyte</two> (<three>Fc-Gamma-RI Receptor</three>).
341
+ - If we wish to <one>produce monoclonal antibodies</one>, <two>which cells may we typically employ here</two>? <one>CHO cells</one>.
342
+ - Nenne <one>zwei typische</one> <two>Trägerproteine für Haptene</two>. A: (1) <one>Bovines Serum Albumin</one> (<one>BSA</one>) (2) <one>Thyreoglobulin</one>
343
+ - 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>.
344
+ - <one>Epitopes</one> typically <two>tend to have which amino acids</two>? <one>Hydrophilic aminoacids</one>.
345
+ - In der Biotechnologie: <one>welches Ziel</one> verfolgen wir mit einem <two>scFv-Fragment</two> oft? Ein bestimmtes Zielmolekül mit Hilfe dieses <one>scFv-Fragments</one> zu erkennen.
346
+ - In <one>2017</one>, give or take: <two>how many different monoclonal Antibodies have been approved by the EMA and the USFDA</two>? More than <one>40</one>.
347
+ - The first cleavable linkers used were <one>acid-cleavable linkers</one>. <two>What was their major disadvantage</two>? They showed a <one>limited stability in the serum</one>.
348
+ - <one>When</one> was the antibody <two>IgE</two> actually identified? In the year <one>1966</one>.
349
+ - Monoclonal antibodies: <one>-zumab</one> versus <one>-umab</one> - <two>which ones are more human</two>? (1) <one>-umab</one> refers to <two>human monoclonal antibodies</two> (2) <one>-zumab</one> refers to <two>humanized monoclonal antibodies</two>.
350
+ - In the genes for antibodies, we have <one>CDR1</one> and <one>CDR2</one> and <one>CDR3</one>. <two>Which area comes before these three</two>? The <one>framework regions</one> - aka <two>framework region 1</two>, <two>framework region 2</two> and <two>framework region 3</two>.
351
+ - In order to <one>synthesize monoclonal antibodies</one>, <two>which two cells have to be fused together</two>? (1) <one>antibody-producing B cells</one> (2) <one>myeloma cells</one>
352
+ - Give <one>two reasons</one> as to why early efforts to <two>generate bispecific antibodies</two> failed. A: (1) <one>low production yields</one> (2) a <one>lack of stability</one>
353
+ - If a human being lacks <one>IgG2</one> antibodies, <two>which infection type may increase as a consequence</two>? <one>Infection with</one> <two>encapsulated bacteria</two>.
354
+ - <one>How</one> do we make <two>polyclonal antibodies</two> 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).
355
+ - The suffix <one>-omab</one> for a monoclonal antibody means ... ? This must be a <one>murine monoclonal antibody</one>.
356
+ - 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
357
+ - 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.
358
+ - The <one>molecular weight</one> <two>of a typical IgG molecule</two> is, on average, about ... <two>n kDa</two>? ~<one>150 kDa</one>.
359
+ - <one>Welcher Antikörper</one> liegt typischerweise als ein <two>Dimer</two> vor? <one>IgA</one>. URL: https://de.wikipedia.org/wiki/Immunglobulin_A
360
+ - <one>Which company</one> created the <two>Nanobodies</two>? <one>Ablynx</one>. URL: https://en.wikipedia.org/wiki/Ablynx
361
+ - <one>Circulating IgM</one> <two>has a half-life of about n days</two>? <one>4 days</one>.
362
+ - 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>.
363
+ - Was sind <one>S-Antikörper</one>? Antikörper gegen das <one>Spike-Protein</one> eines Virus.
364
+ - 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>.
365
+ - 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
366
+ - <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>.
367
+ - <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>.
368
+ - <one>Which company</one> developed the <two>SEEDbody</two>? <one>EMD Serono</one>. URL: https://en.wikipedia.org/wiki/Merck_Serono
369
+ - <one>Protective antibodies</one> against <two>viruses</two> recognize ... ? <one>Viral coat proteins</one>.
370
+ - What is <one>sIgA</one>? This refers to <one>secretory IgA</one>. URL: https://en.wikipedia.org/wiki/Immunoglobulin_A
371
+ - <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>
372
+ - Which <one>IgG subclass</one> can <lightseagreen>NOT</lightseagreen> activate the <two>classical complement pathway</two>? <one>IgG4</one>.
373
+ - Für die <one>Produktion von monoklonalen Antikörper</one>: <two>was genau benötigen wir von der Maus</two>? Die <one>Milzzellen</one>.
374
+ - <one>Mutations outside of the CDR-loops</one> are also called ... ? <one>framework mutations</one>.
375
+ - Besitzt das <one>dsFV-Fragment</one> einen <two>Linker</two>? <one>Nein</one> - nur eine <two>Disulfidbrücke</two> zwischen den beiden Fragmenten.
376
+ - 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>.
377
+ - <one>scFv-Fragment</one>: Größe dieses Fragments, <two>in kDa</two>? Etwa <one>27 kDa</one>. URL: https://blog.allelebiotech.com/tag/scfv/
378
+ - 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
379
+ - Wo beziehungsweise durch wen werden <one>rekombinante Antikörper</one> produziert? In/durch <one>Bakterien</one> - oder durch <two>Zellen in Zellkultur</two>.
380
+ - <one>Welcher Antikörper</one> wird von <two>Säugetieren</two> am meisten (quantitativ betrachtet) produziert? <one>IgA</one>.
381
+ - The <one>Fc fragment</one> of <two>a typical IgG</two> corresponds to which domains? (1) <one>CH₂</one> (2) <one>CH₃</one>
382
+ - 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>
383
+ - <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.
384
+ - 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>.
385
+ - 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>.
386
+ - 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
387
+ - 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>).
388
+ - Why is it desired to have antibodies that display <one>good tissue movement</one>? So that these antibodies can <one>infiltrate into tumors</one>.
389
+ - Name an important function of the <one>C domain of the antibodies</one>. A: <one>Complement binding</one>.
390
+ - 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>.
391
+ - The <one>D-segments</one>, aka <two>diversity gene segments</two>, code for ... ? The <one>third hypervariable region</one>.
392
+ - 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>.
393
+ - What means <one>humAb</one>? This refers to a <one>human monoclonal antibody</one>. URL: https://en.wikipedia.org/wiki/Monoclonal_antibody#Human_antibodies
394
+ - Ein <one>bispezifischer Antikörper</one> besteht aus ... ? Zwei verschiedenen <one>scFv-Fragmenten</one>. URL: https://de.wikipedia.org/wiki/Bispezifischer_Antik%C3%B6rper
395
+ - The <one>hinge-region of an antibody</one> is rich in which particular <two>aminoacid</two>? <one>Proline</one>.
396
+ - 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
397
+ - 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
398
+ - 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>.
399
+ - 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
400
+ - Most typically, <one>antibody fragments</one> such as <two>scFv</two> are <three>expressed in which organism</three>? In <one>E. coli</one>.
401
+ - An <one>antibody's heavy chain</one> contains <two>n constant domains</two>? <one>3-4</one>.
402
+ - Human serum <one>IgM</one> antibodies have <two>how many glycosylation sites on the heavy chain</two>? <one>5</one>.
403
+ - The <one>Immuno-PCR</one> relies on the use of an antibody which has been <two>conjugated</two> to ... ? An <one>oligonucleotide</one>.
404
+ - The <one>first cleavable linkers</one> used were ... ? <one>Acid-cleavable linkers</one>. URL: https://www.sciencedirect.com/science/article/pii/S2211383521001143
405
+ - 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.
406
+ - Der <one>Mensch</one> hat <two>welche Subklassen von IgA</two>? (1) <one>IgA1</one> (2) <one>IGA2</one>
407
+ - <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.
408
+ - 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
409
+ - 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
410
+ - 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
411
+ - 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>).
412
+ - <one>Where</one> could <two>monomeric IgM</two> be bound? <one>Membrane-bound</one>, <two>on B cells</two>.
413
+ - <one>IgE</one> has a <two>half-life</two> of about n days when circulating? About <one>2 days</one> only.
414
+ - 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.
415
+ - 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
416
+ - 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.
417
+ - A human produces n gram of <one>secretory IgA</one> every day? <one>5g - 15g</one>.
418
+ - 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.
419
+ - Von den verschiedenen <one>IgG Unterklassen</one>: <two>welche ist am größten, physisch betrachtet</two>? <one>IgG3</one>.
420
+ - In <one>antibody engineering</one>: what does the abbreviation <two>ADAs</two> stand for? <one>Antidrug antibodies</one>.
421
+ - Name a very well known <one>motif</one> in antibodies. A: The <one>immunoglobulin fold</one>. URL: https://en.wikipedia.org/wiki/Immunoglobulin_domain
422
+ - 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>
423
+ - 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
424
+ - 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.
425
+ - <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
426
+ - 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>.
427
+ - 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>.
428
+ - <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>.
429
+ - The presence of <one>multiple identical determinants</one> in an antigen is referred to as ... ? <one>Polyvalency</one> / <one>Multivalency</one>.
430
+ - 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
431
+ - 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>
432
+ - What could be another word for an <one>immunoconjugate</one>? <one>Antibody-drug conjugate</one>. URL: https://en.wikipedia.org/wiki/Antibody-drug_conjugate
433
+ - 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>.
434
+ - <one>Which antibody</one> is typically called to be <two>heat-labile</two>? <one>IgE</one>.
435
+ - Das <one>adaptive Immunsystem</one> kann <two>n verschiedene Antikörper</two> produzieren? <one>10⁸</one>.
436
+ - Name the two general <one>types</one> of epitopes. A: (1) <one>linear epitopes</one> (2) <one>discontinuous epitopes</one>
437
+ - 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>.
438
+ - Name an <one>anti-VEGF</one> <two>monoclonal antibody</two>. A: <one>Avastin</one>. URL: https://de.wikipedia.org/wiki/Avastin
439
+ - 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
440
+ - 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>.
441
+ - Can <one>antibodies</one> <two>cross the plazenta barrier</two>? Yes - see <one>Rh-negative</one> and <one>Rh-positive</one> mother/offspring situations.
442
+ - Do we find <one>IgD-dimers</one>? No - <one>IgD</one> is only found as <two>a monomer</two> (at the least in humans).
443
+ - <one>Which cells</one> have <two>Fc receptors</two> for <three>IgE</three>? <one>Eosinophils</one>. URL: https://en.wikipedia.org/wiki/Eosinophil
444
+ - 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>
445
+ - 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.
446
+ - Name a <one>hapten</one> that was used by <two>Karl Landsteiner</two>. A: <one>Aminobenzene</one>. URL: https://en.wikipedia.org/wiki/Aminobenzene
447
+ - 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>.
448
+ - <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.
449
+ - 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.
450
+ - 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.
451
+ - <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>).
452
+ - 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>
453
+ - The <one>antigen-antibody interactions</one> occur in <two>n stages</two>? <one>Three</one> (<two>3</two>).
454
+ - 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
455
+ - <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>.
456
+ - <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
457
+ - <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>
458
+ - <one>ADCC</one> (<two>antibody dependent cell-mediated cytotoxicity</two>) <three>was first described in which year</three>? In <one>1967</one>.
459
+ - <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
460
+ - <one>Lipids</one> <two>can stimulate the production of which antibody</two>, in the human body? <one>IgM</one>.
461
+ - 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.
462
+ - 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>
463
+ - In a <one>typical IgG molecule</one>, the <two>CL domain</two> is paired with ... ? The <one>CH1 domain</one>.
464
+ - 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>.
465
+ - <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
466
+ - <one>Humanized antibodies</one> are human antibodies that contain <two>mouse-derived CDRs</two> ... where? In their <one>variable regions</one>.
467
+ - Der <one>monoklonale Antikörper</one> <two>Herceptin</two> bindet an ...? <one>HER2-Rezeptoren</one>. URL: https://en.wikipedia.org/wiki/HER2/neu
468
+ - <one>Plasma cells</one> <two>produce and release about n antibodies per second</two>? About <one>2.000 antibodies per second</one>.
469
+ - 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
470
+ - 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>.
471
+ - <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>
472
+ - <one>Circulating IgA</one> has a <two>half-life</two> of about n days? <one>3 days</one>.
473
+ - For <one>murine monoclonal antibodies</one>, what is the <two>suffix</two>? <one>-omab</one> (<two>-o-</two>).
474
+ - 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>)
475
+ - <one>Bence-Jones proteins</one> are essentially ... ? <one>Immunoglobulin L-chains</one>. URL: https://en.wikipedia.org/wiki/Bence_Jones_proteins
476
+ - 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
477
+ - 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.
478
+ - 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
479
+ - 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>
480
+ - <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.
481
+ - 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>
482
+ - 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>.
483
+ - 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.
484
+ - <one>Which antibody</one> is also known as <two>11S immunoglobulin</two>? <one>sIgA</one> - aka <two>secretory IgA</two>.
485
+ - 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>.
486
+ - <one>Where</one> may <two>epitope mapping</two> be useful? For <one>vaccine development</one>.
487
+ - 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
488
+ - 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>.
489
+ - <one>Wodurch</one> wird die Antikörperklasse festgelegt? Durch die <one>konstante Region der schweren Immunglobulinkette</one>.
490
+ - <one>Welche zwei Klassen von Proteinen</one> können <two>im Blutserum</two> unterschieden werden? (1) <one>Albumine</one> (2) <one>Globuline</one>
491
+ - Sind <one>Globuline</one> wasserlöslich? Nein, sie sind salzlöslich.
492
+ - <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>.
493
+ - In <one>flow cytometry</one>: <two>which type of antibodies are typically used</two>? <one>Fluorescent antibodies</one>.
494
+ - 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.
495
+ - <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>).
496
+ - <one>Nanobodies</one> could be <two>used against which disease</two>? <one>Nanobodies</one> could be used against the <two>Parkinson disease</two>.
497
+ - <one>Epitopes</one> are generally divided into which <two>two general classes</two>? (1) <one>linear</one> (2) <one>conformational</one>
498
+ - 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>
499
+ - 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>.
500
+ - How many <one>different heavy chain constant regions</one> are known to exist for the <two>heavy antibody chains</two>? <one>5</one>.
501
+ - <one>Fab-Fragmente</one> werden hergestellt durch ... im Bereich ... ? <one>proteolytische Spaltung</one> ... im Bereich der <one>hinge-Region</one>.
502
+ - 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
503
+ - 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
504
+ - Können <one>Antikörper</one> die <two>Blut-Hirn-Schranke</two> durchqueren? <one>Nein</one>.
505
+ - 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>.
506
+ - <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.
507
+ - Name a <one>mammalian cell platform for antibody selection</one>. A: <one>IONTAS</one>. URL: https://www.iontas.co.uk/
508
+ - 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>
509
+ - <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
510
+ - Are <one>mAbs</one> <two>toxic</two> for the cells that express them? Usually not.
511
+ - <one>IgG</one> bound to an antigen can bind to which receptor? <one>FcRs</one>: <two>gamma heavy chain-specific Fc receptors</two>.
512
+ - 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>.
513
+ - Do <one>antibody microarrays</one> exist? <one>Yes</one>. URL: https://en.wikipedia.org/wiki/Antibody_microarray
514
+ - <one>Wo</one> finden wir die <two>Effektorfunktion eines Antikörpers</two>? Im <one>Fc-Teil</one>.
515
+ - <one>Epitopes</one> formed by several <two>adjacent amino acid residues</two> are called ... ? <one>Linear determinants</one>.
516
+ - What was the <one>first fully human antibody product from transgenic mice</one>? <one>Panitumumab</one> (<two>Panitum-u-mab</two>).
517
+ - 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.
518
+ - In general: <one>which antibody types</one> can <two>activate the classical complement pathway</two>? (1) <one>IgG</one> (2) <one>IgM</one>
519
+ - 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.
520
+ - <one>Halbwertszeit</one> von <two>IgG</two> im menschlichen Körper? <one>21 Tage</one> - also <two>drei Wochen</two>.
521
+ - 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>.
522
+ - <one>Where</one> in a typical <two>IgG</two> antibody can we find the CDRs? In <one>VH</one> and <one>VL</one>.
523
+ - In antibody engineering: the <one>FcRn</one> is ... ? The <one>neonatal Fc receptor</one>. URL: https://en.wikipedia.org/wiki/Neonatal_Fc_receptor
524
+ - Do <one>antibody microarrays</one> exist? <one>Yes</one> they do.
525
+ - <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>.
526
+ - 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
527
+ - <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
528
+ - Give another name for <one>humanized antibodies</one>. A: <one>CDR-grafted antibodies</one>.
529
+ - 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>.
530
+ - <one>Infliximab</one> is <two>what kind of antibody</two>? <one>Infliximab</one> is a <two>chimeric monoclonal antibody</two>.
531
+ - 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
532
+ - 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
533
+ - Are <one>monovalent antibody fragments</one> secreted through the <two>kidneys</two>? <one>Yes</one>.
534
+ - The complement protein <one>C1q</one> <two>can bind to which two antibodies</two> in particular? (1) <one>IgG</one> (2) <one>IgM</one>
535
+ - 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
536
+ - 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.
537
+ - <one>Which antibody</one> is generally thought to have been <two>the first to appear during evolution</two>? <one>IgM</one>.
538
+ - 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>.
539
+ - 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>
540
+ - <one>Welches spezifische Antigen</one> wird bei der <two>Blutgruppe AB</two> gebildet? <one>Keines</one>.
541
+ - <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.
542
+ - <one>IgM</one> has how many <two>identical binding domains</two>? <one>10</one>.
543
+ - 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
544
+ - 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
545
+ - 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
546
+ - 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.
547
+ - Mit welcher <one>Technik</one> kann der <two>KD-value eines Antikörpers</two> bestimmt werden? Mit Hilfe eines <one>indirekten ELISAs</one>.
548
+ - Besitzt <one>DNA</one> eine <two>antigene Wirkung</two>? Unter bestimmten Umständen <one>ja</one>.
549
+ - 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>
550
+ - <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
551
+ - The number of <one>different</one> kinds of antibody molecules that a human can generate is about ... ? <one>2.5 x 10⁷</one>.
552
+ - 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>.
553
+ - Does <one>IgD</one> bind <two>complement</two>? <one>No</one>.
554
+ - 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>.
555
+ - How to <one>improve the half-life of an antibody</one>? Attach <one>Polyethylene glycol</one> (<two>PEG</two>) to it.
556
+ - 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
557
+ - 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
558
+ - Was sind <one>Abzyme</one>? <one>Abzyme</one> sind <two>katalytisch wirksame Antikörper</two>. URL: https://en.wikipedia.org/wiki/Abzyme
559
+ - <one>IgG</one> can bind to <two>FcRn</two> - but <three>where does it do so</three>, exactly? In an <one>endosome</one>.
560
+ - 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>).
561
+ - 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
562
+ - <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
563
+ - <one>Bevacizumab</one>, <two>a humanized mAb</two>, is used to treat ... ? <one>Various tumors</one>.
564
+ - <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>.
565
+ - 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
566
+ - Does <one>a humanised monoclonal antibody</one> contain more human parts than <one>a chimeric monoclonal antibody</one>? Yes.
567
+ - Are the <one>IgG's</one> monomers? Yes.
568
+ - 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>
569
+ - 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>.
570
+ - <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>.
571
+ - 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>
572
+ - Is it possible to <one>patent</one> <two>the precise definition of an epitope</two>? <one>Yes</one>.
573
+ - In antibody-drug conjugates: <one>when</one> are the <two>table linkers</two> released? Only <one>after complete degradation of the antibody</one>.
574
+ - Was ist ein <one>diabody</one>? Dies sind <one>zwei scFv-Fragmente</one>, die mit Hilfe eines <one>linkers</one> miteinander verbunden sind.
575
+ - 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>).
576
+ - 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>.
577
+ - 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>.
578
+ - <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>.
579
+ - 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".
580
+ - 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>
581
+ - <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>.
582
+ - 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>
583
+ - 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>.
584
+ - 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.
585
+ - 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.
586
+ - Wie entfernt der menschliche Körper <one>Immunkomplexe</one> aus Antikörpern und Viruspartikeln? <one>Makrophagen</one> und <one>neutrophile Granuloycten</one> phagozytieren diese.
587
+ - The antibody <one>recognizes</one> an antigen via ... ? <one>The Fab's variable region</one>.
588
+ - Name an antibody with a <one>CH₄ domain</one>. A: <one>IgM</one>. URL: https://en.wikipedia.org/wiki/Immunoglobulin_M
589
+ - <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>.
590
+ - <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
591
+ - The <one>first monoclonal antibody</one> approved by the <three>FDA</three> occurred in which year? In <one>1986</one>.
592
+ - 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.
593
+ - 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>
594
+ - There is one antibody that <one>binds to Fc-receptors</one>, without having bound any antigen. Which one is it? <one>IgE</one>.
595
+ - 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>.
596
+ - The <one>names given to antibodies</one>, such as <two>IgG</two> or <two>IgE</two>, is based on ... ? The <one>migration distance</one>.
597
+ - Name the two most popular (that is, most widely used) <one>antibody fragments</one>. A: (1) <one>Fab</one> (2) <one>scFv</one>
598
+ - 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>.
599
+ - 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
600
+ - Name an <one>in-vivo method</one> used in combination with antibodies. A: <one>Immunoscintigraphy</one>. URL: https://en.wikipedia.org/wiki/Immunoscintigraphy
601
+ - 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>.
602
+ - A typical immunoglobulin has a <one>Fc region</one> containing a <two>N-linked glycosylation site</two> at residue ... ? <one>297</one>.
603
+ - 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>.
604
+ - 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>.
605
+ - Name an <one>approved therapeutic radiolabeled antibody</one>. A: <one>Zevalin</one>. URL: https://de.wikipedia.org/wiki/Ibritumomab-Tiuxetan
606
+ - 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.
607
+ - 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>.
608
+ - 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
609
+ - Nenne einen Vorteil <one>rekombinanter Antikörper</one>. A: Sie lassen sich auch ohne Immunisierung <one>in-vitro</one> gewinnen.
610
+ - 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
611
+ - 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
612
+ - <one>Antibody genes</one> are re-organized in a <two>process</two> called ... ? <one>Class switching</one>.
613
+ - 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.
614
+ - Name a modification that the <one>Ig heavy chains</one> go through. A: <one>N-glycosylation</one>.
615
+ - 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>
616
+ - How are the four <one>IgG-subclasses</one> <two>ordered</two>/<two>numbered</two>? According to their <one>decreasing, average serum concentration</one>.
617
+ - 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
618
+ - 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>
619
+ - 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
620
+ - 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.
621
+ - Name a <one>yeast platform for antibody selection</one>. A: <one>Adimab</one>.
622
+ - <one>Humanized antibodies</one> are human antibodies that have ... in their variable regions. A: <one>mouse-derived CDRs</one>.
623
+ - 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>
624
+ - <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>.
625
+ - 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>
626
+ - Name one <one>receptor</one> for the <two>IgE Antibodies</two>. A: <one>Fc-Epsilon-RI</one>.
627
+ - 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>.
628
+ - Was sind <one>humanisierte Antikörper</one>? Dies sind Antikörper, die <one>Teile aus verschiedenen Lebewesen enthalten</one>.
629
+ - The <one>scFv</one> (<two>single-chain Fv</two>) consists of which two chains/domains? (1) <one>VH</one> (2) <one>VL</one>
630
+ - 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.
631
+ - Ist die <one>Antigen-Antikörper Reaktion</one> eine <two>Gleichgewichtsreaktion</two>? Ja.
632
+ - 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>.
633
+ - <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>.
634
+ - <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>.
635
+ - The sizes of <one>antigen-antibody complexes</one> are a function of ... ? The <one>relative concentrations of antigen and antibody</one>.
636
+ - 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>.
637
+ - 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>.
638
+ - 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>.
639
+ - The <one>antibody IgE</one> has how many <two>glycosylation sites</two>? <one>6</one>.
640
+ - 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>.
641
+ - From the different <one>IgG subtypes</one>: which one among them is <two>the best opsonin</two>? <one>IgG1</one>.
642
+ - 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.
643
+ - 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>.
644
+ - 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>.
645
+ - 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/
646
+ - 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).
647
+ - 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.
648
+ - <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>
649
+ - 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
650
+ - Der Vorläufer einer <one>Hybridomzelle</one> ist ... ? Eine <one>Myelomzelle</one>. URL: https://de.wikipedia.org/wiki/Hybridom-Technik
651
+ - Nenne <one>zwei Nachteile polyklonaler Antikörper</one>. A: (1) <one>kein reines Reagens</one> (2) <one>individuelle Unterschiede</one>
652
+ - 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>.
653
+ - 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.
654
+ - What may we refer to with the word <one>Immunoliposome</one>? This is a <one>scFV</one> and a <one>liposome</one>.
655
+ - Beim <one>scFv-Fragment</one>: wie lang ist das <two>linker-peptide</two>? Etwa <one>15-20</one> Aminosäuren lang.
656
+ - 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.
657
+ - How is the <one>J chain</one> connected to <two>IgM</two>? It is connected via a <one>-S-S- bond</one>.
658
+ - <one>CH3</one> of <two>IgG</two> may also be involved in M ... ? <one>Macrophage Binding</one>.
659
+ - 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
660
+ - 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>
661
+ - 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
662
+ - 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.
663
+ - 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>.
664
+ - 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>).
665
+ - Welche <one>natürlichen Antikörper</one> besitzen <two>J-Ketten</two>? (1) <one>IgM-Pentamer</one> (2) <one>IgA-Dimer</one>
666
+ - 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
667
+ - 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.
668
+ - 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
669
+ - The <one>ADCC response</one> (<two>antibody-dependent cellular cytotoxicity</two>) is especially important to combat ... ? <one>Tumour cells</one>.
670
+ - <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
671
+ - 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>.
672
+ - 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
673
+ - 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.
674
+ - <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>).
675
+ - Warum hat <one>IgM</one> diese <two>pentamere Struktur</two>? Sie <one>verklumpen</one> dadurch besonders gut mit den Mikroorganismen die sie gebunden haben.
676
+ - 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>.
677
+ - The <one>immune checkpoint therapy</one> is used primarily to treat ... ? <one>Cancer</one>.
678
+ - 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.
679
+ - Give another name for <one>antisera</one>, as it was used in <two>1895</two> by Kitasato and Behring. A: <one>Polyclonal antibodies</one>.
680
+ - 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.
681
+ - 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>
682
+ - Was meinen wir mit der Abkürzung <one>pIgR</one>? <one>Polymeric immunoglobulin receptor</one>. URL: https://en.wikipedia.org/wiki/Polymeric_immunoglobulin_receptor
683
+ - 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.
684
+ - What are <one>anti-idiotype antibodies</one>? These are <one>antibodies against the binding domain of another antibody</one>.
685
+ - 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>
686
+ - 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.
687
+ - 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.
688
+ - Why are <one>monoclonal antibodies</one> named that way? Because they all <one>recognize the same type of antigene</one>.
689
+ - 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>.
690
+ - 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>
691
+ - 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
692
+ - 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
693
+ - 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.
694
+ - 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>
695
+ - <one>Idiotypes</one> are antibody-variants caused by <two>structural heterogeneity</two> in the antibody ... ? <one>V regions</one>.
696
+ - 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.
697
+ - 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>
698
+ - Was ist das grösste Problem bei der <one>Lagerung von Antikörpern</one>? Der <one>Verlust der Antikörperaktivität</one>.
699
+ - Nenne ein Einsatzgebiet <one>rekombinanter Antikörper</one>. A: Als <one>Immuntherapie gegen Krebs</one>.
700
+ - What are <one>antibody mimetics</one>? <royalblue>Antibody mimetics</royalblue> are <one>organic compounds</one> that, like antibodies, can specifically bind antigens - but that <one>are not structurally related to antibodies</one>.
701
+ - Give another name for the <one>hybridoma technique</one>. A: <one>Somatic cell hybridization</one> technique.
702
+ - Was sind <one>bispezifische Antikörper</one>? Dies sind Antikörper, bei denen jede der beiden Bindungsstellen ein verschiedenes Antigen binden kann.
703
+ - What is the major role of the <one>Fab fragments</one>? <one>Antigen binding</one>. URL: https://en.wikipedia.org/wiki/Fragment_antigen-binding
704
+ - 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.
705
+ - Why are <one>nanobodies</one> considered to be so useful in medicine? Because they <one>show a very good tissue penetration in-vivo</one>.
706
+ - Nenne ein mögliches Einsatzgebiet eines <one>diabody</one>. A: Wir könnten <one>Toxine</one> gezielt zu Krebszellen transportieren.
707
+ - What do we mean with <one>conjugated monoclonal antibodies</one>? These are monoclonal antibodies that can transport agents directly to cancer cells.
708
+ - <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>.
709
+ - Name an extremely important feature of a <one>monovalent antibody fragment</one>. A: It <one>may show an increased tissue permeability</one>.
710
+ - 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.
711
+ - Give an example how <one>neoantigenic determinants</one> can arise. A: They can be created due to <one>proteolysis</one>.
712
+ - Wieso möchten wir <one>rein humane monoklonale Antikörper</one> herstellen? Diese induzieren KEINE <one>anti-Antikörper</one> mehr.
713
+ - <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>.
714
+ - Name a typical role of <one>IgA</one>. A: IgA concentrates in body fluids <one>to guard the entrances of the body</one>.
715
+ - For the generation of monoclonal antibodies, we take which type of cell from the <one>mouse</one>? <one>B-Lymphocytes</one>.
716
+ - <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 []
717
+ - Ist <one>IgG</one> <two>plazentagängig</two>? <one>Ja</one> - <two>IgG</two> ist ein <three>sehr kleiner Antikörper</three>. []
718
+ - <one>Emicizumab</one> <two>is used for the treatment of h... </two>? <one>Haemophilia A</one>. []
719
+ - Do the <one>CH3 domains</one> in a typical <two>IgG</two> antibody <three>pair with one other</three>? <one>Yes</one>. []
720
+ - <one>Antibodies</one> are <two>what kind of proteins</two>? <one>Antibodies</one> are <two>Glycoproteins</two>. URL: https://en.wikipedia.org/wiki/Antibody []
721
+ - The <one>coating of target cells with antibodies</one> <two>is called ... </two>? <one>Opsonization</one>. URL: https://en.wikipedia.org/wiki/Antibody_opsonization []
722
+ - Is <one>phage display</one> <two>used to engineer antibodies for pharmaceutical use</two>? <one>Yes</one>. []
723
+ - 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>. []
724
+ - Can the <one>MAC</one> (<two>membrane-attack complex</two>) <three>lead to the lysis of tumour cells</three>? <one>Yes</one>. []
725
+ - How is the area <one>between</one> the <two>hypervariable region</two> of a typical antibody called? This is the so-called <one>framework region</one>. URL: https://en.wikipedia.org/wiki/Framework_region []
726
+ - <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>) []
727
+ - <one>Welcher Antikörper</one> wurde zuerst zur <two>Behandlung von Brustkrebs</two> eingesetzt? <one>Herceptin</one>. URL: https://en.wikipedia.org/wiki/Trastuzumab []
728
+ - <one>Which Immunoglobulin</one> can <two>agglutinate viral particles</two> <three>especially well</three>? <one>IgM</one>. []
729
+ - <one>Andere Bezeichnung für</one> die <two>Bindungsstärke eines Antikörpers</two>? <one>Avidität</one> - zumindest bei einem multivalenten Antikörper. URL: https://de.wikipedia.org/wiki/Avidit%C3%A4t []
730
+ - <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>. URL: https://en.wikipedia.org/wiki/Paul_Ehrlich []
731
+ - <one>Welche Antikörpergruppe</one> führt zu <two>allergischen Reaktionen vom Soforttyp</two>? Die <one>Immunglobulinklasse E</one> (<two>IgE</two>). []
732
+ - <one>Since when</one> is it possible to <two>produce monoclonal antibodes</two>? Since as of the year <one>1975</one>. []
733
+ - Nenne einen typischen <one>Früh-Antikörper</one>. A: <one>IgM</one>. URL: https://de.wikipedia.org/wiki/Immunglobulin_M []
734
+ - Does the <one>human circulating antibody repertoire</one> retain specificity to <two>self</two> proteins? <one>No</one> - <two>at the least not normally</two>. []
735
+ - <one>scFv</one> <two>were originally created to ... </two>? <one>Facilitate phage display</one>. Here it is very convenient to <two>express the antigen-binding domain as a single peptide</two>. []
736
+ - Which <one>IgG subclasses</one> <two>exist in the human species</two>? (1) <one>IgG1</one> (2) <one>IgG2</one> (3) <one>IgG3</one> (4) <one>IgG4</one> []
737
+ - <one>Mastzellen</one> haben an ihrer Oberfläche Rezeptoren für <two>welches Immunglobulin</two>? Für das Immunglobulin <one>IgE</one>. URL: https://de.wikipedia.org/wiki/Immunglobulin_E []
738
+ - <one>Which antibody</one> is <two>the most important one for</two> <three>allergy-based immune reactions</three>? The <one>IgE antibody</one>. URL: https://en.wikipedia.org/wiki/Immunoglobulin_E []
739
+ - Can <one>Protein A</one> <two>bind to monoclonal antibodies</two>? <one>Yes</one>. []
740
+ - 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>. []
741
+ - <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>). []
742
+ - In <one>ADCs</one> (<two>antibody-drug conjugates</two>) we can sometimes see <three>hydrazone</three> used in the linker. <four>How many N-atoms</four> do <three>hydrazones</three> <four>typically contain</four>? <one>Two</one>. []
743
+ - Die <one>Leihimmunität</one> <two>von Mutter-zu-Kind</two>, <three>über die Plazenta</three>, <four>wird über welches Immunglobulin vermittelt</four>? <one>IgG</one>. []
744
+ - The <one>hybridomas</one> created in <two>1975</two>: <three>do they secrete antibodies in culture</three>? <one>Yes</one>. []
745
+ - <one>Anti-Rh antibodies</one> <two>belong to which immunoglobulin class</two>? <one>IgG</one>. []
746
+ - Besitzt das <one>scFV-Fragment</one> einen <two>Linker</two>? <one>Ja</one>. []
747
+ - 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 []
748
+ - Can <one>antibodies</one> be used to <two>identify DNA-binding proteins</two>? <one>Yes</one>. []
749
+ - Jeder <one>IgG-Antikörper</one> besteht aus <two>n Untereinheiten</two>? <one>4</one>. []
750
+ - Warum der Name <one>D segments</one> im Antikörper <two>CDR3 segment</two>? <one>D</one> ... steht für <two>diversity</two>. []
751
+ - <one>Welche Person</one> entdeckte die <two>Antikörper</two>? <one>Emil von Behring</one>. URL: https://en.wikipedia.org/wiki/Emil_von_Behring []
752
+ - <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 []
753
+ - In <one>phage display</one>, we may have <two>a phagemid</two> and <two>a helper phage</two>. <three>Can the helper phage reproduce</three>? <one>Yes</one>. []
754
+ - Kann <one>IgG</one> die <two>Plazentaschranke</two> <three>überqueren</three>? <one>Ja</one> - mit Hilfe bestimmter <two>Transportrezeptoren</two>. []
755
+ - In <one>antigen-binding</one>: does the <two>Vh domain</two> or the <two>Vl domain</two> <three>contribute more</three>? The <one>Vh domain</one> <three>contributes more</three>, usually. []
756
+ - Can <one>IgM</one> bind to cells via their <two>Fc receptors</two>? <one>Yes</one> - <two>at the least to some of these cells</two>. []
757
+ - <one>Pollen antigens</one> are <two>combated by which</two> <three>Ig</three>? <one>IgE</one>. []
758
+ - <one>Human antibody-secreting cells</one> (<two>ASCs</two>) <three>can be immortalized by ... </three>? An <one>Epstein-Barr virus</one> (<two>EBV</two>) infection. []
759
+ - 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>. []
760
+ - What is the <one>diameter</one> of a typical (<two>IgG</two>) antibody, give or take? About <one>12nm</one>. []
761
+ - <one>Which antibody is</one> <two>the first one</two> that <three>is produced in a primary response to an antigen</three>? <one>IgM</one>. URL: https://de.wikipedia.org/wiki/Immunglobulin_M []
762
+ - Bei der <one>Herstellung polyklonaler Antikörper</one>: <two>wie werden die Tiere immunisiert</two>? Über eine <one>intramuskuläre Injektion</one> <two>unseres Antigens</two>. []
763
+ - Welches <one>Immunoglobulin-Molekül</one> <two>hat die längste Halbwertszeit</two> und wie lang ist diese? <one>IgG - und zwar etwa 3 Wochen</one> (also <two>21 Tage</two>). []
764
+ - What is a <one>sdAb</one>? This abbreviation refers to a <one>single-domain antibody</one>. URL: https://en.wikipedia.org/wiki/Single-domain_antibody []
765
+ - Was ist ein <one>Paratop</one>? Das Paratop ist der Teil des Antikörpers, der an das <one>Epitop</one> (eines Antigens) binden kann. URL: https://de.wikipedia.org/wiki/Paratop []
766
+ - In der <one>Allergieforschung</one> gibt es den <two>Prick-Test</two>. <three>Welcher Antikörper wird dadurch indirekt getestet</three>? <one>IgE</one>. URL: https://en.wikipedia.org/wiki/Skin_allergy_test []
767
+ - 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>. []
768
+ - <one>Nanobodies</one> can <two>not only be found in the camelidae</two> <three>but also in ... </three>? <one>Sharks</one>. URL: https://en.wikipedia.org/wiki/Single-domain_antibody#From_heavy-chain_antibodies []
769
+ - <one>Welcher Antikörper</one> spielt eine wichtige Rolle bei <two>Autoimmunkrankheiten</two>? <one>IgD</one>. URL: https://de.wikipedia.org/wiki/Immunglobulin_D []
770
+ - What is <one>the typical half-life</one> of an <two>IgM molecule</two>? About <one>5 days</one>, up to <one>10 days</one>. URL: https://www.ncbi.nlm.nih.gov/books/NBK555995/ []
771
+ - Can <one>vitamins</one> act as <two>haptens</two>? <one>Yes</one>. []
772
+ - <one>IgY</one> <two>kann</two>, zum Beispiel, <two>woraus isoliert werden</two>? Aus dem <one>Eigelb</one> (<two>Y</two> steht hier für <two>yolk</two>). []
773
+ - <one>Herceptin</one> erkennt <two>welchen Oberflächenrezeptor</two>? <one>HER2</one>. URL: https://en.wikipedia.org/wiki/HER2/neu []
774
+ - The <one>7S immunoglobulin</one> <two>is which antibody</two>? <one>IgG</one>. []
775
+ - 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/ []
776
+ - <one>Which antibody</one> is essentially the <two>BCR</two>? <one>IgD</one>. URL: https://en.wikipedia.org/wiki/Immunoglobulin_D []
777
+ - We have <one>IgG1</one>, <one>IgG2</one>, <one>IgG3</one> and <one>IgG4</one>. <two>Which one is the most efficient one in recruiting the</two> <three>alternative complement pathway</three>? <one>IgG4</one>. []
778
+ - What does the abbreviation <one>mAb</one> stand for? <one>Monoclonal antibody</one>. URL: https://en.wikipedia.org/wiki/Monoclonal_antibody []
779
+ - 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/ []
780
+ - Can the <one>Fab fragment</one> be expressed in <two>yeast</two>? <one>Yes</one>. []
781
+ - Is a <one>Fv fragment</one> <two>smaller than</two> an <one>Fab fragment</one>? <one>Yes</one>. []
782
+ - Beim <one>Menschen</one>: <two>welche Antikörper</two> <three>binden bevorzugt an</three> das <four>Protein G</four>? Die <one>IgG-Antikörper</one> (leicht zu merken!). []
783
+ - Does <one>IgD</one> <two>bind complement</two>? <one>No</one>. URL: https://en.wikipedia.org/wiki/Immunoglobulin_D []
784
+ - Which <one>cells</one> <two>make antibodies</two>? (1) <one>B cells</one> (2) <one>plasma cells</one> []
785
+ - <one>Reagiert</one> das humane Immunsystem gegen <two>monoklonale Antikörper</two>? <one>Ja</one>; dies <two>erschwert</two> auch die Behandlung von Krebs durch <three>Toxine</three>, die an Antikörper gebunden sind. []
786
+ - Can <one>antibodies against</one> <two>5-methyl-cytosine</two> be used? <one>Yes</one>, this is possible. []
787
+ - 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>. []
788
+ - The <one>total collection of antibodies with different specificities</one> <two>represents</two> the ... ? <one>antibody repertoire</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC7153836/ []
789
+ - Give another name for the <one>llama antibodies</one>, also <two>two words in length</two>. A: <one>Miniature antibodies</one>. []
790
+ - Are <one>immunglobulins</one> <two>glycoproteins</two>? <one>Yes</one>. []