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,1008 @@
1
+ # =========================================================================== #
2
+ # === Virologie tag (Basic Virology)
3
+ #
4
+ # Vir tag. Virus tag. Vi tag. Viro tag. Viren tag.
5
+ #
6
+ # Vakzinierung/Impfung wird langfristig in eine eigene Datei ausgelagert.
7
+ # =========================================================================== #
8
+
9
+ - Name <one>three diseases</one> that are caused by <two>Adenoviruses</two>. A: (1) <one>conjunctivitis</one> (2) <one>respiratory diseases</one> (3) <one>infant diarrhea</one>
10
+ - The <one>Epstein-Barr virus</one> <two>can lead to an infectious mononucleosis</two>. This is also called ... how? <one>Kissing disease</one>.
11
+ - Nenne <one>fünf Retrotransposons</one> <two>in verschiedenen Organismen</two>. A: (1) <one>MoMLV</one> (2) Rous sarcoma virus (3) Ty1 in Yeast (4) <one>Copia</one> <two>in Drosophila</two> (5) L1 in humans
12
+ - Nenne eine Virusgruppe, die den Menschen infizieren kann und das Phänomen der <one>Latenz</one> zeigen kann. A: Die <one>Herpesviren</one>. []
13
+ - <one>INRS</one> stehen für <two>vier Drogen die gegen AIDS eingesetzt werden</two>. <three>Welche sind dies</three>? A: (1) <one>Indinavir</one> (2) <one>Nelfinavir</one> (3) <one>Ritonavir</one> (4) <one>Saquinavir</one>
14
+ - If there is a <one>species barrier</one> <two>for viruses</two>, can we conclude something from this? That a human viral disease will rarely <one>originate from a zoonotic origin</one>.
15
+ - <one>SARS-CoV-2</one> produces two polyproteins, called <two>pp1a</two> and <two>pp1ab</two>. <three>How are the genes for these polyproteins called</three>? <one>ORF1a</one> and <one>ORF1b</one>.
16
+ - Das <one>HPV L1-Protein</one> <two>besteht aus wievielen Untereinheiten</two>? <one>5</one> - es ist ein <two>Pentamer</two>.
17
+ - Are <one>rabies viruses</one> <two>enveloped</two>? <one>Yes</one>. []
18
+ - Wie werden allgemein die <one>Untereinheiten der (viralen) Capside</one> genannt? <one>Capsomere</one>. URL: https://en.wikipedia.org/wiki/Capsomere []
19
+ - Can <one>superantigens</one> <two>be found in viruses</two>? <one>Yes</one>. []
20
+ - Nenne drei <one>Mechanismen</one> wie Viren evolvieren können. Gib jeweils ein Beispiel an. A: (1) <one>Mutation</one>: <two>HIV-1</two> (2) <one>Recombination</one>: <two>Poliovirus</two> (3) <one>Reassortment</one>: <two>Influenza</two>
21
+ - Die <one>Baculoviren</one> <two>können wieviel Fremd-DNA aufnehmen</two>? Bis ca. <one>15 kb</one>.
22
+ - Name <one>one important difference</one> between a <two>bacterial toxin</two> and a <two>virus</two>. A: A <one>virus can reproduce</one>.
23
+ - Name <one>four specific diseases</one> caused by <two>Picornaviruses</two>. A: (1) <one>common cold</one> (2) <one>polio</one> (3) hepatitis A (4) foot and mouth disease
24
+ - Compare the size of <one>polyoma</one> and <one>papillomavirus virions</one> (<two>their respective diameter</two>). A: (1) <one>Papillomavirus</one>: <two>50-55 nm</two> (2) <one>Polyomavirus</one>: <two>40-45 nm</two>
25
+ - The <one>rubella virus</one> <two>belongs to which family</two>? The <one>rubellavirus</one> belongs to the <two>Togaviridae</two>. URL: https://en.wikipedia.org/wiki/Rubella
26
+ - Nenne eine Virusgruppe die <one>IRES</one> <two>verwendet</two>, inklusive einem Vertreter hierzu. A: Das <one>Picorna-Virus</one> (zum Beispiel <two>Poliovirus</two> als ein Vertreter hierzu).
27
+ - <one>Warum</one> wird <two>Aspirin</two> <three>bei Virusinfektionen verwendet</three>? <one>Aspirin</one> wirkt als ein <two>entzündungshemmendes Schmerzmittel</two>.
28
+ - <one>Durchmesser des Tabakmosaikvirus</one>, <two>in nm</two>? Etwa <one>15-18 nm</one>.
29
+ - Das <one>Baltimore Scheme</one> <two>beginnt mit welcher Virusgruppe</two>? <one>dsDNA Viren</one>.
30
+ - Das <one>SV40 Genom</one> kodiert für das <two>large-T Antigen</two>. <three>Wie beeinflusst dieses Protein die Apoptose</three>? Es <one>inhibiert die Apoptose</one>.
31
+ - The <one>Hepatitis A virus</one> <two>belongs to which family</two>? The <one>Picornavirus family</one>.
32
+ - The <one>HongKong 1968 Influenza strain</one> <two>had which H-N- composition</two>? <one>H3N2</one>. URL: https://www.cdc.gov/flu/pandemic-resources/1968-pandemic.html []
33
+ - Does a <one>virus</one> <two>arise from a pre-existing virus</two>? <one>No</one> - at the least <two>never directly</two>.
34
+ - Was genau ist die <one>Wurfgröße</one> in der Virologie? Die <one>durchschnittliche Anzahl</one> der pro infizierten Zelle freigesetzten Phagen.
35
+ - The <one>ssDNA circoviruses</one> genome <two>codes for how many proteins</two>? For <one>two</one>. URL: https://en.wikipedia.org/wiki/Circovirus []
36
+ - <one>Which advantages</one> may <two>segmented genomes</two> have? A <one>more rapid evolution</one>.
37
+ - What does a virus <one>lose</one> <two>when it is effectively neutralized by an antibody</two>? Its <one>infectivity</one>. []
38
+ - Im Jahre <one>2014</one> <two>kam welcher neue Influenza-Stamm auf</two>? <one>H5N8</one>. URL: https://de.wikipedia.org/wiki/Vogelgrippe_H5N8
39
+ - <one>Auf welche Art</one> kann eine <two>aktive Immunisierung</two> <three>durchgeführt werden</three>? (1) <one>Lebendimpfstoff</one> (2) <one>Totimpfstoff</one>
40
+ - <one>Welchen Genom-Typ</one> besitzen die <two>Potyviren</two>? <one>Potyviren</one> sind <two>Pflanzenviren</two> mit einem <three>ss(+)-RNA Genom</three>.
41
+ - Bekanntester Vertreter der <one>Flaviviren</one>? Das <one>Gelbfiebervirus</one>. URL: https://de.wikipedia.org/wiki/Gelbfieber-Virus []
42
+ - Name a plasmid with <one>dual personality</one>. A: The <one>P1 plasmid</one>. <two>It can remain as a plasmid, or act as a lytic virus</two>.
43
+ - <one>Wieviele Viruspartikel</one> <two>des MKS-Virus</two> (Maul Klauenseuche) benötigen wir um ein Tier zu infizieren? Weniger als 10.
44
+ - <one>Rabies virus</one> <two>tend to use which cellular receptor for attachment</two>? The <one>acetyl-choline receptor</one>.
45
+ - The virions of <one>Adenoviruses</one> contain <two>spikes</two>. <three>How long can these spikes be</three>? Up to about <one>80 nm</one>.
46
+ - The <two>foot-and-mouth disease virus</two> has <one>Lpro</one>. <three>What is meant with that</three>? <one>Lpro</one> is <two>the leader proteinase</two>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4931897/
47
+ - Lateinisch für das <one>Rötelnvirus</one>? <one>Rubella</one>. URL: https://de.wikipedia.org/wiki/R%C3%B6telnvirus []
48
+ - When the <one>reverse transcriptase</one> <two>converts the viral RNA</two> (of a retrovirus infecting eukaryotic cells) into a proviral DNA, what is <three>lost</three>? The <one>poly-A tail</one>.
49
+ - <one>Iridoviruses</one> <two>can cause which disease</two>? <one>African swine fever</one>.
50
+ - Die <one>Rhinoviren</one> <two>binden an welchen zellulären Rezeptor</two>? An <one>ICAM-1</one> - auch als <two>CD54</two> bekannt. URL: https://en.wikipedia.org/wiki/ICAM-1 []
51
+ - Give three examples for <one>cellular receptors</one> that are structurally related to immunoglobulines. A: (1) <one>CD4</one> (2) <one>CD155</one> (3) <one>ICAM-1</one>
52
+ - Das <one>M2-Protein</one> von <two>Influenza</two> <three>hat welche Funktion</three>? Das <one>M2-Protein</one> von Influenza agiert als <two>Protonenkanal</two>.
53
+ - <one>Wann</one> wurde das <two>Poliovirus</two> <three>zuerst isoliert</three>? A: <one>1908</one>, von <two>Karl Landsteiner</two>. URL: https://de.wikipedia.org/wiki/Poliovirus#Entdeckung_und_Geschichte
54
+ - <one>Wie viele Nukleotide</one> <two>umfasst das</two> <three>Poliovirus-Genom</three>? A: <one>7500</one> bp.
55
+ - Do <one>Coronaviruses</one> contain a <two>positive-sense</two> or a <two>negative-sense RNA genome</two>? <two>Coronaviruses</two> contain a <one>positive-sense single-stranded RNA genome</one>.
56
+ - Nenne <one>drei verschiedene Ursprünge einer Mutation</one>. A: (1) <one>spontan</one> (2) <one>chemisch induziert</one> (3) <one>physikalisch induziert</one>
57
+ - What does the term <one>virulence</one> mean, in regards to viruses? This describes <one>the</one> <two>capacity</two> of a virus to</one> <three>cause disease</three>.
58
+ - The <one>Filoviridae</one> <two>virus particle</two> binds to a cell surface receptor. The uptake then happens via ... ? <one>Macropinocytosis</one>. URL: https://en.wiktionary.org/wiki/macropinocytosis
59
+ - Der <one>Durchmesser</one> eines typischen <two>Pox Virions</two> beträgt ...? <one>200nm</one>. []
60
+ - <one>Rotaviruses</one> <two>belong to which family</two>? <one>Reoviridae</one>. URL: https://en.wikipedia.org/wiki/Reoviridae
61
+ - Das <one>E1A-Protein</one> <two>der Adenoviren</two> <three>bindet an welches Wirtsprotein</three>? An das <one>Rb-Protein</one>.
62
+ - In addition to a <one>high mutation rate</one>, <two>many viruses also have a high ... </two>? A: They may have a <one>high rate of replication</one>.
63
+ - Das <one>Sendai Virus</one> <two>besitzt was für ein Genom</two>? <one>ssRNA</one>.
64
+ - <one>Welche Viren sind</one>, in etwa, <two>stäbchenförmig</two>? Die <one>Filoviridae</one>. URL: https://en.wikipedia.org/wiki/Filoviridae
65
+ - Können <one>AAVs</one> in das <one>Wirtschromosom</one> <three>integrieren</three>? <one>Ja</one>.
66
+ - In the <one>Baltimore scheme</one>, which virus classes use DNA? Class I, II and VII.
67
+ - Does <one>HPV</one> <two>integrate into the genome</two>? <one>Yes</one>. []
68
+ - <one>Poxviruses</one> <two>are large DNA viruses that replicate in the cytosol</two>. <three>They express numerous proteins to subvert the host immunity</three>. Vaccinia virus A46 is especially important and can target different cytosolic adaptor proteins, such as MyD88, TRIF or TRAM. It can also suppresses the activation of NF-kappa-B. Which domain can we find in these cytosolic adaptors? A <one>TIR domain</one>.
69
+ - What are <one>ca Influenza</one>? These are <one>cold-adapted</one> <two>influenza viruses</two>. URL: https://www.ncbi.nlm.nih.gov/pubmed/10578119 []
70
+ - Name four ways how a <two>human papilloma virus</two> can be transmitted (via <one>physical contact</one>). A: (1) <one>sexual contact</one> (2) <one>contact sport</one> (3) children's games (3) during birth, from the infected mother to her child
71
+ - The <one>gp120 Protein of HIV</one> has <two>three faces</two>. Name them. A: (1) <one>silent face</one> (2) <one>neutralizing face</one> (3) non-neutralizing face
72
+ - Nenne <one>drei Gründe</one> <two>wieso sich Viren eignen Evolutionsprozesse zu untersuchen</two>. A: (1) kurze Generationszeit (2) <one>große Zahl an Nachkommen</one> (3) <one>einfache Struktur</one>
73
+ - When <one>HPV DNA</one> <two>becomes integrated into the cell's DNA</two>, how many of the affected people develop cancer such as cervical carcinoma, in %? About <one>0.8%</one>.
74
+ - In Virology, we know the <one>M protein</one>. <two>What does M stand for in this context</two>? <one>M</one> stands for <two>matrix protein</two>.
75
+ - In Virology: what is meant with the term <one>tropism</one>? The restriction of replication of specific viruses to certain tissues and cells.
76
+ - The <one>highest mutation rate</one> <two>can be found in which genetic element</two>? In <one>viroids</one>.
77
+ - <one>Wieviel Fremd-DNA</one> kann <two>in einen Retrovirus</two> hineingepackt werden? <one>8kb</one> an Fremd-DNA. []
78
+ - <one>Leatherjackets</one> (<two>invertebrates</two>) may be infected with <two>invertebrata ... virus</two>? <one>Iridescent virus</one>. URL: https://www.trevorwilliams.info/Iridovirus.htm
79
+ - Is the <one>adeno-associated virus</one> an <two>Adenovirus</two>? <one>No</one> - it is a <two>parvovirus</two>.
80
+ - Wir haben einen <one>positiven Nachweis von Antikörpern bei einer Herde Rinder</one>. <two>Was mag dies bedeuten (2 Möglichkeiten)</two>? (1) Die Rinder wurden gegen einen Krankheitserreger geimpft (2) Es hat eine <one>Feldinfektion</one> stattgefunden
81
+ - Are there <one>viruses with more than</one> <two>1000</two> <one>genes</one>? <one>Yes</one> - for example the <two>Mimivirus</two>.
82
+ - Das <one>SARS-CoV-2 Genom</one> <two>ist wie groß</two>, in n kbp? <one>29 kbp</one>.
83
+ - <one>1846</one> brach auf den <two>Faroe Islands</two> was aus? <one>Measles</one>, verursacht durch das <two>measles virus</two>.
84
+ - Benötigt das <one>SV40 large-T Antigen</one> <two>ATP</two>? <one>Ja</one>. Dieses Protein besitzt eine <two>ATP-abhängige Helicase</two>-Aktivität.
85
+ - Does <one>HIV</one> <two>insert its genome into DNA</two>? <one>Yes</one>. []
86
+ - In <one>HIV</one> we can see a phase where there are, at best, only <two>minor symptoms</two>. <three>How do we call this phase</three>? This is the <one>asymptomatic phase</one>. []
87
+ - Nenne die drei <one>bösartigen HPV-Viren</one>. A: (1) <one>16</one> (2) <one>18</one> (3) <one>32</one> []
88
+ - Die <one>Bornaviren</one> <two>gehören zu welchem Typ von Viren</two>? A: <one>RNA-Viren</one>. []
89
+ - There is the <one>ATV virus</one> (<one>Acidianus two-tailed virus</one>). <two>What is the trigger for the tail formation</two>? <one>High temperature</one>.
90
+ - Nenne <one>drei Vertreter der Minus-Strang-RNA-Viren</one>. A: (1) <one>Orthomyxoviren</one>: <two>Influenza</two> (2) <one>Paramyxoviren</one>: <two>Masern</two> (3) <one>Rhabdoviren</one>: <two>Rabiesvirus</two>
91
+ - The <one>human rhinovirus</one> <two>has the capsid proteins VP4</two>/<two>VP3</two>/VP2/VP1. What is the successor of these? <one>P1</one>.
92
+ - <one>How many receptors</one> <two>does a virion require</two>? At least the <one>main receptor</one>, often also a <two>co-receptor</two>. Binding to the main receptor often causes a conformational change in the virion that enables it to bind to the co-receptor.
93
+ - <one>MERS</one> <two>occurred in which year</two>? <one>2012</one>. URL: https://de.wikipedia.org/wiki/MERS-CoV
94
+ - The <one>Influenza-virus</one> can <two>undergo antigen drift</two> - <three>but in which proteins</three>? (1) <one>hemagglutinin</one> (2) <one>neuraminidase</one>
95
+ - What is <one>the prototype virus</one> of the <two>Herpesvirus-family</two>? The <one>Herpes simplex</one> virus. URL: https://en.wikipedia.org/wiki/Herpes_simplex_virus []
96
+ - <one>Welches Protein</one> ist für <two>SV40</two> sehr wichtig <three>um die DNA Replikation zu starten</three>? Das <one>Large-T Antigen</one>. []
97
+ - Was heißt <one>contagium vivum fluidum</one>? <one>Löslicher lebender Keim</one>.
98
+ - The name <one>Papovavirus</one> <two>derives from ...</two>? (1) <one>Pa</one> for Papillomavirus. (2) <one>Po</one> for Polyomavirus. (3) <one>Va</one> for Vacuolating Agent (SV40).
99
+ - <one>Amantadin</one> <two<kann gegen welchen Virus eingesetzt werden</two>? <one>Amantadin</one> <two>wirkt gegen</two> <three>Influenza-A-Viren</three>.
100
+ - Trivialname für den <one>Norwalk virus</one>, <two>auf englisch</two>? <one>Winter vomiting virus</one>. URL: https://en.wikipedia.org/wiki/Norovirus []
101
+ - <one>dsRNA-Viruses</one> <two>can be recognized in the cytoplasma through</two> <three>RNA helicases</three>. <four>Give one example for such a RNA helicase that can achieve that</four>. A: <one>RIG-I</one>.
102
+ - Durchmesser eines <one>Adenovirus</one> (<two>von</two>, <two>bis</two>)? A: <one>60 nm - 90 nm</one>. URL: https://de.wikipedia.org/wiki/Adenoviridae
103
+ - Die meisten <one>Pflanzenviren</one> <two>besitzen was für ein Genom</two>? <one>ssRNA</one>. []
104
+ - Give one example for <one>a chemical</one> <two>RNA mutagen</two>. A: <one>Ribavirin</one>. URL: https://en.wikipedia.org/wiki/Ribavirin
105
+ - Das <one>Cytomegalie-Virus</one> <two>gehört zu welcher Virusgruppe</two>? Das <one>Cytomegalie-Virus</one> gehört zur Familie der <two>Herpesviridae</two>.
106
+ - Was sind sogenannte <one>Clara-Zellen</one>? <one>Clara-Zellen</one> sind <two>sekretorisch-aktive Epithelzellen des Lungenkapillarnetzwerkes</two>.
107
+ - How abundant are <one>marine viruses</one> in the seawater, per mL? 10 ** 7 virions / <one>mL</one>.
108
+ - Andere Bezeichnung für <one>viral spikes</one>? <one>Peplomer</one> (plural: peplomers). URL: https://en.wikipedia.org/wiki/Peplomer
109
+ - One of the most compelling <one>reasons why mankind is interested in viruses</one> is because ... ? Because <one>viruses</one> <two>cause diseases</two>.
110
+ - The <one>diameter</one> of the <two>Pithovirus</two> virion is ... ? <one>500 nm</one>. URL: https://de.wikipedia.org/wiki/Pithovirus
111
+ - <one>How many orders</one> <two>exist for the Viruses</two>? <one>5</one>. []
112
+ - Insbesondere <one>welcher HPV-Typ</one> ist mit <two>Cervikarzonima</two> assoziiert? <one>HPV 16</one>. URL: https://de.wikipedia.org/wiki/Humane_Papillomviren []
113
+ - In Virology, the <one>Antigenicity of Influenza-Virus</one> (such as the strain H3N2), <two>is essentially determined how</two>? By the <one>structure</one> of hemagglutinin.
114
+ - <one>Seit wann</one> ist <two>Azidothymidin</two> zur <three>Therapie von HIV</three> <four>zugelassen</four>? Seit dem Jahre <one>1987</one>. URL: https://de.wikipedia.org/wiki/Zidovudin#Geschichte []
115
+ - Why do <one>Reoviruses</one> have an '<two>O</two>' in their name? The '<one>O</one>' here indiciates an <two>orphan virus</two>.
116
+ - Do <one>circular viral</one> <two>genomes exist</two>? <one>Yes</one>. []
117
+ - Do <one>Archaea</one> <two>have viruses</two>? <one>Yes</one>. []
118
+ - Nenne den <one>bekanntesten Vertreter der Lentiviren</one>. A: <one>HIV</one>. URL: https://en.wikipedia.org/wiki/Lentivirus []
119
+ - <one>Welche Funktion</one> haben die <one>inclusion bodies</one> der Poxviruses? Die <one>Virionen werden in diesen</one> <two>inclusion bodies</two> <one>assembliert</one>.
120
+ - Can <one>viruses</one> <two>skip</two> the <three>extracellular state</three>? <one>Yes</one> - animal viruses such as the <two>polio virus</two> can skip the extraceullular stage when moving from cell to cell within the same organism.
121
+ - <one>ITAFs</one> <two>are associated with IRES</two>. The abbreviation <one>ITAFs</one> stands for ... ? <one>IRES trans-acting factors</one>.
122
+ - The <one>Picornavirus Virion</one> <two>contains how many mature proteins</two> (<three>from-to</three>)? <one>11-14</one>. []
123
+ - Do <one>viruses</one> <two>arise from pre-existing viruses directly</two>? <one>No</one>, never. A <two>cell</two> <three>is required for their propagation</three>.
124
+ - Can the <one>Herpes simplex virus</one> <two>evade the immune system</two>? <one>Yes</one>, by interference with MHC class I presentation of antigen.
125
+ - Does the <one>Herpes simplex virus type 1</one> have a <two>tegument</two>? <one>Yes</one> it does. []
126
+ - A. W. für die <one>FSME-Impfung</one>? <one>Zeckenimpfung</one>. TODO: MOve this into vaccines.
127
+ - <one>RNA viruses</one> <two>in general deserve what reputation</two>? <one>RNA viruses</one> <two>deserve their reputation as</two> <three>Nature's swiftest evolvers</three>. []
128
+ - The <one>SV40 large T antigen</one> <two>consists of how many subunits</two>? <one>6</one>; it is a <two>hexamer protein</two> (<two>hexamer</two>).
129
+ - Welche <one>Genom-Klasse</one> <two>der Viren</two> kann direkt als mRNA fungieren? <one>Klasse IV Genome</one>.
130
+ - What are <one>the two most popular modes of action for</one> <two>bacteriocin</two>? (1) <one>damaging the cell membrane</one> (2) <one>destroying nucleic acids</one>
131
+ - <one>Wieviele Menschen</one> <two>sind weltweit mit dem</two> <three>Hepatitis-B-virus</three> <two>infiziert</two>? Etwa <one>350 Millionen</one>. []
132
+ - <one>Wann</one> gelang erstmals der erste Nachweis eines tierpathogenen Virus? <one>1898</one>.
133
+ - In <one>1957</one>, there was the <two>Asian Flu</two>, an Influenza strain. <three>Which H and N type did it have</three>? <one>H2N2</one>.
134
+ - <one>Rimantadine</one> <two>wirkt gegen Influenza Virus</two>. Wie? Rimantadine verhindert wahrscheinlich das Uncoating der Virus-Hülle und des Capsids. Das virale <one>M2 protein</one>, ein Ionenkanal-Protein, wird wahrscheinlich durch Rimantadine inhibiert.
135
+ - Name <one>the main surface protein</one> of <one>two</one>. A: <one>Hemagglutinin</one>.
136
+ - <one>Worldwide</one>, <two>how many people are living with HIV</two>? About <one>36.9 million</one> (at the least in the year 2016).
137
+ - <one>Which cancer</one> <two>can be caused - or made worse - by</two> <three>HPV</three>? <one>HPV</one> is <two>the primary etiological agent in</two> <three>cervical cancer</three>.
138
+ - Beim <one>Corona-Virus</one>: wieso das Wort <two>Corona</two>? <two>Corona</two> steht für <one>Krone</one>. []
139
+ - <one>Wann</one> gelang <two>die Kristallisation von TMV</two>? Bereits im Jahre <one>1935</one>.
140
+ - Nenne je ein anderes Wort für <one>Klasse V</one>, <two>VI</two> und VII Virus-Genome. A: (1) <one>V minus-strand RNA</one> (2) <one>VI Retrovirus</one> (3) <one>VII Pararetrovirus</one>
141
+ - Warum der Name <one>L-Protein</one> <two>bei Papillomaviren</two>, zum Beispiel bei den Proteinen L1 und L2? <one>L</one> steht hier für <two>Late</two>.
142
+ - <one>Autographa california</one> <two>ist ein natürliches Pathogen einer ... </two>? Einer <one>Motte</one>, die sich von Luzerne ernährt.
143
+ - <one>Wieviele Pflanzenviren</one> <two>sind bekannt</two>? Etwa <one>600 Arten</one>.
144
+ - A <one>concentrated suspension of virions</one> <two>might contain n virions per ml</two>? About <one>10¹² virions per ml</one>.
145
+ - <one>Influenza</one> <two>gehört zu welcher Gruppe</two>? <one>Influenza</one> gehört zu den <two>Orthomyxoviren</two>. URL: https://de.wikipedia.org/wiki/Orthomyxoviridae []
146
+ - A <one>common cause of Gastroenteritis</one> <two>may be caused by which virus</two>? <one>Rotaviruses</one>.
147
+ - Beim <one>MERS Coronavirus</one>: wofür steht die Abkürzung <two>MERS</two>? <one>Middle East respiratory syndrome</one>. URL: https://en.wikipedia.org/wiki/Middle_East_respiratory_syndrome-related_coronavirus
148
+ - Bei der <one>HIV-Kombinationstherapie</one> <two>werden welche zwei Wirkstoffe eingesetzt</two>? (1) ein <one>Protease-Inhibitor</one> (2) ein <one>Reverse Transkriptase-Hemmer</one>
149
+ - Das <one>MS2-Genom</one> <two>besitzt wie viele Nukleotide</two>? <one>3569 bp</one>.
150
+ - A <one>pseudoknot</one> <two>usually occurs in ...</two>? <one>ssRNA</one>. URL: https://en.wikipedia.org/wiki/Pseudoknot []
151
+ - Name <one>a virus family</one> <two>that is similar, in name, to an old computer game</two>. A: The <one>pacmanviruses</one>. URL: https://pubmed.ncbi.nlm.nih.gov/28446673/
152
+ - Aside from <one>gag</one>, <one>pol</one> and <one>env</one> genes, <two>HIV may also have which other genes</two>? Name at the least three more. A: (1) <one>tat</one> (2) <one>rev</one> (3) <one>nef</one> (4) <one>vpr</one> (5) <one>vif</one> (6) <one>vpu</one>
153
+ - Is <one>Ebola</one> <two>transmitted through semen</two>? <one>Yes</one> - even for up to 7 weeks after recovery from illness.
154
+ - The cellular molecule used by the <one>SV40 virus</one>, <two>for attachment</two>, is ... ? The <one>major histocompatibility complex class I molecule</one>.
155
+ - <one>Rituximab</one> <two>interagiert wie mit seiner Zielzelle</two>? Über <one>CD20</one>.
156
+ - <one>Woher</one> kommt der Name für die <two>Hantaviren</two>? Vom Fluss <one>Hantaan</one>, <two>in Südorea</two>. URL: https://en.wikipedia.org/wiki/Hantaan_River_virus []
157
+ - <one>SARS-CoV-2</one> <two>uses which entry receptor</two> <three>in humans</three>? <one>ACE2</one>. URL: https://en.wikipedia.org/wiki/Angiotensin-converting_enzyme_2 []
158
+ - Infektion mit dem <one>Hepatitis B virus</one> führt oft zur <two>Progression zu HCC</two>. <three>Was ist damit gemeint</three>? <one>HCC</one>: <two>Hepatocellular carcinoma</two>
159
+ - Der <one>Verlauf einer HIV Infektion</one> im Patienten lässt sich in <two>n Phasen</two> einteilen? <one>3</one>.
160
+ - <one>Poliovirus</one> <two>belongs to which family</two>? <one>Picornavirus</one>.
161
+ - <one>Rhinoviren</one> <two>verwenden den ICAM-1 Rezeptor</two>. Wie nennen wir diesen Rezeptor im CD System? <one>CD54</one>.
162
+ - <one>Which virus</one> causes <two>shingles</two>? The <one>varicella-zoster virus</one>. URL: https://en.wikipedia.org/wiki/Varicella_zoster_virus
163
+ - <one>HIV gp160</one> <two>wird gespalten in ...</two>? (1) <one>gp41</one> (2) <one>gp120</one>
164
+ - <one>Retroviruses</one> <two>are adept at ... </two>? <one>Acquiring random pieces of a cell's genome</one>.
165
+ - <one>Welche morphologische Form</one> weisen die <two>Baculoviren</two> auf? <one>Baculoviren</one> sind <two>stäbchenförmig</two>. URL: https://de.wikipedia.org/wiki/Baculoviren
166
+ - <one>How many people</one> die per year due to <two>influenza-related causes</two>? <one>36.000</one>.
167
+ - <one>Lysis</one> (<one>of viruses</one>) in general <two>is facilitated by</two> which two type of proteins? (1) <one>endolysins</one> (2) <one>holins</one>
168
+ - Angenommen ein Patient hat ein <one>Larynxpapillom</one>. <two>Wir möchten dieses entfernen</two>. Was könnten wir tun? Wir könnten <one>IFN-Alpha</one> und "IFN-Beta" injizieren.
169
+ - Nenne drei Gründe warum <one>Viruspartikel</one> gebraucht werden. A: (1) schützt das Genom durch stabiles <one>Einpacken</one> (2) hat oft Adhäsionsstrukturen ("attachment molecules") und (3) kann Enzyme mitschleppen
170
+ - <one>During which season</one> does <two>Influenza-A</two> and <two>Influenza-B</two> <three>cause disease</three>? During the <one>winter season</one> only.
171
+ - Was zeigt <one>eine hohe</one> <two>Neopterin</two><one>konzentration im Blut</one> an? Das <one>eine Virusattacke stattfindet</one>. URL: https://de.wikipedia.org/wiki/Neopterin []
172
+ - Does the <one>African swine fever virus</one> <two>virion</two> have an outer envelope? <one>Yes</one>. []
173
+ - <one>Retroviren</one> besitzen eine RNA und eine DNA-Form. Vor allem die Enden sind hier unterschiedlich. Wie genau? (1) <one>RNA-Form</one>: hat U5 und U3, sowie jeweils R (2) <one>DNA-Form</one>: hat zusätzlich U5 bei U3 und U3 bei U5; nennt man hier dann LTR
174
+ - <two>Where</two> do most <one>RNA viruses of eukaryotes</one> <three>replicate</three>? In the <one>cytoplasm of the cell</one>. []
175
+ - What are <one>the host cells of papillomaviruses</one>? <one>Keratinocytes</one>. URL: https://en.wikipedia.org/wiki/Papillomaviridae []
176
+ - Welche Person prägte den Begriff <one>Virus</one>? <one>Martinus Beijerinck</one>. URL: https://de.wikipedia.org/wiki/Martinus_Willem_Beijerinck#Leben_und_Wirken
177
+ - Does <one>poliovirus</one> <two>require a nucleus</two>? Not really - it <one>can replicate in enucleated cells</one>.
178
+ - The <one>longest pandemic in humans is</one>, most likely ... ? The <one>HIV pandemic</one>.
179
+ - Why does <one>SV40</one> <two>require the large T-antigen</two>? Because SV40 DNA replication is initiated by binding of large T-antigen to the origin region of the genome, hence the large T-antigen is required.
180
+ - Andere Bezeichnung für <one>reverse Transkriptase</one>? <one>Revertase</one>. URL: https://www.wikidata.org/wiki/Q28774
181
+ - Nenne <one>zwei virale Genomvertreter</one> die <two>ambisense</two> sind. A: (1) <one>Geminiviruses</one> (<two>ssDNA</two>) (2) <one>Arenaviruses</one> (<two>ssRNA</two>)
182
+ - Die <one>Retrovirus gag-proteins</one> inkludieren <two>PR</two>. <three>Was ist damit gemeint</three>? Dies ist eine <one>Protease</one>.
183
+ - <one>What happens</one> to the <two>herpesvirus</two> when it infects a cell? The linear herpesvirus genome becomes <one>circularized</one>.
184
+ - The <one>first internal ribosome entry site to be discovered</one> was <two>found in which virus group</two>? In <one>poliovirus</one>, in the year 1988. URL: https://en.wikipedia.org/wiki/Internal_ribosome_entry_site#History []
185
+ - <one>Rimantadine</one> <two>ist ein antivirales Medikament</two>. <three>Gegen welchen Virus wird Rimantadine eingesetzt</three>? <one>Influenza A</one>. URL: https://de.wikipedia.org/wiki/Rimantadin
186
+ - Has the <one>measles virus</one> <two>been eradicated from planet earth</two>? <one>No</one> - for example, they were noticed in Graz and also other parts of Austria in the year 2018 and 2019. []
187
+ - The <one>Newcastle Disease Virus</one> (<two>NDF</two>) has become famous in 2002 for killing which animals? <one>Birds</one>. It killed - or otherwise caused the deaths - of about 3.16 million birds in the UK.
188
+ - <one>Wo</one> (strukturell) findet man <two>IRES</two>? In der <one>5'-UTR</one>. []
189
+ - Do we find <one>reverse transcriptase</one> <two>only in Retroviruses</two>? <one>No</one> - for example the <one>Hepatitis B virus</one> also employs <two>reverse transcriptase</two>.
190
+ - Can <one>viruses</one> <two>code for</two> <three>membrane channels</three>? <one>Yes</one> - the so called <two>viroporins</two>.
191
+ - <one>HPV5</one> (<two>ein Papillomavirus</two>) ist assoziiert mit welcher interessanten Erkrankung? <one>Epidermodysplasia verruciformis</one>. URL: https://en.wikipedia.org/wiki/Epidermodysplasia_verruciformis
192
+ - The <one>HSV1 genome</one> <two>contains n genes</two>? The <one>HSV1 genome</one> contains <two>70 genes</two>.
193
+ - Do <one>viruses</one> <two>contain PAMPs</two>? <one>No</one>. []
194
+ - Name <one>an eukaryotic virus that does</one> <two>NOT</two> <one>polyadenylate its mRNA</one>. A: The <one>reoviruses</one>.
195
+ - Der <one>Norovirus</one> <two>hat was für ein Genom</two>? Ein <one>(+)ssRNA Genom</one>.
196
+ - Provide <one>two different examples</one> of <two>paramyxoviruses</two> that are <three>human pathogens</three>. A: (1) <one>mumps</one> (2) <one>measles viruses</one>
197
+ - Was genau heißt <one>segmentiertes Genom</one>? Die <one>viralen Gene</one> sind <two>auf verschiedene RNA-Segmente verteilt</two>.
198
+ - The <one>HPV E7 protein</one> <two>can interact with which cellular protein</two>? <one>pRB</one>. It will promote its destruction. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC114225/
199
+ - <one>Vitravene</one> <two>is an antisense oligonucleotide</two> for the treatment of ... which <three>viral infection</three>? <one>Cytomegalovirus infection</one>.
200
+ - <one>HIV-1 tat</one> (<two>transactivator of transcription</two>) will bind onto ...? A <one>stem-loop structure</one> at the 5' end of HIV-1 mRNA.
201
+ - What is <one>the ultimate virus-host co-evolution</one>? When <one>the virus genome</one> becomes <two>permanently integrated into the genome of its host</two>. []
202
+ - A subset of <one>coronaviruses</one>, such as the <two>betacoronavirus subgroup A</two>, <three>have a shorter spike-like surface protein</three> called <four>HE</four>, <five>which is an abbreviation for ... </five>? <one>Hemagglutinin esterase</one>.
203
+ - <one>In which organism</one> can the <two>large T antigen</two> <three>be found</three>? In the <one>Simian virus 40</one> (<two>SV40</two>).
204
+ - Who or what is the causative agent of <one>poliomyelitis</one>? The <one>Poliovirus</one>. URL: https://en.wikipedia.org/wiki/Poliovirus []
205
+ - Name four <one>side-effects of interferon treatment</one> <two>against viral infections</two>? (1) fever (2) tiredness (3) <one>muscle pains</one> (4) <one>sickness</one>
206
+ - The <one>Bluetongue virus</one> <two>tends to infect which animal group</two>? <one>Sheep</one>. []
207
+ - Does the <one>Simian Virus 40</one> (SV40) particle contain <two>histones</two>? <one>Yes</one>.
208
+ - <one>Why</one> do <two>RNA viruses</two> <three>often employ segmented genomes</three>? Because this works to compensate for high error-rates. An error in a single-component genome would incapacitate the entire genome.
209
+ - <one>Which</one> was <two>the first human disease shown to be</two> <three>viral</three> <two>in nature</two>? <one>Yellow fever</one> (or perhaps <two>Polio</two>, which was shown in 1908 by Karl Landsteiner to be viral in nature).
210
+ - Dauer des Vermehrungszyklus des <one>Poliovirus</one> (<two>von-bis</two>)? <one>5-10 Stunden</one>.
211
+ - In Virology: what is the <one>minimum infective dose</one>? The <one>minimum amount of virus</one> required for infection of a host.
212
+ - The <one>abortive infection systems</one> <two>in bacteria</two> do what? They can cause premature bacterial cell death upon phage infection. This decreases the number of progeny particles and thus limits spread of viruses to other cells. The bacterial population is hence more likely to survive.
213
+ - Für Viren: was sind oft <one>late transcripts</one>? Dies sind häufig <one>Capsid-Proteine</one>. []
214
+ - <one>A virus can kill its host cell</one>. <two>How is this called scientifically</two>? <one>Cytolytic killing</one>.
215
+ - Andere Bezeichnung für die <one>burst size</one> in der Virologie? <one>Wurfgröße</one>. []
216
+ - Give <one>an example for a virus</one> <two>whose virions contain ribosomes</two>. A: The <one>arenavirus</one>. URL: https://en.wikipedia.org/wiki/Arenavirus#Structure []
217
+ - Name <one>two ways</one> how <two>Influenza A</two> <three>can change its antigenic properties</three>. A: (1) <one>antigenic drift</one> (2) <one>antigenic shift</one> []
218
+ - Der <one>2017</one> entdeckte Large Virus <two>Klosneuvirus</two> <three>hat ein Genom, das wie groß ist</three>? <one>1.57 Mb</one>.
219
+ - Nenne <one>zwei Viren</one> die eine <two>Polymerase im Partikel</two> besitzen. A: (1) <one>Poxvirus</one>: repliziert im Cytoplasma und hat eine eigene Polymerase (2) <one>Hepatitis B virus</one>: kodiert für eine DNA polymerase
220
+ - Sind <two>Viren</two> <one>haploid</one>? <one>Ja</one>, bis auf die <two>diploiden Retroviren</two>, die zwei fast idente Kopien des viralen Genoms besitzen.
221
+ - Das <one>Tabakmosaikvirus</one> (<two>TMV</two>) <three>besitzt ein Genom aus ...</three>? <one>ssRNA</one> (<two>einzelsträngiger RNA</two>). URL: https://de.wikipedia.org/wiki/Tabakmosaikvirus []
222
+ - <one>Polioviren</one> <two>degradieren welchen Initiationsfaktor</two>? <one>eIF4G</one>.
223
+ - <one>Wo</one> (in seinem Genom) beginnt die Replikation des Retrovirus? Im 5' LTR Abschnitt.
224
+ - Der <one>Pestivirus</one> <two>gehört zu welcher viralen Familie</two>? <one>Flaviviridae</one>.
225
+ - <one>Antiviral wirkende Interferonpärparate</one> <two>wirken auch ... </two>? <one>Tumorhemmend</one>.
226
+ - What are <one>fusion proteins</one>, <two>in regards to viruses</two>? These are <one>envelope glycoproteins</one> that have an external hydrophobic sequence that can be inserted into the target membrane.
227
+ - Die <one>Schweinegrippe</one> <two>besitzt welchen Subtyp</two>? <one>H1N1</one>. []
228
+ - Es existieren auch <one>komplexe Retroviren</one>. Ein Vertreter hiervon ist <two>HIV</two>. Nenne einen weiteren Vertreter der <three>komplexen Retroviren</three>. A: <one>HTLV</one>: <two>human T-cell lymphotropic virus</two>
229
+ - <one>Influenza B</one> <two>only undergoes genetic drift, not genetic shift</two>. Why? Probably because Influenza B <one>lacks an animal reservoir</one>.
230
+ - What is a <one>viremia</one>? These are <one>viruses</one> <two>in the blood</two>. URL: https://en.wikipedia.org/wiki/Viremia
231
+ - <one>Amantadin</one> <two>hat welches molekulare Ziel in Influenza</two>? Das virale <one>M2-Protein von Influenza</one>. URL: https://de.wikipedia.org/wiki/Amantadin
232
+ - What means <one>viral shunt</one>? This is <one>a hypothesis</one> in where viruses living in the ocean killing their microbial hosts redirect carbon and nutrients away from larger organisms and back toward other microorganisms.
233
+ - A <one>delayed emergence of potato</one> <two>may be caused by what virus</two>? <one>Tobacco rattle virus</one>. URL: https://en.wikipedia.org/wiki/Tobacco_rattle_virus
234
+ - The <one>Human metapneumovirus</one> (<one>HMPV</one>) <two>can cause significant upper and lower respiratory disease in all age groups worldwide</two>. Does this virus have a RNA genome or a DNA genome? This virus has a <one>RNA genome</one> (<two>ssRNA</two>; about 13.3 kb in size).
235
+ - <one>Wieviele Serotypen von Adenovirus</one> sind bekannt? A: Mindestens <one>47</one> - mittlerweile (Jahr: 2023) aber bereits mehr. []
236
+ - <one>Hämagglutinin</one> <two>hat eine hohe Affinität zu ...</two>? <one>Sialinsäureresten</one> <two>auf der Wirtszelloberfläche</two>.
237
+ - Gehören die <one>Interferone</one> zu den <two>Cytokinen</two>? <one>Ja</one>. []
238
+ - Allgemein: <one>welche Virusgruppen existieren</one>? Eine Unterscheidung kann anhand des Genoms vorgenommen werden: (1) ssDNA (2) <one>dsDNA</one> (3) <one>ssRNA</one> (4) <one>dsRNA</one>
239
+ - In der Virologie: was bedeutet es wenn festgehalten wird, das das virale Capsid <one>Economy of Genetic Information</one> zeigt? Wenn <one>das Capsid nur aus einem Protein besteht</one>, brauchen wir auch nur ein Gen das dafür kodiert. Das ist effizient, wir können dieses eine Protein ja wiederverwenden.
240
+ - The <one>Hepatitis C virus</one> <two>has infected how many people</two>, globally? <one>170 million people worldwide</one>.
241
+ - <one>Orthomyxoviren</one>, wie zum Beispiel die <two>Influenzaviren</two>, <three>haben was für eine Orientierung ihres Genoms</three>? Deren Genom ist in <one>Negativstrangorientierung</one> vorliegend.
242
+ - Nenne <one>zwei Krankheiten</one>, die durch das <two>FSME-Virus</two> <three>verursacht werden</three>. A: (1) <one>Meningitis</one> (2) <one>Enzephalitis</one>
243
+ - Können <one>Influenzaviren</one> <two>Myokarditis</two>, also eine Herzmuskelentzündung, verursachen? <one>Ja</one>. []
244
+ - <one>All viruses</one> <two>are parasites of ... </two><three>which machinery</three>? Of the <one>host protein synthesis machinery</one>.
245
+ - A <one>viral polymerase</one> <two>typically consists of how many subunits</two>? Just <one>one</one>; <two>viral polymerases tend to be active as a single protein</two>. []
246
+ - The <one>parechovirus</one> <two>can cause which disease</two>? <one>Diarrhoea</one>. URL: https://en.wikipedia.org/wiki/Diarrhea
247
+ - Das <one>Vogelgrippe-Virus</one>, aka <two>Influenza H5N1</two>, <three>gelang wie von Asien nach Europa</three>? Über <one>Zugvögel</one>. []
248
+ - <one>Erkennen</one> <two>Antikörper</two> den HIV-Virus (also dessen Virion)? <one>Ja</one>.
249
+ - Given the <one>SV40 genome</one>: if we have to group this genome into two general areas, which ones could we use? The <one>early</one> part; and the <two>late</two> part of the genome.
250
+ - Das Medikament <one>Zovirax</one> <two>wirkt gegen welchen Virus</two>? <one>Zovirax</one>, auch als Aciclovir bekannt, wirkt gegen den <two>Herpes-simplex virus</two>. URL: https://de.wikipedia.org/wiki/Aciclovir
251
+ - Das Genom von <one>SV40</one> <two>umfasst</two>, in etwa, <two>wieviele Basenpaare</two>? Etwa <one>5000bp</one>.
252
+ - <one>DNA Viren</one> <two>bevorzugen normalerweise</two> <three>welche Phase des Zellzyklus ihrer Wirtszelle</three>? Die <one>S-Phase</one>. []
253
+ - <one>Ribavirin</one> <two>is used against which virus</two>? <one>Ribavirin</one> is used against the <two>hepatitis C virus</two>.
254
+ - Das <one>Nepovirus</one> <two>wird wodurch übertragen</two>? A: Durch <one>Nematoden</one>. (Mnemonic: <two>Ne</two> ... <two>Nematoden</two>)
255
+ - <one>Which viruses</one>, in general, employ <two>extrusion through the cell surface</two>? <one>Filamentous phages</one>.
256
+ - If we see a virus able to persist in a healthy individual, what can we conclude from this? That <one>this virus must somehow have strong defensive or evasive capabilities</one>.
257
+ - The <one>poliovirus</one> uses <two>n different VP-proteins</two>? About <one>4</one>. []
258
+ - Was heißt das <one>MNPV</one> in <two>Autographa californica MNPV</two>? <one>Multivirion Nuclear Polyhedrosis Virus</one>.
259
+ - The <one>SV40 large T antigen</one> codes for a <two>dominant-acting oncoprotein</two>. In particular, it can "induce malignant transformation" of a variety of cell types. It will <two>modify which two cellular proteins</two>? (1) <one>retinoblastoma</one> (<two>pRb</two>) (2) <one>p53 tumor suppressor</one>
260
+ - <one>Wann</one> wurde das <two>Adenovirus</two> <three>erstmals isoliert</three>? Im Jahre <one>1953</one>.
261
+ - Name a <one>Satellite virus</one> that infects <two>ameba</two>. A: <one>Sputnik</one>. URL: https://en.wikipedia.org/wiki/Sputnik_virophage
262
+ - Name <one>the prototype representative</one> of the <two>human parvovirus</two>. A: The <one>AAV</one> (<one>Adeno-associated virus</one>), a <two>dependoparvovirus</two>. URL: https://en.wikipedia.org/wiki/Adeno-associated_virus
263
+ - Nenne <one>zwei verwandte Folgekrankheiten</one> des <two>HBV</two>. A: (1) <one>Leberkarzinom</one> (2) <one>Leberzirrhose</one>
264
+ - Was heißt <one>pleomorph</one>? <one>Keine definierte Form</one>.
265
+ - Can <one>humans</one> become infected by the <two>african swine fever</two> causing virus? <one>No</one>.
266
+ - Why may the presence of <one>grazers</one> <two>stimulate viral proliferation</two>? There is an increased availability of nutrients and other growth substrates available when bacteria die.
267
+ - <one>Interferon-alpha</one> <two>could be used to treat which viral infection</two>? <one>Hepatitis B infection</one>, for example.
268
+ - <one>HIV</one> contains the <two>Vpr</two> gene/gene product. <three>What does Vpr stand for</three>? <one>Vpr</one> stands for <two>Viral Protein R</two>.
269
+ - <one>How many different classes</one> of <two>viral fusion proteins</two> have been identified to date (2015)? <one>3 different classes</one>.
270
+ - Nenne zwei kleine DNA-Viren. A: (1) Polyomaviren (2) <one>Papillomaviren</one>
271
+ - Nenne <one>drei Beispiele</one> für Sekundärstrukturen viraler RNA. A: (1) <one>pseudoknot</one> (2) <one>bulge</one> (3) <one>loop</one>
272
+ - Give <one>two examples</one> of <two>endocytotic mechanisms</two> <three>used by viruses</three>. A: (1) <one>caveolin-mediated endocytosis</one> (2) <one>clathrin-mediated endocytosis</one>
273
+ - <one>Wieviele Viren</one> waren <two>im Jahr ~2014</two> mindestens bekannt? Mindestens <one>5000</one>.
274
+ - Der Wirkstoff <one>Zanamivir</one> <two>wirkt gegen welchen Virus</two>? <one>Zanamivir</one> wirkt gegen das <two>Influenza</two> Virus.
275
+ - In der Virologie werden <one>Zellkulturen</one> verwendet. <two>Welche zwei Typen können hier unterschieden werden</two>? (1) primäre Zellen (2) kontinuerliche Zellinien
276
+ - Ein <one>Picornavirus</one> <two>kodiert normalerweise für wieviele Proteine</two>? Zwischen <one>11</one> und <one>14</one>.
277
+ - <one>How many</one> <two>Influenza B Virus subtypes</two> have been described? <one>None</one> - <two>there are no subtypes</two>.
278
+ - Nenne <one>zwei Beispiele</one> für Viren mit <two>segmented genomes</two>. A: (1) der <one>Influenza Virus</one> (2) der <one>Brome Mosaic Virus</one>
279
+ - The <one>Hong Kong outbreak of 1997</one>, <two>Influenza A</two>, had which combination of H + N? <one>H5N1</one>. URL: https://en.wikipedia.org/wiki/Global_spread_of_H5N1
280
+ - Das <one>HTLV Tax-Protein</one> <two>interagiert</two> mit <three>welchen zwei Faktoren</three>? (1) <one>NF Kappa Beta</one> (2) <one>CREB</one>
281
+ - Das <one>env-gene product</one> <two>von Retroviren</two> wird während der Maturation in welche Produkte geschnitten? (1) <one>transmembrane domain</one> (2) <one>surface domain</one>
282
+ - <one>Welche zwei Gruppen an Substanzen</one> können unterschieden werden, die <two>die Genomvermehrung der Viren hemmen</two>? (1) Nucleosidanaloga (2) nicht nucleosidische Hemmstoffe
283
+ - The <one>seasonal flu</one> <two>kills how many people per year globally</two>, taken together? About <two>650.000 per year</two> (primarily due to <one>respiratory causes</one>).
284
+ - <one>Where</one> do <two>HSV-1</two> and <two>HSV-2</two> <three>hide in the (human) body</three>, from the immune system? They hide in the <one>cell bodies of neurons</one>.
285
+ - <one>Why</one> does <two>Influenza</two> require a low pH? Because <one>a low pH causes a conformational change in HA</one>.
286
+ - <one>HIV-2</one> <two>ist womit nahe verwandt</two>? Mit dem <one>SIV</one> von <two>Mangabey-Affen</two>.
287
+ - Ist der <one>Poliovirus</one> umhüllt? <one>Nein</one>.
288
+ - Most <one>Merkel cell carcinomas</one> <two>are caused by ... </two>? The <one>Merkel cell polyomavirus</one>.
289
+ - <one>Subacute sclerosis panencephalitis</one> <two>can arise through which viral infection</two>? Through a <one>measles infection</one>.
290
+ - Wieso ist es <one>schwierig</one> <two>Therapien gegen Viren zu etablieren</two>, verglichen mit Bakterien? Weil Viren den <one>zellulären Stoffwechsel</one> verwenden müssen.
291
+ - Bei den <one>Influenza-Viren</one>: <two>wieviele Subtypen</two> an HA und NA gibt es jeweils? A: (1) <one>HA</one>: <two>18 Typen</two>. (2) <one>NA</one>: <two> 9 Typen</two>.
292
+ - The <one>HIV Vpr protein</one> <two>can induce cell cycle arrest</two>, in which stage? In <one>G2</one>.
293
+ - Nenne <one>ein Medikament</one> das gegen das Uncoating eines Virus vorgeht. A: <one>Amantadin</one>. URL: https://de.wikipedia.org/wiki/Amantadin
294
+ - <one>HIV-2</one> <two>entwickelte sich aus ...</two>? Dem <one>Simian Immunodeficiency Virus</one> (sooty mangabey).
295
+ - What is an <one>emergent virus</one>? An <one>emergent virus</one> is a virus that has adapted and emerged as a new disease, with attributes facilitating pathogenicity in a field not normally associated with that virus.
296
+ - <one>Papillomaviren</one> wie HPV binden an <two>Heparansulfate</two>. <three>Welches virale Protein ist hier für diese Viren wichtig</three>? Das <one>L1-Protein</one>.
297
+ - <one>Togaviruses</one> typically contain <two>two ORFs</two>. <three>What do these two ORFs encode in general</three>? One encodes structural proteins, the other one encodes non-structural proteins.
298
+ - <one>Which disease</one> can the <two>feline parvovirus</two> <three>cause in cats</three>? <one>Panleukopenia</one>.
299
+ - <one>Wo</one> genau replizieren <two>Flaviviren</two> <three>intrazellulär</three>? An der Membran des endoplasmatischen Reticulums.
300
+ - <one>Viruses</one>, in general, <two>can exist in which phases</two>? (1) <one>extracellular</one> (2) <one>intracellular</one>
301
+ - The <one>most characteristic feature of a virion</one> is ... A: It is <one>metabolically inert</one>.
302
+ - Is the <one>Poliovirus</one> <two>enveloped</two>? <one>No</one>; the Poliovirus is a <two>non-enveloped RNA virus</two>.
303
+ - Können <one>Röteln</one> <two>gefährlich sein</two>? Ja, für <one>Schwangere</one>. Es kann hier zu <two>Embryopathien</two> kommen.
304
+ - Das <one>Kaposi-Sarkom Virus</one> <two>ist was für ein Typ</two>? <one>Herpesvirus Typ 8</one>.
305
+ - The drug <one>Ribavirin</one> <two>is used to treat what</two>? The <one>Hepatitis C virus</one>, a ssRNA virus, in combination with Interferon Alpha.
306
+ - The concept of <one>quasispecies</one> <two>was established when</two>? In <one>1978</one>.
307
+ - Nenne <one>ein Beispiel</one> für einen Virus der <one>überlappende Leserahmen</one> verwendet und den Menschen infizieren kann. A: <one>Hepatitis-B-Virus</one>.
308
+ - <one>Influenza-C-Viren</one> besitzen als <two>rezeptorzerstörendes Enzym</two> keine Neuraminidase sondern ... ? Eine <one>Esterase</one>.
309
+ - Nenne einen <one>Nachteil</one> des <two>ELISA-Tests</two> <three>für den Virennachweis</three>. A: Anti-Virus Antikörper lassen sich erst nach Wochen in nachweisbaren Mengen nachweisen.
310
+ - Nenne <one>drei Vertreter der Flaviviridae</one>. A: Mnemo: Flavi... f ... fever, two fever. (1) <one>Yellow Fever Virus</one> (2) <one>Dengue-Fever</one> (3) <one>FSME</one> (<two>tick-borne encephalitis</two>)
311
+ - <one>Wohin wandern</one> <two>Herpesviren</two> intrazellulär? Intraaxonal zu <one>sensorischen Ganglien</one>.
312
+ - <one>Unterschied</one> zwischen der Genom-Struktur von Retroviren und Ty1 Elementen? A: Ty1 fehlt die env Gruppe. Ansonsten sind die Strukturen sehr ähnlich.
313
+ - <one>Which poliovirus type</one> <two>has been eradicated</two>? <one>Type 2 poliovirus</one>.
314
+ - Ausser möglicher Krankheitssymptome bei der <one>aktiven Immunisierung</one>, nenne einen weiteren möglichen Nachteil. A: Die aktive Immunisierung dauert einige Zeit, und muss daher <one>zeitkonform</one> durchgeführt werden.
315
+ - <one>How many documented species of viruses</one> <two>have been described</two>, in 2016? About <one>3000</one>.
316
+ - Das <one>Influenza-Genom</one> hat am <two>3' Ende</two> <three>welche drei Proteine komplexiert</three>? (1) <one>PB1-Protein</one> (2) <one>PB2-Protein</one> (3) <one>PA-Protein</one>
317
+ - What does <one>virus interference</one> mean? This is <one>a phenomenon</one> in which infection with one virus interferes with subsequent infection by another virus.
318
+ - Are <one>Langerhans cells</one> <two>activated by HPV capsid entry</two>? <one>No</one>.
319
+ - <one>Which protein</one> from the <two>Influenza virus</two> limits the Interferon-production? The <one>NS1-protein</one>.
320
+ - Nenne <one>zwei verschiedene Zelltypen</one> die der <two>Herpes simplex virus 1</two> (HSV-1) infiziert. A: (1) <one>Epithelzellen</one> (2) <one>Neuronen</one>
321
+ - Andere (systematische) Bezeichnung für das <one>Epstein-Barr Virus</one>? <one>Human Herpesvirus 4</one> (<two>HHV4</two>).
322
+ - In <one>icosahedral viruses</one>: <two>how does the genome enter the procapsid</two>? <one>Through a channel</one> located at a site that will become one of the vertices of the icosahedron.
323
+ - In der klinischen Virologie: <one>wie mögen wir eine Reinfektion mit Poliovirus bemerken</one>? Durch einen <one>Wiederanstieg der Antikörperkonzentration</one>.
324
+ - Give <one>two specific examples</one> where viruses are employed as <two>pestizides</two>. A: (1) <one>Baculoviren</one>: control <two>insects</two>. (2) <one>Myxoma virus</one>: control <two>rabbits</two>.
325
+ - <one>Every</one> <two>RNA</two> <one>virus</one>, no matter how small its genome is, <three>must always encode for which particular protein</three>? For a <one>RNA-dependent RNA Polymerase</one>.
326
+ - Name <one>two satellite viruses</one> that <two>can be found in animals</two>. A: (1) <one>Hepatitis delta virus</one> (2) <one>Adeno-associated virus</one>
327
+ - <one>How</one> can some <two>viruses</two> attach to microtubules? They have sequences that allow them to attach to microtubules.
328
+ - <two>Where</two> may we find <one>HIV-2</one>? In <one>western Africa</one>. URL: https://en.wikipedia.org/wiki/Subtypes_of_HIV#HIV-2
329
+ - <one>An eukaryotic virus</one> <two>must attach to a cell surface molecule</two>. <three>How do we usually call this molecule</three>? The <one>cellular receptor</one>.
330
+ - Why the name <one>ambiviruses</one>? Because <one>their genome is a</one> <two>ssRNA</two> <one>genome</one>, half of which is in the plus-orientation, and the other half being in the minus orientation.
331
+ - The <one>first IRES sequence</one> was discovered in 1988, in the lab of Nahum Sonenberg. Which viral RNA contained this sequence? The <one>Poliovirus RNA</one>.
332
+ - Was ist das <one>Virioplankton</one>? <one>Alle im Wasser schwebenden Viren</one>. In der Ökologie spricht man von allen Viren in aquatischen Ökosystemen. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC98987/
333
+ - Which five <one>Virus-Orders</one> exist? (1) <one>Caudovirales</one> (2) <one>Herpesvirales</one> (3) Mononegavirales (4) <one>Nidovirales</one> (5) <one>Picornavirales</one>
334
+ - In einem Milliliter Meerwasser finden wir wieviele Viruspartikel? Etwa <one>10 Millionen</one> (<two>10 ** 1⁰</two>).
335
+ - <one>Welches zelluläre Gen</one> trägt ein <two>Flavivirus</two>? Das <one>Gen für die Synthese von Ubiquitin</one>.
336
+ - A <one>virus</one> is an organism with two phases. What is meant with this? (1) a Virion, which is <one>the infectious particle</one> (2) an infected cell, which is used for the virus to replicate
337
+ - Are <one>Arboviruses</one> a <two>polyphyletic group</two>? <one>Yes</one>. URL: https://en.wikipedia.org/wiki/Arbovirus
338
+ - Give another name for <one>viral sex</one>. A: <one>Genetic reassortment</one>.
339
+ - Why is the <one>3'-ntr</one> required in the <two>Poliovirus</two> genome? This area is necessary for the <one>synthesis of negative-strand RNA</one>.
340
+ - Wie nennen wir die <one>Ausbeute</one> in der normalen Virusproduktion? <one>Burst size</one>. URL: https://de.wikipedia.org/wiki/Burst_Size
341
+ - Bezogen auf das <two>HI-Virus</two>: was heisst <one>CFRs</one>? <one>Circulating recombinant forms</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6378278/
342
+ - Welche <one>drei mögliche Orientierungen</one> kann <two>ein virales Genom</two> haben? (1) <one>positiv</one> (2) <one>negativ</one> (3) <one>ambisense</one>
343
+ - The French microbiologist <one>Charles Chamberland</one> invented <two>the Chamberland filters</two>, which had pore sizes smaller than bacteria, thus we could filter away bacteria. Since what year? Since the year <one>1884</one>.
344
+ - Nenne <one>zwei Vertreter</one> der <two>Filoviridae</two>. A: (1) <one>Ebola virus</one> (2) <one>Marburg virus</one>
345
+ - In order to <one>treat hepatocellular carcinoma</one>, we use <two>sorafenib</two>. What type of drug is it? It is a <one>multi-kinase inhibitor</one>.
346
+ - There exists an ongoing debate as to <one>whether viruses are living or non-living</one>. Can we give another example, also from biology, that may provide additional cues for the answer to this question? Yes - <one>bacterial spores</one>. These are <two>metabolically inert</two>, yet are not considered to be nonliving.
347
+ - The <one>eclipse phase of a virus</one> includes <two>two important periods</two>. Name them. A: (1) the <one>adsorption period</one> (2) the <one>maturation period</one>
348
+ - <one>Warum</one> gelten <two>rekombinante Baculoviren</two> als sicher? Da sie ihre Gene nicht in andere als in Invertebraten-Zellen integrieren können.
349
+ - <one>Durchmesser</one> der <two>Rhinoviren</two> (von-bis)? <one>25-30nm</one>.
350
+ - <one>Largest RNA viruses in bp</one> + Example? <one>32.000 bp</one>, found in <two>coronaviruses</two>, like the SARS virus. URL: https://en.wikipedia.org/wiki/Coronavirus
351
+ - Give an example for <one>a viral protein that can inhibit p53</one>. A: <one>HPV E6</one>.
352
+ - <one>Delavirdin</one> wirkt gegen <two>HIV</two>. Wie schafft es dies? <one>Delavirdin</one> bindet an die große Untereinheit der reversen Transkriptase, und hemmt dadurch deren Aktivität.
353
+ - The <one>human rhinovirus genome</one> contains <two>how many basepairs</two>? This ssRNA virus has approximately <one>7.200 bp</one>.
354
+ - Nenne drei Mitglieder von Flavivirus. A: (1) <one>Hepatitis C virus</one> (2) yellow fever virus (3) tick-borne encephalitis virus
355
+ - The <one>Herpes simples virus type I</one> (<two>HSV-1</two>) makes use of which cellular molecule for attachment? <one>Heparan sulphate</one>. URL: https://en.wikipedia.org/wiki/Heparan_sulfate
356
+ - Andere Bezeichnung für <one>live</one> und <one>killed</one> virus particles? (1) <one>live</one> = infectious (2) <one>killed</one> = <two>non-infectious</two>
357
+ - <one>Human Rhinoviruses</one> belong to which genus? They belong to the <one>genus Enterovirus</one>. URL: https://en.wikipedia.org/wiki/Enterovirus
358
+ - Wie nennen wir den <one>Impfvirus</one> und den <one>Wildtypvirus</one> lateinisch? (1) <one>Impfvirus</one>: <two>virus fixe</two> (2) <one>Wildtypvirus</one>: <two>virus de rue</two>
359
+ - The <one>Rhinovirus</one> belongs to which genus? It belongs to the genus <one>Enterovirus</one>. URL: https://en.wikipedia.org/wiki/Enterovirus
360
+ - Wieviele <one>Influenza HA-Subtypen</one> sind bekannt? <one>18</one>. URL: https://www.cdc.gov/flu/avianflu/influenza-a-virus-subtypes.htm
361
+ - The <one>diameter of coronaviruses particles</one> is about <two>n nm</two>? About <one>120 nm</one>.
362
+ - Beschreibe kurz die <one>Aufgabe</one> von <two>Hämagglutinin</two> und <two>Neuraminidase</two> bei Influenza. A: (1) <one>Hämagglutinin</one> heftet das Virus an den zellulären Rezeptor (2) <one>Neuraminidase</one> hilft bei der Freisetzung des Virus aus der Zelle
363
+ - Sometimes <one>a virion may include enzymes</one>. Some of these enzymes are necessary for the virus life-cycle, but another group of enzymes that is quite important, is tasked with ... ? Modulation of cellular physiology and the cellular immune system.
364
+ - The <one>HIV-1 Vpr protein</one> has <two>how many amino acids</two>? The <one>Vpr protein</one> contains <two>96 amino acids</two>.
365
+ - Nenne <one>zwei Gründe</one> wieso das Leben der Virologen schwerer ist als das der Bakteriologen. A: (1) Viren sind obligate, intrazellulare Parasiten, daher ist der Nachweis von Viren oft schwieriger. (2) Zudem sind Viren <one>kleiner</one> als Bakterien.
366
+ - Welche Zellen infiziert <one>HSV-1</one> (<two>Herpes simplex virus 1</two>)? (1) <one>Epithelzellen</one> (2) <one>Neuronen</one>
367
+ - Name <one>three problems of antiviral therapy</one>. A: (1) viral infection is detected too late in the course of disease (2) there is a massive proliferation and an overwhelming intervention by viruses (3) <one>viruses can evolve rapidly</one>, due to the high mutation rate of viral nucleic acid polymerases
368
+ - Finden wir in jedem <one>Cervixkarzinom</one> ein Papillomavirusgenom in integrierter Form? Nein; <one>zumindest nicht in einer nachweisbaren Form</one>.
369
+ - Der <one>Hepatitis-B-Virus</one> hat <two>n verschiedene Genotypen</two>? <one>8</one>; <two>A-H</two>.
370
+ - In regards to the <one>Ebola Virus</one>: <two>how are humans infected</two>? This is a classic zoonosis: there is typically <one>contact with an animal carcass</one>.
371
+ - Give an example for <one>a viral gene with lots of introns</one>. A: <two>Gene K15</two> of Kaposi sarcoma-associated herpesivurs. This gene contains <one>has 7 introns</one>.
372
+ - Why does <one>Hepatitis C virus</one> have <two>a lipoprotein coat</two>? This coat is useful for <one>entry into hepatocytes</one>.
373
+ - <one>Welches adenovirale Protein</one> dient während des Zusammenbaus der Hexon-Capsomere als Scaffold-Protein? Das adenovirale Protein <one>L4-100KD</one>.
374
+ - <one>David Vetter</one>, the famous <two>bubble-boy</two>, died due to which virus ultimately? The <one>Epstein-Barr</one> virus.
375
+ - How many people die per year in the USA because of <one>Influenza</one>? <one>36.000</one>.
376
+ - Name a virus group with a <one>brick-shaped virion</one>. A: <one>Poxviridae</one>. URL: https://en.wikipedia.org/wiki/Poxviridae
377
+ - <one>Which virus</one> causes the <two>Kaposi sarcoma</two>? A <one>herpesvirus</one>. URL: https://en.wikipedia.org/wiki/Kaposi%27s_sarcoma#Cause
378
+ - Nenne <one>zwei endozytotische Mechanismen</one> von Viren und jeweils einen Vertreter hierzu. A: (1) <one>Caveolin</one> mit <two>SV40</two> als Vertreter (2) <one>Clathrin</one> mit <two>Adenovirus</two> als Vertreter.
379
+ - What is <one>the average diameter of a parvovirus</one> (give only one value)? <one>20nm</one>. URL: https://de.wikipedia.org/wiki/Parvoviridae#Unterfamilie_Parvovirinae
380
+ - Name <one>a virus-centric database</one> that begins with the letter <two>'V'</two>. A: The <one>VIPER database</one>.
381
+ - Das <one>Maul-und-Klauenseuche-Virus</one> (<two>foot and mouth disease</two>) gehört zu welcher Familie? <one>Picornaviridae</one>. URL: https://de.wikipedia.org/wiki/Maul-und-Klauenseuche-Virus
382
+ - In virology: what is the <one>CFR</one>? This is the <one>Case Fatality Rate</one>. URL: https://en.wikipedia.org/wiki/Case_fatality_rate
383
+ - Name a specific virus that can cause <one>viral hemorrhagic fevers</one> in humans. A: The <one>Marburg virus</one>. URL: https://en.wikipedia.org/wiki/Marburg_virus
384
+ - <one>In welcher Phase</one> liegen extrazellulär keine infektiösen Viren vor? In der <one>Latenzperiode</one>.
385
+ - Name <two>one common complication</two> seen in people affected by <one>influenza</one>. A: <one>Pneumonia</one>. URL: https://en.wikipedia.org/wiki/Pneumonia
386
+ - Aside from <one>influenza</one>, name <two>four viruses</two> that can be transmitted from animals to humans. A: (1) <one>yellow fever virus</one> (2) <one>tick-borne encephalitis virus</one> (3) <one>rabies virus</one> (4) <one>ebola virus</one>
387
+ - Wofür steht die Abkürzung <one>TCID</one>? <one>Tissue Culture Infectious Dose</one>. URL: https://www.zeomic.co.jp/en/glossary/virus/71
388
+ - <one>When</one> was <two>smallpox</two> eradicated? In <one>1977</one>. URL: https://en.wikipedia.org/wiki/Smallpox#History
389
+ - Provide <one>two examples</one> for a <one>satellite virus</one> in small viruses. A: (1) <one>hepatitits delta virus</one> (2) <one>adeno-associated virus</one>
390
+ - The <one>Hepatitis delta virus</one>, <two>as a satellite virus</two>, requires which other virus as its helper virus? The <one>Hepatitis B virus</one>.
391
+ - <one>Dendritic cells</one> can <two>process protein antigens</two> by <three>which two pathways</three>? (1) <one>exogeneous</one> (2) <one>endogeneous</one>
392
+ - Why the name <one>Pandora</one> in Pandoravirus? They are from the <one>Pandora box</one>, which is not a box but a flask; and the Pandoravirus are <two>flask-like in shape</two>.
393
+ - Say that we can observe <one>a random, helical animal virus</one>. What can we further assume about such a virus, structure-wise? That this virus will most likely have <one>a lipid envelope</one>.
394
+ - <one>Wann</one> in etwa wurde das <two>Influenza-Virus</two> entdeckt (+/- 5 Jahre sind ok)? Im Jahre <one>1933</one>.
395
+ - Name <one>three viruses</one> that <two>can cause long-term infections</two>, aside from the HI-Virus. A: (1) Hepatitis B virus (2) Hepatitis C virus (3) Herpes simplex virus type I
396
+ - Nenne einen Vertreter der <one>einfachen Retroviren</one>. A: Das <one>avian leukosis virus</one>.
397
+ - <one>Picornaviruses</one> contain <two>n protomers</two> and <two>n structural proteins</two>? <one>60 Protomers</one> and <two>4 structural proteins</two> (VP1, VP2, VP3, VP4).
398
+ - Give a strong example of <one>a human virus able to cause a specific cancer</one>. A: The <one>human papillomaviruses</one>, which can cause <two>cervical cancer</two>.
399
+ - In virology: <one>BSL4</one> stands for ... ? <one>Biosafety Level-4</one>. URL: https://en.wikipedia.org/wiki/Biosafety_level#Biosafety_level_4
400
+ - Name a <one>DNA-virus with a circular genome</one>. A: The <one>DNA hepatitis B virus</one>.
401
+ - <one>CoV</one> (Coronavirus) may contain <two>PRRAR</two> in their genome. What does this stand for? <one>Polybasic cleavage site</one>.
402
+ - Bei <one>Influenza</one>: welche zwei <two>Hämagglutinin-Subtypen</two> sind die Erreger der klassischen Geflügelpest? <one>H5</one> und <one>H7</one>.
403
+ - Why might we conclude that <one>dHerelle</one> was not the brightest scientist? Because he favoured the hypothesis that <one>only one phage attacked all bacteria</one>.
404
+ - Name a virus with an <one>internal lipid membrane</one>. A: <one>Iridovirus</one>.
405
+ - Most <one>HPV virions</one> appear to enter the cell via a ... endocytic mechanism. A: <one>Clathrin-dependent endocytic mechanism</one>.
406
+ - Nenne ein <one>viruscodiertes Enzym</one> beginnend mit dem Buchstaben <two>T</two> ...? Die <one>Thymidinkinase</one>.
407
+ - <one>Herpesviren</one>: Durchseuchungsrate (des Menschen), in Prozent? <one>95%</one>.
408
+ - What is meant with the term <one>cryptic virus</one>? This refers to <one>a virus that has lost the ability to leave its host genome</one>.
409
+ - How does <one>HIV gp120</one> <three>protect itself against antibodies</three>? (1) <one>glycan shield</one> (2) <one>molecular occlusion</one> (3) <one>conformational masking</one>
410
+ - Was bedeutet der Begriff <one>Quasispecies</one> in der Virologie? Die Nachkommen eines RNA-Virus sind <one>eine Population aus sehr nahe verwandten Sequenzen</one>, die aufgrund mangelnder Proofreading-Aktivität entstehen.
411
+ - <one>The first discovery of a coronavirus</one>, <two>IBV</two> (Avian coronavirus), occurred in which year? <one>1931</one>. URL: https://en.wikipedia.org/wiki/Avian_coronavirus
412
+ - <one>Which person</one> coined the term <two>bacteriophage</two>? <one>Felix d'Herelle</one>. URL: https://en.wikipedia.org/wiki/F%C3%A9lix_d%27H%C3%A9relle
413
+ - Name one cellular molecule used by the <one>rabies virus</one> for attachment. A: <one>Acetyl-choline receptor</one>.
414
+ - Das <one>Hepatitis-Delta-Virus</one> Genom umfasst n Nucleotide? ~1700.
415
+ - Woher kommt der Name <one>Norovirus</one>? Vom <one>Norwalk Virus</one>, der auch zugleich der einzige Vertreter in diesem Genus ist.
416
+ - The <one>smallest, nondefective animal virus genome</one> can be found in which virus? <one>Circovirus</one>.
417
+ - Das <one>West-Nil-Virus</one> ist seit welchem Jahr bekannt? <one>1937</one>.
418
+ - Name a <one>multicellular change</one> that may be induced by/after a viral infection. A: <one>Syncytium formation</one> - aka <two>fusion of cell</two> events.
419
+ - Name a major difference between <one>bacterial</one> and <one>animal viruses</one>. A: <one>Animal viruses</one> have <two>a longer growth cycle</two>, at about 5-15 hours for completion.
420
+ - What is <one>the most important requirement for a virion</one> (aside from containing the genome)? A virion must be a <one>stable structure</one>.
421
+ - Andere Bezeichnung für <one>DNA Transposons</one>? <one>Class 2 Transposons</one>.
422
+ - Gibt es einen allgemeinen Unterschied zwischen <one>DNA Viren</one> und <one>RNA Viren</one>, mit Ausnahme der Genom-Grösse? <one>DNA-Viren</one> verwenden häufig <two>zelluläre Polymerase</two>, <one>RNA-Viren</one> kodieren häufig für ihre <one>eigene Polymerase</one>.
423
+ - Wieso mutagenisieren wir einen Virus bei genau <one>32 Grad Celsius</one>? Weil wir hier auf <one>temperatur-sensitive Viren</one> selektieren, die im oberen respiratorischen Trakt, aber nicht im unteren respiratorischen Trakt wachsen können.
424
+ - Are <one>viruses</one> killers? Not quite so; <one>they have not made their hosts extinct after all</one>.
425
+ - Nenne 6 <one>Übertragungsmechanismen der Viren</one> (primär zwischen Menschen)! A: (1) <one>oral-fäkal</one> (2) <two>Mutter-Kind</two> (3) respiratorisch (4) Hautbarriere durchbrechen (5) Kontakt mit Urin (6) allgemein Körperkontakt zu anderen Menschen
426
+ - Nenne <one>eine Virusgruppe</one> die fäkal-oral übertragen wird und die zu schweren Durchfallerkrankungen führen kann. A: Die <one>Noroviren</one>.
427
+ - <one>Which virus</one> is described as the <two>winter virus</two> typically? The <one>Influenza virus</one>.
428
+ - Which <one>body fluids</one> are important for viruses? (1) <one>blood</one> (2) <one>semen</one> (3) <one>saliva</one> (4) <one>respiratory fluids</one> (5) <one>feces</one>
429
+ - The <one>poliovirus genome</one> contains the <two>VPg protein</two>, at which of its ssRNA-end? At its <one>5' end</one>.
430
+ - Können <two>Viren</two> <one>vergesellschaftet</one> sein? Ja, das <one>Mimi-Virus</one> hat einen Satelliten-Virus der nur 1/10 so gross ist wie das Mimi-Virus und <two>Sputnik</two> genannt wird.
431
+ - The <one>Tobacco mosaic virus</one> (TMV) capsid is constructed using a single type of <two>protomer</two>. How many amino acids does this <two>protomer</two> have? <one>159 amino acids</one>. URL: https://www.ncbi.nlm.nih.gov/protein/NP_597750.1
432
+ - Nenne einen Nucleotidanalogen Hemmstoff der <one>HIV-Revertase</one>. A: <one>Aciclovir</one>.
433
+ - <one>Wann</one> wurde das <two>Maul und Klauenseuche Virus</two> entdeckt? Im Jahre <one>1896</one>.
434
+ - Nenne ein Medikament das gegen den <one>Herpes simplex virus</one> eingesetzt werden kann. A: <one>Acyclovir</one> (auch <one>Aciclovir</one> genannt). URL: https://de.wikipedia.org/wiki/Aciclovir
435
+ - <two>An welchem Virus</two> wurde <one>das Phänomen der Interferenz</one> entdeckt? <one>Gelbfiebervirus</one>.
436
+ - <one>Welche Person</one> entwickelte das <two>Konzept der Viren</two>? <one>Martinus Beijerinck</one>. URL: https://en.wikipedia.org/wiki/Martinus_Beijerinck
437
+ - Welchen Vorteil hat das CRISPR-System gegenüber RNAi in der <one>natürlichen Umgebung</one>? RNAi funktioniert nur gegen RNA-Viren, CRISPR hingegen funktioniert sowohl gegen RNA- als auch DNA-Viren.
438
+ - In <one>sea water</one>: how many virions may we find per millileter? About <one>9x 10 ** 8 virions per milliliter</one>.
439
+ - The <one>semliki forest virus</one> belongs to which group? The semliki forest virus belongs to the <one>Togaviruses</one>.
440
+ - Wieso wirkt <one>Ganciclovir</one> gegen Herpesviren? <one>Herpesviren</one> besitzen eine <two>Thymidinkinase</two>, die Ganciclovir phosphoryliert.
441
+ - Name <two>three different diseases</two> caused by the <one>Picornaviruses</one>. A: (1) <one>Polio</one> (2) <one>foot-and-mouth disease</one> (3) <one>common cold</one>
442
+ - Die bei <one>Rindern</one> tödlich verlaufende Krankheit <two>mucosal disease</two> wird von welchem Virus hervorgerufen? Von einem <one>Flavivirus</one>.
443
+ - Warum wollen wir bei einer <one>Tier-Herde</one> immer den gesamten Bestand impfen? Da wir so den <one>Infektionsdruck</one> senken können.
444
+ - <three>Wann</three> wurde erstmals gezeigt das <one>Warzen</one> durch infektiöse Agenzien hervorgerufen werden können, wie zum Beispiel durch <two>Papillomaviren</two>? Im Jahre <one>1894</one>, durch Variot. URL: https://www.researchgate.net/publication/299882055_Genitale_Infektionen_mit_humanen_Papillomviren_HPV_und_genitale_Tumoren_Diagnostische_Uberlegungen
445
+ - <two>Biosafety Level 4</two>: nenne einen Virus hier, der mit dem Buchstaben <one>L</one> beginnt. A: Das <one>Lassa virus</one>.
446
+ - Give <one>two examples</one> for <two>membrane fusion</two> used by viruses. A: (1) pH-independent fusion (2) acid triggered fusion
447
+ - What do we mean with an <one>acute infection</one>? This refers to a rapid production of infectious virions, followed by rapid elimination of the infection.
448
+ - Give an example for a <one>Togavirus</one>. A: The <one>Rubella virus</one>. URL: https://en.wikipedia.org/wiki/Rubella
449
+ - Das <one>VPg bei Poliovirus</one> hat n AA? <one>22 AA</one>.
450
+ - Historic name for <one>rabies</one>? <one>Hydrophobia</one> (<two>fear of water</two>). URL: https://en.wikipedia.org/wiki/Rabies
451
+ - <one>Wann</one> wurde die Struktur des <two>Influenza HA-Komplexes</two> durch Röntgenstrukturanalyse aufgeklärt? <one>1981</one>.
452
+ - Name <one>a plant virus</one> that has a DNA genome. A: <one>Cauliflower mosaic virus</one>.
453
+ - What exactly are <one>arboviruses</one>? These are viruses that have a life cycle alternating between an <one>insect vector</one> and a <one>vertebrate host</one>.
454
+ - The <one>HPV capsid</one> consists of <two>how many different structural proteins</two>? <two>Two</two>: the <one>major protein L1</one> and the <one>minor capsid protein L2</one>.
455
+ - Give <one>a term for RNA viruses</one> that explicitly exclude the <two>retroviruses</two>. A: <one>Riboviruses</one>. URL: https://en.wikipedia.org/wiki/Riboviria
456
+ - <one>Wo</one> innerhalb der Zelle replizieren die <two>Rhabdoviren</two>? <two>Rhabdoviren</two> <one>replizieren innerhalb des Cytoplasmas einer Zelle</one>.
457
+ - Give two specific examples, where the <one>hammerhead ribozyme</one> could be found. A: (1) In <one>plant viroids</one> (2) In <one>satellite RNAs of plant RNA viruses</one>
458
+ - Name <one>two viruses that are released from lesions</one>. A: (1) the <one>herpes simplex virus</one> (2) the <one>food and mouth disease virus</one>
459
+ - The sequence <one>Gly-Asp-Asp</one> in a virus may indicate ...? <one>RNA-dependent RNA-polymerase activity</one>.
460
+ - Die <one>cre-Rekombinase</one> aus <two>P1</two> bindet an? <one>loxP Sequenzen</one>.
461
+ - <one>Prionen</one> sind vermutlich Erreger der ... ? <one>Spongiformen Encephalopathien</one>.
462
+ - <one>Which virus</one> can provoke a <two>Burkitts lymphoma</two>? The <one>Epstein-Barr virus</one>.
463
+ - What is a <one>tegument</one>? This is <one>a cluster of proteins</one> that lines the space between the envelope and nucleocapsid, of all <two>herpesvirus</two>. URL: https://upload.wikimedia.org/wikipedia/commons/b/bb/Viral_Tegument.svg
464
+ - Nenne <one>drei Anforderungen an ein Vakzin</one>. A: (1) Hervorrufen höchstens milder Symptome (2) Stimulation einer effektiven und lang andauernden Immunität (3) <one>genetische Stabilität</one>
465
+ - <two>Durchmesser</two> des <one>Influenza-Virions</one>, in etwa? <one>100 nm</one>.
466
+ - Name one famous theory of <one>capsid design</one>. A: The <one>Caspar-Klug theory</one>. URL: https://en.wikipedia.org/wiki/Donald_Caspar
467
+ - Name two cellular molecules used by viruses to enter a eukaryotic cell. A: (1) <one>ICAM-1</one> (Intracellular adhesion molecule 1) by human rhinoviruses (2) Integrins, used by the <two>foot-and-mouth disease virus</two>
468
+ - The genome of the <one>Influenza A virus</one> encodes for <two>n genes</two>? <one>11</one>.
469
+ - Give an example in <one>E. coli</one> of a two-component abortive infection system. A: The <one>Rex system</one>.
470
+ - What are <one>simple retroviruses</one>? These are retroviruses that have a fairly simple lifestyle, characterized by the presence of at most one coding region in addition to those encoding the common virion proteins encoded by gag, pro, pol, and env.
471
+ - <two>Wann</two> konnte <one>Iwanowski</one> indirekt TMV nachweisen? <one>1892</one>.
472
+ - Why does <one>Herpes simplex</one> virus code for its own <two>thymidine kinase</two>? The virus cannot grow in neural cells because they are not proliferating (not making DNA). Although purine/pyrimidines are present, levels of phosphorylated nucleosides are low. Allows virus to grow in cells that are not making DNA. "Thymidine kinase" is a misnomer - the name should actually be <one>Deoxynucleoside kinase</one>.
473
+ - <two>Wann</two> gab es <one>in Deutschland das erste Impfgesetz</one>? <one>1874</one>.
474
+ - Was für ein Genom haben die <one>Flaviviridae</one>? <one>(+)ssRNA</one>, <two>linear</two>.
475
+ - <one>Wann</one> wurde das <two>Poliovirus</two> erstmals (künstlich) synthetisiert? <one>2002</one>.
476
+ - Vergleiche wieviel Energie von einer Zelle ein Phage, und ein Tiervirus wie Influenza, von dieser Zelle abzieht, in Prozent. Erkläre den Unterschiede hierbei. A: Tierische Zellen produzieren mehr Energie, und sind auch grösser, somit ziehen die Viren nicht so viel Energie ab, in %, verglichen zu einer bakteriellen Zelle. (1) <one>Bakteriophagen</one>: 40-50% der Energie der Zelle. (2) <one>Influenza</one>: <two>1% der Energie der Zelle</two>.
477
+ - Zu welcher Familie gehört das <one>Hepatitis B virus</one>? Zur <one>Hepadnavirus-Familie</one>.
478
+ - What is the <one>host range of a virus</one>? The host range of a virus is <one>the spectrum of host cells that virus can infect</one>.
479
+ - <two>Adults</two> infected with <one>Hepatitis A</one> usually develop ... ? <one>Jaundice</one>. URL: https://en.wikipedia.org/wiki/Jaundice
480
+ - Warum sind <one>WT Retroviren</one> gefährlich? Sie <one>können in Gene inserieren</one>.
481
+ - We may encounter <one>hydrophobic sequences</one> in a given <two>virus</two>. This may indicate? <one>Membrane association</one>.
482
+ - Nenne ein Beispiel für einen <one>nicht-umhüllten RNA Virus</one>. A: Der <one>Poliovirus</one>.
483
+ - Why may it be <one>harder</one> to work with <two>plant viruses</two> than with <two>animal viruses</two>? Their study sometimes requires the whole plant.
484
+ - Gibt es einen <one>Impfstoff</one> gegen das Epstein-Barr Virus? Nein.
485
+ - Can <one>AAV</one> infect <two>non-dividing cells</two>? Yes. <one>It can infect neurons in the brain</one>, for instance.
486
+ - <one>When</one> are both viral and bacterial transcripts made (+ specific example)? In a <one>nonlytic-bacteriophage</one> such as <two>M13</two>.
487
+ - What was <one>the fatality rate of Variolation</one>, in percent? <one>1-2%</one>.
488
+ - Nenne einen grundsätzlichen Unterschied im <one>Virenbefall</one> zwischen <two>Prokaryoten</two> und <two>Eukaryoten</two>. A: Das Virusgenom dringt in die bakterielle Zelle ein, die Proteinhülle bleibt außerhalb des Wirts. Bei den Viren, die eukaryote Zellen befallen, wird das gesamte Virus durch Endocytose aufgenommen. Die Trennung von der Proteinhülle findet im Wirt statt.
489
+ - <one>In welchem Jahr</one> wurde das <two>Tabakmosaikvirus</two> zuerst entdeckt? <one>1892</one>. URL: https://de.wikipedia.org/wiki/Tabakmosaikvirus#Geschichte
490
+ - The <one>poliovirus</one> uses which cellular receptor? <one>CD155</one>.
491
+ - Was ist ein <one>kryptisches Virus</one>? Dies ist <one>ein Virus welches die Fähigkeit verloren hat, seine Wirtszelle verlassen zu können</one>.
492
+ - What is the basic statement that the <one>error threshold</one> concept postulates, in virology? <one>Too many mutations lead to a non-viable virus</one>.
493
+ - Warum war es mitunter tragisch das die PCR-Methode zu empfindlich war, im Zuge der <one>SARS-Epidemie</one> in Hong Kong? Da einige Personen gesund waren - <one>sich im Krankenhaus jedoch mit dem SARS Virus infizierten</one>.
494
+ - Minimale und maximale Virion-Grösse (Angabe in nm)? (1) <one>Min</one>: <two>Parvovirus</two> <three>18 nm</three>. (2) <one>Max</one>: <two>Mimivirus</two> <three>400 nm</three>.
495
+ - Wie behandeln wir <one>Herpes-simplex</one>? Mittels <one>Aciclovir</one>. URL: https://de.wikipedia.org/wiki/Aciclovir
496
+ - Was ist Influenza-C <one>HEF</one>? Das ist ein <one>Hämagglutinin-Esterase Fusionsprotein</one>.
497
+ - Die mit einer <three>HPV-Erkrankung</three> verbunden örtliche Verdickung der Haut bei einer <one>Warze</one>, ist worauf zurückzuführen, klinisch betrachtet? Auf die <one>Induktion lokaler Zellproliferationen</one>.
498
+ - Was demonstrierte <one>Andre Lwoff</one> in Paris? Die Existenz eines viralen Genoms in einem Prophagen.
499
+ - What is <one>scrapie</one>? A disease of sheep and goats that has been known since a long time.
500
+ - Name the most famous virus that can be used to <one>fuse eukaryotic cells</one>. A: The <one>Sendai Virus</one>. URL: https://en.wikipedia.org/wiki/Murine_respirovirus
501
+ - The genome of the <one>Hepatitis C virus</one> is ... ? A <one>positive ssRNA genome</one> (<one>+ssRNA Genome</one>).
502
+ - <one>AIDS</one> hat man, per Definition, bei ... ? Weniger als <one>200 T-Helferzellen pro Mikroliter Blut</one>.
503
+ - The <one>Picornavirus</one> belong to what Baltimore class? IV.
504
+ - Which protein of the <one>Sendai Virus</one> is responsible for the fusion process? The <one>F protein</one>.
505
+ - Name the <one>most prominent virus</one> that has a <two>thymidine kinase</two> gene. A: The <one>herpes simplex</one> virus. URL: https://en.wikipedia.org/wiki/Herpes_simplex_virus
506
+ - Nenne einen <one>Virus</one>, der nur beim Menschen gefunden werden kann. A: Das <one>Masernvirus</one>.
507
+ - Name <one>two viruses</one> that <two>can cause hemagglutination</two>. A: (1) the <one>Influenza Virus</one> (2) the <one>measles virus</one>
508
+ - <one>Who</one> is the governing body für the Taxonomy of Viruses? The <one>ICTV</one>, the <two>International Committee on Taxonomy of Viruses</two>. URL: https://en.wikipedia.org/wiki/International_Committee_on_Taxonomy_of_Viruses
509
+ - The <one>mammalian hepadnavirus</one> uses which sequence for its <two>polyadenylation signal</two>? <one>TATAAA</one> (which is also a TATA box!).
510
+ - <two>Wo</two> repliziert ein <one>Viroid</one>? Im <one>Zellkern der Wirtszelle</one>.
511
+ - Wann wurde das <one>Tabakmosakivirus</one> erstmals <two>kristallisiert</two>? Im Jahre <one>1935</one>. URL: https://de.wikipedia.org/wiki/Tabakmosaikvirus
512
+ - <one>An Icosahedron</one> has <two>n axis of rotational symmetry</two>? (1) <one>5-fold</one> (2) <one>3-fold</one> (3) <one>2-fold</one>
513
+ - What means the term <one>RNA Quasispecies</one>? <one>RNA from inaccurate reproduction</one> is NOT an ensemble of identical molecules!
514
+ - What does the abbreviation <one>PP2A</one> stand for? <one>Protein phosphatase 2A</one>.
515
+ - Nenne drei verschiedene Möglichkeiten der <one>viralen Veränderung</one>. A: (1) <one>Mutationen</one> (2) <one>Rekombination</one> (3) <one>Reassortment</one>
516
+ - <one>HPV16</one> and HPV18: name two cancers associated with these two serotypes. A: (1) <one>cervical carcinoma</one> (2) <one>anal carcinoma</one>
517
+ - The <one>Sendai virus</one> uses which initiation codon? <one>ACG</one>.
518
+ - Is <one>successful entry of a virion</one> the most important step? No, the virus could be inactivated still, before replication, through <one>lysosomal enzymes</one> for instance.
519
+ - <one>How many people worldwide</one> are infected with <two>Hepatitis B</two>? About <one>two billion people</one>.
520
+ - Name an <one>antiviral mechanism</one> that can be found in both animals and plants. A: RNA interference (RNAi). URL: https://en.wikipedia.org/wiki/RNA_interference
521
+ - Give two examples for which viral nucleic acid does not code for. A: (1) <one>mitochondria</one> (2) <one>ribosomes</one>
522
+ - Unterscheidung der <one>ssRNA-Viren</one>? <one>+ Strang</one> und <one>- Strang</one>.
523
+ - Was ist das <one>Post-Polio Syndrom</one>? Symptome die erst <one>15-40 Jahre</one> nach der ursprünglichen Polioerkrankung auftreten.
524
+ - Die häufigsten Verursacher von Magen-Darm-Erkrankungen bei den Viren, insbesondere beim Dünndarm, ist/sind ... ? Die <one>Noroviren</one>. URL: https://de.wikipedia.org/wiki/Norovirus
525
+ - Name <one>three different enzymes</one> that could be found in a <two>retroviral virion</two>. A: (1) <one>reverse transcriptase</one> (2) <one>integrase</one> (3) <one>protease</one>
526
+ - <one>Oseltamivir</one> kann gegen welchen Virus eingesetzt werden? Gegen den <one>Influenza virus</one>.
527
+ - What does the term <one>orphaned virus</one> mean? When a virus can no longer find susceptible host cells, usually because these host cells are no longer existing, perhaps even extinct.
528
+ - Provide <two>5</two> examples for <one>body fluids</one> where we can find viruses and give one example each. A: (1) blood: hepatitis B virus (2) faeces: poliovirus (3) semen: HIV-1 (4) <one>respiratory droplets</one>: <two>Influenza A</two> (5) <one>saliva</one>: <two>Eppstein-Barr virus</two>
529
+ - Andere Bezeichnung für das <one>Warzenvirus</one>? <one>Papovaviren</one>. Stimmt aber wohl nicht ganz, das wurde getrennt in <two>Papillomaviridae</two> und <two>Polyomaviridae</two>.
530
+ - <one>Wo</one> im menschlichen Körper vermehren sich <two>Polioviren</two>? Im lymphatischen Gewebe des Darms.
531
+ - An <one>icosahedron</one> contains <two>how many pentamers</two>? <one>60</one>.
532
+ - Why do we require <one>two injections of killed viruses</one>? So that they provide <one>a primary</one> and then <one>a secondary immune response</one>.
533
+ - The genome size of the <one>African swine fever virus</one> is about ... ? About <one>170-190 kbp</one>.
534
+ - Nenne einen Virus der <one>transovarial transmission</one> verwendet. A: Der <one>yellow fever virus</one>, in Mosquitos.
535
+ - <one>SARS-CoV-2</one> has sufficient affinity to <two>ACE2</two> receptors. <two>ACE2</two> stands for ... ? <one>Angiotensin converting enzyme 2</one>. URL: https://en.wikipedia.org/wiki/Angiotensin-converting_enzyme_2
536
+ - Nenne ein Beispiel für einen Virus, bei dem wir <one>negrische Einschluss-Körperchen</one> sehen mögen. A: Bei den <one>Rhabdoviren</one>.
537
+ - Name the <two>two distinct infectious particles</two> of the <one>Poxvirus</one>. A: (1) the <one>intracellular mature virion</one> (MV) (2) the <one>extracellular virion</one> (EV)
538
+ - What does <one>Rubella</one> mean? It comes from latin and means <one>little red</one>.
539
+ - Besitzen <one>Flaviviren</one> eine IRES Struktur? Nein.
540
+ - Die <one>Oberfläche eines Stecknadelkopfes</one> bietet n Rhinoviren Platz? <one>Fünfhundert Millionen</one> (<one>500 Millionen</one>).
541
+ - Wer genau besitzt <one>v-onc Gene</one>? <one>Akut transformierende Retroviren</one>.
542
+ - Name one <one>inhibitor of Neuraminidase</one>. A: <one>Tamiflu</one>. URL: https://en.wikipedia.org/wiki/Oseltamivir
543
+ - The <one>NDV virus</one> is ... ? The <one>Newcastle Disease Virus</one>.
544
+ - In general, what is meant with the term <one>satellite virus</one>? These are <two>viruses that are unable to replicate</two>, unless the host cell is also infected with a so-called <one>helper virus</one>.
545
+ - Name <one>a virus that is transported via microtubules</one>. A: The <one>Vaccinia virion</one>.
546
+ - We have <one>isolated a new viruse</one> and now we wish to determine whether this virus is a <two>RNA virus</two> or a <two>DNA virus</two>. How can we proceed? We can employ a <one>ribonuclease</one> and a <one>deoxyribonuclease</one>, and thus <two>test the susceptibility of our material at hand to these enzymes</two>.
547
+ - Wer oder was überträgt am häufigsten <one>Gelbfieber</one> - also das <one>Gelbfiebervirus</one>? <one>Mosquitos</one>.
548
+ - The genome of <one>Rubella-virus</one> is? A <one>ssRNA of positive polarity</one> (enclosed by an <two>icosahedral capsid</two>).
549
+ - Name <two>a virus</two> that has a <one>Cyclophin</one>. A: The <one>HI-Virus</one>.
550
+ - Schlussfolgerung: Ein Virus der im test tube <one>self-assembly</one> zeigt ... A: ... wird dies wahrscheinlich auch in der Zelle zeigen (<one>in-vivo</one>).
551
+ - Name the three known subtypes of <one>human influenza viruses</one>. A: (1) <one>H1N1</one> (2) <one>H1N2</one> (3) <one>H3N2</one>
552
+ - A <one>viral genome</one> can be in which of 3 (physical) forms? Give an example for each. A: (1) <one>circular</one>: Polyoma (2) "linear": Adeno (3) "segmented": Influenza
553
+ - Name the <one>four possible types of polymerases</one>. A: (1) <one>RNA-dependent DNA polymerases</one> (2) <one>RNA-dependent RNA polymerases</one> (3) <one>DNA-dependent DNA polymerases</one> (4) <one>DNA-dependent RNA polymerases</one>
554
+ - Das <one>HPV-Genom</one> kodiert für das <two>E1 Protein</two>. Dieses Protein hat Ähnlichkeiten zu welch anderem viralen Protein? Zum grossen T-Antigen von SV40.
555
+ - Beschreibe den <one>Lebenszyklus eines Retrovirus</one>. A: Beginn: Infektion der Wirtszelle. Danach erfolgt die Produktion einer DNA Kopie des RNA Genoms mit Hilfe der RevTranskriptase, Transport viraler DNA in den Zellkern, Integration der viralen DNA in das Wirtsgenom (ziemlich random), Transkription der viralen DNA in mRNA, gesteuert von einem starken Promoter in der 5 Strich LTR Sequenz, Translation von gag,pol env im Ctyoplasma, Produktion des Capsids das mit 2 RNA Strängen und einigen Molekülen RevTranskriptase, beladen wird, Freisetzung der Virionen durch <two>budding</two>.
556
+ - Für die Entstehung von Krebs bei <one>HTLV-Infektionen</one> ist welches HTLV Protein wichtig? Das HTLV-1 Protein <one>Tax</one>.
557
+ - What is the <one>human virome</one>? The <one>human virome</one> is the collection of <two>all the viruses in the human body</two>.
558
+ - Die <one>Thogotoviren</one> besitzen n Genomsegmente? <one>6</one>.
559
+ - Name an <one>awful virus</one> that attacks rabbits. A: <one>Myxomatosis</one>. URL: https://en.wikipedia.org/wiki/Myxomatosis
560
+ - <two>Wo</two> in einer Zelle replizieren die <one>Pockenviren</one>? Diese <two>DNA-Viren</two> replizieren <one>im Cytoplasma</one>.
561
+ - Why are <one>nucleoside analog drugs</one> given in non-phosphorylated form? So that we can <one>get these drugs across the membrane</one>.
562
+ - Der <one>Reovirus</one> besitzt n Gene? <one>22</one>.
563
+ - The <one>Hepatitis C virus</one> belongs to which Family? The <two>Hepatitis C virus</two> belongs to the <one>Flaviviridae</one>.
564
+ - Name a <one>drug</one> that could be used against the influenza virus. A: <one>Tamiflu</one> - aka <two>seltamivir</two>.
565
+ - Nenne einen Virus, der in zwei verschiedenen Wirten repliziert. A: Der <one>Alphavirus</one>: dieser Virus repliziert in <two>Mammalia</two> und in <two>Insekten</two>.
566
+ - Für einen <one>pathogenen Virus</one>: welche 4 grundlegenden Wechselwirkungen sind mit dem Wirt möglich? Gib jeweils ein Beispiel an. A: Der <one>LACP Slogan</one>: (1) <two>latent</two>: <three>Herpes</three> (2) <two>akut</two>: <three>Masern</three> (3) chronisch: Hepatitis B (4) persistierend: Poliovirus
567
+ - <one>Cidofovir</one> wird wo eingesetzt? Zur Behandlung von <two>Cytomegalie-Retinitis</two>, <one>bei AIDS-Patienten</one>.
568
+ - The <two>satellite tobacco mosaic virus capsid</two> is about <one>n nm in diameter</one>? <one>17 nm</one> in diameter.
569
+ - The <one>Russian Flu</one> occurred in which year, roughly? <one>1889</one>.
570
+ - What are <one>metastabile particles</one>? These are particles that <one>have not yet reached their lowest energy level</one>.
571
+ - In Virology: what do we mean with a <one>dead-end host</one>? This is a host where the virus can not continue its life-cycle. When this term is applied to humans, this means that in this case there will be no human-to-human transmission of said virus. URL: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2394705/
572
+ - Why is the <one>smallpox virus</one> called <two>small</two>? So that it could be distinguished from the <one>great pox</one> (aka <two>syphilis</two>).
573
+ - <one>Wieviele Pflanzenviren</one> wurden beschrieben? Etwa <one>1000</one>.
574
+ - The receptor for the <one>Ebola Virus</one> is ...? <one>TIM-1</one>.
575
+ - In der Virologie: wieso die Bezeichnung <one>Negativ-Färbung</one>? Weil hier <one>der Hintergrund eingefärbt wird</one>, und das Virus selbst relativ unberührt bleibt.
576
+ - Name three ways/targets how a virion may become inactivated, by <one>damage to a particular component</one>. A: (1) surface protein (2) nucleic acid (3) internal protein
577
+ - Die <one>HPV</one>/<one>Papillomaviren</one> haben das <two>L1-Protein</two> und das <two>L2-Protein</two>. Gib jeweils ein anderes Wort für diese beiden Proteine. A: (1) <one>L1-Protein</one>: <two>major capsid protein</two> (2) <one>L2-Protein</one>: <two>minor capsid protein</two>
578
+ - Der <one>Influenza - GAU</one> wurde durch welchen Subtyp verursacht? <one>H5N1</one>.
579
+ - What may be the relevance of <one>pseudoknots</one> found in some viruses? (1) <one>enzyme activity</one> (2) <one>ribosomal frameshifting</one>
580
+ - The <one>largest known DNA viruses</one> <two>infect</two> <three>which target cell</three>? <one>Acanthamoeba</one>. URL: https://en.wikipedia.org/wiki/Acanthamoeba
581
+ - Was meinen wir mit <one>Patient-0</one>? Dies ist der erste Mensch der bei einer Epidemie ein Virus in sich trägt und auch sein direktes Umfeld ansteckt.
582
+ - Minimaler Durchmesser der <one>Circoviren</one>? <one>16 nm</one>.
583
+ - The <one>human papillomaviruses</one> use how many genome strands for transcription? Only <one>one</one>.
584
+ - If <one>a pigeon</one> may walk in circles or look at the sky (<two>stargazing</two>), which viral infection may be the cause for this erratic behaviour? An infection with a <one>paramyxovirus</one>. URL: http://www.pigeon-aid.org.uk/pa/html/paramyxovirus__pmv_.php
585
+ - Andere Bezeichnung für <one>Reassortment</one> bei Viren? <one>Virus Sex</one>.
586
+ - Why do many <one>DNA viruses</one> encode for a gene which influences the cell cycle? Because <one>a virus needs the S-phase for reproduction</one>, and most animal cells are in G1 or G0 phase.
587
+ - <one>Human rhinovirus</one> consists of a single gene whose translated protein is cleaved by <two>virally encoded proteases</two>, into how many different proteins? <one>11</one>.
588
+ - Merkslogan der 9 Genera bei den <one>Picornaviridae</one>? Entero, Rhino, Cardio, Kobu, Tescho, Aphtho, Parecho, Hepato, Erbo.
589
+ - Ab wann sprechen wir, klinisch betrachtet, von <one>AIDS</one>? Ab einer Konzentration von <one>weniger als 400 Helferzellen pro ml Blut</one> (400 / ml).
590
+ - Wie kann man <one>Tierviren quantifizieren</one>? Durch Bestimmen der <one>lethal dose</one>.
591
+ - Beim <one>AIDS-Test</one>: was wird hier getan? Zuerst erfolgt ein ELISA, dann ein Western-Blot. Beide weisen Antikörper gegen HIV-Proteine nach.
592
+ - <one>Wieviele Eckpunkte</one> hat ein <two>Adenovirus-Capsid</two>? <one>12</one>.
593
+ - <one>Influenza</one> besitzt das <two>NEP</two>-Protein NS2. Was heisst <two>NEP</two>? <one>Nuclear Export Protein</one>.
594
+ - Warum wird eine <one>chronische Infektion</one> häufiger bemerkt als eine <one>persistierende Infektion</one>? A: <one>Persistierende Infektionen</one> haben meistens einen niedrigeren Titer als die <two>chronischen Infektionen</two>.
595
+ - Nenne ausser den <one>Influenza-A-Viren</one> noch eine weitere Virusgruppe die <two>Reassortanten</two> bildet. A: Die <one>Reoviren</one>.
596
+ - Wie geht die <one>NLS-Sequenz</one> des <three>SV40 virus</three>? <one>P-P-K-K-K-R-K-V</one> - hence <two>eight aminoacids</two>.
597
+ - First step of <one>HIV-1 entry</one>? Binding of the <one>gp120 surface molecule</one> to its receptor, the CD4 molecule.
598
+ - <one>HIV</one> hat eine Lipidschicht mit zwei Glykoproteinen. Welches davon durchspannt die Membran? <one>gp41</one> <two>durchspannt die Membran</two>.
599
+ - <one>Amantadin</one> wurde früher gegen welchen Virus eingesetzt? Gegen <one>Influenza-A Viren</one>. Es verhinderte das <two>Uncoating</two>.
600
+ - Nenne einen Vertreter der <one>class I Baltimore Viren</one>. A: <one>Feline parvovirus</one>.
601
+ - Name <one>two different viruses</one> that have the name <two>thread</two>. A: (1) <one>Filovirus</one> (2) <one>Closterovirus</one>
602
+ - Name <one>three hypotheses</one> explaining the origin of viruses, without explaining these hypothesises. A: (1) Regressive hypothesis (2) Cellular origin hypothesis (3) <one>Coevolution hypothesis</one>
603
+ - The <one>poliovirus</one> requires n days to begin before it infects the central nervous system? About <one>3 full days</one>.
604
+ - <one>Pandoravirus</one> holds what record? The Pandoravirus has <one>the largest genome of any viral genus</one>.
605
+ - Können Retroviren in das Virusgenom ihrer Wirtszelle integrieren? Ja.
606
+ - In <one>Influenza</one>, such as the H1N1 'swine flu' variant, which segment is primarily responsible for shutting off the immune system? The <one>NS1 segment</one>.
607
+ - <one>Coronaviruses</one> typically tend to cause diseases in <two>which two eukaryotic groups</two>? (1) <one>birds</one> (2) <one>mammals</one>
608
+ - What does it mean to find a <one>pandemic virus</one>? That a virus occurs in many nations simultaneously world wide.
609
+ - Wer entwickelte den <one>Totimpfstoff</one>? Jonas <one>Salk</one>. URL: https://de.wikipedia.org/wiki/Polioimpfstoff#Inaktivierter_Polioimpfstoff_.28Salk.29
610
+ - <one>Genom-Typ</one> des MKS-Virus (Maul und Klauenseuche)? Das Maul-und-Klauenseuche Virus ist ein <two>ss(+)RNA Virus</two>.
611
+ - In Virology: <two>when</two> may we speak of a <one>chronic infection</one>? When the infected host continues to release viral progeny over a longer period of time, perhaps even over several generations (when bacteria are infected).
612
+ - Bei Viren: was heisst <one>VPg</one>? <one>Viral priming protein</one> beziehungsweise <two>Virus Protein, genome linked</two>.
613
+ - Name one common mechanism how <one>metastabile particles</one> are produced. Give one example in viruses. A: By <one>proteolysis of a viral protein</one>. Influenza HA0 protein becomes HA1 + HA2.
614
+ - <one>How many</one> major types of CRISPR systems exist? 3.
615
+ - Was war das erste <one>Onkogen</one>, das entdeckt wurde? <one>src</one>, aus dem <two>Rous Sarkomvirus</two>. URL: https://en.wikipedia.org/wiki/Rous_sarcoma_virus#Src_gene
616
+ - <two>Viruses</two> were actually discovered in the year <one>1892</one>, by which person? <one>Dimitri Ivanowski</one> (a Russian botanist).
617
+ - Name a virus, other than Adenovirus, that is <one>able to cause diarrhea</one>. A: <one>Rotavirus</one>. (Another good answer would be the <two>Norovirus</two>.)
618
+ - It was quite simple to understand the gene expression patterns of the <one>polyomaviruses</one>. Why was it much harder to study <two>papillomaviruses</two>? It was very difficult to grow these viruses in cell culture systems.
619
+ - What is <one>the most important clinical characteristic of a herpesvirus infection</one>? <one>Latency</one>.
620
+ - The diameter of the <one>HPV capsid</one> is <two>n nm</two>? <one>55 nm</one>.
621
+ - Andere Bezeichnung für die <one>Pocken</one>? <one>Variola</one>.
622
+ - Nenne ein konkretes Beispiel für Viren mit <one>teilweise doppelsträngigem DNA-Genom</one>. A: Die <one>Hepadnaviren</one>.
623
+ - Die <one>Inkubationszeit</one> (von-bis) beim Maul-und-Klauenseuche Virus, beträgt <two>n Tage</two>? <one>2-3 Tage</one>.
624
+ - Viruses that belong to <one>Baltimore class I</one> have what kind of genome? They have a <one>dsDNA genome</one>.
625
+ - Was ist die <one>Passive Immunisierung</one>? Dies ist <one>die Zuführung körperfremder Antikörper</one> zur Bekämpfung einer akuten Infektion. Dies mag auch als eine kurzfristige <two>Urlaubs-Immunisierung</two> seine Verwendung finden.
626
+ - Name a <one>dsDNA virus</one> that replicates through an <two>RNA intermediate</two>. A: The <one>Hepatitis B virus</one>. It carries a <two>virally encoded reverse transcriptase</two>.
627
+ - Where in/on a <one>picornavirus</one> can we find <two>VP4</two>? VP4 lies on the inside of the virus particle.
628
+ - Name one advantage for a virus to make use of a <one>vector</one>, in natural systems? They can <one>cross a strong membrane</one> due to the vector, such as a plant cell.
629
+ - How can we <two>easily detect</two> the <one>mosaic disease of tobacco plants</one>? By the distinct <one>discoloration of the leaves</one>.
630
+ - <one>HIV</one> hat eine Strukturelement im Genom, genannt <two>TAR</two>. Wofür steht diese Abkürzung? Diese Abkürzung steht für <one>tat responsive element</one>. URL: https://en.wikipedia.org/wiki/Tat_(HIV)
631
+ - Nenne zwei Vertreter der <one>PicoRNA Viren</one>. A: (1) <one>Poliovirus</one> (2) <one>Foot and mouth disease virus des Aphthovirus-Genus</one> (URL: https://en.wikipedia.org/wiki/Foot-and-mouth_disease)
632
+ - Nenne einen Virus der die Blutgefäße zerstören kann. A: Das <one>Ebola-Virus</one>.
633
+ - <one>TMV</one> hat n identische UE? <one>2130</one>.
634
+ - Das <one>gp120-Protein</one> von HIV bindet an welchen Rezeptor? An den <one>CD4-Rezeptor</one>.
635
+ - <two>Which two proteins</two> determine the <one>antigenic properties of Influenza A</one>? A: (1) <one>Hemagglutinin</one> (2) <one>Neuraminidase</one>
636
+ - Der erste Wirkstoff gegen <one>Herpes</one> war ... ? <one>Aciclovir</one>. URL: https://en.wikipedia.org/wiki/Aciclovir
637
+ - Was können wir über die Chromosomen von <one>small viruses</one> sagen? Deren Chromosomen sind <one>single-stranded</one>.
638
+ - Was heisst virale <one>RDRP</one>? <one>RNA-dependent RNA polymerase</one>.
639
+ - The <one>sole members</one> of the <two>Baltimore class VI</two> are ... ? The <one>Retroviruses</one>.
640
+ - Nenne eine Möglichkeit wie der <one>physiologische Level an Interferon</one> hochgehalten werden könnte. A: Durch <one>häufige Virusinfektionen</one>.
641
+ - Nenne einen <one>viral kodierten Transkriptionsfaktor</one>. A: <one>HSV VP16</one>.
642
+ - Durchmesser eines <one>Parvovirus</one> (von-bis)? <one>18 - 28 nm</one>. URL: https://en.wikipedia.org/wiki/Parvovirus
643
+ - Beim <one>Piercing</one> und bei <one>Tätowierungen</one> kann <two>welches Virus</two> übertragen werden? Das <one>Hepatitis C-Virus</one>.
644
+ - In the <one>SV40 genome</one>, we can find a <two>small-T</two> and a <two>large-T</two>. The Large-T antigen - does it belong to the <three>early</three> or to the <three>late</three> transcription stage? It belongs to the <one>early genes</one> that are transcribed.
645
+ - Was meinen wir mit <one>pleomorphen Viruspartikeln</one>? Dies sind <one>Viruspartikel die sich hinsichtlich Größe und Form stark voneinander unterscheiden</one>.
646
+ - If we pick a <one>random virus</one> from anywhere, is it more likely that said virus will infect <two>bacteria</two> or <two>eukarya</two>? <one>Eukarya</one>.
647
+ - Salk und Sabin-Impfstoff. Einer ist ein Totimpfstoff, der andere ein Lebendimpfstoff. Wie kann man sich das merken? "Happy Saby"! (1) <one>Sabin</one> ist der <two>Lebendimpfstoff</two>. (2) <one>Salk</one> ist der <two>Totimpfstoff</two>.
648
+ - Name <one>two viruses</one> that are transmitted via the <two>respiratory route</two>, aside from rhinoviruses. A: (1) <one>influenza A virus</one> (2) <one>measles virus</one>
649
+ - <one>Influenza</one> repliziert wo? Im <one>Zellkern</one> einer eukaryoten Zelle.
650
+ - Was bewirkt <one>Aciclovir</one>? Strangabbruch bei der Replikation des viralen Genoms.
651
+ - How can we define <one>giant viruses</one>? These viruses are <one>visible by light microscopy</one>.
652
+ - In <one>marine viral ecology</one>: what means <two>DOM</two>? <one>Dissolved organic matter</one>.
653
+ - By what <one>transmission route</one> does the Influenza virus spread? By the <one>oral-fecal route</one>.
654
+ - Welcher Virus wurde 2012 in Deutschland bekannt da er über Lebensmittel übertragen wurde? Der <one>Norovirus</one>. Man vermutet das Noroviren relativ hitzestabil sind.
655
+ - Was sind <one>SRS-Viren</one>? <one>Small, round-structured viruses</one>. URL: https://pubmed.ncbi.nlm.nih.gov/8133807/
656
+ - Is <one>SV40</one> a dangerous virus? Yes, for monkeys, as it can cause cancer.
657
+ - Durchmesser eines <one>Papillom-Virus</one>? <one>55 nm</one>.
658
+ - What is the <one>virosphere</one>? The virosphere is all those places where viruses are found or in which they interact with their hosts.
659
+ - Manche Viren lassen sich nicht in Icosahedral oder helical einteilen, das sind die <one>komplexen Viren</one>. Nenne <two>zwei Familien</two> dazu. A: (1) <one>Poxviridae</one> (2) <one>Retroviridae</one>
660
+ - Most virions are too small to be studied with a light microscope, so why is this microscope still used in virology? Because we could still observe <one>cytopathic effects</one>. URL: https://en.wikipedia.org/wiki/Cytopathic_effect
661
+ - Some virus families make use of a single large protein (<one>polyprotein</one>), which is then cleaved by proteases into the individual proteins. Which virus family in particular is known to do so? The <one>positive stranded RNA viruses</one> (<two>+ssRNA viruses</two>).
662
+ - Welche Besonderheit des Genoms weisen <one>Papillomviren</one> auf? Papillomviren besitzen <one>histonähnliche Proteine</one>, die mit der DNA assoziiert sind und dem Chromatin eukaryoter Zellen ähneln.
663
+ - Give one specific example for <one>viral footprints</one>. A: <one>Inclusion Bodies</one>.
664
+ - What does <one>viral recombination</one> allow the virus? It <one>allows viable virus to be generated from two defective genomes</one>.
665
+ - The <one>Hepadna Family</one> has how many members? <one>5</one>.
666
+ - <one>Slow virus</one> Infektionen wirken sich vor allem wo im Körper aus? Im <one>zentralen Nervensystem</one>.
667
+ - Das <one>TMV-Genom</one> besitzt <two>n Nukleotide</two> (+/- 100 reicht als Antwort)? <one>6395</one>. URL: https://de.wikipedia.org/wiki/Tabakmosaikvirus
668
+ - The order of the <one>Caudovirales viruses</one> is also known as ... ? The <one>tailed bacteriophages</one>. URL: https://en.wikipedia.org/wiki/Caudovirales
669
+ - Name <one>a virus</one> that has, at the least, two distinct (and different) life cycles. A: <one>Arboviruses</one> - they have both insects and vertebrates as hosts.
670
+ - The <one>HPV particle</one> interacts with the cell surface via interaction of its major capsid protein (L1) with ... which target? It interacts with <one>heparan sulfate proteoglycans</one>.
671
+ - Give an example for the unusual <one>dsRNA virus group</one> among the animal viruses. A: The <one>Reoviruses</one> (example: rotavirus).
672
+ - Nenne <one>zwei raffinierte Wege eines Virus zu überleben</one>. A: Als (1) <one>Teil der DNA</one> und (2) als <one>trojanisches Pferd in Immunzellen.</one>
673
+ - Name two possible causes for <one>antigenic shift</one>. A: (1) <one>Recombination</one> (2) <one>Reassortment</one>
674
+ - Was heisst <one>hämatogene Verbreitung</one>? Eine <one>Streuung über den Blutweg</one>.
675
+ - Der Wirkstoff <one>AZT</one> kann die <two>reverse Transkriptase hemmen</two>. Wofür steht die Abkürzung <one>AZT</one>? <one>Azidothymidin</one>. URL: https://en.wikipedia.org/wiki/Zidovudine
676
+ - <one>Herpesvirus</one> can not only <two>cause liver tumors</two> but also ... ? The <one>Kaposi's sarcoma</one>.
677
+ - Give an example for a virus that has a colour as part of its name. A: The <one>Bluetongue virus</one> (<one>BTV</one>), which infects sheep. URL: https://en.wikipedia.org/wiki/Bluetongue_disease
678
+ - Wieviele verschiedene <one>humane Papillomavirustypen</one> (HPV) sind heute in etwa bekannt? Weit <one>über 100</one>.
679
+ - Nenne einen Virus der <one>tRNAs</one> im Virion besitzt. A: Die <one>Virionen der Retroviren</one>.
680
+ - Do <one>viruses</one> exist that code for <two>tRNA</two>? Yes, <one>T4</one> and <one>phycodnaviruses</one> do.
681
+ - Durchmesser des <one>Phi X174</one>? <one>27 nm</one>.
682
+ - Nenne einen Vertreter der <one>Alphaviren</one>. A: Das <one>Sindbis-Virus</one>. URL: https://de.wikipedia.org/wiki/Sindbis-Virus
683
+ - The <one>SV40 virus</one> has a protein called <two>large T antigen</two>. Why the <three>T</three> there? <one>T</one> ... stands for <one>Transplantation</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/6175086
684
+ - <one>Retrovirus-Partikel</one> haben welche <two>gp-Proteine</two>? (1) <one>gp41</one> (2) <one>gp120</one> URL: https://en.wikipedia.org/wiki/Envelope_glycoprotein_GP120
685
+ - <one>Plant viruses</one> have usually which form/morphology? Plant viruses are typically <one>of helical symmetry</one>.
686
+ - <one>Human rhinoviruses</one> have how many groups? <one>3</one> (<two>A</two>/<two>B</two>/<two>C</two>).
687
+ - Nenne einen Virus der <one>ICAM-1</one> verwendet. A: Das <one>Rhinovirus</one>.
688
+ - What do <one>Viroids</one> lack? <two>Viroids</two> lack a <one>protein coat</one>. URL: https://en.wikipedia.org/wiki/Viroid
689
+ - Give an example of the <one>error threshold concept</one> being applied in order to treat a specific viral disease. A: The compound <one>ribavirin</one> is used to treat <two>hepatitis C virus</two> infection (which is a RNA-virus).
690
+ - <one>Who</one> <three>discovered viruses</three>? <one>Dmitry Ivanovsky</one> in 1892. Martinus Beijerinck then gave them the name <two>viruses</two>, though.
691
+ - Nenne einen Virus, ausgenommen Influenza, dessen <one>Genom segmentiert vorliegt</one>. A: <one>Reovirus</one>.
692
+ - Nenne <one>ein zelluläres Enzym</one>, welches durch <two>Ribavirin</two> gehemmt wird. A: Die zelluläre <one>Guanylyltransferase</one>.
693
+ - Nenne einen Vorteil eines <one>Peptidimpfstoffes</one>. A: Ein Peptidimpfstoff ist frei von Nucleinsäuren.
694
+ - Der erste potente Wirkstoff gegen <one>Herpes-Viren</one> war ...? <one>Aciclovir</one>. URL: https://de.wikipedia.org/wiki/Aciclovir
695
+ - In Virology: what is a <one>minichromosome</one>? SV40 DNA with bound nucleosomes.
696
+ - Nenne eine virale Krankheit, die über einen <one>Arthropoden-Vektor</one> übertragen wird. A: <one>Gelbfieber</one>. URL: https://de.wikipedia.org/wiki/Gelbfieber
697
+ - Was sind die meisten <one>mystery viruses</one>? Viren die <one>Respirationsprobleme verursachen</one>.
698
+ - Nenne zwei konkrete, endozytische Mechanismen von Viren mit jeweils einem spezifischen Beispiel hierzu. A: (1) <one>Caveolin</one> mit <two>SV40</two> (2) <one>Clathrin</one> mit <two>Adenoviren</two>
699
+ - Die <one>HIV-Protease</one> ist eine ...? <one>Aspartatprotease</one>. URL: https://de.wikipedia.org/wiki/HIV-Protease
700
+ - The <one>human T-cell lymphotropic virus type I</one> belongs to which family? It belongs to the <one>retrovirus family</one>.
701
+ - Name <one>a virus that clusters in a rosette</one>. A: <one>SSV</one> (<two>Sulfolobus spindle-shaped virus</two>).
702
+ - Nenne ein zelluläres Protein das von <one>Papillomaviren</one> im Capsid mitverpackt werden kann. A: <one>Zelluläre Histonproteine</one>.
703
+ - The <one>Filoviridae</one> bind to the <two>NPC1 protein</two> (Niemann-Pick disease type C integral membrane protein), which can be found where inside of a cell? NPC1 is exposed in the <one>endosomal lumen</one>.
704
+ - Name a very important <one>viral evasin</one> that can block antigen presentation by preventing peptide movement through the TAP peptide transporter. A: <one>US6</one>.
705
+ - What is <one>viraemia</one>? Viraemia refers to <one>the presence of viruses in the blood</one>.
706
+ - What is a <one>peplomer</one>? A glycoprotein spike on a viral capsid or viral envelope. URL: https://en.wikipedia.org/wiki/Peplomer
707
+ - Why the name <one>adeno-associated virus</one>? Because this virus <one>depends on a helper virus</one> (i.e. adenovirus) for its replication.
708
+ - Name <one>the three types of capsid symmetry</one>. A: (1) <one>helical</one> (2) <one>icosahedral</one> (3) <one>complex</one>
709
+ - What is the job of the <one>HIV protease</one>? It cleaves an HIV precursor protein, necessary in <one>virus maturation</one>.
710
+ - <one>HIV</one> can bind to CD4 because of ... ? <one>gp120</one>.
711
+ - Für einen <one>antigen shift</one>, in <two>Influenza</two>, muss welches Ereignis eintreten oder geschehen? Eine <one>Doppelinfektion einer Zelle</one>.
712
+ - <one>Welche Krankheit</one> wird durch das <two>Epstein-Barr-Virus</two> verursacht? Das <one>Pfeiffersche Drüsenfieber</one>.
713
+ - The <one>Rhinovirus</one> belongs to <three>which viral family</three>? The <two>Rhinovirus</two> belong to the <one>Picornaviridae family</one>.
714
+ - Family of the <one>Human papillomaviruses</one> (<one>HPVs</one>)? The <one>Papovaviridae family</one>.
715
+ - Warum lösen <one>manche Retroviren</one> <three>Krebs</three> aus? <one>Retroviren</one> tragen ein <two>virales Onkogen</two>, das ein Protein kodiert, das an der <three>onkogenen Transformation</three> beteiligt ist.
716
+ - The <one>main host cells</one> for the Epstein-Barr-virus (in Humans) are ... ? <one>B-cells</one>.
717
+ - Die <one>Norovirus-Virionen</one> sind wie groß (<two>von, bis</two>)? ca. <one>25nm-35nm</one>.
718
+ - Das Immunsystem bekämpft eine <one>Hepatitis B Virus Infektion</one> vor allem über ... ? <one>Cytotoxische T-Zellen</one>.
719
+ - Erweiterungen des <one>Kochschen Postulats</one>? Das <one>Evans Postulat</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2595276/
720
+ - Kann <one>HIV-1</one> beim Stillen von der Mutter auf das Kind übertragen werden? Ja.
721
+ - <one>Who</one> defines the <two>nomenclature for viruses</two>? The <one>International Committee Taxonomy of Viruses</one>, the <two>ICTV</two>. URL: https://talk.ictvonline.org/
722
+ - Das <one>T antigen</one> findet sich wo? Im <one>Monkey Virus SV 40</one>.
723
+ - Woraus besteht das <one>Nucleocapsid</one>? <one>Capsid</one> + <one>virales Genom</one> (== <two>viral head</two>).
724
+ - What means <one>species specificity</one> in Virology? Different species of animals show different susceptibility to various viral infections.
725
+ - Nenne ein spezifisches Beispiel für eine <one>virale, vertikale Übertragung</one> beim Menschen. A: Das <one>Rötelnvirus</one> → <two>schwangere Frau</two> → <three>Übertragung auf das Baby</three>.
726
+ - Das <one>Influenza-Nucleocapsid</one> besteht vor allem aus dem <two>NP-Protein</two>. Welche Aminosäuren finden wir hier vor allem? <one>Arginin</one> - also <two>eine basische Aminosäure</two>.
727
+ - What is <one>viral uncoating</one>? The complete or partial removal of the capsid in order to release the viral genome.
728
+ - Was ist die Methode der <one>Kokultivierung</one> in der Virologie? Dies ist die Zugabe von Indikatorzellen zu Gewebekulturen, die durch Auftreten eines <one>cytopathischen Effekts</one> die erfolgte Replikation eines Virus anzeigen.
729
+ - <one>HIV Tat</one> stands for? <one>Trans-Activator of Transcription</one>.
730
+ - Bei <one>Gelbfieber</one> entwickeln die betroffenen Personen nicht nur <two>Gelbsucht</two>, sondern haben oft noch welch anderes Problem? <one>Blutungsneigungen</one>.
731
+ - Wann war <one>ein Vakzin</one> für das <two>Yellow Fever Virus</two> erhältlich? <one>1935</one>.
732
+ - What is the <one>RNA-Bullet</one>? That is the <one>Rhabdovirus</one> (like <two>Rabies virus</two>).
733
+ - Which <one>novel virus</one> caused severe respiratory disease in Saudi-Arabia in 2012/2013? The <one>MERS-Virus</one>.
734
+ - <one>HIV</one> zerstört was? <one>T-Helferzellen</one>.
735
+ - <one>When</one> was <two>AIDS</two> first revealed? In the year <one>1981</one>. URL: https://de.wikipedia.org/wiki/AIDS
736
+ - What are the <one>largest animal viruses</one> (<three>metazoa</three>)? The <one>Poxviruses</one>. URL: https://en.wikipedia.org/wiki/Poxviridae
737
+ - What does the <one>herpes simplex</one> virion host shutoff protein do? It <one>reduces the stability of mRNAs in infected cells</one>.
738
+ - The <one>Filoviridae</one> are released by ... ? <one>budding</one>.
739
+ - The <one>Influenza pandemics</one> were caused by which H-subtypes only? (1) <one>H1</one> (2) <one>H2</one> (3) <one>H3</one>
740
+ - In Virology: define the term <one>multipartite virus</one>. A: A <one>multipartite viruses</one> has its genomes fragmented into two or more segments, each packed into a separate capsid. Such viruses require complementation, because each genomic segment must be complemented with the rest of segments in order to produce viable viral offspring.
741
+ - Viruses could be used to <one>act as a pesticide</one>, e. g. to <two>control a rabbit population</two>. Name one such virus group that could be used for this. A: <one>Myxoma virus</one>. URL: https://en.wikipedia.org/wiki/Myxoma_virus
742
+ - Was sehen wir oft wenn ein Virus einen neuen Wirten befällt? Der Virus ist oft <one>viel virulenter im neuen Wirt</one>, verglichen mit dem alten Wirt.
743
+ - Name one constraint of the <one>reverse transcriptase</one>. A: This enzyme <one>requires a primer</one>.
744
+ - Nenne ein Beispiel für ein <one>re-emerging virus</one>. A: Das <one>Hantavirus</one>.
745
+ - Woran bindet das <one>Hämagglutinin</one> von Influenza? An endständige <one>N-Acetyl-Neuraminsäurereste</one> komplexer Oligosaccharide.
746
+ - Lateinisch für <one>Wildtypvirus</one> und <one>Impfvirus</one>? (1) <one>Wildtypvirus</one>: <two>virus de rue</two> (2) <one>Impfvirus</one>: <two>virus fixe</two>
747
+ - <one>Most viruses on planet earth</one> have DNA or RNA genomes? The vast majority of viruses have <one>RNA genomes</one>.
748
+ - The <one>large T-Antigen of SV40</one> binds to ..? To the ori region of SV40.
749
+ - Nenne <two>zwei Hemmstoffe</two> die das aktive Zentrum der <one>HIV-Revertase</one> (=reverse Transkriptase) blockieren. A: (1) <one>Delavirdin</one> URL: https://de.wikipedia.org/wiki/Delavirdin (2) <one>Nevirapin</one>
750
+ - <one>Influenza</one> makes use of <two>cap snatching</two>. Where inside of the cell does this happen for Influenza? Inside the <one>nucleus</one>.
751
+ - The <one>B genes</one> of the HSV1 genome are important for ... ? DNA replication of this virus. URL: https://jvi.asm.org/content/86/11/6371
752
+ - Give an example for a virus that may make use of a <one>macropinosome</one>. A: The <one>Ebola Virus</one>.
753
+ - <two>Which virus</two> causes <one>smallpox</one>? <one>Variola major</one>.
754
+ - In January 2021, <one>which EU-country</one> suffered from a new breakout of the African swine fever virus? <one>Romania</one>.
755
+ - Wer verursacht <one>Warzen</one>? Das <one>Papilloma-Virus</one>.
756
+ - In <one>helikalen Viren</one>: wovon hängt die Länge der <three>helical capsid</three> ab? Von der Länge der Nukleinsäure die darin zu finden ist.
757
+ - Give another name for a <one>virales Genom</one>. A: <one>Viral recipes</one>.
758
+ - Is the <one>Polio virion</one> stable at an acid of pH 3? Yes.
759
+ - Which <one>Influenza virus</one> infects only humans? The <one>Influenza B Virus</one>.
760
+ - <one>Alle Grippeviren vom Typ Influenza A</one> hatten ihren <two>Ursprung</two> in ...? <one>Wasservögeln</one>. URL: https://de.wikipedia.org/wiki/Vogelgrippe_H5N1
761
+ - Nenne einen konkreten Virus der einen <one>Decoy-Mechanismus</one> verwendet. A: Der <one>Hepatitis B virus</one>.
762
+ - Unterschied zwischen <one>HIV-1B</one> und <one>HIV-1A</one>? HIV-1B infiziert sehr spezifisch Zellen in der Darmschleimhaut.
763
+ - What is meant with the term <one>sylvatic transmission</one>? This mostly refers to the natural transmission cycle of a pathogen, referring to <one>the involvement of wild animals in regards to transmission of the virus at hand</one>.
764
+ - The <one>major host</one> for the <two>ASF virus</two> (African swine fever) is ... ? The <one>warthogs</one>. URL: https://en.wikipedia.org/wiki/African_swine_fever_virus
765
+ - In general, for humans: do <one>RNA viruses</one> or <one>DNA viruses</one> present <two>a greater disease burden</two>? <one>RNA viruses</one>.
766
+ - The <one>first papillomavirus to be studied</one> in detail was ... ? <one>BPV</one> (<two>bovine papillomavirus type 1</two>).
767
+ - What do we mean with the term <one>The capsid paradox</one>? That <one>the capsid has a dual role</one>: <two>protection</two> and <two>delivery</two>.
768
+ - Nenne den bekanntesten Virus der ein <one>Flavivirus</one> ist, und dessen Name auch mit dem Buchstaben <two>F</two> beginnt. A: Der <one>FSME-Virus</one> (im englischen <two>TBEV - tick-borne encephalitis virus</two> genannt).
769
+ - The <one>vector</one> in sylvatic transmission of <two>African Swine Fever</two> is ... ? A <one>tick</one>.
770
+ - In <one>Virology</one>: what do we mean when we speak about a <three>zoonosis</three>? This is <one>a virus that is transmitted from an animal to a human</one>.
771
+ - Genes shared among the <one>herpesviruses</one> are important how, usually? They are important in <one>viral reproduction</one>.
772
+ - Allgemein: wie können wir Viren aufbrechen? Mit Hilfe von <one>chaotropen Agenzien</one>.
773
+ - Was genau finden wir in <one>Picornavirus</one> innen? (1) <one>VPg</one> (2) <one>ssRNA</one>
774
+ - The <one>capsid-size of the Poxviruses</one>, in nm (<two>max</two>)? <one>360nm</one>.
775
+ - The human body produces <one>antibodies against which Influenza protein</one> in particular? Against the <one>major surface protein</one> - <two>hemagglutinin</two>. URL: https://en.wikipedia.org/wiki/Hemagglutinin
776
+ - Ein <one>virales Vakzin</one> muss was bewirken können? Es muss Schutz vor einem pathogenen Virus induzieren können ohne selbst die Krankheit auszulösen.
777
+ - <two>Wieviele Menschen</two> sterben in Deutschland jährlich an <one>Influenza-A</one>? Etwa <one>10.000</one>.
778
+ - Welche <one>zwei Typen von Membranfusionen</one> existieren bei Viren? Gib auch jeweils ein Beispiel. A: (1) acid-triggered fusion, wie bei Influenza. (2) <one>ph-independent</one>, wie beim <two>Herpesvirus</two>
779
+ - Name two representatives (genus) of the <one>Sendai virus</one>. A: (1) <one>Morbillivirus</one> (2) <one>Rubulavirus</one>
780
+ - The <one>Filoviridae</one> <two>L protein</two> codes for ... ? The <one>RNA-dependent RNA polymerase</one>.
781
+ - Andere Bezeichnung für <one>Spumaviren des Affen</one>? <one>Simian-Foamy Virus</one>.
782
+ - Give another name for <one>viral penetration</one>. A: <one>Viral entry</one>.
783
+ - Name <one>two viruses</one> that could be called early model organisms for research. A: (1) the <one>T phage</one> (2) the <one>lambda phage</one>
784
+ - An <one>Adenovirus</one> contains <two>how many capsomeres</two>? <one>252</one>.
785
+ - What is <one>transovarial transmission</one>? Transmission into the next generation through an egg.
786
+ - Name a super-simple way for a virus to protect itself against <one>UV inactivation</one>, aside from being integrated into the host cell genome. A: Simply increase the amount of G+C in its genome.
787
+ - What is the <one>morbidity</one>? This is the relative incidence of a particular disease.
788
+ - Give two examples for <one>complex retroviruses</one>. A: (1) <one>lentiviruses</one> (2) <one>spumaviruses</one>
789
+ - Length of the <one>Pithovirus</one>? <one>1.5 µm</one>.
790
+ - Nenne ein konkretes Beispiel bei Viren wo <one>alternative Splicing</one> zum Einsatz kommt. A: Beim <one>SV40 T-Antigen</one>.
791
+ - Das <one>Tollwut-Virus</one> ist ein ... ? Ein <one>Rhabdovirus</one>. URL: https://en.wikipedia.org/wiki/Rhabdoviridae
792
+ - Nenne ein Beispiel für ein <one>Satellite Virus</one>. A: Das <one>Hepatitis delta virus</one>.
793
+ - <one>Which virus</one> do <three>HeLa cells</three> include in their genome? <one>HPV-18</one>. URL: https://www.nature.com/articles/6605671
794
+ - The viral glycoprotein of <one>Filoviridae</one> is cleaved by <two>endosomal cysteine proteases</two>, such as ... ? The <one>cathepsins</one>.
795
+ - Are <one>polioviruses</one> single or double stranded? They are single stranded (<one>+ssRNA</one>).
796
+ - Die <one>Filoviridae</one> besitzen allgemein <two>n Gene</two> in ihrem Genom? <one>7</one>.
797
+ - Was fehlt den <one>LTR-Retrotransposons</one>? Die <one>env-Region</one>. URL: https://en.wikipedia.org/wiki/LTR_retrotransposon
798
+ - Nenne einen <one>Virus</one> bei dem eine geringe infektiöse Dosis ausreicht damit eine Krankheit manifest wird. A: Das <one>Maul-und-Klauenseuche Virus</one>.
799
+ - <one>SV40</one> requires which protein for its replication? The <one>large T antigen</one>.
800
+ - Zu welcher <one>Baltimore-Gruppe</one> gehören die <two>Flaviviridae</two>? Zur <one>Baltimore Gruppe 4</one>.
801
+ - In Virology: what do we mean with <one>binal symmetry</one>? This is <one>a phage</one> with a head that resembles an icosahedron, and additionally a tail that is helical.
802
+ - Infektionen mit <one>Cytomegaloviren</one>, die gegen Ganciclovir resistent geworden sind, werden womit behandelt? Mit <one>Cidofovir</one>.
803
+ - In <one>viral therapy</one>: <two>ACV</two> (<two>Acyclivor</two>) acts in which three different ways? (1) competes with GTP (2) <one>chain terminator</one> (3) <one>remains bound</one>
804
+ - Why does <one>the Influenza genome</one> <two>require a cell nucleus</two>? Because their genomes absolutely require the <one>cell splicing marchinery</one>.
805
+ - When was the first virus purified by <one>differential centrifugation</one>"? In <one>1933</one>, by Schlessinger.
806
+ - Trivialname für <one>aktive Immunisierung</one>? <one>Schutzimpfung</one>. URL: https://de.wikipedia.org/wiki/Impfung
807
+ - Nenne <one>eine Erkrankung</one> die durch ein <two>Flavivirus</two> hervorgerufen werden kann. A: Das <one>virale hämorrhagische Fieber</one>.
808
+ - The <one>African swine fever virus</one> (ASFV) belongs to the <two>Asfarviridae family</two>. Is its genome RNA-based or DNA-based? It is <one>DNA-based</one>.
809
+ - <one>SSPE</one> (<one>Subacute sclerosing panencephalitis</one>) is <two>caused by which virus</two>? By the <one>measles virus</one>.
810
+ - Beim <one>Influenza A virus</one>: welches Protein bildet den <two>ion channel</two>? Das <one>M2 Protein</one>.
811
+ - Schön geflammte Tulpen durch welchen Virus? <one>Poty Virus</one>. URL: https://en.wikipedia.org/wiki/Potyvirus
812
+ - Was ist die <one>Tenazität</one>? Das ist die <one>Widerstandsfähigkeit</one>.
813
+ - Der <one>Chikungunya-Virus</one> ist <two>ein Vertreter welcher Virusfamilie</two>? Der <one>Togaviridae</one>. URL: https://en.wikipedia.org/wiki/Chikungunya
814
+ - What is the genome size of <one>human rhinoviruses</one>? About <one>7.200 ssRNA</one>.
815
+ - Give an example for a virus that is <one>a cap snatcher</one>. A: <one>Influenza</one>.
816
+ - Are <one>positive-stranded RNA viruses</one> or <one>negative-stranded RNA viruses</one> <two>more widespread</two>? <one>Negative stranded RNA-Viruses</one> are <two>more widespread</two>.
817
+ - <one>Introns</one> were discovered where? In <one>Adenoviruses</one>.
818
+ - Name <one>a virus of rabbit-tumors</one>. A: The <one>myxoma virus</one>. URL: https://en.wikipedia.org/wiki/Myxoma_virus
819
+ - In Virology: what are <one>antimutators</one>? These are mutations located in genes encoding viral polymerases that <one>reduce the frequency of incorporation errors</one>.
820
+ - Why is <one>Ribavirin</one> so useful to treat certain viruses? <one>Ribavirin</one> <two>can raise</two> the <three>viral mutation rates</three> over the error threshold.
821
+ - Wie lässt sich eine <one>Rhinovirusinfektion</one> verhindern? Durch <one>Gabe von Interferon</one>.
822
+ - Wer sollte allgemein immer zuerst geimpft werden? Risikogruppen.
823
+ - Das <one>MERS-Virus</one> ... wofür steht die Abkürzung <two>MERS</two>? <one>Middle East Respiratory Syndrome</one>. URL: https://en.wikipedia.org/wiki/Middle_East_respiratory_syndrome%E2%80%93related_coronavirus
824
+ - Die Influenza-<one>Schweinegrippe</one> von <two>2009</two> hatte welche Konstitution? <one>H1N1</one>.
825
+ - What is the most common vector of <one>plant viruses</one>? <one>Aphids</one>.
826
+ - Das berühmteste <one>Rhabdovirus</one> ist ... ? Das <one>Rabiesvirus</one>. URL: https://de.wikipedia.org/wiki/Rabiesvirus
827
+ - Was heisst <one>virus de rue</one>? <one>Wildtypvirus</one>.
828
+ - In Virology for the <two>Herpesviridae</two>: what does the greek word <one>herpein</one> mean? <one>To creep</one>. This refers to the latent, recurring infections typical for this group of viruses.
829
+ - How is the <one>poliovirus VPg</one> <two>modified</two>? It is <one>uridylated</one>. URL: https://en.wikipedia.org/wiki/VPg
830
+ - Nenne einen recht alten und einfachen Test zum Virusnachweis. A: Den <one>Hämagglutinationstest</one>.
831
+ - <one>Wieviele Basenpaare</one> finden wir im Genom der <two>Polyomaviren</two>? Etwa <two>5000 Basenpaare</two> (genauer: <one>5291 bp</one>).
832
+ - Die <one>Asfarviridae</one> sind Viren, deren Mitglieder vornehmlich Schweine infizieren. Als Genom haben diese Viren <two>RNA</two> oder <two>DNA</two>? <one>DNA</one>. URL: https://de.wikipedia.org/wiki/Asfarviridae
833
+ - <one>Which virus</one> was the first human virus ever isolated, in the year <two>1902</two>? The <one>yellow fever virus</one>.
834
+ - Das <one>HIV-Vakzin</one> aus dem Jahre 2005 basierte auf welchem Virus? <one>Adenovirus</one>.
835
+ - Der <one>Measel Virus</one> verwenden welchen Zellrezeptor? A: <one>CD150</one>.
836
+ - Was ist <one>HTLV I</one>? Ein <one>menschliches Retrovirus</one>.
837
+ - Wer ist der <one>Hauptwirt für Ebola</one>? Der <one>Nilflughund</one>. URL: https://de.wikipedia.org/wiki/Nilflughund
838
+ - To <two>which family</two> does the <one>vesicular stomatitis virus</one> belong to? To the <one>rhabdovirus family</one>.
839
+ - How can we, <two>from a practical point of view</two>, differentiate between <one>Influenza A</one> and <one>Influenza B</one>? We can use <one>Antisera</one>.
840
+ - How is the <one>major virus capsid protein</one> in <two>adenovirus</two> called? The <one>hexon protein</one>.
841
+ - In Virology - what does <one>HERV</one> stand vor? <one>Human endogenous retroviruses</one>.
842
+ - Nenne eine Möglichkeit, wie <one>Herpesviren</one>, die bereits eine Zelle infiziert haben, wieder aktiv werden können. A: Zum Beispiel durch einen <one>Sonnenbrand</one>.
843
+ - Die <one>klassische Virusdiagnostik</one> beruht auf ... ? Dem <one>Nachweis von Antikörpern</one>, die der Patient infolge der Infektion gegen das Virus bildet.
844
+ - <one>How many viruses</one> have been described in detail so far? At the least <one>5.000</one>.
845
+ - The <one>tobacco rattle virus</one>: what is its genome type? It is a <one>+ssRNA virus</one>. URL: https://en.wikipedia.org/wiki/Tobacco_rattle_virus
846
+ - In der (medizinischen) Virologie: was meinen wir mit dem Begriff <one>Vektorkontrolle</one>? Dies ist die Kontrolle durch <one>Überträger von Viren wie bestimmten Arthropoden</one> (Gelse, Zecke, Sandfliege etc..).
847
+ - In virology: what is meant with a <one>permissive cell</one>? This is <one>a cell that will permit the replication of the virus</one>.
848
+ - Was ist das <one>Virioplankton</one>? Dies sind <one>alle im Wasser vorkommenden Viren</one>.
849
+ - Name <one>a Neuraminidase inhibitor</one> against <two>Influenza</two> beginning with the letter <three>P</three>. A: <one>Peramivir</one>.
850
+ - Nenne einen Virus, der ein <one>S-förmiges Capsid</one> besitzt. A: Das <one>Pockenvirus</one>.
851
+ - <one>Chamberland filter diameter</one> is ... (from, to)? <one>100 nm -500 nm</one>.
852
+ - In <one>wasps</one>: what is the <two>PDV virus</two>, the abbreviation? <one>Symbiotic polydnaviruses</one>.
853
+ - Durchmesser der <one>Rotaviren</one> (von-bis)? <one>70nm - 80nm</one>.
854
+ - Nenne ein Beispiel eines Virus das <one>Negrische Einschlusskörperchen</one> zeigte. A: <one>Rhabdoviren</one>.
855
+ - In der Virologie: <two>wo</two> vor allem finden wir <one>segmentierte Genome</one>? In den Genomen der <one>dsRNA Viren</one>.
856
+ - Nenne eine Virusgruppe die mindestens <one>2 ORFs</one> verwenden. A: Die <one>Togaviren</one>.
857
+ - Gibt es das <one>Quasispezies Konzept</one> auch bei DNA-Viren? Ja.
858
+ - Das <one>Cauliflower mosaic virus</one>-Genom ist ... ? Ein <one>dsDNA-Genom</one>.
859
+ - Nenne einen Nachteil der HIV-Detektionssysteme. A: Das <one>diagnostische Fenster</one>. Patienten in einem sehr frühen Infektionsstadium werden nicht erkannt.
860
+ - Vergleiche allgemein die <one>Mutationsraten</one> von <two>DNA Viren</two> mit <two>RNA Viren</two>. A: DNA Viren haben allgemein eine niedrigere Mutationsrate als RNA Viren; dies erlaubt auch <one>größere Genome</one>.
861
+ - Do we have <one>antiviral therapies</one> against <two>human rhinoviruses</two>? No.
862
+ - The <one>SV40 large T antigen</one> binds <two>how many p53 molecules</two>? <one>6</one>, as it is a <two>homohexamer</two>.
863
+ - Wann kam die <one>HAART Treatment of AIDS</one> auf? <one>1997</one>.
864
+ - <one>Retroviruses</one> can be divided into <two>simple</two> and <two>complex</two>. This distinction is based on what? It is based on the <one>organization of their genomes</one>.
865
+ - <one>Hepatitis B</one> is a viral infection that attacks ... what part of the body? The <one>liver</one>.
866
+ - How do we call the <one>self-assembly of the TMV virus</one>? <one>Scaffold-assisted assembly</one>.
867
+ - Andere Bezeichnung für die <one>Durchfallviren</one>? <one>Noroviren</one>. URL: https://de.wikipedia.org/wiki/Norovirus
868
+ - Name a virus that <one>can snatch caps from cellular mRNA</one>. A: The <one>Bunyavirus</one>. URL: https://en.wikipedia.org/wiki/Bunyavirales
869
+ - <one>What form</one> does <two>the Reoviruses capsid</two> have? They have an <one>icosahedral capsid</one>.
870
+ - In Virology: what can we achieve with <one>Disoxaril</one>? We can <one>inhibit the uncoating of Poliovirus</one>.
871
+ - How many microbes in the Earths ocean are detroyed each day by viruses (in percent)? About <one>20%</one>.
872
+ - <one>Influenza</one> belongs to which family? The <one>Orthomyxovirus family</one>. URL: https://en.wikipedia.org/wiki/Orthomyxoviridae
873
+ - Was sind <one>ambisense</one> Genome? Genome deren ORFs in beide Richtungen abgelesen werden können. Es gibt daher einen Mix von + und - Polarität innerhalb des Genoms.
874
+ - Wie funktioniert die <one>reverse Transkriptase</one>? Dieses Enzym synthetisiert von einer einzelsträngigen RNA einen RNA-DNA-Hybridstrang mittels einer RNA-abhängigen DNA-Polymerase-Aktivität. Danach bauen sie den RNA Anteil ab über die RNase H Aktivität. Anschliessend erfolgt die Konvertierung der ssDNA zur dsDNA durch eine DNA-abhängige DNA-Polymerase.
875
+ - Which Virus has the <one>largest genome</one>? The <one>Pandoravirus</one>. URL: https://en.wikipedia.org/wiki/Pandoravirus
876
+ - The <one>spanish flu</one>, aka <three>the 1918-pandemic influenza strain</three>, had which H-N designate? <one>H1N1</one>.
877
+ - Name <one>a virus that is shaped like a bullet</one>. A: The <one>Rabies virus</one>. URL: https://en.wikipedia.org/wiki/Rabies_virus
878
+ - What is the general goal in <one>viral chemotherapy</one>? <one>Stopping the virus without killing the cell</one>.
879
+ - Can a virus <one>induce apoptosis</one>? Yes, some viruses can.
880
+ - In general - a virus modifies the intracellular environment of its host ... why? So as to <one>enhance the efficiency of its replication process</one>.
881
+ - Mnemonic für die Genuse der <one>Picornaviren</one>? <royalblue>RACHE</royalblue> - <two>R</two><one>hino</one>, <two>A</two><one>phtho</one>, <two>C</two><one>ardio</one>, <two>H</two><one>epato</one>, <two>E</two><one>ntero</one>.
882
+ - Name <one>a virus that can attack (and damage) the central nervous system</one>. A: The <one>herpes simplex virus</one>.
883
+ - In virology: what is meant with the expression <one>prolate shape</one>? This is essentially the shape found in bacteriophages such as T2, where these phages have an icosahedral head and a long tail filament.
884
+ - The <one>HIV-1 pol gene</one> encodes ... ? A <one>reverse transcriptase</one>.
885
+ - Bei der <one>chemischen Desinfektion, gegen Viren</one>: unterscheide <two>viruzid</two> und <two>begrenzt viruzid</two>. A: Letzteres meint nur behüllte Viren.
886
+ - What are the primary cell targets for the <one>influenza virus</one> in humans? The epithelial cells in the upper and lower respiratory tract.
887
+ - Nenne ein Beispiel für einen <one>segmented ssRNA Virus</one> A: <one>Influenza</one>. URL: https://de.wikipedia.org/wiki/Influenza
888
+ - Nenne ein Virus mit <one>ikosaedrischer Symmetrie</one>. A: Das <one>Poliovirus</one>. URL: https://microbewiki.kenyon.edu/images/thumb/4/44/Pv_structure.jpg/250px-Pv_structure.jpg
889
+ - Der <one>HI-Virus</one> hat das gp160 Protein. In welche 2 Teile wird es gespalten? (1) <one>gp41</one> (2) <one>gp120</one>
890
+ - In der Virologie: was genau heisst <one>IRES</one>? <one>Internal ribosome entry site</one>. URL: https://de.wikipedia.org/wiki/IRES_%28Biologie%29
891
+ - <one>Retroviral-virions</one> have a complex between their 2 RNAs. How is that complex called? The <one>kissing-loop complex</one>.
892
+ - Warum waren <one>well-characterized cell cultures</one> so wichtig in der Virologie? Sie erlaubten die Identifizierung von Viren wie Adenovirus, die keine Tierwirte hatten.
893
+ - Nenne einen <three>wichtigen Unterschied</three> zwischen <one>Viren</one> und <one>Plasmiden</one>. A: Viren besitzen eine <one>extrazelluläre Form</one>, Plasmide hingegen nicht.
894
+ - Welche Viren produzieren <one>occlusion bodies</one>? Die <one>Baculoviren</one>.
895
+ - Give two examples for <one>Flaviviridae</one>. A: (1) <one>West Nile Virus</one> (2) <one>Hepatitis C Virus</one> URL: https://en.wikipedia.org/wiki/Flaviviridae
896
+ - Name one <one>structural parameter</one> that may limit the evolution of a virus. A: The <one>viral capsid</one> almost always limits the size of nucleic acid that can be packaged.
897
+ - <one>Ribonucleaseaktivität</one> bei den Retroviren finden wir wo? In der <one>reversen Transkriptase</one>, bei der <two>RNase H</two>.
898
+ - Nenne ein Beispiel für einen <one>umhüllten RNA Virus</one>. A: <one>HIV-1</one>.
899
+ - Name <one>two picoRNA-viral virulence factors</one>. A: (1) <one>FMDV Lb pro</one> (2) <one>HRV2 2A pro</one>
900
+ - Where do most <one>animal viruses</one> replicate intracellular? In the <one>nucleus</one>.
901
+ - The <one>human cytomegalovirus</one> produces a protein called <three>VL18</three>. This protein is homologous to ... ? <one>HLA class I molecules</one>.
902
+ - Das <one>Adenovirus-Capsid</one> besteht aus <orange>n Hexonen</orange>? <one>240</one>.
903
+ - Wo mögen wir die <one>Geschichte von Virusattacken</one> finden? In <one>Introns</one>.
904
+ - Was sind <one>virulente Viren</one>? Dies sind <one>Viren, die eine Zelle nur lysieren können</one>.
905
+ - Kodieren <one>Viroide</one> für ein Protein? Nein.
906
+ - Give one example for an <one>enveloped DNA virus</one>. A: <one>HSV-1</one>.
907
+ - The <one>Sin Nombre</one> virus actually refers to ... ? The <one>hantavirus</one>. URL: https://en.wikipedia.org/wiki/Orthohantavirus
908
+ - Nenne zwei Vertreter der <one>Togaviruses</one>. A: (1) <one>sindbis virus</one> (2) <one>rubella virus</one>
909
+ - Das <one>gp160</one> von HIV wird gespalten in gp120 und gp41, <three>durch welche Protease</three>? <one>Furin</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/7774724
910
+ - The <one>HIV-1 Tat-Protein</one> binds to ..? <one>TAR-Elements</one> at the viral 5'-mRNA region. URL: https://en.wikipedia.org/wiki/Trans-activation_response_element_(TAR)
911
+ - Aside from HIV, name <one>a human retrovirus</one>. A: The <one>Hepatitis B Virion</one>.
912
+ - Nenne ein <one>Flavivirus</one>. A: The <one>yellow fever virus</one>.
913
+ - Give an example of a virus showing <one>multiple infections</one>. A: <one>Varicella zoster virus</one>.
914
+ - <one>Wie attenuierte Pasteur</one> seine <two>Viren</two>? Er <one>entfernte Rückenmark des Hasen</one> und liess dieses <two>altern</two>.
915
+ - Name two disadvantages if we wish to detect <one>negatively stained virions</one>. A: (1) high cost of equipment (2) limited sensitivity
916
+ - If a drug would block the <one>Influenza NA</one> component, what would we expect to see happen? The <one>newly formed viruses could not escape from the host cells</one>. Thus, <two>viral spread to other cells is inhibited</two>.
917
+ - Wann wurden die <one>IRES</one> entdeckt? Im Jahre <one>1988</one>. URL: https://en.wikipedia.org/wiki/Internal_ribosome_entry_site
918
+ - Wofür steht die Abkürzung <one>m.o.i</one>? <one>Multiplicity of infection</one>.
919
+ - Das <one>HIV-Virus</one> bindet nur an Zellen die welches Oberflächenprotein besitzen? <one>CD4</one>.
920
+ - <one>Which phage</one> relies on a thymine-less DNA containing uracil rather than thymine? The <one>bacteriophage PBS 1</one>/<one>2</one>.
921
+ - Was ist die <one>Eklipsephase</one>? Der Zeitraum vom Beginn der Infektion bis zum Ende der Synthesephase.
922
+ - Are the <one>coronaviruses</one> <three>enveloped</three>? Yes.
923
+ - Das Medikament <one>Relenza</one> wirkt gegen welchen Virus? <one>Relenza</one> wirkt gegen den <two>Influenza-Virus</two>.
924
+ - Historically, <one>viruses were classified according to</one> ... ? According to people observing their effects, e. g. by <one>studing human diseases caused by viruses</one>.
925
+ - Wie sieht das <one>5' Ende von Picornaviren</one> aus? Keine Cap, aber das <one>Vpg protein</one>.
926
+ - Which virus has <one>two protein coats</one>? The <one>Rotavirus</one>.
927
+ - Nenne einen Nachteil von <one>Ganciclovir</one> gegenüber <one>Acyclovir</one>. A: Ganciclovir kann in zelluläre DNA eingebaut werden, Aciclovir hingegen nicht.
928
+ - Aside from the giant viruses like the Mimi-virus, name a non-giant virus that can be seen with a light microscope. A: The <one>Poxvirus</one>.
929
+ - Gibt es <one>lysogene Viren in Hefen</one>? Nein.
930
+ - What <one>orientation</one> does the <three>Retrovirus genome</three> have? It is in the <one>plus (+) orientation</one>.
931
+ - Wann wurde das <one>Poliovirus</one> <three>erstmals de-novo synthetisiert</three>? Im Jahre <one>2002</one>.
932
+ - What are the <one>two most important criteria used for classification of viruses</one>? (1) <one>phage morphology</one> (2) <one>nucleic acid properties</one>
933
+ - Give an example for a <one>complex retrovirus</one>. A: The <one>human immunodeficiency virus</one>.
934
+ - In an <one>early HIV infection</one>, what symptoms may we see, if we see any at all? We may see <one>fever-like symptoms</one>.
935
+ - Nenne einen gewichtigen <one>Vorteil eines Lebendimpfstoffes</one>. A: Lebendimpfstoffe aktivieren sowohl das humorale als auch das zelluläre Immunsystem.
936
+ - Welche <one>drei virale Hauptreplikationsorte</one> gibt es <three>im menschlichen Körper</three>? (1) <one>Mucosale Oberflächen</one> des respiratorischen Trakts und des GI Trakts. (2) Infektion in mucosalen Oberflächen gefolgt von systemischer Ausbreitung über Blut, Lymphe und/oder Neuronen, um dann in die Organe zu gelangen (3) Direkte Infektion der Blutbahn über Nadel oder Bisse mit folgender Ausbreitung in die Organe
937
+ - In welchem Tier finden wir <one>Isaviren</one>? Bei <one>Lachsen</one>. (Merkschema: <two>Lachse in der Isar</two>).
938
+ - What is the <one>Virosphere</one>? <one>The world of all viruses on the planet</one>.
939
+ - Die <one>Adenoviridae</one> umfassen wieviele Subgenera? <one>6</one> - und zwar A bis F.
940
+ - <one>Welcher Virus</one> verursacht den normalen <three>Schnupfen</three>? <one>Rhinovirus</one>.
941
+ - What does the term <one>fitness landscape</one> in Virology mean? Each sequence of a RNA Virus (or for any other combination of sequences) has a <one>specific reproduction rate</one>, which is another term for <two>fitness</two>.
942
+ - Nenne einen viralen Erreger, der ein <one>Virusakanthom</one> hervorrufen mag. A: <one>HPV</one> (<two>Humane Papillomviren</two>).
943
+ - Was heisst <one>SV40</one> und zu <three>welcher Familie</three> gehört dieser Virus? <one>Simian Virus 40</one>, member of the <two>polyomavirus family</two>.
944
+ - Which <one>virus family</one> has <three>gapped DNA</three>? The <one>Hepadnaviridae</one>.
945
+ - Nenne ein Beispiel für eine <one>pleomorphe ssRNA-Virus Familie</one>. A: Das <one>Paramyxovirus</one>.
946
+ - What do we mean with <one>v-fos</one>? <one>Viral fos gene</one>.
947
+ - Which general <one>taxonomic groups</one> are missing for viruses? (1) <one>class</one> (2) <one>phylum</one>
948
+ - Warum treten Mutationen meist häufiger bei <one>RNA Viren</one> auf? RNA Viren besitzen <one>keine Proofreading-Funktion</one>.
949
+ - Does <one>antigen shift</one> more often occur for <two>neuraminidase</two> or for <two>hemagglutinin</two>, <three>in Influenza</three>? It occurs more often in <one>hemagglutinin</one> (<two>HA</two>).
950
+ - What is <one>the definitive characteristic of transducing retroviruses</one>? The presence of <one>cellular oncogenes</one>.
951
+ - Nenne die zwei <one>Unterfamilien der Retroviridae</one>. A: (1) <one>Spumavirinae</one> (2) <one>Orthoretrovirinae</one>
952
+ - The <one>Influenza avian virus</one> bind to what exactly? To sialic acids attached to galactose in an Alpha-2,3 linkage. This is different to human cells, and thus thought to be the basis for the very inefficient transmission of avian influenza viruses to humans.
953
+ - What is the goal of <one>virus maturation</one>? It <one>prepares the virus for infection of the next cell</one>.
954
+ - Gegen welchen Virus kann <one>Cidofovir</one> eingesetzt werden? Gegen den <one>Cytomegalovirus</one>.
955
+ - The <one>HPV genome</one> is surrounded by ... ? An <one>icosahedral capsid</one> (<two>T = 7</two>).
956
+ - Name <one>two constraints</one> why viruses ought try to keep their genome small. A: (1) Must fit into the capsid (2) larger genome requires more time to replicate
957
+ - The <one>kissing disease</one> is caused by which virus? By a <one>herpes virus</one> called <two>EBV</two> (<two>Epstein-Barr Virus</two>). URL: https://en.wikipedia.org/wiki/Epstein%E2%80%93Barr_virus
958
+ - Give one example for a <one>ssRNA virus genome of positive sense</one>. A: The <one>Poliovirus</one>.
959
+ - Bei der <one>Negativ-Färbung</one> färbt man was ein? Den <one>Hintergrund</one>. Das Virus selbst hingegen lässt man relativ unberührt.
960
+ - <one>HIV</one> zielt auf welche Zellen ab? Auf <one>TH Zellen</one> die einen <two>CD4⁺ Rezeptor</two> besitzen.
961
+ - Name <one>a major difference</one> between retroviruses and other viruses with RNA as their genetic material. A: The retroviruses also have a <one>DNA intermediate</one> step in their replication cycle.
962
+ - What means <one>lysosomotropic</one>? A <one>drug</one> that is able to penetrate the lysosomes of cells.
963
+ - Nenne zwei Viren beziehungsweise virale Krankheiten die durch <one>Gelsen</one> übertragen werden. A: (1) Das <one>Gelbfieber Virus</one> (von den Affen auf den Menschen) (2) Das <one>Dengue Virus</one> (von Menschen auf den Menschen)
964
+ - Anderer Begriff für das <one>Pockenvirus</one>? <one>Variola-Virus</one>.
965
+ - Was sind <one>Enzymbiotics</one>? Dies sind zum Beispiel <one>phage endolysins</one>.
966
+ - People in <one>rural areas</one> may, in general, be more vulnerable to which types of infection? <one>Zoonotic infections</one>.
967
+ - Give one specific example of a <one>DNA virus</one> of eukaryotes that replicates in the cytoplasm. A: The <one>Iridovirus</one>.
968
+ - Was sind <one>hitchhiking mutations</one>? Dies sind Mutationen, die den Virus keinen direkten Vorteil verschaffen, aber auch nicht nachteilig sind. So mögen langfristig neue Viren entstehen.
969
+ - Anderer Begriff für die <one>virale Proteinhülle</one>? <one>Capsid</one>. URL: https://de.wikipedia.org/wiki/Capsid
970
+ - Bei den <one>Picornaviren</one>: was heisst <three>VPGL</three>? <one>Viral Protein Genome linked</one>
971
+ - Andere Bezeichnung für virale, <one>morphologische Einheiten</one>? <one>Capsomere</one>.
972
+ - The <one>herpesvirus genome max length</one> is ... ? <one>230kb</one>.
973
+ - Was sind die <one>SRS-Viren</one>? <one>Small-round-structured virus</one>.
974
+ - Beim <one>Poliovirus</one>: wie lange ist dessen <three>VPg Protein</three>? <one>22 Aminosäuren</one>.
975
+ - Was heisst <one>Mimivirus</one>? A: <one>Microbe Mimicking Virus</one>.
976
+ - What is <one>cap snatching</one> in Virology? This is <one>a transcription initiation process</one>. A sequence between 10 and 20 nt in size is cleaved away from the 5-prime end of host mRNAs, by an endonuclease activity - i.e Influenza RdRp.
977
+ - Welches <one>keyword</one> ist mit dem <three>SV40 T-Antigen</three> assoziiert? <one>Alternative Splicing</one>.
978
+ - <one>Adenovirus</one> bind to which primary receptor, via their fibers? <one>CAR</one>: <two>Coxackie and Adenovirus Receptor</two>.
979
+ - Was sind <one>pleomorphe Virionen</one>? <one>Viruspartikel</one> die in Größe und Form stark unterschiedlich sind.
980
+ - Can viruses degrade the <one>MHC I</one>? Yes.
981
+ - What means <one>structural plasticity</one> in Virology? This refers to virions that can tolerate many amino acid substitutions in their structural proteins - and <one>still remain infectious</one>.
982
+ - The (major) <one>surface protein of HIV</one> is? <one>gp120</one>.
983
+ - Give an example each for a <one>transmissible spongiform encephalopathy</one> (TSE), in sheep and in humans. A: (1) <one>scrapie</one>: in sheep (2) <one>Kuru</one>: in humans
984
+ - Name a major difference between the <one>retroviruses</one> and <three>other +ssRNA viruses</three>. A: The retrovirsues use a special protein called <one>reverse transcriptase</one>.
985
+ - The <one>Ebolavirus</one> belongs to ... which family? It belongs to the <one>Filoviridae</one>.
986
+ - Nenne <one>ein Enzym</one>, das an der <two>Virusfreisetzung</two> beteiligt ist. A: Die <one>Neuraminidase</one>.
987
+ - Viruses can change their host-range, in order to enter a different species. Give an example for this. A: SIV virus moving into the human species, aka HIV-1.
988
+ - Name <one>three different examples for</one> <two>subviral agents</two>. A: (1) <one>Prions</one> (2) <one>Viroids</one> (3) <one>Satellites</one> []
989
+ - <one>What concept</one> limits the RNA Length of RNA viruses? The <one>error-threshold concept</one> limits RNA length. []
990
+ - Gibt es Viren die <one>kleiner</one> sind als ein Ribosom? Ja. []
991
+ - Nenne einen Virus, der <one>ACG</one> als Initiationscodon verwendet. A: Das <one>Sendai-Virus</one>. []
992
+ - <one>Leatherjackets</one> können durch welche Viren besonders infiziert werden? Durch <one>Tipula-Viren</one>. URL: https://www.uniprot.org/taxonomy/10490 []
993
+ - <one>Welcher Bereich im</one> <two>Adenovirus-Genom</two> ist für die Virusreplikation verantwortlich? Die <one>E1 Region</one>. []
994
+ - In <one>HIV</one>: does its <one>gp120</one> <two>first bind to</two> <three>CCR5</three> or to <three>CD4</three>? <one>gp120</one> <two>first binds to</two> <three>CD4</three>. []
995
+ - Is the <one>Hepatitis B virus</one> <two>more infectious than</two> the <three>HIV</three> virus? <one>Yes</one> it is. []
996
+ - Wofür steht das <one>T</one> in <two>T7</two>? <one>Type</one>. []
997
+ - Do <one>people affected by</one> the <two>Ebola disease</two> <three>show a symptom of a sore throat</three>? <one>Yes</one>. []
998
+ - Given <one>HSV-1</one> and <one>HSV-2</one>: which one of these two families produce most of the <two>genital herpes</two>? <one>HSV-2</one>. []
999
+ - Das <one>SV40-Genom</one> umfasst <two>wieviele Gene</two>? <one>6</one>. []
1000
+ - Nenne einen Virus der auch <one>Ribosomen</one> <two>besitzt</two>. A: Das <one>Arenavirus</one>. URL: https://en.wikipedia.org/wiki/Arenavirus []
1001
+ - Englischer Begriff für die <one>Virusausschüttung</one>? <one>Virus shed</one> or rather <one>viral shedding</one>. URL: https://en.wikipedia.org/wiki/Viral_shedding []
1002
+ - Ist <one>HIV</one> ein <two>DNA-Virus</two>? <one>Nein</one> - <two>HIV</two> ist ein <three>RNA-Virus</three>. []
1003
+ - <one>Viren</one> können über ein <two>Durchbrechen der Hautbarriere</two> <three>in den Menschen gelangen</three>. <four>Nenne hierzu drei verschiedene Möglichkeiten</four>. A: (1) ein <one>Arthropode</one> als Vektoren (zum Beispiel eine <two>Gelse</two>) (2) <one>Injektion</one>, zum Beispiel über eine Spritze (3) <one>Piercings</one> []
1004
+ - Kann das <one>Pocken-Virus</one> mit dem Lichtmikroskop erkannt werden? <one>Ja</one>. []
1005
+ - <one>SARS-CoV-2</one> <two>is what kind of virus</two>? <two>SARS-CoV2</two> is a <one>coronavirus</one>. URL: https://de.wikipedia.org/wiki/SARS-CoV-2 []
1006
+ - <one>What disease</one> is <two>typically caused by</two> a <three>rhinovirus</three>? The <one>common cold</one>. []
1007
+ - Does the <one>bird flu</one> <two>infect humans</two>? <one>Usually not</one>. []
1008
+ - <one>Wieviele Aminosäuren</one> besitzt <two>Vpg</two>? A: <one>22</one>. []