studium 0.13.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of studium might be problematic. Click here for more details.

Files changed (871) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +2785 -0
  3. data/bin/ask_exam_question +7 -0
  4. data/bin/check_description_of_these_lectures +7 -0
  5. data/bin/curriculum_module_displayer +7 -0
  6. data/bin/cycle +7 -0
  7. data/bin/d10 +7 -0
  8. data/bin/d100 +7 -0
  9. data/bin/d15 +7 -0
  10. data/bin/d20 +7 -0
  11. data/bin/d25 +7 -0
  12. data/bin/d3 +7 -0
  13. data/bin/d30 +7 -0
  14. data/bin/d5 +7 -0
  15. data/bin/determine_curricula +7 -0
  16. data/bin/display_lecture_url +7 -0
  17. data/bin/exam_registration_at +7 -0
  18. data/bin/exam_statistics +7 -0
  19. data/bin/exams_per_month +9 -0
  20. data/bin/finished_exams_at_this_university +7 -0
  21. data/bin/flashcards +7 -0
  22. data/bin/from_curriculum_id_to_university +9 -0
  23. data/bin/location_to_this_exam_topic.rb +7 -0
  24. data/bin/mandatory_continuous_assessment +7 -0
  25. data/bin/mandatory_upcoming_courses +7 -0
  26. data/bin/n_ECTS +7 -0
  27. data/bin/n_exam_questions_already_answered +16 -0
  28. data/bin/nquestions +7 -0
  29. data/bin/nsolved +7 -0
  30. data/bin/open_last_exam_question_asked_file +7 -0
  31. data/bin/passed_exams +7 -0
  32. data/bin/passed_pr/303/274fungsimmanente_courses +7 -0
  33. data/bin/pdf_for +7 -0
  34. data/bin/random_exam_topic +7 -0
  35. data/bin/report_solved_topics +7 -0
  36. data/bin/return_n_ects_from_this_file +7 -0
  37. data/bin/search_for_n_ects +7 -0
  38. data/bin/show_lectures_on_the_commandline +7 -0
  39. data/bin/show_themes +7 -0
  40. data/bin/solved +9 -0
  41. data/bin/solved_ects +7 -0
  42. data/bin/studienkennzahl +7 -0
  43. data/bin/studium +7 -0
  44. data/bin/studium_skeleton +7 -0
  45. data/bin/ufind +7 -0
  46. data/bin/upcoming_exams +7 -0
  47. data/bin/week_parser +7 -0
  48. data/doc/ECTS_CONSIDERATIONS.md +81 -0
  49. data/doc/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER.md +44 -0
  50. data/doc/README.gen +2742 -0
  51. data/doc/SQL_database_specification.md +46 -0
  52. data/doc/deprecated_components.md +24 -0
  53. data/doc/documentation_for_the_file_lecture_information.md +311 -0
  54. data/doc/elegant_colours.md +21 -0
  55. data/doc/todo/TODO_FOR_STUDIUM_GEM.md +112 -0
  56. data/doc/todo/TODO_FOR_THE_GRAPHICAL_PARTS_OF_THE_STUDIUM_GEM_INCLUDING_WWW_RELATED_ASPECTS.md +35 -0
  57. data/img/STUDIES.png +0 -0
  58. data/lib/studium/autoinclude.rb +7 -0
  59. data/lib/studium/base/base.rb +2710 -0
  60. data/lib/studium/base/prototype.rb +543 -0
  61. data/lib/studium/c/README.md +2 -0
  62. data/lib/studium/c/a.out +0 -0
  63. data/lib/studium/c/obtain_random_entry.c +11 -0
  64. data/lib/studium/check_and_sanitize/README.md +11 -0
  65. data/lib/studium/check_and_sanitize/check_curriculum_for_correct_separation_of_bachelor_and_master.rb +141 -0
  66. data/lib/studium/check_and_sanitize/check_for_all_exam_topics_being_registered.rb +110 -0
  67. data/lib/studium/check_and_sanitize/check_for_correct_themes_of_each_course.rb +90 -0
  68. data/lib/studium/check_and_sanitize/check_for_existing_description_of_this_lecture.rb +189 -0
  69. data/lib/studium/check_and_sanitize/check_the_lecture_information_file.rb +163 -0
  70. data/lib/studium/check_and_sanitize/find_duplicate_lectures.rb +115 -0
  71. data/lib/studium/check_and_sanitize/missing_priority_entry.rb +44 -0
  72. data/lib/studium/check_and_sanitize/sanitize_this_string_containing_the_lva_dates.rb +79 -0
  73. data/lib/studium/colours/colours.rb +549 -0
  74. data/lib/studium/colours/sfancy.rb +46 -0
  75. data/lib/studium/colours/sfile.rb +35 -0
  76. data/lib/studium/colours/simp.rb +40 -0
  77. data/lib/studium/colours/use_colours.rb +39 -0
  78. data/lib/studium/colours/use_this_colour_for_exam_questions_and_exam_answers.rb +80 -0
  79. data/lib/studium/commandline/commandline.rb +932 -0
  80. data/lib/studium/commandline/menu.rb +903 -0
  81. data/lib/studium/constants/colours.rb +14 -0
  82. data/lib/studium/constants/constants.rb +2142 -0
  83. data/lib/studium/constants/image_constants.rb +217 -0
  84. data/lib/studium/constants/web_constants.rb +25 -0
  85. data/lib/studium/css/project.css +267 -0
  86. data/lib/studium/curricula/curriculum.rb +210 -0
  87. data/lib/studium/curricula/curriculum_as_string.rb +280 -0
  88. data/lib/studium/curricula/curriculum_module_displayer/constants.rb +33 -0
  89. data/lib/studium/curricula/curriculum_module_displayer/curriculum_module_displayer.rb +417 -0
  90. data/lib/studium/curricula/curriculum_module_displayer/initialize.rb +25 -0
  91. data/lib/studium/curricula/curriculum_module_displayer/menu.rb +45 -0
  92. data/lib/studium/curricula/curriculum_module_displayer/reset.rb +74 -0
  93. data/lib/studium/curricula/curriculum_module_displayer/run.rb +20 -0
  94. data/lib/studium/curricula/curriculum_module_displayer/set_use_this_curriculum.rb +93 -0
  95. data/lib/studium/curricula/curriculum_module_displayer/show_and_report.rb +190 -0
  96. data/lib/studium/curricula/determine_curricula/constants.rb +11 -0
  97. data/lib/studium/curricula/determine_curricula/determine_curricula.rb +36 -0
  98. data/lib/studium/curricula/determine_curricula/help.rb +39 -0
  99. data/lib/studium/curricula/determine_curricula/initialize.rb +48 -0
  100. data/lib/studium/curricula/determine_curricula/menu.rb +151 -0
  101. data/lib/studium/curricula/determine_curricula/misc.rb +403 -0
  102. data/lib/studium/curricula/determine_curricula/report.rb +143 -0
  103. data/lib/studium/curricula/determine_curricula/reset.rb +59 -0
  104. data/lib/studium/curricula/determine_curricula/run.rb +19 -0
  105. data/lib/studium/curricula/determine_elective_courses_in_this_curriculum.rb +112 -0
  106. data/lib/studium/curricula/display_bachelor_curricula.rb +90 -0
  107. data/lib/studium/curricula/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.rb +324 -0
  108. data/lib/studium/curricula/modules/display_on_the_commandline.rb +319 -0
  109. data/lib/studium/curricula/modules/return_n_ects_in_this_module.rb +75 -0
  110. data/lib/studium/curricula/n_percent_solved_in_this_curriculum.rb +75 -0
  111. data/lib/studium/curricula/prepare_individual_curriculum.rb +304 -0
  112. data/lib/studium/curricula/random_curriculum_creator/random_curriculum_creator.rb +163 -0
  113. data/lib/studium/curricula/show_lectures_of_this_curriculum.rb +114 -0
  114. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/constants.rb +11 -0
  115. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/initialize.rb +27 -0
  116. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/menu.rb +35 -0
  117. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/misc.rb +264 -0
  118. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/report.rb +163 -0
  119. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/reset.rb +64 -0
  120. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/show_lectures_of_this_curriculum_id.rb +38 -0
  121. data/lib/studium/curricula/show_solved_percentage_among_the_registered_curricula.rb +87 -0
  122. data/lib/studium/ects/boku_ects_splitter.rb +128 -0
  123. data/lib/studium/ects/ects_per_university.rb +179 -0
  124. data/lib/studium/ects/ects_scanner.rb +141 -0
  125. data/lib/studium/ects/ects_to_university_parser.rb +142 -0
  126. data/lib/studium/ects/last_entry_is_curriculum.rb +150 -0
  127. data/lib/studium/ects/n_ects_in_these_lectures.rb +196 -0
  128. data/lib/studium/ects/n_ects_points_in_mandatory_presence_courses.rb +50 -0
  129. data/lib/studium/ects/return_n_ects_from_this_file.rb +59 -0
  130. data/lib/studium/ects/return_n_ects_from_this_url.rb +196 -0
  131. data/lib/studium/ects/search_for_n_ects.rb +614 -0
  132. data/lib/studium/ects/show_completed_ects_in_all_curricula.rb +191 -0
  133. data/lib/studium/ects/show_passed_credits_per_curriculum.rb +276 -0
  134. data/lib/studium/ects/simple_total_ects_points.rb +135 -0
  135. data/lib/studium/ects/solved_ects/constants.rb +19 -0
  136. data/lib/studium/ects/solved_ects/reset.rb +51 -0
  137. data/lib/studium/ects/solved_ects/solved_ects.rb +325 -0
  138. data/lib/studium/ects/solved_ects_per_university/reset.rb +25 -0
  139. data/lib/studium/ects/solved_ects_per_university/solved_ects_per_university.rb +106 -0
  140. data/lib/studium/ects/still_missing.rb +129 -0
  141. data/lib/studium/ects/sum_of_ects.rb +144 -0
  142. data/lib/studium/encoding/encoding.rb +108 -0
  143. data/lib/studium/exam_topics/RNAi_siRNA_and_miRNA +86 -0
  144. data/lib/studium/exam_topics/abfall_als_ressource +86 -0
  145. data/lib/studium/exam_topics/advanced_biochemistry +781 -0
  146. data/lib/studium/exam_topics/advanced_biotechnology +214 -0
  147. data/lib/studium/exam_topics/advanced_cellbiology +27 -0
  148. data/lib/studium/exam_topics/advanced_chemistry +504 -0
  149. data/lib/studium/exam_topics/advanced_microbiology +43 -0
  150. data/lib/studium/exam_topics/advanced_topics_in_plant_sciences +85 -0
  151. data/lib/studium/exam_topics/advanced_virology +218 -0
  152. data/lib/studium/exam_topics/ageing +114 -0
  153. data/lib/studium/exam_topics/agrar_ecology +63 -0
  154. data/lib/studium/exam_topics/agrarmarkt +71 -0
  155. data/lib/studium/exam_topics/agrarphysik +35 -0
  156. data/lib/studium/exam_topics/alcohols +29 -0
  157. data/lib/studium/exam_topics/algorithms +52 -0
  158. data/lib/studium/exam_topics/allergie +75 -0
  159. data/lib/studium/exam_topics/allgemeine_genetik +1006 -0
  160. data/lib/studium/exam_topics/allgemeine_mikrobiologie +946 -0
  161. data/lib/studium/exam_topics/aminoacids +438 -0
  162. data/lib/studium/exam_topics/analytische_chemie_1 +132 -0
  163. data/lib/studium/exam_topics/analytische_chemie_2 +31 -0
  164. data/lib/studium/exam_topics/anatomie +290 -0
  165. data/lib/studium/exam_topics/anorganische_chemie +311 -0
  166. data/lib/studium/exam_topics/anthropologie +116 -0
  167. data/lib/studium/exam_topics/antibodies_and_antigens +764 -0
  168. data/lib/studium/exam_topics/apoptosis +35 -0
  169. data/lib/studium/exam_topics/archaea +60 -0
  170. data/lib/studium/exam_topics/architecture +8 -0
  171. data/lib/studium/exam_topics/artificial_intelligence +81 -0
  172. data/lib/studium/exam_topics/atomemissionsspektrometrie +6 -0
  173. data/lib/studium/exam_topics/audio +11 -0
  174. data/lib/studium/exam_topics/bacteriophages +240 -0
  175. data/lib/studium/exam_topics/basic_biochemistry +1002 -0
  176. data/lib/studium/exam_topics/basic_biotechnology +1001 -0
  177. data/lib/studium/exam_topics/basic_chemistry +1007 -0
  178. data/lib/studium/exam_topics/basic_virology +1008 -0
  179. data/lib/studium/exam_topics/bauwesen +6 -0
  180. data/lib/studium/exam_topics/betriebssysteme +126 -0
  181. data/lib/studium/exam_topics/betriebswirtschaftslehre +29 -0
  182. data/lib/studium/exam_topics/bioanalytik_und_biosensoren +382 -0
  183. data/lib/studium/exam_topics/biochips +78 -0
  184. data/lib/studium/exam_topics/bioelektrochemie +57 -0
  185. data/lib/studium/exam_topics/biofilms +22 -0
  186. data/lib/studium/exam_topics/bioinformatics +503 -0
  187. data/lib/studium/exam_topics/biological_therapeutics +153 -0
  188. data/lib/studium/exam_topics/biologie +137 -0
  189. data/lib/studium/exam_topics/biomarkers +106 -0
  190. data/lib/studium/exam_topics/biomaterials +89 -0
  191. data/lib/studium/exam_topics/biomembranes +6 -0
  192. data/lib/studium/exam_topics/bionik +65 -0
  193. data/lib/studium/exam_topics/biophysik +34 -0
  194. data/lib/studium/exam_topics/biopolymers +10 -0
  195. data/lib/studium/exam_topics/bioprozesstechnik +149 -0
  196. data/lib/studium/exam_topics/bioressourcenmanagement +78 -0
  197. data/lib/studium/exam_topics/bodenkunde +373 -0
  198. data/lib/studium/exam_topics/bodenmikrobiologie +40 -0
  199. data/lib/studium/exam_topics/cancerbiology +442 -0
  200. data/lib/studium/exam_topics/cell_cultures +155 -0
  201. data/lib/studium/exam_topics/cellbiology +995 -0
  202. data/lib/studium/exam_topics/cellular_transport_and_protein_secretion +27 -0
  203. data/lib/studium/exam_topics/cellulose +6 -0
  204. data/lib/studium/exam_topics/chemische_technologie_anorganischer_stoffe +209 -0
  205. data/lib/studium/exam_topics/chemische_technologie_organischer_stoffe +25 -0
  206. data/lib/studium/exam_topics/chemisches_labor +60 -0
  207. data/lib/studium/exam_topics/chemotaxis_and_motility_in_prokaryotes +87 -0
  208. data/lib/studium/exam_topics/citric_acid_cycle +80 -0
  209. data/lib/studium/exam_topics/clinical_microbiology +492 -0
  210. data/lib/studium/exam_topics/computer_graphics +5 -0
  211. data/lib/studium/exam_topics/computer_science +280 -0
  212. data/lib/studium/exam_topics/crispr +28 -0
  213. data/lib/studium/exam_topics/cyanobacteria +42 -0
  214. data/lib/studium/exam_topics/cytogenetics_and_chromosome_biology +551 -0
  215. data/lib/studium/exam_topics/cytokines +5 -0
  216. data/lib/studium/exam_topics/databases_and_sql +106 -0
  217. data/lib/studium/exam_topics/dna_mutation_and_dna_repair +35 -0
  218. data/lib/studium/exam_topics/dna_replication +56 -0
  219. data/lib/studium/exam_topics/ecogenetics +26 -0
  220. data/lib/studium/exam_topics/ecological_agriculture +12 -0
  221. data/lib/studium/exam_topics/ecology +314 -0
  222. data/lib/studium/exam_topics/economy +211 -0
  223. data/lib/studium/exam_topics/elektronenmikroskopie +354 -0
  224. data/lib/studium/exam_topics/elektrophorese +89 -0
  225. data/lib/studium/exam_topics/elektrotechnik_und_elektrizit/303/244t +41 -0
  226. data/lib/studium/exam_topics/elisa +54 -0
  227. data/lib/studium/exam_topics/embryologie_und_entwicklung +547 -0
  228. data/lib/studium/exam_topics/endospores_and_spores +104 -0
  229. data/lib/studium/exam_topics/enzymes_and_cofactors +345 -0
  230. data/lib/studium/exam_topics/epigenetik +179 -0
  231. data/lib/studium/exam_topics/ethik +138 -0
  232. data/lib/studium/exam_topics/evolution_and_evolutionary_genetics +328 -0
  233. data/lib/studium/exam_topics/excel +7 -0
  234. data/lib/studium/exam_topics/fish +19 -0
  235. data/lib/studium/exam_topics/fluorescence_microscopy +7 -0
  236. data/lib/studium/exam_topics/food_microbiology_and_food_biotechnology +71 -0
  237. data/lib/studium/exam_topics/forensik +11 -0
  238. data/lib/studium/exam_topics/forstwirtschaft +53 -0
  239. data/lib/studium/exam_topics/fortgeschrittene_genetik +511 -0
  240. data/lib/studium/exam_topics/fortgeschrittene_gentechnik +211 -0
  241. data/lib/studium/exam_topics/fortgeschrittene_physik +6 -0
  242. data/lib/studium/exam_topics/fungi +79 -0
  243. data/lib/studium/exam_topics/genetische_krankheiten +176 -0
  244. data/lib/studium/exam_topics/genexpression +1008 -0
  245. data/lib/studium/exam_topics/genomics_and_metagenomics +244 -0
  246. data/lib/studium/exam_topics/gentechnik_und_praktische_biochemie +901 -0
  247. data/lib/studium/exam_topics/geochemistry +67 -0
  248. data/lib/studium/exam_topics/geography +8 -0
  249. data/lib/studium/exam_topics/geologie_und_mineralogie +621 -0
  250. data/lib/studium/exam_topics/geometrie +47 -0
  251. data/lib/studium/exam_topics/geschichte +93 -0
  252. data/lib/studium/exam_topics/gluconeogenesis +59 -0
  253. data/lib/studium/exam_topics/glycogen +25 -0
  254. data/lib/studium/exam_topics/glycolysis +109 -0
  255. data/lib/studium/exam_topics/glykomik +100 -0
  256. data/lib/studium/exam_topics/glyoxylatzyklus +31 -0
  257. data/lib/studium/exam_topics/grassland_cultivation +32 -0
  258. data/lib/studium/exam_topics/hormone +134 -0
  259. data/lib/studium/exam_topics/html +7 -0
  260. data/lib/studium/exam_topics/human_ecology +8 -0
  261. data/lib/studium/exam_topics/hygiene +191 -0
  262. data/lib/studium/exam_topics/imaging_and_microscopy +241 -0
  263. data/lib/studium/exam_topics/immunanalytik +94 -0
  264. data/lib/studium/exam_topics/immunologie +982 -0
  265. data/lib/studium/exam_topics/informatik +97 -0
  266. data/lib/studium/exam_topics/innate_immunity +22 -0
  267. data/lib/studium/exam_topics/insekten +57 -0
  268. data/lib/studium/exam_topics/insulin_and_diabetes +57 -0
  269. data/lib/studium/exam_topics/java +502 -0
  270. data/lib/studium/exam_topics/javascript +12 -0
  271. data/lib/studium/exam_topics/klima +6 -0
  272. data/lib/studium/exam_topics/kryptographie +5 -0
  273. data/lib/studium/exam_topics/landtechnik +26 -0
  274. data/lib/studium/exam_topics/lebensmittel +208 -0
  275. data/lib/studium/exam_topics/lebensmitteltechnologie +16 -0
  276. data/lib/studium/exam_topics/linux +5 -0
  277. data/lib/studium/exam_topics/lipids +94 -0
  278. data/lib/studium/exam_topics/macroeconomics +40 -0
  279. data/lib/studium/exam_topics/mathematics +254 -0
  280. data/lib/studium/exam_topics/medizin_und_biomedizinische_technik +250 -0
  281. data/lib/studium/exam_topics/medizinische_chemie_und_pharmazie +398 -0
  282. data/lib/studium/exam_topics/messtechnik_und_regeltechnik +104 -0
  283. data/lib/studium/exam_topics/metabolismus +406 -0
  284. data/lib/studium/exam_topics/microbial_ecology +35 -0
  285. data/lib/studium/exam_topics/microcontrollers +11 -0
  286. data/lib/studium/exam_topics/mikrobielle_lebensgemeinschaften +33 -0
  287. data/lib/studium/exam_topics/mikrobielle_physiologie +172 -0
  288. data/lib/studium/exam_topics/mitochondria +32 -0
  289. data/lib/studium/exam_topics/mixed +278 -0
  290. data/lib/studium/exam_topics/molecular_biology_of_plants +242 -0
  291. data/lib/studium/exam_topics/molekulare_medizin +131 -0
  292. data/lib/studium/exam_topics/nanotechnologie +453 -0
  293. data/lib/studium/exam_topics/nature_conservation_and_biodiversity +166 -0
  294. data/lib/studium/exam_topics/naturstoffe +9 -0
  295. data/lib/studium/exam_topics/netzwerke +32 -0
  296. data/lib/studium/exam_topics/neurobiology +267 -0
  297. data/lib/studium/exam_topics/nucleotide_sequencing +32 -0
  298. data/lib/studium/exam_topics/nutztierethologie +11 -0
  299. data/lib/studium/exam_topics/object_oriented_modeling +14 -0
  300. data/lib/studium/exam_topics/obstbau +234 -0
  301. data/lib/studium/exam_topics/organische_chemie +1007 -0
  302. data/lib/studium/exam_topics/organische_chemie_2 +118 -0
  303. data/lib/studium/exam_topics/paleobiology +35 -0
  304. data/lib/studium/exam_topics/parasitic_diseases_and_molecular_infection_biology +335 -0
  305. data/lib/studium/exam_topics/patent_law +55 -0
  306. data/lib/studium/exam_topics/pathologie +717 -0
  307. data/lib/studium/exam_topics/pcr +144 -0
  308. data/lib/studium/exam_topics/pentosephosphatweg +41 -0
  309. data/lib/studium/exam_topics/peroxisomes_glycosomes_and_lysosomes +54 -0
  310. data/lib/studium/exam_topics/pflanzenanatomie +255 -0
  311. data/lib/studium/exam_topics/pflanzenbau +24 -0
  312. data/lib/studium/exam_topics/pflanzenschutz +35 -0
  313. data/lib/studium/exam_topics/pflanzenwissenschaften +1009 -0
  314. data/lib/studium/exam_topics/pharmaceutical_biotechnology +250 -0
  315. data/lib/studium/exam_topics/physik +433 -1
  316. data/lib/studium/exam_topics/physikalische_chemie +86 -0
  317. data/lib/studium/exam_topics/physiology_and_histology +506 -0
  318. data/lib/studium/exam_topics/phytochemie +33 -0
  319. data/lib/studium/exam_topics/plant_biotechnology +128 -0
  320. data/lib/studium/exam_topics/plant_breeding +64 -0
  321. data/lib/studium/exam_topics/plant_development +50 -0
  322. data/lib/studium/exam_topics/populationsgenetik +136 -0
  323. data/lib/studium/exam_topics/posttranslationale_modifikation_von_proteinen +191 -0
  324. data/lib/studium/exam_topics/projektmanagement +219 -0
  325. data/lib/studium/exam_topics/prokaryote_genetics +531 -0
  326. data/lib/studium/exam_topics/protein_engineering +8 -0
  327. data/lib/studium/exam_topics/proteolyse +33 -0
  328. data/lib/studium/exam_topics/proteomik +40 -0
  329. data/lib/studium/exam_topics/prozesstechnik +95 -0
  330. data/lib/studium/exam_topics/psychologie +13 -0
  331. data/lib/studium/exam_topics/python +353 -0
  332. data/lib/studium/exam_topics/quality_management +256 -0
  333. data/lib/studium/exam_topics/rechtsgrundlagen +115 -0
  334. data/lib/studium/exam_topics/research_topics_in_immunobiology +42 -0
  335. data/lib/studium/exam_topics/rna_and_dna +395 -0
  336. data/lib/studium/exam_topics/rna_seq +11 -0
  337. data/lib/studium/exam_topics/ruby +146 -0
  338. data/lib/studium/exam_topics/ruby_on_rails +63 -0
  339. data/lib/studium/exam_topics/scientific_writing_and_publishing +38 -0
  340. data/lib/studium/exam_topics/semisynthese_von_proteinen_und_nukleotiden +120 -0
  341. data/lib/studium/exam_topics/sexualbiologie +62 -0
  342. data/lib/studium/exam_topics/signal_transduction_and_laser_systems +167 -0
  343. data/lib/studium/exam_topics/splicing_exons_and_introns +63 -0
  344. data/lib/studium/exam_topics/statistik +233 -0
  345. data/lib/studium/exam_topics/stemcells +158 -0
  346. data/lib/studium/exam_topics/stickstofffixierung +75 -0
  347. data/lib/studium/exam_topics/structural_bioinformatics +54 -0
  348. data/lib/studium/exam_topics/strukturbiologie +380 -0
  349. data/lib/studium/exam_topics/system_biology_and_synthetic_biology +101 -0
  350. data/lib/studium/exam_topics/systematische_zoologie +433 -0
  351. data/lib/studium/exam_topics/technical_ecology +144 -0
  352. data/lib/studium/exam_topics/technische_chemie +202 -0
  353. data/lib/studium/exam_topics/technische_grundlagen_der_informatik +26 -0
  354. data/lib/studium/exam_topics/technische_mikrobiologie +393 -0
  355. data/lib/studium/exam_topics/technisches_zeichnen +5 -0
  356. data/lib/studium/exam_topics/the_bacterial_cell_wall +97 -0
  357. data/lib/studium/exam_topics/the_c_plus_plus_programming_language +489 -0
  358. data/lib/studium/exam_topics/the_c_programming_language +129 -0
  359. data/lib/studium/exam_topics/the_cellcycle +81 -0
  360. data/lib/studium/exam_topics/the_european_union +119 -0
  361. data/lib/studium/exam_topics/the_interferon_system +38 -0
  362. data/lib/studium/exam_topics/the_microbiome +163 -0
  363. data/lib/studium/exam_topics/the_universe +12 -0
  364. data/lib/studium/exam_topics/theoretische_chemie +5 -0
  365. data/lib/studium/exam_topics/theoretische_informatik +157 -0
  366. data/lib/studium/exam_topics/tierzucht +94 -0
  367. data/lib/studium/exam_topics/toxikologie +408 -0
  368. data/lib/studium/exam_topics/transcription +82 -0
  369. data/lib/studium/exam_topics/translation_ribosomes_and_translational_control +142 -0
  370. data/lib/studium/exam_topics/umweltbiotechnologie +63 -0
  371. data/lib/studium/exam_topics/umweltchemie +233 -0
  372. data/lib/studium/exam_topics/urbanism_and_traffic +19 -0
  373. data/lib/studium/exam_topics/urea_cycle +55 -0
  374. data/lib/studium/exam_topics/vaccines_and_vaccination +242 -0
  375. data/lib/studium/exam_topics/vectors_and_gene_therapy +240 -0
  376. data/lib/studium/exam_topics/verfahrenstechnik +32 -0
  377. data/lib/studium/exam_topics/veterinary_medicine +10 -0
  378. data/lib/studium/exam_topics/vitamine +24 -0
  379. data/lib/studium/exam_topics/wasserkunde +137 -0
  380. data/lib/studium/exam_topics/weinbau +59 -0
  381. data/lib/studium/exam_topics/wissenschaft +18 -0
  382. data/lib/studium/exam_topics/yeast +102 -0
  383. data/lib/studium/exam_topics/zoologie +330 -0
  384. data/lib/studium/exams/afterburn/afterburn.rb +257 -0
  385. data/lib/studium/exams/ask_exam_from_the_upcoming_exams_pool.rb +150 -0
  386. data/lib/studium/exams/ask_exam_topic_question.rb +112 -0
  387. data/lib/studium/exams/ask_question_from_alias.rb +141 -0
  388. data/lib/studium/exams/ask_question_from_any_of_the_still_missing_lectures.rb +131 -0
  389. data/lib/studium/exams/ask_question_from_grouped_themes.rb +141 -0
  390. data/lib/studium/exams/ask_question_from_last_topic.rb +91 -0
  391. data/lib/studium/exams/ask_random_question.rb +195 -0
  392. data/lib/studium/exams/autoinclude.rb +7 -0
  393. data/lib/studium/exams/csv/create_csv_passed_exams_file.rb +217 -0
  394. data/lib/studium/exams/cycle.rb +291 -0
  395. data/lib/studium/exams/dataset.rb +123 -0
  396. data/lib/studium/exams/designate_ten_random_exam_topics/designate_ten_random_exam_topics.rb +88 -0
  397. data/lib/studium/exams/exam/exam.rb +130 -0
  398. data/lib/studium/exams/exam_question/README.md +3 -0
  399. data/lib/studium/exams/exam_question/answer.rb +177 -0
  400. data/lib/studium/exams/exam_question/constants.rb +111 -0
  401. data/lib/studium/exams/exam_question/exam_question.rb +1135 -0
  402. data/lib/studium/exams/exam_question/menu.rb +333 -0
  403. data/lib/studium/exams/exam_question/misc.rb +895 -0
  404. data/lib/studium/exams/exam_question/question.rb +91 -0
  405. data/lib/studium/exams/exam_question/reset.rb +96 -0
  406. data/lib/studium/exams/exam_registration_at/constants.rb +49 -0
  407. data/lib/studium/exams/exam_registration_at/exam_registration_at.rb +242 -0
  408. data/lib/studium/exams/exam_registration_at/help.rb +46 -0
  409. data/lib/studium/exams/exam_registration_at/menu.rb +81 -0
  410. data/lib/studium/exams/exam_registration_at/report_and_show.rb +133 -0
  411. data/lib/studium/exams/exam_registration_at/reset.rb +54 -0
  412. data/lib/studium/exams/exam_statistics_from_this_file/exam_statistics_from_this_file.rb +119 -0
  413. data/lib/studium/exams/exam_topics.rb +194 -0
  414. data/lib/studium/exams/exams.rb +20 -0
  415. data/lib/studium/exams/exams_per_month/exams_per_month.rb +2438 -0
  416. data/lib/studium/exams/exams_this_week.rb +182 -0
  417. data/lib/studium/exams/fix_exam_dates.rb +121 -0
  418. data/lib/studium/exams/frozen.rb +36 -0
  419. data/lib/studium/exams/last_exams/last_exams.rb +398 -0
  420. data/lib/studium/exams/lectures_without_exam_entry.rb +137 -0
  421. data/lib/studium/exams/mandatory_continuous_assessment/mandatory_continuous_assessment.rb +1956 -0
  422. data/lib/studium/exams/move_the_last_exam_question_to_the_top_of_the_file/move_the_last_exam_question_to_the_top_of_the_file.rb +111 -0
  423. data/lib/studium/exams/n_exams_in_these_topics.rb +404 -0
  424. data/lib/studium/exams/next_exam.rb +107 -0
  425. data/lib/studium/exams/next_exams.rb +378 -0
  426. data/lib/studium/exams/open_exam_associated_url.rb +154 -0
  427. data/lib/studium/exams/open_last_exam_question_asked_file/constants.rb +15 -0
  428. data/lib/studium/exams/open_last_exam_question_asked_file/initialize.rb +29 -0
  429. data/lib/studium/exams/open_last_exam_question_asked_file/open_last_exam_question_asked_file.rb +109 -0
  430. data/lib/studium/exams/pr/303/274fung.rb +289 -0
  431. data/lib/studium/exams/push_solved_questions_on_top.rb +180 -0
  432. data/lib/studium/exams/questions_solved_from_day_to_day/questions_solved_from_day_to_day.rb +377 -0
  433. data/lib/studium/exams/remote_ftp_url.rb +52 -0
  434. data/lib/studium/exams/repeat_last_question.rb +78 -0
  435. data/lib/studium/exams/show_all_passed_exams_of_this_university.rb +252 -0
  436. data/lib/studium/exams/show_backlog_of_exams.rb +117 -0
  437. data/lib/studium/exams/show_next_exams_for.rb +133 -0
  438. data/lib/studium/exams/show_themes/constants.rb +28 -0
  439. data/lib/studium/exams/show_themes/menu.rb +61 -0
  440. data/lib/studium/exams/show_themes/misc.rb +537 -0
  441. data/lib/studium/exams/show_themes/reset.rb +62 -0
  442. data/lib/studium/exams/show_themes/show_themes.rb +27 -0
  443. data/lib/studium/exams/show_upcoming_exams/consider_autogenerating_exam_aliases.rb +181 -0
  444. data/lib/studium/exams/show_upcoming_exams/constants.rb +82 -0
  445. data/lib/studium/exams/show_upcoming_exams/help.rb +33 -0
  446. data/lib/studium/exams/show_upcoming_exams/initialize.rb +77 -0
  447. data/lib/studium/exams/show_upcoming_exams/menu.rb +60 -0
  448. data/lib/studium/exams/show_upcoming_exams/report.rb +200 -0
  449. data/lib/studium/exams/show_upcoming_exams/reset.rb +45 -0
  450. data/lib/studium/exams/show_upcoming_exams/run.rb +20 -0
  451. data/lib/studium/exams/show_upcoming_exams/show_upcoming_exams.rb +544 -0
  452. data/lib/studium/exams/solve_all_questions_from_this_topic.rb +114 -0
  453. data/lib/studium/exams/solved/constants.rb +32 -0
  454. data/lib/studium/exams/solved/help.rb +24 -0
  455. data/lib/studium/exams/solved/initialize.rb +55 -0
  456. data/lib/studium/exams/solved/menu.rb +41 -0
  457. data/lib/studium/exams/solved/reset.rb +28 -0
  458. data/lib/studium/exams/solved/solved.rb +313 -0
  459. data/lib/studium/exams/unsolve_all_questions_from_this_topic.rb +162 -0
  460. data/lib/studium/exams/upcoming_exams/constants.rb +15 -0
  461. data/lib/studium/exams/upcoming_exams/help.rb +41 -0
  462. data/lib/studium/exams/upcoming_exams/initialize.rb +27 -0
  463. data/lib/studium/exams/upcoming_exams/menu.rb +79 -0
  464. data/lib/studium/exams/upcoming_exams/misc.rb +415 -0
  465. data/lib/studium/exams/upcoming_exams/reset.rb +34 -0
  466. data/lib/studium/exams/upcoming_exams/run.rb +26 -0
  467. data/lib/studium/exams/upcoming_exams/upcoming_exams.rb +32 -0
  468. data/lib/studium/exams/upcoming_exams_at_the_boku/constants.rb +23 -0
  469. data/lib/studium/exams/upcoming_exams_at_the_boku/html.rb +64 -0
  470. data/lib/studium/exams/upcoming_exams_at_the_boku/upcoming_exams_at_the_boku.rb +194 -0
  471. data/lib/studium/exams/upcoming_exams_dataset.rb +247 -0
  472. data/lib/studium/exams/upload_exam_topics.rb +360 -0
  473. data/lib/studium/graphviz/README.md +4 -0
  474. data/lib/studium/graphviz/bachelor_vector_based_strategies.dot +160 -0
  475. data/lib/studium/graphviz/master_vector_based_strategies.dot +46 -0
  476. data/lib/studium/gui/gtk3/README.md +1 -0
  477. data/lib/studium/gui/gtk3/ask_exam_question/ask_exam_question.config +6 -0
  478. data/lib/studium/gui/gtk3/ask_exam_question/ask_exam_question.rb +760 -0
  479. data/lib/studium/gui/gtk3/ask_exam_question/manifest.yml +12 -0
  480. data/lib/studium/gui/gtk3/control_panel/control_panel.rb +39 -0
  481. data/lib/studium/gui/gtk3/curriculum_viewer/curriculum_viewer.rb +510 -0
  482. data/lib/studium/gui/gtk3/ects_per_university/ects_per_university.rb +217 -0
  483. data/lib/studium/gui/gtk3/exam_question_widget/exam_question_widget.rb +1887 -0
  484. data/lib/studium/gui/gtk3/expand_time_range/expand_time_range.rb +34 -0
  485. data/lib/studium/gui/gtk3/information_about_a_lecture/information_about_a_lecture.rb +34 -0
  486. data/lib/studium/gui/gtk3/lecture_information/lecture_information.rb +200 -0
  487. data/lib/studium/gui/gtk3/show_upcoming_exams/show_upcoming_exams.rb +34 -0
  488. data/lib/studium/gui/java/exam_question/ExamQuestion$1.class +0 -0
  489. data/lib/studium/gui/java/exam_question/ExamQuestion.class +0 -0
  490. data/lib/studium/gui/java/exam_question/ExamQuestion.java +215 -0
  491. data/lib/studium/gui/javafx/exam_question_widget/exam_question_widget.rb +58 -0
  492. data/lib/studium/gui/jruby/exam_question_widget/exam_question_widget.rb +317 -0
  493. data/lib/studium/gui/libui/ask_exam_question/ask_exam_question.rb +349 -0
  494. data/lib/studium/gui/shared_code/control_panel/control_panel_module.rb +314 -0
  495. data/lib/studium/gui/shared_code/exam_question_widget/exam_question_widget_module.rb +39 -0
  496. data/lib/studium/gui/shared_code/expand_time_range/expand_time_range.css +0 -0
  497. data/lib/studium/gui/shared_code/expand_time_range/expand_time_range_module.rb +190 -0
  498. data/lib/studium/gui/shared_code/information_about_a_lecture/information_about_a_lecture_module.rb +180 -0
  499. data/lib/studium/gui/shared_code/show_upcoming_exams/show_upcoming_exams_module.rb +206 -0
  500. data/lib/studium/images/libui_ask_exam_question.png +0 -0
  501. data/lib/studium/images/small_logos/DNA.png +0 -0
  502. data/lib/studium/images/small_logos/README.md +2 -0
  503. data/lib/studium/images/studies_favicon.png +0 -0
  504. data/lib/studium/java/Mkdir.java +15 -0
  505. data/lib/studium/java/README.md +2 -0
  506. data/lib/studium/java/ask_exam_question/AskExamQuestion.java +477 -0
  507. data/lib/studium/java/solved/Solved.class +0 -0
  508. data/lib/studium/java/solved/Solved.java +110 -0
  509. data/lib/studium/java/utility_scripts/OpenLastExamQuestionurlLinkViaTheBrowser.class +0 -0
  510. data/lib/studium/java/utility_scripts/OpenLastExamQuestionurlLinkViaTheBrowser.java +80 -0
  511. data/lib/studium/logging/README.md +2 -0
  512. data/lib/studium/logging/ensure_that_the_log_directory_exists.rb +47 -0
  513. data/lib/studium/logging/html_log_directory.rb +41 -0
  514. data/lib/studium/logging/log_directory.rb +112 -0
  515. data/lib/studium/logging/store_last_question_asked_into_file.rb +137 -0
  516. data/lib/studium/parsers/README.md +2 -0
  517. data/lib/studium/parsers/custom_exam_results_parser.rb +206 -0
  518. data/lib/studium/parsers/parse_lva_dates.rb +190 -0
  519. data/lib/studium/parsers/parse_remote_lecture.rb +325 -0
  520. data/lib/studium/project/project.rb +76 -0
  521. data/lib/studium/requires/common_popular_requires.rb +37 -0
  522. data/lib/studium/requires/commonly_used_requires.rb +14 -0
  523. data/lib/studium/requires/require_class_exams_solved.rb +7 -0
  524. data/lib/studium/requires/require_ects_scripts.rb +27 -0
  525. data/lib/studium/requires/require_encoding.rb +7 -0
  526. data/lib/studium/requires/require_the_check_and_sanitize_files.rb +31 -0
  527. data/lib/studium/requires/require_the_curricula_files.rb +28 -0
  528. data/lib/studium/requires/require_the_exam_question_class.rb +7 -0
  529. data/lib/studium/requires/require_the_exams_files.rb +45 -0
  530. data/lib/studium/requires/require_the_logging_files.rb +23 -0
  531. data/lib/studium/requires/require_the_parsers.rb +28 -0
  532. data/lib/studium/requires/require_the_studium_constants.rb +10 -0
  533. data/lib/studium/requires/require_the_studium_project.rb +54 -0
  534. data/lib/studium/requires/require_the_toplevel_methods.rb +27 -0
  535. data/lib/studium/requires/require_the_utility_scripts.rb +49 -0
  536. data/lib/studium/requires/require_upcoming_exams.rb +7 -0
  537. data/lib/studium/requires/require_yaml.rb +7 -0
  538. data/lib/studium/requires/return_remote_homepage_of_this_lecture.rb +7 -0
  539. data/lib/studium/requires/with_GUI.rb +13 -0
  540. data/lib/studium/requires/www_mode.rb +17 -0
  541. data/lib/studium/statistics/README.md +4 -0
  542. data/lib/studium/statistics/best_exam_months.rb +92 -0
  543. data/lib/studium/statistics/curriculum_comparer.rb +336 -0
  544. data/lib/studium/statistics/determine_exam_statistics_from_this_file.rb +142 -0
  545. data/lib/studium/statistics/exam_topics_that_are_about_to_be_completed.rb +119 -0
  546. data/lib/studium/statistics/max_stats.rb +170 -0
  547. data/lib/studium/statistics/new_questions_per_year.rb +147 -0
  548. data/lib/studium/statistics/report_how_many_ects_points_per_curriculum_were_completed.rb +167 -0
  549. data/lib/studium/statistics/report_how_many_exam_questions_were_answered.rb +473 -0
  550. data/lib/studium/statistics/show_exam_statistics.rb +60 -0
  551. data/lib/studium/statistics/show_which_courses_are_in_a_bachelor_or_master_curriculum_respectively.rb +104 -0
  552. data/lib/studium/statistics/top_stats.rb +127 -0
  553. data/lib/studium/toplevel_methods/all_passed_exams.rb +37 -0
  554. data/lib/studium/toplevel_methods/already_solved_this_lecture.rb +100 -0
  555. data/lib/studium/toplevel_methods/available_topics.rb +156 -0
  556. data/lib/studium/toplevel_methods/average_grade.rb +141 -0
  557. data/lib/studium/toplevel_methods/calculate_pr/303/274fungsimmanente_lectures_from_this_file.rb +55 -0
  558. data/lib/studium/toplevel_methods/copy_the_last_backup_of_file_lecture_information.rb +34 -0
  559. data/lib/studium/toplevel_methods/curriculum_related_code.rb +999 -0
  560. data/lib/studium/toplevel_methods/determine_local_directory_of_this_lecture.rb +72 -0
  561. data/lib/studium/toplevel_methods/does_this_course_require_mandatory_presence.rb +51 -0
  562. data/lib/studium/toplevel_methods/download.rb +163 -0
  563. data/lib/studium/toplevel_methods/e.rb +16 -0
  564. data/lib/studium/toplevel_methods/ects_from_lectures.rb +250 -0
  565. data/lib/studium/toplevel_methods/editor.rb +65 -0
  566. data/lib/studium/toplevel_methods/esystem.rb +22 -0
  567. data/lib/studium/toplevel_methods/filter_away_invalid_questions.rb +77 -0
  568. data/lib/studium/toplevel_methods/find_exam_topic_and_exam_title.rb +3442 -0
  569. data/lib/studium/toplevel_methods/handle_archive_of_the_exam_questions.rb +136 -0
  570. data/lib/studium/toplevel_methods/has_this_lecture_been_already_passed_but_the_id_was_changed_lateron.rb +42 -0
  571. data/lib/studium/toplevel_methods/has_this_module_been_completed.rb +206 -0
  572. data/lib/studium/toplevel_methods/install_the_project_on_the_given_hostsystem.rb +32 -0
  573. data/lib/studium/toplevel_methods/is_on_roebe.rb +26 -0
  574. data/lib/studium/toplevel_methods/is_this_exam_topic_included.rb +46 -0
  575. data/lib/studium/toplevel_methods/is_this_homepage_registered.rb +31 -0
  576. data/lib/studium/toplevel_methods/is_this_lecture_a_practical_course.rb +100 -0
  577. data/lib/studium/toplevel_methods/is_this_lecture_registered_in_upcoming_exams.rb +42 -0
  578. data/lib/studium/toplevel_methods/java.rb +32 -0
  579. data/lib/studium/toplevel_methods/lecture_information.rb +106 -0
  580. data/lib/studium/toplevel_methods/lva_numbers.rb +355 -0
  581. data/lib/studium/toplevel_methods/main_dataset.rb +73 -0
  582. data/lib/studium/toplevel_methods/methods_related_to_directories.rb +225 -0
  583. data/lib/studium/toplevel_methods/methods_related_to_files.rb +205 -0
  584. data/lib/studium/toplevel_methods/misc.rb +169 -0
  585. data/lib/studium/toplevel_methods/n_questions_available.rb +137 -0
  586. data/lib/studium/toplevel_methods/n_topics_available.rb +63 -0
  587. data/lib/studium/toplevel_methods/names_of_all_solved_exams.rb +71 -0
  588. data/lib/studium/toplevel_methods/note_down_the_start_time_and_how_many_exams_have_been_already_solved.rb +69 -0
  589. data/lib/studium/toplevel_methods/opnn.rb +25 -0
  590. data/lib/studium/toplevel_methods/passed_this_exam_on.rb +105 -0
  591. data/lib/studium/toplevel_methods/pristine.rb +69 -0
  592. data/lib/studium/toplevel_methods/read_delay_between_questions_from_file.rb +34 -0
  593. data/lib/studium/toplevel_methods/regexes.rb +90 -0
  594. data/lib/studium/toplevel_methods/registered_for_this_exam.rb +62 -0
  595. data/lib/studium/toplevel_methods/remove_comments.rb +26 -0
  596. data/lib/studium/toplevel_methods/remove_exam_topics_that_were_already_answered.rb +27 -0
  597. data/lib/studium/toplevel_methods/remove_tags.rb +32 -0
  598. data/lib/studium/toplevel_methods/report.rb +419 -0
  599. data/lib/studium/toplevel_methods/return_all_exams_on_this_day.rb +66 -0
  600. data/lib/studium/toplevel_methods/return_dataset_for_this_exam_topic.rb +41 -0
  601. data/lib/studium/toplevel_methods/return_div_timetable_of_upcoming_exams.rb +498 -0
  602. data/lib/studium/toplevel_methods/return_ects_from_this_lecture_stored_in_the_file_lecture_information.rb +194 -0
  603. data/lib/studium/toplevel_methods/return_hash_of_already_solved_lectures.rb +46 -0
  604. data/lib/studium/toplevel_methods/return_last_exam_question.rb +34 -0
  605. data/lib/studium/toplevel_methods/return_local_path_of_this_pwdstud.rb +60 -0
  606. data/lib/studium/toplevel_methods/return_lva_number_of_this_lecture.rb +72 -0
  607. data/lib/studium/toplevel_methods/return_n_percent_solved_from_this_topic.rb +90 -0
  608. data/lib/studium/toplevel_methods/return_n_questions_were_answered_for_this_topic.rb +60 -0
  609. data/lib/studium/toplevel_methods/return_proper_university_image.rb +86 -0
  610. data/lib/studium/toplevel_methods/return_question_answer_string_from_this_topic.rb +63 -0
  611. data/lib/studium/toplevel_methods/return_remote_homepage_of_this_lecture.rb +9400 -0
  612. data/lib/studium/toplevel_methods/return_remote_moodle_link_of_this_lecture.rb +1661 -0
  613. data/lib/studium/toplevel_methods/return_sanitized_dataset_from_the_file_lecture_information.rb +110 -0
  614. data/lib/studium/toplevel_methods/return_theme_of_the_next_upcoming_exam.rb +38 -0
  615. data/lib/studium/toplevel_methods/rinstall2.rb +34 -0
  616. data/lib/studium/toplevel_methods/rti_conflict.rb +35 -0
  617. data/lib/studium/toplevel_methods/runmode.rb +87 -0
  618. data/lib/studium/toplevel_methods/sanitized_dataset_from_file_passed_exams_per_month.rb +52 -0
  619. data/lib/studium/toplevel_methods/set_last_file_for_exam_questions.rb +64 -0
  620. data/lib/studium/toplevel_methods/set_this_cd_alias_to.rb +86 -0
  621. data/lib/studium/toplevel_methods/show_passed_exams_having_this_grade.rb +34 -0
  622. data/lib/studium/toplevel_methods/spacer.rb +18 -0
  623. data/lib/studium/toplevel_methods/time.rb +239 -0
  624. data/lib/studium/toplevel_methods/total_ects_points_passed.rb +72 -0
  625. data/lib/studium/toplevel_methods/try_to_guess_the_most_likely_lva_id.rb +57 -0
  626. data/lib/studium/toplevel_methods/try_to_return_the_expanded_name_of_this_lecture.rb +63 -0
  627. data/lib/studium/toplevel_methods/unfinished.rb +51 -0
  628. data/lib/studium/toplevel_methods/url.rb +100 -0
  629. data/lib/studium/toplevel_methods/verbose_truth.rb +36 -0
  630. data/lib/studium/toplevel_methods/when_was_this_lecture_passed.rb +54 -0
  631. data/lib/studium/toplevel_methods/word_wrap.rb +56 -0
  632. data/lib/studium/toplevel_methods/write_into_file_related_functionality.rb +189 -0
  633. data/lib/studium/toplevel_methods/yes_or_no_ja_oder_nein.rb +33 -0
  634. data/lib/studium/universities_in_austria/README.md +2 -0
  635. data/lib/studium/universities_in_austria/boku/README.md +4 -0
  636. data/lib/studium/universities_in_austria/boku/boku_/303/266ffnungszeiten.rb +28 -0
  637. data/lib/studium/universities_in_austria/boku/show_three_pillars_of_these_lectures.rb +110 -0
  638. data/lib/studium/universities_in_austria/boku/three_pillars.rb +237 -0
  639. data/lib/studium/universities_in_austria/tu_vienna/README.md +6 -0
  640. data/lib/studium/universities_in_austria/tu_vienna/tu_ferien.rb +42 -0
  641. data/lib/studium/universities_in_austria/tu_vienna/tu_/303/266ffnungszeiten.rb +34 -0
  642. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_boku_lecture_to_curriculum.rb +384 -0
  643. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_lecture_to_curriculum.rb +238 -0
  644. data/lib/studium/utility_scripts/attribute_lectures_to_university/attribute_lectures_to_university.rb +375 -0
  645. data/lib/studium/utility_scripts/audio_stats.rb +171 -0
  646. data/lib/studium/utility_scripts/auto_stud/auto_stud.rb +252 -0
  647. data/lib/studium/utility_scripts/auto_stud/constants.rb +18 -0
  648. data/lib/studium/utility_scripts/auto_stud/initialize.rb +23 -0
  649. data/lib/studium/utility_scripts/auto_stud/misc.rb +18 -0
  650. data/lib/studium/utility_scripts/autopurge_this_lecture_date.rb +93 -0
  651. data/lib/studium/utility_scripts/average_grade_of_this_curriculum.rb +101 -0
  652. data/lib/studium/utility_scripts/calendar/README.md +2 -0
  653. data/lib/studium/utility_scripts/calendar/calendar.rb +251 -0
  654. data/lib/studium/utility_scripts/calendar/misc.rb +35 -0
  655. data/lib/studium/utility_scripts/check_description_of_these_lectures.rb +221 -0
  656. data/lib/studium/utility_scripts/create_database/create_database.rb +106 -0
  657. data/lib/studium/utility_scripts/current_lectures_belonging_to_both_bachelor_and_master_curriculum.rb +113 -0
  658. data/lib/studium/utility_scripts/currently_participating_in_these_lectures/currently_participating_in_these_lectures.rb +104 -0
  659. data/lib/studium/utility_scripts/display_lecture_url.rb +160 -0
  660. data/lib/studium/utility_scripts/expand_time_range/expand_time_range.rb +414 -0
  661. data/lib/studium/utility_scripts/finished_exams_at_this_university.rb +94 -0
  662. data/lib/studium/utility_scripts/foreign_language_percentage/constants.rb +23 -0
  663. data/lib/studium/utility_scripts/foreign_language_percentage/foreign_language_percentage.rb +149 -0
  664. data/lib/studium/utility_scripts/foreign_language_percentage/help.rb +31 -0
  665. data/lib/studium/utility_scripts/foreign_language_percentage/initialize.rb +25 -0
  666. data/lib/studium/utility_scripts/foreign_language_percentage/menu.rb +158 -0
  667. data/lib/studium/utility_scripts/foreign_language_percentage/report.rb +62 -0
  668. data/lib/studium/utility_scripts/foreign_language_percentage/reset.rb +50 -0
  669. data/lib/studium/utility_scripts/foreign_language_percentage/run.rb +19 -0
  670. data/lib/studium/utility_scripts/generate_spreadsheet/generate_spreadsheet.rb +354 -0
  671. data/lib/studium/utility_scripts/generate_spreadsheet/misc.rb +144 -0
  672. data/lib/studium/utility_scripts/holidays/holidays.rb +150 -0
  673. data/lib/studium/utility_scripts/homepage_of_these_courses.rb +118 -0
  674. data/lib/studium/utility_scripts/lecture_downloader.rb +107 -0
  675. data/lib/studium/utility_scripts/lectures_attributed_to_universities.rb +336 -0
  676. data/lib/studium/utility_scripts/lva_dates_of_the_important_courses.rb +111 -0
  677. data/lib/studium/utility_scripts/lva_nummer.rb +431 -0
  678. data/lib/studium/utility_scripts/mandatory_lectures_in_this_month/mandatory_lectures_in_this_month.rb +316 -0
  679. data/lib/studium/utility_scripts/name_of_this_lva_id.rb +110 -0
  680. data/lib/studium/utility_scripts/new_stud.rb +324 -0
  681. data/lib/studium/utility_scripts/next_week.rb +103 -0
  682. data/lib/studium/utility_scripts/open_last_exam_question_url_link_via_the_browser.rb +76 -0
  683. data/lib/studium/utility_scripts/passed_ects_per_year/passed_ects_per_year.rb +177 -0
  684. data/lib/studium/utility_scripts/passed_pr/303/274fungsimmanente_courses/passed_pr/303/274fungsimmanente_courses.rb +181 -0
  685. data/lib/studium/utility_scripts/pdf/README.md +2 -0
  686. data/lib/studium/utility_scripts/pdf/create_pdf_file_for_this_exam_topic.rb +355 -0
  687. data/lib/studium/utility_scripts/pdf/hexapdf_support.rb +50 -0
  688. data/lib/studium/utility_scripts/preparatory_meetings/preparatory_meetings.rb +312 -0
  689. data/lib/studium/utility_scripts/priority.rb +164 -0
  690. data/lib/studium/utility_scripts/priority_points/priority_points.rb +263 -0
  691. data/lib/studium/utility_scripts/publish_my_exams.rb +174 -0
  692. data/lib/studium/utility_scripts/regexes/README.md +1 -0
  693. data/lib/studium/utility_scripts/regexes/generate_regex.rb +300 -0
  694. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_available_moodle_links.rb +55 -0
  695. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_registered_lectures.rb +48 -0
  696. data/lib/studium/utility_scripts/report_outdated_timetable_entries/report_outdated_timetable_entries.rb +142 -0
  697. data/lib/studium/utility_scripts/report_total_amount_of_questions_and_answers_for.rb +116 -0
  698. data/lib/studium/utility_scripts/report_whether_this_lecture_is_registered_in_the_file_lecture_information.rb +128 -0
  699. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/individual_resolve_practical_courses_date_conflicts.rb +254 -0
  700. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/resolve_practical_courses_date_conflicts.rb +265 -0
  701. data/lib/studium/utility_scripts/scrape_remote_university_url.rb +138 -0
  702. data/lib/studium/utility_scripts/semester_schedule_creator/semester_container.rb +144 -0
  703. data/lib/studium/utility_scripts/semester_schedule_creator/semester_schedule_creator.rb +374 -0
  704. data/lib/studium/utility_scripts/semesterplaner.rb +289 -0
  705. data/lib/studium/utility_scripts/set_aliases_based_on_this_file.rb +95 -0
  706. data/lib/studium/utility_scripts/show_all_passed_master_lectures.rb +119 -0
  707. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/show_conflicting_lva_lectures.rb +1238 -0
  708. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/constants.rb +23 -0
  709. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/menu.rb +63 -0
  710. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/reset.rb +33 -0
  711. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/run.rb +50 -0
  712. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/show_descriptions_of_lectures_belonging_to_this_module.rb +145 -0
  713. data/lib/studium/utility_scripts/show_lecturers/show_lecturers.rb +147 -0
  714. data/lib/studium/utility_scripts/show_lectures/constants.rb +11 -0
  715. data/lib/studium/utility_scripts/show_lectures/help.rb +34 -0
  716. data/lib/studium/utility_scripts/show_lectures/initialize.rb +23 -0
  717. data/lib/studium/utility_scripts/show_lectures/menu.rb +127 -0
  718. data/lib/studium/utility_scripts/show_lectures/misc.rb +584 -0
  719. data/lib/studium/utility_scripts/show_lectures/reset.rb +89 -0
  720. data/lib/studium/utility_scripts/show_lectures/run.rb +27 -0
  721. data/lib/studium/utility_scripts/show_lectures/show_lectures.rb +48 -0
  722. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_language/show_lectures_fitting_to_this_language.rb +121 -0
  723. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_theme/show_lectures_fitting_to_this_theme.rb +105 -0
  724. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/constants.rb +17 -0
  725. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/determine.rb +673 -0
  726. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/help.rb +44 -0
  727. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/html.rb +605 -0
  728. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/initialize.rb +56 -0
  729. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/konsole.rb +32 -0
  730. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/menu.rb +472 -0
  731. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/misc.rb +837 -0
  732. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/reset.rb +121 -0
  733. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/run.rb +44 -0
  734. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/show.rb +106 -0
  735. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/show_lectures_on_the_commandline.rb +261 -0
  736. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/sorted_individual_curricula.rb +121 -0
  737. data/lib/studium/utility_scripts/show_lectures_on_this_day.rb +149 -0
  738. data/lib/studium/utility_scripts/show_lva_dates_of_this_lecture.rb +169 -0
  739. data/lib/studium/utility_scripts/show_mixed_bachelor_master_courses/show_mixed_bachelor_master_courses.rb +91 -0
  740. data/lib/studium/utility_scripts/show_outdated_lva_dates/show_outdated_lva_dates.rb +210 -0
  741. data/lib/studium/utility_scripts/show_solved_english_lectures/show_solved_english_lectures.rb +139 -0
  742. data/lib/studium/utility_scripts/steop/README.md +4 -0
  743. data/lib/studium/utility_scripts/steop/show_all_steop_lectures.rb +93 -0
  744. data/lib/studium/utility_scripts/steop/steop_lectures_in_this_curriculum.rb +284 -0
  745. data/lib/studium/utility_scripts/steop/steop_lva_dates.rb +119 -0
  746. data/lib/studium/utility_scripts/studienkennzahl.rb +116 -0
  747. data/lib/studium/utility_scripts/studium_skeleton/studium_skeleton.rb +227 -0
  748. data/lib/studium/utility_scripts/stundenplan.rb +595 -0
  749. data/lib/studium/utility_scripts/sync_studium_relevant_entries_one_level_downwards.rb +217 -0
  750. data/lib/studium/utility_scripts/ufind/ufind.rb +98 -0
  751. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/constants.rb +26 -0
  752. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/run.rb +20 -0
  753. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/upcoming_mandatory_presence_courses.rb +181 -0
  754. data/lib/studium/utility_scripts/week_parser/constants.rb +23 -0
  755. data/lib/studium/utility_scripts/week_parser/help.rb +32 -0
  756. data/lib/studium/utility_scripts/week_parser/menu.rb +59 -0
  757. data/lib/studium/utility_scripts/week_parser/misc.rb +373 -0
  758. data/lib/studium/utility_scripts/week_parser/reset.rb +65 -0
  759. data/lib/studium/utility_scripts/week_parser/run.rb +18 -0
  760. data/lib/studium/utility_scripts/week_parser/show.rb +236 -0
  761. data/lib/studium/utility_scripts/week_parser/week_parser.rb +49 -0
  762. data/lib/studium/utility_scripts/weekday_parser.rb +155 -0
  763. data/lib/studium/utility_scripts/weekly_schedule.rb +198 -0
  764. data/lib/studium/utility_scripts/wochenplanung.rb +261 -0
  765. data/lib/studium/version/version.rb +46 -0
  766. data/lib/studium/www/curricula_displayer.cgi +197 -0
  767. data/lib/studium/www/curriculum_displayer.rb +162 -0
  768. data/lib/studium/www/exams.cgi +53 -0
  769. data/lib/studium/www/fast_ask_exam_question.cgi +155 -0
  770. data/lib/studium/www/sinatra/app.rb +231 -0
  771. data/lib/studium/www/sinatra/misc.rb +115 -0
  772. data/lib/studium/www/statistics/statistics.cgi +59 -0
  773. data/lib/studium/yaml/ad_hoc_trainer/README.md +2 -0
  774. data/lib/studium/yaml/ad_hoc_trainer/exam_topics.md +15 -0
  775. data/lib/studium/yaml/allowed_themes_for_exams.yml +344 -0
  776. data/lib/studium/yaml/array_allowed_entries_for_the_file_lecture_information.yml +70 -0
  777. data/lib/studium/yaml/available_exam_topics/available_exam_topics.yml +234 -0
  778. data/lib/studium/yaml/backlog_of_exams.yml +37 -0
  779. data/lib/studium/yaml/colours/custom_colours.yml +28 -0
  780. data/lib/studium/yaml/colours/use_colours.yml +1 -0
  781. data/lib/studium/yaml/current_exams.yml +19 -0
  782. data/lib/studium/yaml/curricula/README.md +9 -0
  783. data/lib/studium/yaml/curricula/bachelor/bachelor_agrarwissenschaften_033255.yml +142 -0
  784. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_basisblock_033630.yml +65 -0
  785. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_botanik_033630.yml +84 -0
  786. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_ecology_033630.yml +74 -0
  787. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_mikrobiologie_und_genetik_033630.yml +120 -0
  788. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_molekulare_biologie_033630.yml +104 -0
  789. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_zoologie_033630.yml +87 -0
  790. data/lib/studium/yaml/curricula/bachelor/bachelor_chemie_033662.yml +165 -0
  791. data/lib/studium/yaml/curricula/bachelor/bachelor_dummy_curriculum.yml +183 -0
  792. data/lib/studium/yaml/curricula/bachelor/bachelor_elektrotechnik_und_informationstechnik_033235.yml +13 -0
  793. data/lib/studium/yaml/curricula/bachelor/bachelor_forstwirtschaft_033225.yml +115 -0
  794. data/lib/studium/yaml/curricula/bachelor/bachelor_informatik_033521.yml +130 -0
  795. data/lib/studium/yaml/curricula/bachelor/bachelor_ktww_033231.yml +84 -0
  796. data/lib/studium/yaml/curricula/bachelor/bachelor_lmbt_033217.yml +118 -0
  797. data/lib/studium/yaml/curricula/bachelor/bachelor_medizinische_informatik_033533.yml +203 -0
  798. data/lib/studium/yaml/curricula/bachelor/bachelor_molekularbiologie_033665.yml +95 -0
  799. data/lib/studium/yaml/curricula/bachelor/bachelor_nutrition_science_033638.yml +119 -0
  800. data/lib/studium/yaml/curricula/bachelor/bachelor_pharmazie_033305.yml +170 -0
  801. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_chemie_033290.yml +129 -0
  802. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_informatik_033535.yml +23 -0
  803. data/lib/studium/yaml/curricula/bachelor/bachelor_ubrm_033227.yml +136 -0
  804. data/lib/studium/yaml/curricula/bachelor/bachelor_verfahrenstechnik_033273.yml +167 -0
  805. data/lib/studium/yaml/curricula/bachelor/bachelor_wirtschaftsinformatik_033526.yml +29 -0
  806. data/lib/studium/yaml/curricula/individual/bachelor_informatik_und_molekulare_biologie.yml +1161 -0
  807. data/lib/studium/yaml/curricula/individual/bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +1157 -0
  808. data/lib/studium/yaml/curricula/individual/master_bioinformatics_and_nanobiotechnology_in_molecular_medicine.yml +306 -0
  809. data/lib/studium/yaml/curricula/individual/master_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +741 -0
  810. data/lib/studium/yaml/curricula/master/master_bioinformatik_066875.yml +76 -0
  811. data/lib/studium/yaml/curricula/master/master_biologie_molekulare_mikrobiologie_mikrobielle_oekologie_und_immunbiologie_066830.yml +78 -0
  812. data/lib/studium/yaml/curricula/master/master_biologische_chemie_066863.yml +61 -0
  813. data/lib/studium/yaml/curricula/master/master_dummy_curriculum.yml +197 -0
  814. data/lib/studium/yaml/curricula/master/master_genetik_und_entwicklungsbiologie_066877.yml +89 -0
  815. data/lib/studium/yaml/curricula/master/master_lmbt_066418.yml +111 -0
  816. data/lib/studium/yaml/curricula/master/master_molekulare_biologie_066834.yml +142 -0
  817. data/lib/studium/yaml/curricula/master/master_pharmazie_066605.yml +170 -0
  818. data/lib/studium/yaml/curricula/master/master_technische_chemie_066490.yml +123 -0
  819. data/lib/studium/yaml/curricula/outdated/master_bioinformatics_and_molecular_biotechnology_including_aspects_from_molecular_medicine.yml +438 -0
  820. data/lib/studium/yaml/curricula/outdated/master_food_science_and_plant_biotechnology.yml +31 -0
  821. data/lib/studium/yaml/curricula.yml +538 -0
  822. data/lib/studium/yaml/daily_questions_solved.yml +1468 -0
  823. data/lib/studium/yaml/default_delay.yml +4 -0
  824. data/lib/studium/yaml/default_encoding.yml +1 -0
  825. data/lib/studium/yaml/directory_to_the_exam_topics.yml +0 -0
  826. data/lib/studium/yaml/editor.yml +1 -0
  827. data/lib/studium/yaml/file_for_exam_questions.yml +1 -0
  828. data/lib/studium/yaml/german/README.md +2 -0
  829. data/lib/studium/yaml/german/german_to_english_month_names.yml +16 -0
  830. data/lib/studium/yaml/grouped_themes.yml +192 -0
  831. data/lib/studium/yaml/holidays.yml +194 -0
  832. data/lib/studium/yaml/important_exams.yml +226 -0
  833. data/lib/studium/yaml/inscription_dates_of_universities.yml +60 -0
  834. data/lib/studium/yaml/lecture_aliases.yml +138 -0
  835. data/lib/studium/yaml/lecture_information/lecture_information.yml +55870 -0
  836. data/lib/studium/yaml/log_dir.yml +1 -0
  837. data/lib/studium/yaml/main_topic.yml +11 -0
  838. data/lib/studium/yaml/max_stats.yml +241 -0
  839. data/lib/studium/yaml/meta_themes/README.md +13 -0
  840. data/lib/studium/yaml/meta_themes/biochemistry.md +6 -0
  841. data/lib/studium/yaml/meta_themes/bioinformatics.md +6 -0
  842. data/lib/studium/yaml/meta_themes/biotechnology.md +9 -0
  843. data/lib/studium/yaml/meta_themes/chemistry.md +9 -0
  844. data/lib/studium/yaml/meta_themes/genetics.md +10 -0
  845. data/lib/studium/yaml/meta_themes/immunology.md +5 -0
  846. data/lib/studium/yaml/meta_themes/metabolic_pathways.md +12 -0
  847. data/lib/studium/yaml/meta_themes/molecular_biology.md +9 -0
  848. data/lib/studium/yaml/meta_themes/protein_engineering.md +10 -0
  849. data/lib/studium/yaml/meta_themes/statistics.md +2 -0
  850. data/lib/studium/yaml/mitbelegung/README.md +4 -0
  851. data/lib/studium/yaml/mitbelegung/mitbelegung.yml +23 -0
  852. data/lib/studium/yaml/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.yml +363 -0
  853. data/lib/studium/yaml/n_total_questions.yml +1 -0
  854. data/lib/studium/yaml/rename_konsole_tab.yml +1 -0
  855. data/lib/studium/yaml/show_topic.yml +1 -0
  856. data/lib/studium/yaml/statistics/max_stats.yml +239 -0
  857. data/lib/studium/yaml/statistics/statistics.yml +69 -0
  858. data/lib/studium/yaml/week/01_monday.yml +5 -0
  859. data/lib/studium/yaml/week/02_tuesday.yml +75 -0
  860. data/lib/studium/yaml/week/03_wednesday.yml +62 -0
  861. data/lib/studium/yaml/week/04_thursday.yml +14 -0
  862. data/lib/studium/yaml/week/05_friday.yml +31 -0
  863. data/lib/studium/yaml/week/06_saturday.yml +16 -0
  864. data/lib/studium/yaml/week/07_sunday.yml +0 -0
  865. data/lib/studium/yaml/week/README.md +13 -0
  866. data/lib/studium.rb +5 -0
  867. data/studium.gemspec +80 -0
  868. data/test/testing_studium.rb +244 -0
  869. data/test/testing_studium_base_class.rb +17 -0
  870. data/test/testing_time_component.rb +29 -0
  871. metadata +1078 -0
@@ -0,0 +1,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
+ - 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>
10
+ - Andere (systematische) Bezeichnung für das <one>Epstein-Barr Virus</one>? <one>Human Herpesvirus 4</one> (<two>HHV4</two>).
11
+ - 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.
12
+ - In der klinischen Virologie: <one>wie mögen wir eine Reinfektion mit Poliovirus bemerken</one>? Durch einen <one>Wiederanstieg der Antikörperkonzentration</one>.
13
+ - 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>.
14
+ - <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>. []
15
+ - 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>
16
+ - <one>Which</one> was the first human disease shown to be viral in nature? <one>Yellow fever</one> (or perhaps <two>Polio</two>, which was shown in 1908 by Karl Landsteiner to be viral in nature).
17
+ - <one>How</one> can some <two>viruses</two> attach to microtubules? They have sequences that allow them to attach to microtubules.
18
+ - <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 []
19
+ - <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>.
20
+ - 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.
21
+ - 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>.
22
+ - 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/
23
+ - 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>
24
+ - <one>INRS</one> stehen für <two>vier Drogen die gegen AIDS eingesetzt werden</two>. Welche sind dies? A: (1) <one>Indinavir</one> (2) <one>Nelfinavir</one> (3) <one>Ritonavir</one> (4) <one>Saquinavir</one>
25
+ - In einem Milliliter Meerwasser finden wir wieviele Viruspartikel? Etwa <one>10 Millionen</one> (<two>10 ** 1⁰</two>).
26
+ - <one>Welches zelluläre Gen</one> trägt ein <two>Flavivirus</two>? Das <one>Gen für die Synthese von Ubiquitin</one>.
27
+ - Name <one>four specific diseases</one> caused by <two>Picornaviruses</two>. A: (1) <one>common cold</one> (2) polio (3) hepatitis A (4) foot and mouth disease
28
+ - 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
29
+ - In Virology, the <one>Antigenicity of Influenza-Virus</one> (such as the strain H3N2), is essentially determined how? By the structure of hemagglutinin.
30
+ - <one>Wann</one> wurde das <two>Poliovirus</two> zuerst isoliert? A: <one>1908</one>, von <two>Karl Landsteiner</two>. URL: https://de.wikipedia.org/wiki/Poliovirus#Entdeckung_und_Geschichte []
31
+ - Are <one>Arboviruses</one> a <two>polyphyletic group</two>? <one>Yes</one>. URL: https://en.wikipedia.org/wiki/Arbovirus []
32
+ - Give another name for <one>viral sex</one>. A: <one>Genetic reassortment</one>.
33
+ - 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>.
34
+ - Das <one>M2-Protein</one> von <two>Influenza</two> hat welche Funktion? Das <one>M2-Protein</one> von Influenza agiert als <two>Protonenkanal</two>.
35
+ - Wie nennen wir die <one>Ausbeute</one> in der normalen Virusproduktion? <one>Burst size</one>. URL: https://de.wikipedia.org/wiki/Burst_Size []
36
+ - 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/ []
37
+ - 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> (pRb) (2) <one>p53 tumor suppressor</one>
38
+ - 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> []
39
+ - 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>.
40
+ - Nenne <one>zwei Vertreter</one> der <two>Filoviridae</two>. A: (1) <one>Ebola virus</one> (2) <one>Marburg virus</one> []
41
+ - 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>.
42
+ - 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.
43
+ - 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>
44
+ - <one>Warum</one> gelten <two>rekombinante Baculoviren</two> als sicher? Da sie ihre Gene nicht in andere als in Invertebraten-Zellen integrieren können.
45
+ - <one>Durchmesser</one> der <two>Rhinoviren</two> (von-bis)? <one>25-30nm</one>.
46
+ - <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
47
+ - Give an example for <one>a viral protein that can inhibit p53</one>. A: <one>HPV E6</one>.
48
+ - Nenne je ein anderes Wort für <one>Klasse V</one>, VI und VII Virus-Genome. A: (1) <one>V minus-strand RNA</one> (2) <one>VI Retrovirus</one> (3) <one>VII Pararetrovirus</one>
49
+ - <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.
50
+ - The <one>human rhinovirus genome</one> contains <two>how many basepairs</two>? This ssRNA virus has approximately <one>7.200 bp</one>. []
51
+ - Nenne drei Mitglieder von Flavivirus. A: (1) <one>Hepatitis C virus</one> (2) yellow fever virus (3) tick-borne encephalitis virus
52
+ - <one>HIV-2</one> entwickelte sich aus ..? Dem <one>Simian Immunodeficiency Virus</one> (sooty mangabey).
53
+ - Bei der <one>HIV-Kombinationstherapie</one> werden welche zwei Wirkstoffe eingesetzt? (1) ein <one>Protease-Inhibitor</one> (2) ein <one>Reverse Transkriptase-Hemmer</one>
54
+ - 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 []
55
+ - 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>
56
+ - <one>Human Rhinoviruses</one> belong to which genus? They belong to the <one>genus Enterovirus</one>. URL: https://en.wikipedia.org/wiki/Enterovirus []
57
+ - 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> []
58
+ - The <one>Rhinovirus</one> belongs to which genus? It belongs to the genus <one>Enterovirus</one>. URL: https://en.wikipedia.org/wiki/Enterovirus []
59
+ - Wieviele <one>Influenza HA-Subtypen</one> sind bekannt? <one>18</one>. URL: https://www.cdc.gov/flu/avianflu/influenza-a-virus-subtypes.htm []
60
+ - The <one>diameter of coronaviruses particles</one> is about <two>n nm</two>? About <one>120 nm</one>. []
61
+ - Nenne <one>fünf Retrotransposons</one> in verschiedenen Organismen. A: (1) MoMLV (2) Rous sarcoma virus (3) Ty1 in Yeast (4) <one>Copia</one> <two>in Drosophila</two> (5) L1 in humans
62
+ - 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
63
+ - Name four <one>side-effects of interferon treatment</one> against viral infections? (1) fever (2) tiredness (3) muscle pains (4) <one>sickness</one>
64
+ - 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.
65
+ - 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>.
66
+ - 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.
67
+ - Welche Zellen infiziert <one>HSV-1</one> (<two>Herpes simplex virus 1</two>)? (1) <one>Epithelzellen</one> (2) <one>Neuronen</one>
68
+ - 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
69
+ - Finden wir in jedem <one>Cervixkarzinom</one> ein Papillomavirusgenom in integrierter Form? Nein; <one>zumindest nicht in einer nachweisbaren Form</one>.
70
+ - <two>Viren</two> können über ein <one>Durchbrechen der Hautbarriere</one> in den Menschen gelangen. Nenne hierzu drei verschiedene Möglichkeiten. 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>
71
+ - Der <one>Hepatitis-B-Virus</one> hat <two>n verschiedene Genotypen</two>? <one>8</one>; <two>A-H</two>.
72
+ - 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>.
73
+ - 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>.
74
+ - Why does <one>Hepatitis C virus</one> have <two>a lipoprotein coat</two>? This coat is useful for <one>entry into hepatocytes</one>.
75
+ - <one>Welches adenovirale Protein</one> dient während des Zusammenbaus der Hexon-Capsomere als Scaffold-Protein? Das adenovirale Protein <one>L4-100KD</one>.
76
+ - Nenne 3 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
77
+ - Die <one>Rhinoviren</one> binden an welchen zellulären Rezeptor? An <one>ICAM-1</one> - auch als <two>CD54</two> bekannt. URL: https://en.wikipedia.org/wiki/ICAM-1
78
+ - <one>David Vetter</one>, the famous <two>bubble-boy</two>, died due to which virus ultimately? The <one>Epstein-Barr</one> virus.
79
+ - Durchmesser eines <one>Adenovirus</one> (von, bis)? A: <one>60 nm - 90 nm</one>. URL: https://de.wikipedia.org/wiki/Adenoviridae []
80
+ - How many people die per year in the USA because of <one>Influenza</one>? <one>36.000</one>. []
81
+ - Name a virus group with a <one>brick-shaped virion</one>. A: <one>Poxviridae</one>. URL: https://en.wikipedia.org/wiki/Poxviridae []
82
+ - <one>Which virus</one> causes the <two>Kaposi sarcoma</two>? A <one>herpesvirus</one>. URL: https://en.wikipedia.org/wiki/Kaposi%27s_sarcoma#Cause []
83
+ - 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.
84
+ - 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 []
85
+ - Name <one>a virus-centric database</one> that begins with the letter <two>'V'</two>. A: The <one>VIPER database</one>. []
86
+ - 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 []
87
+ - 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 []
88
+ - 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 []
89
+ - <one>In welcher Phase</one> liegen extrazellulär keine infektiösen Viren vor? In der <one>Latenzperiode</one>.
90
+ - How many people die per year due to <one>influenza-related causes</one>? <one>36.000</one>. []
91
+ - 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 []
92
+ - 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>
93
+ - 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 []
94
+ - <one>When</one> was <two>smallpox</two> eradicated? In <one>1977</one>. URL: https://en.wikipedia.org/wiki/Smallpox#History []
95
+ - Das Medikament <one>Zovirax</one> wirkt gegen welchen Virus? <one>Zovirax</one>, auch als Aciclovir bekannt, wirkt gegen den <two>Herpes-simplex virus</two>. URL: https://de.wikipedia.org/wiki/Aciclovir []
96
+ - Angenommen ein Patient hat ein <one>Larynxpapillom</one>. Wir möchten dieses entfernen. Was könnten wir tun? Wir könnten "IFN-Alpha" und "IFN-Beta" injizieren.
97
+ - 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>
98
+ - Das <one>MS2-Genom</one> besitzt wie viele Nukleotide? <one>3569 bp</one>.
99
+ - Im Jahre <one>2014</one> kam welcher neue Influenza-Stamm auf? <one>H5N8</one>. URL: https://de.wikipedia.org/wiki/Vogelgrippe_H5N8 []
100
+ - 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>.
101
+ - <one>Dendritic cells</one> can <two>process protein antigens</two> by <three>which two pathways</three>? (1) <one>exogeneous</one> (2) <one>endogeneous</one>
102
+ - 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>.
103
+ - A <one>concentrated suspension of virions</one> might contain n virions per ml? About <one>10¹² virions per ml</one>.
104
+ - Insbesondere <one>welcher HPV-Typ</one> ist mit <three>Cervikarzonima</three> assoziiert? <one>HPV 16</one>. URL: https://de.wikipedia.org/wiki/Humane_Papillomviren []
105
+ - 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>.
106
+ - <one>Wann</one> in etwa wurde das <two>Influenza-Virus</two> entdeckt (+/- 5 Jahre sind ok)? Im Jahre <one>1933</one>.
107
+ - 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
108
+ - Nenne einen Vertreter der <one>einfachen Retroviren</one>. A: Das <one>avian leukosis virus</one>.
109
+ - <one>HIV-1 tat</one> (<two>transactivator of transcription</two>) bindet woran? A stem-loop structure at 5' end of HIV-1 mRNA.
110
+ - <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).
111
+ - Das <one>HTLV Tax-Protein</one> <two>interagiert</two> mit welchen zwei Faktoren? (1) <one>NF Kappa Beta</one> (2) <one>CREB</one>
112
+ - 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>.
113
+ - <one>Wieviele Serotypen von Adenovirus</one> sind bekannt? A: Mindestens <one>47</one>, mittlerweile (Jahr: 2017) aber bereits mehr. []
114
+ - Does a <one>virus</one> arise from a pre-existing virus? No - at the least <one>never directly</one>.
115
+ - <one>SARS-CoV-2</one> produces two polyproteins, called <two>pp1a</two> and <two>pp1ab</two>. How are the genes for these polyproteins called? <one>ORF1a</one> and <one>ORF1b</one>.
116
+ - In virology: <one>BSL4</one> stands for ... ? <one>Biosafety Level-4</one>. URL: https://en.wikipedia.org/wiki/Biosafety_level#Biosafety_level_4 []
117
+ - The drug <one>Ribavirin</one> is used to treat what? The <one>Hepatitis C virus</one>, a ssRNA virus, in combination with Interferon Alpha.
118
+ - Name a <one>DNA-virus with a circular genome</one>. A: The <one>DNA hepatitis B virus</one>.
119
+ - Name the most characteristic feature of a virion. A: It is <one>metabolically inert</one>.
120
+ - <one>CoV</one> (Coronavirus) may contain <two>PRRAR</two> in their genome. What does this stand for? <one>Polybasic cleavage site</one>.
121
+ - Ein <one>Picornavirus</one> kodiert normalerweise für wieviele Proteine? Zwischen <one>11</one> und <one>14</one>.
122
+ - 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>.
123
+ - 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>. []
124
+ - Name a virus with an <one>internal lipid membrane</one>. A: <one>Iridovirus</one>.
125
+ - Most <one>HPV virions</one> appear to enter the cell via a ... endocytic mechanism. A: <one>Clathrin-dependent endocytic mechanism</one>. []
126
+ - Nenne ein <one>viruscodiertes Enzym</one> beginnend mit dem Buchstaben <two>T</two> ...? Die <one>Thymidinkinase</one>.
127
+ - <one>Herpesviren</one>: Durchseuchungsrate (des Menschen), in Prozent? <one>95%</one>. []
128
+ - 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>. []
129
+ - 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> []
130
+ - 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.
131
+ - <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
132
+ - Die <one>Retrovirus gag-proteins</one> inkludieren <two>PR</two>. Was ist damit gemeint? Dies ist eine <one>Protease</one>.
133
+ - The <two>foot-and-mouth disease virus</two> has <one>Lpro</one>. What is meant with that? Lpro is <one>the leader proteinase</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4931897/ []
134
+ - Sind <two>Viren</two> <one>haploid</one>? Ja, bis auf die <one>diploiden Retroviren</one>, die zwei fast idente Kopien des viralen Genoms besitzen. []
135
+ - <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 []
136
+ - Name one cellular molecule used by the <one>rabies virus</one> for attachment. A: <one>Acetyl-choline receptor</one>.
137
+ - Das <one>Hepatitis-Delta-Virus</one> Genom umfasst n Nucleotide? ~1700.
138
+ - Woher kommt der Name <one>Norovirus</one>? Vom <one>Norwalk Virus</one>, der auch zugleich der einzige Vertreter in diesem Genus ist. []
139
+ - Allgemein: welche Virusgruppen gibt es? Unterscheidung anhand des Genoms: (1) ssDNA (2) dsDNA (3) <one>ssRNA</one> (4) <one>dsRNA</one>
140
+ - The <one>smallest, nondefective animal virus genome</one> can be found in which virus? <one>Circovirus</one>.
141
+ - Das <one>West-Nil-Virus</one> ist seit welchem Jahr bekannt? <one>1937</one>.
142
+ - 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.
143
+ - 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.
144
+ - 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>. []
145
+ - Andere Bezeichnung für <one>DNA Transposons</one>? <one>Class 2 Transposons</one>. []
146
+ - 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>.
147
+ - 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.
148
+ - Nenne 3 <one>Mechanismen</one> wie Viren evolvieren können. Gib jeweils ein Beispiel an. A: (1) <one>Mutation</one>: HIV-1 (2) <one>Recombination</one>: <two>Poliovirus</two> (3) <one>Reassortment</one>: <two>Influenza</two>
149
+ - 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>. []
150
+ - Are <one>viruses</one> killers? Not quite so; <one>they have not made their hosts extinct after all</one>. []
151
+ - <one>Wieviele Menschen</one> sind weltweit mit dem Hepatitis-B-virus infiziert? Etwa <one>350 Millionen</one>. []
152
+ - 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
153
+ - Nenne <one>eine Virusgruppe</one> die fäkal-oral übertragen wird und die zu schweren Durchfallerkrankungen führen kann. A: Die <one>Noroviren</one>. []
154
+ - <one>Which virus</one> is described as the <two>winter virus</two> typically? The <one>Influenza virus</one>.
155
+ - 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>
156
+ - The <one>poliovirus genome</one> contains the <two>VPg protein</two>, at which of its ssRNA-end? At its <one>5' end</one>. []
157
+ - 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.
158
+ - 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
159
+ - Nenne einen Nucleotidanalogen Hemmstoff der <one>HIV-Revertase</one>. A: <one>Aciclovir</one>.
160
+ - Name the prototype representative of the <one>human parvovirus</one>. A: The <one>AAV</one> (<one>Adeno-associated virus</one>), a <two>dependoparvovirus</two>. URL: https://en.wikipedia.org/wiki/Adeno-associated_virus
161
+ - <one>Wann</one> wurde das <two>Maul und Klauenseuche Virus</two> entdeckt? Im Jahre <one>1896</one>.
162
+ - 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 []
163
+ - <two>An welchem Virus</two> wurde <one>das Phänomen der Interferenz</one> entdeckt? <one>Gelbfiebervirus</one>. []
164
+ - <one>Rimantadine</one> wirkt gegen Influenza Virus. Wie? Es 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.
165
+ - The <one>Hepatitis C virus</one> has infected how many people, globally? <one>170 million people worldwide</one>. []
166
+ - <one>Welche Person</one> entwickelte das <two>Konzept der Viren</two>? <one>Martinus Beijerinck</one>. URL: https://en.wikipedia.org/wiki/Martinus_Beijerinck []
167
+ - 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.
168
+ - In <one>sea water</one>: how many virions may we find per millileter? About <one>9x 10 ** 8 virions per milliliter</one>.
169
+ - The <one>semliki forest virus</one> belongs to which group? The semliki forest virus belongs to the <one>Togaviruses</one>.
170
+ - Wieso wirkt <one>Ganciclovir</one> gegen Herpesviren? <one>Herpesviren</one> besitzen eine <two>Thymidinkinase</two>, die Ganciclovir phosphoryliert.
171
+ - 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>
172
+ - Die bei <one>Rindern</one> tödlich verlaufende Krankheit <two>mucosal disease</two> wird von welchem Virus hervorgerufen? Von einem <one>Flavivirus</one>.
173
+ - Warum wollen wir bei einer <one>Tier-Herde</one> immer den gesamten Bestand impfen? Da wir so den <one>Infektionsdruck</one> senken können.
174
+ - <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
175
+ - <two>Biosafety Level 4</two>: nenne einen Virus hier, der mit dem Buchstaben <one>L</one> beginnt. A: Das <one>Lassa virus</one>.
176
+ - Give <one>two examples</one> for <two>membrane fusion</two> used by viruses. A: (1) pH-independent fusion (2) acid triggered fusion
177
+ - 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.
178
+ - Name <two>three diseases</two> that are caused by <one>Adenoviruses</one>. A: (1) <one>conjunctivitis</one> (2) respiratory diseases (3) <one>infant diarrhea</one>
179
+ - Give an example for a <one>Togavirus</one>. A: The <one>Rubella virus</one>. URL: https://en.wikipedia.org/wiki/Rubella []
180
+ - <one>Amantadin</one> kann gegen welchen Virus eingesetzt werden? Amantadin wirkt gegen <one>Influenza-A-Viren</one>. []
181
+ - Bei den <one>Influenza-Viren</one>: wieviele Subtypen an HA und NA gibt es jeweils? A: (1) <one>HA</one>: <two>18 Typen</two>. (2) <one>NA</one>: <two> 9 Typen</two>.
182
+ - Das <one>VPg bei Poliovirus</one> hat n AA? <one>22 AA</one>. []
183
+ - Historic name for <one>rabies</one>? <one>Hydrophobia</one> (<two>fear of water</two>). URL: https://en.wikipedia.org/wiki/Rabies []
184
+ - <one>Wann</one> wurde die Struktur des <two>Influenza HA-Komplexes</two> durch Röntgenstrukturanalyse aufgeklärt? <one>1981</one>.
185
+ - Name <one>a plant virus</one> that has a DNA genome. A: <one>Cauliflower mosaic virus</one>.
186
+ - The <one>HongKong 1968 Influenza strain</one> hat which composition? <one>H3N2</one>. URL: https://www.cdc.gov/flu/pandemic-resources/1968-pandemic.html []
187
+ - 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>.
188
+ - 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>.
189
+ - 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 []
190
+ - <one>Wo</one> innerhalb der Zelle replizieren die <two>Rhabdoviren</two>? <two>Rhabdoviren</two> <one>replizieren innerhalb des Cytoplasmas einer Zelle</one>. []
191
+ - 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>
192
+ - <one>ITAFs</one> are associated with IRES. The abbreviation <one>ITAFs</one> stands for ... ? <one>IRES trans-acting factors</one>.
193
+ - 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>
194
+ - The sequence <one>Gly-Asp-Asp</one> in a virus may indicate ...? <one>RNA-dependent RNA-polymerase activity</one>. []
195
+ - Die <one>cre-Rekombinase</one> aus <two>P1</two> bindet an? <one>loxP Sequenzen</one>. []
196
+ - <one>Prionen</one> sind vermutlich Erreger der ... ? <one>Spongiformen Encephalopathien</one>.
197
+ - <one>Which virus</one> can provoke a <two>Burkitts lymphoma</two>? The <one>Epstein-Barr virus</one>.
198
+ - Compare the size of <one>polyoma</one> and <one>papillomavirus virions</one> (their diameter). A: (1) <one>Papillomavirus</one>: <two>50-55 nm</two> (2) <one>Polyomavirus</one>: <two>40-45 nm</two>
199
+ - 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
200
+ - Nenne zwei virale Genomvertreter die <two>ambisense</two> sind. A: (1) <one>Geminiviruses</one> (<two>ssDNA</two>) (2) <one>Arenaviruses</one> (<two>ssRNA</two>)
201
+ - 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>
202
+ - <two>Durchmesser</two> des <one>Influenza-Virions</one>, in etwa? <one>100 nm</one>. []
203
+ - Name one famous theory of <one>capsid design</one>. A: The <one>Caspar-Klug theory</one>. URL: https://en.wikipedia.org/wiki/Donald_Caspar []
204
+ - 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>
205
+ - Nenne ein Beispiel für einen Virus der <one>überlappende Leserahmen</one> verwendet. A: <one>Hepatitis-B-Virus</one>.
206
+ - The genome of the <one>Influenza A virus</one> encodes for <two>n genes</two>? <one>11</one>. []
207
+ - Give an example in <one>E. coli</one> of a two-component abortive infection system. A: The <one>Rex system</one>.
208
+ - Es existieren auch <one>komplexe Retroviren</one>. Ein Vertreter hiervon ist <two>HIV</two>. Nenne einen weiteren Vertreter der "komplexen Retroviren". A: <one>HTLV</one>: <two>human T-cell lymphotropic virus</two>
209
+ - 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.
210
+ - <two>Wann</two> konnte <one>Iwanowski</one> indirekt TMV nachweisen? <one>1892</one>. []
211
+ - 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>.
212
+ - <two>Wann</two> gab es <one>in Deutschland das erste Impfgesetz</one>? <one>1874</one>.
213
+ - Was für ein Genom haben die <one>Flaviviridae</one>? <one>(+)ssRNA</one>, <two>linear</two>. []
214
+ - <one>Wann</one> wurde das <two>Poliovirus</two> erstmals (künstlich) synthetisiert? <one>2002</one>. []
215
+ - Ausser möglicher Krankheitssymptome bei der aktiven Immunisierung, nenne einen weiteren möglichen Nachteil. A: Die aktive Immunisierung dauert einige Zeit, und muss daher <one>zeitkonform</one> durchgeführt werden.
216
+ - 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>.
217
+ - Zu welcher Familie gehört das <one>Hepatitis B virus</one>? Zur <one>Hepadnavirus-Familie</one>.
218
+ - 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>.
219
+ - <two>Adults</two> infected with <one>Hepatitis A</one> usually develop ... ? <one>Jaundice</one>. URL: https://en.wikipedia.org/wiki/Jaundice
220
+ - Warum sind <one>WT Retroviren</one> gefährlich? Sie <one>können in Gene inserieren</one>.
221
+ - We may encounter <one>hydrophobic sequences</one> in a given <two>virus</two>. This may indicate? <one>Membrane association</one>. []
222
+ - Nenne ein Beispiel für einen <one>nicht-umhüllten RNA Virus</one>. A: Der <one>Poliovirus</one>.
223
+ - The <one>gp120 Protein of HIV</one> has <two>three faces</two>. Name them. A: (1) <one>silent face</one> (2) neutralizing face (3) non-neutralizing face
224
+ - 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.
225
+ - <one>HIV</one> contains the <two>Vpr</two> gene/gene product. What does Vpr stand for? <one>Vpr</one> stands for <two>Viral Protein R</two>.
226
+ - Gibt es einen <one>Impfstoff</one> gegen das Epstein-Barr Virus? Nein. []
227
+ - Can <one>AAV</one> infect <two>non-dividing cells</two>? Yes. <one>It can infect neurons in the brain</one>, for instance.
228
+ - Dauer des Vermehrungszyklus des <one>Poliovirus</one> (von-bis)? <one>5-10 Stunden</one>. []
229
+ - <one>When</one> are both viral and bacterial transcripts made (+ specific example)? In a <one>nonlytic-bacteriophage</one> such as <two>M13</two>. []
230
+ - What was <one>the fatality rate of Variolation</one>, in percent? <one>1-2%</one>.
231
+ - 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.
232
+ - <one>Wieviele Pflanzenviren</one> sind bekannt? Etwa <one>600 Arten</one>.
233
+ - <one>In welchem Jahr</one> wurde das <two>Tabakmosaikvirus</two> zuerst entdeckt? <one>1892</one>. URL: https://de.wikipedia.org/wiki/Tabakmosaikvirus#Geschichte []
234
+ - The <one>poliovirus</one> uses which cellular receptor? <one>CD155</one>. []
235
+ - 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>. []
236
+ - 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>. []
237
+ - 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>. []
238
+ - 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>.
239
+ - Wie behandeln wir <one>Herpes-simplex</one>? Mittels <one>Aciclovir</one>. URL: https://de.wikipedia.org/wiki/Aciclovir []
240
+ - Was ist Influenza-C <one>HEF</one>? Das ist ein <one>Hämagglutinin-Esterase Fusionsprotein</one>.
241
+ - 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>. []
242
+ - Was demonstrierte <one>Andre Lwoff</one> in Paris? Die Existenz eines viralen Genoms in einem Prophagen.
243
+ - Was genau heisst <one>segmentiertes Genom</one>? Die viralen Gene sind <one>auf verschiedene RNA-Segmente verteilt</one>.
244
+ - What is <one>scrapie</one>? A disease of sheep and goats that has been known since a long time.
245
+ - 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 []
246
+ - The genome of the <one>Hepatitis C virus</one> is ... ? A <one>positive ssRNA genome</one> (<one>+ssRNA Genome</one>). []
247
+ - The <one>rubella virus</one> belongs to which family? The <one>rubellavirus</one> belongs to the <two>Togaviridae</two>. URL: https://en.wikipedia.org/wiki/Rubella []
248
+ - <one>HIV-2</one> ist womit verwandt? Mit dem <one>SIV</one> von <two>Mangabey-Affen</two>.
249
+ - <one>AIDS</one> hat man, per Definition, bei ... ? Weniger als <one>200 T-Helferzellen pro Mikroliter Blut</one>. []
250
+ - The <one>Picornavirus</one> belong to what Baltimore class? IV. []
251
+ - Which protein of the <one>Sendai Virus</one> is responsible for the fusion process? The <one>F protein</one>. []
252
+ - 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 []
253
+ - Nenne einen <one>Virus</one>, der nur beim Menschen gefunden werden kann. A: Das <one>Masernvirus</one>.
254
+ - Name <one>two viruses</one> that <two>can cause hemagglutination</two>. A: (1) the <one>Influenza Virus</one> (2) the <one>measles virus</one> []
255
+ - <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
256
+ - Nenne 3 verschiedene Ursprünge einer Mutation. A: (1) <one>spontan</one> (2) chemisch induziert (3) physikalisch induziert
257
+ - The <one>mammalian hepadnavirus</one> uses which sequence for its <two>polyadenylation signal</two>? <one>TATAAA</one> (which is also a TATA box!).
258
+ - The <one>Hong Kong outbreak of 1997</one>, Influenza A, had which combination of H + N? <one>H5N1</one>. URL: https://en.wikipedia.org/wiki/Global_spread_of_H5N1 []
259
+ - <two>Wo</two> repliziert ein <one>Viroid</one>? Im <one>Zellkern der Wirtszelle</one>. []
260
+ - Wann wurde das <one>Tabakmosakivirus</one> erstmals <two>kristallisiert</two>? Im Jahre <one>1935</one>. URL: https://de.wikipedia.org/wiki/Tabakmosaikvirus []
261
+ - <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> []
262
+ - What means the term <one>RNA Quasispecies</one>? <one>RNA from inaccurate reproduction</one> is NOT an ensemble of identical molecules!
263
+ - What does the abbreviation <one>PP2A</one> stand for? <one>Protein phosphatase 2A</one>. []
264
+ - <one>SV40</one> hat wieviele Gene? <one>6</one>. []
265
+ - What are <one>the host cells of papillomaviruses</one>? <one>Keratinocytes</one>.
266
+ - The <one>HPV E7 protein</one> can interact with which cellular protein? <one>pRB</one>. It will promote its destruction. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC114225/ []
267
+ - Nenne einen Virus, der <one>ACG</one> als Initiationscodon verwendet. A: Das <one>Sendai-Virus</one>. []
268
+ - Nenne die 3 <one>bösartigen HPV-Viren</one>. A: <one>16</one>, <one>18</one>, <one>32</one>. []
269
+ - Nenne drei verschiedene Möglichkeiten der <one>viralen Veränderung</one>. A: (1) <one>Mutationen</one> (2) <one>Rekombination</one> (3) <one>Reassortment</one> []
270
+ - <one>HPV16</one> and HPV18: name two cancers associated with these two serotypes. A: (1) <one>cervical carcinoma</one> (2) <one>anal carcinoma</one> []
271
+ - Warum verwenden wir <one>Aspirin</one> bei Virusinfektionen? <one>Aspirin</one> wirkt als ein <two>entzündungshemmendes Schmerzmittel</two>. []
272
+ - The <one>Sendai virus</one> uses which initiation codon? <one>ACG</one>. []
273
+ - 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.
274
+ - Wieviel Fremd-DNA kann man in einen Retrovirus reinpacken? <one>8kb</one> an Fremd-DNA. []
275
+ - <one>How many people worldwide</one> are infected with <two>Hepatitis B</two>? About <one>two billion people</one>. []
276
+ - 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 []
277
+ - Give two examples for which viral nucleic acid does not code for. A: (1) <one>mitochondria</one> (2) <one>ribosomes</one> []
278
+ - Unterscheidung der <one>ssRNA-Viren</one>? <one>+ Strang</one> und <one>- Strang</one>. []
279
+ - Was ist das <one>Post-Polio Syndrom</one>? Symptome die erst <one>15-40 Jahre</one> nach der ursprünglichen Polioerkrankung auftreten. []
280
+ - 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 []
281
+ - 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> []
282
+ - The <one>highest mutation rate</one> can be found in which genetic element? In <one>Viroids</one>. []
283
+ - Does the <one>bird flu</one> infect humans? Usually not. []
284
+ - <one>Oseltamivir</one> kann gegen welchen Virus eingesetzt werden? Gegen den <one>Influenza virus</one>. []
285
+ - Give 3 examples for <one>cellular receptors</one> that are structurally related to immunoglobulines. A: (1) CD4 (2) <one>CD155</one> (3) <one>ICAM-1</one>
286
+ - What does <one>virus interference</one> mean? This is a phenomenon in which infection with one virus interferes with subsequent infection by another virus.
287
+ - 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.
288
+ - 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>
289
+ - 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>. []
290
+ - Nenne ein Medikament das gegen das Uncoating eines Virus vorgeht. A: <one>Amantadin</one>. URL: https://de.wikipedia.org/wiki/Amantadin []
291
+ - <one>Wo</one> im menschlichen Körper vermehren sich <two>Polioviren</two>? Im lymphatischen Gewebe des Darms.
292
+ - An <one>icosahedron</one> contains <two>how many pentamers</two>? <one>60</one>. []
293
+ - 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>.
294
+ - The genome size of the <one>African swine fever virus</one> is about ... ? About <one>170-190 kbp</one>. []
295
+ - Which disease can the <one>feline parvovirus</one> cause in cats? <one>Panleukopenia</one>. []
296
+ - Nenne einen Virus der <one>transovarial transmission</one> verwendet. A: Der <one>yellow fever virus</one>, in Mosquitos.
297
+ - <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 []
298
+ - 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>.
299
+ - 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)
300
+ - In HIV: does the gp120 first bind to CCR5 or to CD4? gp120 first binds to CD4. []
301
+ - What does a virus <one>lose</one> when it is effectively neutralized by an antibody? Its <one>infectivity</one>.
302
+ - What does <one>Rubella</one> mean? It comes from latin and means <one>little red</one>. []
303
+ - Was sind sogenannte <one>Clara-Zellen</one>? <one>Clara-Zellen</one> sind sekretorisch-aktive Epithelzellen des Lungenkapillarnetzwerkes.
304
+ - Besitzen <one>Flaviviren</one> eine IRES Struktur? Nein. []
305
+ - Die <one>Oberfläche eines Stecknadelkopfes</one> bietet n Rhinoviren Platz? <one>Fünfhundert Millionen</one> (<one>500 Millionen</one>). []
306
+ - Wer genau besitzt <one>v-onc Gene</one>? <one>Akut transformierende Retroviren</one>. []
307
+ - One of the most compelling <one>reasons why mankind is interested in viruses</one> is because ... ? Because <one>viruses cause diseases</one>. []
308
+ - Name one <one>inhibitor of Neuraminidase</one>. A: <one>Tamiflu</one>. URL: https://en.wikipedia.org/wiki/Oseltamivir []
309
+ - The <one>NDV virus</one> is ... ? The <one>Newcastle Disease Virus</one>. []
310
+ - The <one>Filoviridae</one> virus particle binds to a cell surface receptor. The uptake then happens via ... ? <one>Macropinocytosis</one>. URL: https://en.wiktionary.org/wiki/macropinocytosis []
311
+ - 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>.
312
+ - <one>Leatherjackets</one> (invertebrates) may be infected with <two>invertebrata ... virus</two>? <one>Iridescent virus</one>. URL: http://www.trevorwilliams.info/Iridovirus.htm []
313
+ - Name <one>a virus that is transported via microtubules</one>. A: The <one>Vaccinia virion</one>.
314
+ - 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>. []
315
+ - Wer oder was überträgt am häufigsten <one>Gelbfieber</one> - also das <one>Gelbfiebervirus</one>? <one>Mosquitos</one>. []
316
+ - The genome of <one>Rubella-virus</one> is? A <one>ssRNA of positive polarity</one> (enclosed by an <two>icosahedral capsid</two>).
317
+ - Name <two>a virus</two> that has a <one>Cyclophin</one>. A: The <one>HI-Virus</one>. []
318
+ - Nenne drei Beispiele für Sekundärstrukturen viraler RNA. A: (1) <one>pseudoknot</one> (2) <one>bulge</one> (3) <one>loop</one> []
319
+ - 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>). []
320
+ - Name the three known subtypes of <one>human influenza viruses</one>. A: (1) <one>H1N1</one> (2) <one>H1N2</one> (3) <one>H3N2</one>
321
+ - 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
322
+ - 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> []
323
+ - Nenne zwei Viren die eine <one>Polymerase im Partikel</one> 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
324
+ - 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 "late" part of the genome.
325
+ - 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.
326
+ - 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>.
327
+ - <one>Rimantadine</one> ist ein antivirales Medikament. Gegen welchen Virus wird es eingesetzt? <one>Influenza A</one>. URL: https://de.wikipedia.org/wiki/Rimantadin []
328
+ - Für die Entstehung von Krebs bei <one>HTLV-Infektionen</one> ist welches HTLV Protein wichtig? Das HTLV-1 Protein <one>Tax</one>.
329
+ - 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>.
330
+ - <one>Auf welche Art</one> kann eine <two>aktive Immunisierung</two> durchgeführt werden? (1) Lebendimpfstoff (2) <one>Totimpfstoff</one> []
331
+ - Die <one>Thogotoviren</one> besitzen n Genomsegmente? <one>6</one>. []
332
+ - <one>Wann</one> gelang die Kristallisation von TMV? Bereits im Jahre <one>1935</one>. []
333
+ - What means <one>viral shunt</one>? This is a hypothesis in where viruses living in the ocean killing their microbial hosts redirect carbon and nutrients away from larger organisms and back toward other microorganisms.
334
+ - Name an <one>awful virus</one> that attacks rabbits. A: <one>Myxomatosis</one>. URL: https://en.wikipedia.org/wiki/Myxomatosis []
335
+ - Can <one>Viruses</one> code for <three>membrane channels</three>? Yes - the so called <one>viroporins</one>. []
336
+ - <two>Wo</two> in einer Zelle replizieren die <one>Pockenviren</one>? Diese <two>DNA-Viren</two> replizieren <one>im Cytoplasma</one>. []
337
+ - Why are <one>nucleoside analog drugs</one> given in non-phosphorylated form? So that we can <one>get these drugs across the membrane</one>. []
338
+ - Der <one>Reovirus</one> besitzt n Gene? <one>22</one>. []
339
+ - The <one>Hepatitis C virus</one> belongs to which Family? The <two>Hepatitis C virus</two> belongs to the <one>Flaviviridae</one>. []
340
+ - Name a <one>drug</one> that could be used against the influenza virus. A: <one>Tamiflu</one> - aka <two>seltamivir</two>.
341
+ - Can <two>humans</two> become infected by the <one>african swine fever</one> causing virus? No. []
342
+ - 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>. []
343
+ - 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
344
+ - <one>Cidofovir</one> wird wo eingesetzt? Zur Behandlung von <two>Cytomegalie-Retinitis</two>, <one>bei AIDS-Patienten</one>.
345
+ - Can <one>viruses</one> skip the <three>extracellular state</three>? Yes, animal viruses such as the <one>polio virus</one> can skip the extraceullular stage when moving from cell to cell within the same organism.
346
+ - The <two>satellite tobacco mosaic virus capsid</two> is about <one>n nm in diameter</one>? <one>17 nm</one> in diameter. []
347
+ - The <one>Russian Flu</one> occurred in which year, roughly? <one>1889</one>. []
348
+ - What are <one>metastabile particles</one>? These are particles that <one>have not yet reached their lowest energy level</one>. []
349
+ - 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/
350
+ - The <one>Influenza-virus</one> can <three>undergo antigen drift</three> - but in which proteins? (1) <one>hemagglutinin</one> (2) <one>neuraminidase</one> []
351
+ - 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>). []
352
+ - <one>Wieviele Pflanzenviren</one> wurden beschrieben? Etwa <one>1000</one>. []
353
+ - Aside from <one>gag</one>, <one>pol</one> and env genes, HIV may also have which other genes? 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> []
354
+ - The receptor for the <one>Ebola Virus</one> is ...? <one>TIM-1</one>.
355
+ - 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. []
356
+ - 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
357
+ - 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>
358
+ - Der <one>Influenza - GAU</one> wurde durch welchen Subtyp verursacht? <one>H5N1</one>. []
359
+ - What does the term <one>virulence</one> mean, in regards to viruses? This describes <one>the capacity of a virus to cause disease</one>. []
360
+ - A subset of <one>coronaviruses</one>, such as the <three>betacoronavirus subgroup A</three>, have a shorter spike-like surface protein called HE, which is an abbreviation for ... ? <one>Hemagglutinin esterase</one>. []
361
+ - What may be the relevance of <one>pseudoknots</one> found in some viruses? (1) <one>enzyme activity</one> (2) <one>ribosomal frameshifting</one>
362
+ - <one>Worldwide</one>, how many people are living with HIV? About <one>36.9 million</one> (at the least in the year 2016). []
363
+ - What are the two most popular modes of action for <one>bacteriocin</one>? (1) damaging the cell membrane (2) <one>destroying nucleic acids</one>
364
+ - 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 []
365
+ - 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.
366
+ - Minimaler Durchmesser der <one>Circoviren</one>? <one>16 nm</one>. []
367
+ - The <one>human papillomaviruses</one> use how many genome strands for transcription? Only <one>one</one>. []
368
+ - <one>Where</one> do <two>HSV-1</two> and <two>HSV-2</two> hide in the body, from the immune system? They hide in the <one>cell bodies of neurons</one>.
369
+ - Die <one>rII Region</one> des T4-Phagen umfasst wieviele bp? <one>4000 bp</one>.
370
+ - The <one>Epstein-Barr virus</one> can lead to an infectious mononucleosis. This is also called ... how? <one>Kissing disease</one>. []
371
+ - 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 []
372
+ - Most <one>Merkel cell carcinomas</one> are caused by ... ? The <one>Merkel cell polyomavirus</one>.
373
+ - <one>MERS</one> happened in which year? <one>2012</one>. URL: https://de.wikipedia.org/wiki/MERS-CoV []
374
+ - Andere Bezeichnung für <one>Reassortment</one> bei Viren? <one>Virus Sex</one>. []
375
+ - Does <one>poliovirus</one> require a nucleus? Not really - it <one>can replicate in enucleated cells</one>. []
376
+ - Wieviele Aminosäuren besitzt <one>Vpg</one>? A: <one>22</one>. []
377
+ - 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. []
378
+ - Which viruses, in general, employ <one>extrusion through the cell surface</one>? <one>Filamentous phages</one>. []
379
+ - <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>. []
380
+ - Merkslogan der 9 Genera bei den <one>Picornaviridae</one>? Entero, Rhino, Cardio, Kobu, Tescho, Aphtho, Parecho, Hepato, Erbo.
381
+ - In der Virologie: was bedeutet es wenn festgehalten wird, das das 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.
382
+ - 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). []
383
+ - In the Baltimore scheme, which virus classes use DNA? Class I, II and VII. []
384
+ - Wie kann man <one>Tierviren quantifizieren</one>? Durch Bestimmen der <one>lethal dose</one>. []
385
+ - 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.
386
+ - <one>Wieviele Eckpunkte</one> hat ein <two>Adenovirus-Capsid</two>? <one>12</one>. []
387
+ - <one>Influenza</one> besitzt das <two>NEP</two>-Protein NS2. Was heisst <two>NEP</two>? <one>Nuclear Export Protein</one>. []
388
+ - 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>. []
389
+ - Nenne ausser den <one>Influenza-A-Viren</one> noch eine weitere Virusgruppe die <two>Reassortanten</two> bildet. A: Die <one>Reoviren</one>. []
390
+ - Wann wurde das <one>Adenovirus</one> erstmals isoliert? Im Jahre <one>1953</one>. []
391
+ - If there is a <one>species barrier</one> for viruses, can we conclude something from this? That a human viral disease will rarely <one>originate from a zoonotic origin</one>.
392
+ - 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>. []
393
+ - First step of <one>HIV-1 entry</one>? Binding of the <one>gp120 surface molecule</one> to its receptor, the CD4 molecule. []
394
+ - <one>Vitravene</one> is an antisense oligonucleotide for the treatment of which <two>viral infection</two>? <one>Cytomegalovirus infection</one>.
395
+ - The virions of <one>Adenoviruses</one> contain <three>spikes</three>. How long can these spikes be? Up to about <one>80 nm</one>. []
396
+ - What are <one>fusion proteins</one>, in regards to viruses? These are <one>envelope glycoproteins</one> that have an external hydrophobic sequence that can be inserted into the target membrane.
397
+ - Is the <one>adeno-associated virus</one> an <two>Adenovirus</two>? No - it is a <one>parvovirus</one>. []
398
+ - <one>HIV</one> hat eine Lipidschicht mit zwei Glykoproteinen. Welches davon durchspannt die Membran? <one>gp41</one> <two>durchspannt die Membran</two>. []
399
+ - <one>Amantadin</one> wurde früher gegen welchen Virus eingesetzt? Gegen <one>Influenza-A Viren</one>. Es verhinderte das <two>Uncoating</two>. []
400
+ - Nenne einen Vertreter der <one>class I Baltimore Viren</one>. A: <one>Feline parvovirus</one>. []
401
+ - Das <one>SV40 Genom</one> kodiert für das <two>large-T Antigen</two>. Wie beeinflusst dieses Protein die Apoptose? Es <one>inhibiert die Apoptose</one>. []
402
+ - Name <one>two different viruses</one> that have the name <two>thread</two>. A: (1) <one>Filovirus</one> (2) <one>Closterovirus</one>
403
+ - 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>
404
+ - <one>Iridoviruses</one> can cause which disease? <one>African swine fever</one>.
405
+ - The <one>poliovirus</one> requires n days to begin before it infects the central nervous system? About <one>3 full days</one>. []
406
+ - <one>Pandoravirus</one> holds what record? The Pandoravirus has <one>the largest genome of any viral genus</one>. []
407
+ - Was heisst das <one>MNPV</one> in <two>Autographa californica MNPV</two>? <one>Multivirion Nuclear Polyhedrosis Virus</one>.
408
+ - Können Retroviren in das Virusgenom ihrer Wirtszelle integrieren? Ja. []
409
+ - Does the <one>African swine fever virus</one> virion have an outer envelope? Yes. []
410
+ - In <one>HIV</one> we can see a phase where there are, at best, only <two>minor symptoms</two>. How do we call this phase? This is the <one>asymptomatic phase</one>. []
411
+ - 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>. []
412
+ - <one>Coronaviruses</one> typically tend to cause diseases in <two>which two eukaryotic groups</two>? (1) <one>birds</one> (2) <one>mammals</one> []
413
+ - What does it mean to find a <one>pandemic virus</one>? That a virus occurs in many nations simultaneously world wide. []
414
+ - The <one>Newcastle Disease Virus</one> (NDF) has become famous in 2002 for killing which animals? Birds. It killed - or otherwise caused the deaths - of about 3.16 million birds in the UK. []
415
+ - Wer entwickelte den <one>Totimpfstoff</one>? Jonas <one>Salk</one>. URL: https://de.wikipedia.org/wiki/Polioimpfstoff#Inaktivierter_Polioimpfstoff_.28Salk.29 []
416
+ - <one>Genom-Typ</one> des MKS-Virus (Maul und Klauenseuche)? Das Maul-und-Klauenseuche Virus ist ein <two>ss(+)RNA Virus</two>. []
417
+ - A <one>delayed emergence of potato</one> may be caused by what virus? <one>Tobacco rattle virus</one>. URL: https://en.wikipedia.org/wiki/Tobacco_rattle_virus []
418
+ - Name the main surface protein of <one>Influenza</one>. A: <one>Hemagglutinin</one>. []
419
+ - 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).
420
+ - The <one>SV40 large T antigen</one> consists of how many subunits? <one>6</one>; it is a <two>hexamer protein</two> (<two>hexamer</two>). []
421
+ - Die meisten <one>Pflanzenviren</one> haben was für ein Genom? <one>ssRNA</one>. []
422
+ - Bei Viren: was heisst <one>VPg</one>? <one>Viral priming protein</one> beziehungsweise <two>Virus Protein, genome linked</two>. []
423
+ - <one>Influenza B</one> only undergoes genetic drift, not genetic shift. Why? Probably because Influenza B <one>lacks an animal reservoir</one>. []
424
+ - 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.
425
+ - <one>How many</one> major types of CRISPR systems exist? 3. []
426
+ - Der <one>2017</one> entdeckte Large Virus <two>Klosneuvirus</two> hat ein Genom, das wie groß ist? <one>1.57 Mb</one>.
427
+ - 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 []
428
+ - <two>Viruses</two> were actually discovered in the year <one>1892</one>, by which person? <one>Dimitri Ivanowski</one> (a Russian botanist). []
429
+ - 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>.) []
430
+ - The longest pandemic in humans is, most likely ... ? The <one>HIV pandemic</one>. []
431
+ - <one>Which protein</one> from the Influenza virus limits the Interferon-production? The <one>NS1-protein</one>.
432
+ - Das Genom von <one>SV40</one> umfasst, in etwa, wieviele Basenpaare? Etwa <one>5000bp</one>. []
433
+ - 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.
434
+ - What is <one>the most important clinical characteristic of a herpesvirus infection</one>? <one>Latency</one>. []
435
+ - The diameter of the <one>HPV capsid</one> is <two>n nm</two>? <one>55 nm</one>. []
436
+ - Andere Bezeichnung für die <one>Pocken</one>? <one>Variola</one>. []
437
+ - Nenne ein konkretes Beispiel für Viren mit <one>teilweise doppelsträngigem DNA-Genom</one>. A: Die <one>Hepadnaviren</one>.
438
+ - Die <one>Inkubationszeit</one> (von-bis) beim Maul-und-Klauenseuche Virus, beträgt <two>n Tage</two>? <one>2-3 Tage</one>. []
439
+ - Wohin wandern <one>Herpesviren</one> intrazellulär? Intraaxonal zu <one>sensorischen Ganglien</one>.
440
+ - Viruses that belong to <one>Baltimore class I</one> have what kind of genome? They have a <one>dsDNA genome</one>. []
441
+ - 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. []
442
+ - 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>.
443
+ - Where in/on a <one>picornavirus</one> can we find <two>VP4</two>? VP4 lies on the inside of the virus particle.
444
+ - 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.
445
+ - How can we <two>easily detect</two> the <one>mosaic disease of tobacco plants</one>? By the distinct <one>discoloration of the leaves</one>.
446
+ - Das <one>Vogelgrippe-Virus</one>, aka <two>Influenza H5N1</two>, gelang wie von Asien nach Europa? Über <one>Zugvögel</one>. []
447
+ - <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)
448
+ - <one>RNA viruses</one> in general deserve what reputation? RNA viruses deserve their reputation as <one>Natures swiftest evolvers</one>. []
449
+ - Das <one>Cytomegalie-Virus</one> gehört zu welcher Virusgruppe? Das Cytomegalie-Virus gehört zur Familie der <one>Herpesviridae</one>. []
450
+ - 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)
451
+ - Nenne einen Virus der die Blutgefäße zerstören kann. A: Das <one>Ebola-Virus</one>. []
452
+ - <one>TMV</one> hat n identische UE? <one>2130</one>. []
453
+ - Das <one>gp120-Protein</one> von HIV bindet an welchen Rezeptor? An den <one>CD4-Rezeptor</one>. []
454
+ - <two>Which two proteins</two> determine the <one>antigenic properties of Influenza A</one>? A: (1) <one>Hemagglutinin</one> (2) <one>Neuraminidase</one> []
455
+ - Der erste Wirkstoff gegen <one>Herpes</one> war ... ? <one>Aciclovir</one>. URL: https://en.wikipedia.org/wiki/Aciclovir []
456
+ - Was können wir über die Chromosomen von <one>small viruses</one> sagen? Deren Chromosomen sind <one>single-stranded</one>.
457
+ - Was heisst virale <one>RDRP</one>? <one>RNA-dependent RNA polymerase</one>. []
458
+ - The cellular molecule used by the <one>SV40 virus</one>, for attachment, is ... ? The <one>major histocompatibility complex class I molecule</one>.
459
+ - <one>1846</one> brach auf den Faroe Islands was aus? <one>Measles</one>, verursacht durch das <two>measles virus</two>. []
460
+ - The <one>sole members</one> of the <two>Baltimore class VI</two> are ... ? The <one>Retroviruses</one>. []
461
+ - Nenne eine Möglichkeit wie der <one>physiologische Level an Interferon</one> hochgehalten werden könnte. A: Durch <one>häufige Virusinfektionen</one>. []
462
+ - Name 4 ways how a <two>human papilloma virus</two> can be transmitted (via <one>physical contact</one>). A: (1) <one>sexual contact</one> (2) contact sport (3) children's games (3) during birth, from the infected mother to her child
463
+ - Nenne eine Virusgruppe die <one>IRES</one> verwendet, inklusive einem Vertreter hierzu. A: Das <one>Picorna-Virus</one> (zum Beispiel <two>Poliovirus</two> als ein Vertreter hierzu). []
464
+ - Nenne einen <one>viral kodierten Transkriptionsfaktor</one>. A: <one>HSV VP16</one>.
465
+ - Nenne 3 Vertreter der <one>Togaviruses</one>. A: (1) Rubella virus (2) Semliki Forest virus (3) <one>Sindbis Virus</one>
466
+ - Durchmesser eines <one>Parvovirus</one> (von-bis)? <one>18 - 28 nm</one>. URL: https://en.wikipedia.org/wiki/Parvovirus
467
+ - Beim <one>Piercing</one> und bei <one>Tätowierungen</one> kann <two>welches Virus</two> übertragen werden? Das <one>Hepatitis C-Virus</one>. []
468
+ - Wann gelang erstmals der erste Nachweis eines tierpathogenen Virus? <one>1898</one>. []
469
+ - 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. []
470
+ - <one>Wieviele Viruspartikel</one> des MKS-Virus (Maul Klauenseuche) benötigen wir um ein Tier zu infizieren? Weniger als 10. []
471
+ - Was meinen wir mit <one>pleomorphen Viruspartikeln</one>? Dies sind <one>Viruspartikel die sich hinsichtlich Größe und Form stark voneinander unterscheiden</one>. []
472
+ - Name <one>a virus family</one> that is similar, in name, to an old computer game. A: The <one>pacmanviruses</one>. URL: https://pubmed.ncbi.nlm.nih.gov/28446673/ []
473
+ - 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>. []
474
+ - 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>. []
475
+ - How many orders exist for the Viruses? <one>5</one>. []
476
+ - 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>
477
+ - <one>Influenza</one> repliziert wo? Im <one>Zellkern</one> einer eukaryoten Zelle. []
478
+ - Was bewirkt <one>Aciclovir</one>? Strangabbruch bei der Replikation des viralen Genoms.
479
+ - How can we define <one>giant viruses</one>? These viruses are <one>visible by light microscopy</one>.
480
+ - Trivialname für den <one>Norwalk virus</one>, auf englisch? <one>Winter vomiting virus</one>. URL: https://en.wikipedia.org/wiki/Norovirus []
481
+ - In <one>marine viral ecology</one>: what means <two>DOM</two>? <one>Dissolved organic matter</one>. []
482
+ - Das <one>Baltimore Scheme</one> beginnt mit welcher Virusgruppe? <one>dsDNA Viren</one>. []
483
+ - By what <one>transmission route</one> does the Influenza virus spread? By the <one>oral-fecal route</one>. []
484
+ - <one>Papillomaviren</one> wie HPV binden an <two>Heparansulfate</two>. Welches virale Protein ist hier für diese Viren wichtig? Das <one>L1-Protein</one>.
485
+ - Welcher Virus wurde 2012 in Deutschland bekannt da er über Lebensmittel übertragen wurde? Der <one>Norovirus</one>. Man vermutet das Noroviren relativ hitzestabil sind. []
486
+ - Welchen Typ von Genom haben <one>Potyviren</one>? Potyviren sind <one>Pflanzenviren</one> mit einem <two>ss(+)-RNA Genom</two>.
487
+ - Unterschied zwischen der Genom-Struktur von Retroviren und Ty1 Elementen? A: Ty1 fehlt die env Gruppe. Ansonsten sind die Strukturen sehr ähnlich. []
488
+ - <one>Amantadin</one> hat welches molekulare Ziel in Influenza? Das virale <one>M2-Protein von Influenza</one>. URL: https://de.wikipedia.org/wiki/Amantadin []
489
+ - What is <one>the ultimate virus-host co-evolution</one>? When the virus genome becomes <one>permanently integrated into the genome of its host</one>. []
490
+ - Was sind <one>SRS-Viren</one>? <one>Small, round-structured viruses</one>. URL: https://pubmed.ncbi.nlm.nih.gov/8133807/ []
491
+ - Wir haben einen <one>positiven Nachweis von Antikörpern bei einer Herde Rinder</one>. Was mag dies bedeuten (2 Möglichkeiten)? (1) Die Rinder wurden gegen einen Krankheitserreger geimpft (2) Es hat eine <one>Feldinfektion</one> stattgefunden []
492
+ - Is <one>SV40</one> a dangerous virus? Yes, for monkeys, as it can cause cancer. []
493
+ - Durchmesser eines <one>Papillom-Virus</one>? <one>55 nm</one>. []
494
+ - <one>Influenza-C-Viren</one> besitzen als rezeptorzerstörendes Enzym keine Neuraminidase sondern ... ? Eine <one>Esterase</one>. []
495
+ - What is the <one>virosphere</one>? The virosphere is all those places where viruses are found or in which they interact with their hosts.
496
+ - 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>
497
+ - 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 []
498
+ - 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>).
499
+ - 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.
500
+ - Give one specific example for <one>viral footprints</one>. A: <one>Inclusion Bodies</one>.
501
+ - What does <one>viral recombination</one> allow the virus? It <one>allows viable virus to be generated from two defective genomes</one>.
502
+ - The <one>Hepadna Family</one> has how many members? <one>5</one>. []
503
+ - Nenne eine Virusgruppe, die den Menschen infizieren kann und das Phänomen der <one>Latenz</one> zeigen kann. A: Die <one>Herpesviren</one>. []
504
+ - <one>Slow virus</one> Infektionen wirken sich vor allem wo im Körper aus? Im <one>zentralen Nervensystem</one>. []
505
+ - Name a <one>Satellite virus</one> that infects <three>ameba</three>. A: <one>Sputnik</one>. URL: https://en.wikipedia.org/wiki/Sputnik_virophage []
506
+ - Das <one>TMV-Genom</one> besitzt <two>n Nukleotide</two> (+/- 100 reicht als Antwort)? <one>6395</one>. URL: https://de.wikipedia.org/wiki/Tabakmosaikvirus []
507
+ - The order of the <one>Caudovirales viruses</one> is also known as ... ? The <one>tailed bacteriophages</one>. URL: https://en.wikipedia.org/wiki/Caudovirales []
508
+ - 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.
509
+ - 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>.
510
+ - Give an example for the unusual <one>dsRNA virus group</one> among the animal viruses. A: The <one>Reoviruses</one> (example: rotavirus).
511
+ - 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>
512
+ - Name two possible causes for <one>antigenic shift</one>. A: (1) <one>Recombination</one> (2) <one>Reassortment</one> []
513
+ - <one>SARS-CoV-2</one> is what kind of virus? <two>SARS-CoV2</two> is a <one>coronavirus</one>. []
514
+ - Was heisst <one>hämatogene Verbreitung</one>? Eine <one>Streuung über den Blutweg</one>. []
515
+ - Nenne zwei Krankheiten, die durch das <one>FSME-Virus</one> verursacht werden. A: (1) <one>Meningitis</one> (2) <one>Enzephalitis</one> []
516
+ - Name one important difference between a <one>bacterial toxin</one> and a <one>virus</one>. A: A <one>virus can reproduce</one>. []
517
+ - 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 []
518
+ - Is the <one>Poliovirus</one> enveloped? No; the Poliovirus is a <one>non-enveloped RNA virus</one>. []
519
+ - <one>Herpesvirus</one> can not only <two>cause liver tumors</two> but also ... ? The <one>Kaposi's sarcoma</one>.
520
+ - 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 []
521
+ - Wieviele verschiedene <one>humane Papillomavirustypen</one> (HPV) sind heute in etwa bekannt? Weit <one>über 100</one>.
522
+ - Nenne einen Virus der <one>tRNAs</one> im Virion besitzt. A: Die <one>Virionen der Retroviren</one>.
523
+ - Do <one>viruses</one> exist that code for <two>tRNA</two>? Yes, <one>T4</one> and <one>phycodnaviruses</one> do.
524
+ - Does HPV integrate into the genome? Yes. []
525
+ - Durchmesser des <one>Phi X174</one>? <one>27 nm</one>.
526
+ - Nenne einen Vertreter der <one>Alphaviren</one>. A: Das <one>Sindbis-Virus</one>. URL: https://de.wikipedia.org/wiki/Sindbis-Virus []
527
+ - The <one>HSV1 genome</one> has n genes? The <one>HSV1 genome</one> contains <two>70 genes</two>.
528
+ - 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 []
529
+ - <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 []
530
+ - <one>Plant viruses</one> have usually which form/morphology? Plant viruses are typically <one>of helical symmetry</one>. []
531
+ - <one>Human rhinoviruses</one> have how many groups? <one>3</one> (<two>A</two>/<two>B</two>/<two>C</two>). []
532
+ - Nenne einen Virus der <one>ICAM-1</one> verwendet. A: Das <one>Rhinovirus</one>.
533
+ - What do <one>Viroids</one> lack? <two>Viroids</two> lack a <one>protein coat</one>. URL: https://en.wikipedia.org/wiki/Viroid []
534
+ - The <one>first internal ribosome entry site to be discovered</one> was <two>found in which virus group</two>? In <one>poliovirus</one>. []
535
+ - 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).
536
+ - <one>Who</one> <three>discovered viruses</three>? <one>Dmitry Ivanovsky</one> in 1892. Martinus Beijerinck then gave them the name <two>viruses</two>, though. []
537
+ - Nenne einen Virus, ausgenommen Influenza, dessen <one>Genom segmentiert vorliegt</one>. A: <one>Reovirus</one>. []
538
+ - Kann man das Pocken-Virus mit dem Lichtmikroskop sehen? Ja. []
539
+ - Bekanntester Vertreter der <one>Flaviviren</one>? Das <one>Gelbfiebervirus</one>. []
540
+ - Nenne <one>ein zelluläres Enzym</one>, welches durch <two>Ribavirin</two> gehemmt wird. A: Die zelluläre <one>Guanylyltransferase</one>.
541
+ - Nenne einen Vorteil eines <one>Peptidimpfstoffes</one>. A: Ein Peptidimpfstoff ist frei von Nucleinsäuren.
542
+ - Das <one>SARS-CoV-2 Genom</one> ist wie groß, in n kbp? <one>29 kbp</one>. []
543
+ - Gehören die <one>Interferone</one> zu den <two>Cytokinen</two>? Ja. []
544
+ - Der erste potente Wirkstoff gegen <one>Herpes-Viren</one> war ...? <one>Aciclovir</one>. URL: https://de.wikipedia.org/wiki/Aciclovir []
545
+ - In Virology: what is a <one>minichromosome</one>? SV40 DNA with bound nucleosomes. []
546
+ - Nenne eine virale Krankheit, die über einen <one>Arthropoden-Vektor</one> übertragen wird. A: <one>Gelbfieber</one>. URL: https://de.wikipedia.org/wiki/Gelbfieber []
547
+ - Benötigt das <one>SV40 large-T Antigen</one> ATP? Ja. Dieses Protein besitzt eine <one>ATP-abhängige Helicase</one>-Aktivität. []
548
+ - Was sind die meisten <one>mystery viruses</one>? Viren die <one>Respirationsprobleme verursachen</one>.
549
+ - 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>
550
+ - Die <one>HIV-Protease</one> ist eine ...? <one>Aspartatprotease</one>. URL: https://de.wikipedia.org/wiki/HIV-Protease []
551
+ - During which season does <one>Influenza-A</one> and <one>Influenza-B</one> cause disease? During the <one>winter season</one> only. []
552
+ - The <one>human T-cell lymphotropic virus type I</one> belongs to which family? It belongs to the <one>retrovirus family</one>.
553
+ - Name <one>a virus that clusters in a rosette</one>. A: <one>SSV</one> (<two>Sulfolobus spindle-shaped virus</two>).
554
+ - Nenne ein zelluläres Protein das von <one>Papillomaviren</one> im Capsid mitverpackt werden kann. A: <one>Zelluläre Histonproteine</one>. []
555
+ - 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>. []
556
+ - Which virus causes <one>shingles</one>? The <one>varicella-zoster virus</one>. URL: https://en.wikipedia.org/wiki/Varicella_zoster_virus []
557
+ - 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>.
558
+ - What is <one>viraemia</one>? Viraemia refers to <one>the presence of viruses in the blood</one>. []
559
+ - Ist der "Poliovirus" umhüllt? Nein. []
560
+ - What is a <one>peplomer</one>? A glycoprotein spike on a viral capsid or viral envelope. URL: https://en.wikipedia.org/wiki/Peplomer
561
+ - Do viruses arise from pre-existing viruses directly? No, never. A <one>cell</one> is required for their propagation. []
562
+ - Welche zwei Gruppen an Substanzen können wir unterscheiden, die <one>die Genomvermehrung der Viren hemmen</one>? (1) Nucleosidanaloga (2) nicht nucleosidische Hemmstoffe
563
+ - Why the name <one>adeno-associated virus</one>? Because this virus <one>depends on a helper virus</one> (i.e. adenovirus) for its replication. []
564
+ - Name <one>the three types of capsid symmetry</one>. A: (1) <one>helical</one> (2) <one>icosahedral</one> (3) <one>complex</one> []
565
+ - What is the job of the <one>HIV protease</one>? It cleaves an HIV precursor protein, necessary in <one>virus maturation</one>.
566
+ - 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 []
567
+ - <one>HIV</one> can bind to CD4 because of ... ? <one>gp120</one>. []
568
+ - Für einen <one>antigen shift</one>, in <two>Influenza</two>, muss welches Ereignis eintreten oder geschehen? Eine <one>Doppelinfektion einer Zelle</one>. []
569
+ - Welcher Bereich im <one>Adenovirus-Genom</one> ist für die Virusreplikation verantwortlich? Die <one>E1 Region</one>. []
570
+ - Welche Viren sind, in etwa, <one>stäbchenförmig</one>? Die <one>Filoviridae</one>. URL: https://en.wikipedia.org/wiki/Filoviridae []
571
+ - <one>Polioviren</one> degradieren welchen Initiationsfaktor? <one>eIF4G</one>. []
572
+ - <one>Welche Krankheit</one> wird durch das <two>Epstein-Barr-Virus</two> verursacht? Das <one>Pfeiffersche Drüsenfieber</one>.
573
+ - Das <one>E1A-Protein</one> der Adenoviren bindet an welches Wirtsprotein? An das <one>Rb-Protein</one>.
574
+ - The <one>Rhinovirus</one> belongs to <three>which viral family</three>? The <two>Rhinovirus</two> belong to the <one>Picornaviridae family</one>. []
575
+ - Family of the <one>Human papillomaviruses</one> (<one>HPVs</one>)? The <one>Papovaviridae family</one>.
576
+ - <one>Orthomyxoviren</one>, wie zum Beispiel die <two>Influenzaviren</two>, haben was für eine Orientierung ihres Genoms? Deren Genom ist in <one>Negativstrangorientierung</one> vorliegend. []
577
+ - 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.
578
+ - Das <one>Kaposi-Sarkom Virus</one> ist was für ein Typ? <one>Herpesvirus Typ 8</one>.
579
+ - Lateinisch für das <one>Rötelnvirus</one>? <one>Rubella</one>. []
580
+ - How many documented species of viruses have been described, in 2016? About <one>3000</one>.
581
+ - The <one>main host cells</one> for the Epstein-Barr-virus (in Humans) are ... ? <one>B-cells</one>.
582
+ - Die <one>Norovirus-Virionen</one> sind wie groß (<two>von, bis</two>)? ca. <one>25nm-35nm</one>.
583
+ - Give one example for a chemical <one>RNA mutagen</one>. A: <one>Ribavirin</one>. URL: https://en.wikipedia.org/wiki/Ribavirin []
584
+ - <one>Antiviral wirkende Interferonpärparate</one> wirken auch ... ? <one>Tumorhemmend</one>. []
585
+ - Das Immunsystem bekämpft eine <one>Hepatitis B Virus Infektion</one> vor allem über ... ? <one>Cytotoxische T-Zellen</one>.
586
+ - Erweiterungen des <one>Kochschen Postulats</one>? Das <one>Evans Postulat</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2595276/ []
587
+ - Kann <one>HIV-1</one> beim Stillen von der Mutter auf das Kind übertragen werden? Ja. []
588
+ - <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/
589
+ - Das <one>T antigen</one> findet sich wo? Im <one>Monkey Virus SV 40</one>. []
590
+ - Woraus besteht das <one>Nucleocapsid</one>? <one>Capsid</one> + <one>virales Genom</one> (== <two>viral head</two>). []
591
+ - What means <one>species specificity</one> in Virology? Different species of animals show different susceptibility to various viral infections.
592
+ - Das <one>Nepovirus</one> wird wodurch übertragen? A: Durch <one>Nematoden</one>. (Mnemonic: <two>Ne</two> ... <two>Nematoden</two>) []
593
+ - 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>.
594
+ - 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>. []
595
+ - Für Viren: was sind oft <one>late transcripts</one>? Dies sind häufig <one>Capsid-Proteine</one>.
596
+ - What is <one>viral uncoating</one>? The complete or partial removal of the capsid in order to release the viral genome.
597
+ - 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.
598
+ - <one>HIV Tat</one> stands for? <one>Trans-Activator of Transcription</one>.
599
+ - Bei <one>Gelbfieber</one> entwickeln die betroffenen Personen nicht nur <two>Gelbsucht</two>, sondern haben oft noch welch anderes Problem? <one>Blutungsneigungen</one>.
600
+ - Wann war <one>ein Vakzin</one> für das <two>Yellow Fever Virus</two> erhältlich? <one>1935</one>. []
601
+ - What is the <one>RNA-Bullet</one>? That is the <one>Rhabdovirus</one> (like <two>Rabies virus</two>). [] []
602
+ - Which <one>novel virus</one> caused severe respiratory disease in Saudi-Arabia in 2012/2013? The <one>MERS-Virus</one>. []
603
+ - The <one>Bluetongue virus</one> tends to infect which animal group? <one>Sheep</one>. []
604
+ - <one>HIV</one> zerstört was? <one>T-Helferzellen</one>. []
605
+ - <one>When</one> was <two>AIDS</two> first revealed? In the year <one>1981</one>. URL: https://de.wikipedia.org/wiki/AIDS []
606
+ - What are the <one>largest animal viruses</one> (<three>metazoa</three>)? The <one>Poxviruses</one>. URL: https://en.wikipedia.org/wiki/Poxviridae []
607
+ - <one>SARS-CoV-2</one> uses which entry receptor in humans? <one>ACE2</one>. URL: https://en.wikipedia.org/wiki/Angiotensin-converting_enzyme_2 []
608
+ - Welche Funktion haben die <one>inclusion bodies</one> der Poxviruses? Die <one>Virionen werden in den inclusion bodies assembliert</one>.
609
+ - Name a plasmid with <one>dual personality</one>. A: The <one>P1 plasmid</one>. It can remain as a plasmid, or act as a lytic virus.
610
+ - What does the <one>herpes simplex</one> virion host shutoff protein do? It <one>reduces the stability of mRNAs in infected cells</one>.
611
+ - The <one>Filoviridae</one> are released by ... ? <one>budding</one>. []
612
+ - The <one>Influenza pandemics</one> were caused by which H-subtypes only? (1) <one>H1</one> (2) <one>H2</one> (3) <one>H3</one> []
613
+ - 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. []
614
+ - How abundant are <one>marine viruses</one> in the seawater, per mL? 10 ** 7 virions / mL. []
615
+ - 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 []
616
+ - 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. []
617
+ - The <one>abortive infection systems</one> in bacteria 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.
618
+ - Name one constraint of the <one>reverse transcriptase</one>. A: This enzyme <one>requires a primer</one>. []
619
+ - <one>Durchmesser des Tabakmosaikvirus</one>, in nm? Etwa <one>15-18 nm</one>.
620
+ - <one>HPV5</one> (ein Papillomavirus) ist assoziiert mit welcher interessanten Erkrankung? <one>Epidermodysplasia verruciformis</one>. URL: https://en.wikipedia.org/wiki/Epidermodysplasia_verruciformis
621
+ - Nenne ein Beispiel für ein <one>re-emerging virus</one>. A: Das <one>Hantavirus</one>.
622
+ - Woran bindet das <one>Hämagglutinin</one> von Influenza? An endständige <one>N-Acetyl-Neuraminsäurereste</one> komplexer Oligosaccharide.
623
+ - 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>
624
+ - <one>Most viruses on planet earth</one> have DNA or RNA genomes? The vast majority of viruses have <one>RNA genomes</one>. []
625
+ - The <one>large T-Antigen of SV40</one> binds to ..? To the ori region of SV40.
626
+ - Der <one>Pestivirus</one> gehört zu welcher Familie? <one>Flaviviridae</one>.
627
+ - 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>
628
+ - Die <one>Baculoviren</one> können wieviel Fremd-DNA aufnehmen? Bis ca. <one>15 kb</one>.
629
+ - <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>. []
630
+ - There is the <one>ATV virus</one> (<one>Acidianus two-tailed virus</one>). What is the trigger for the tail formation? <one>High temperature</one>. []
631
+ - 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
632
+ - Der Wirkstoff <one>Zanamivir</one> wirkt gegen welchen Virus? Zanamivir wirkt gegen das <one>Influenza</one> Virus. []
633
+ - Give an example for a virus that may make use of a <one>macropinosome</one>. A: The <one>Ebola Virus</one>.
634
+ - <two>Which virus</two> causes <one>smallpox</one>? <one>Variola major</one>.
635
+ - Nenne zwei verwandte Folgekrankheiten des <one>HBV</one>. A: (1) <one>Leberkarzinom</one> (2) <one>Leberzirrhose</one> []
636
+ - In January 2021, <one>which EU-country</one> suffered from a new breakout of the African swine fever virus? <one>Romania</one>. []
637
+ - Wer verursacht <one>Warzen</one>? Das <one>Papilloma-Virus</one>. []
638
+ - Why do <one>Reoviruses</one> have an 'O' in their name? The 'O' here indiciates an <one>orphan virus</one>. []
639
+ - 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. []
640
+ - Give another name for a <one>virales Genom</one>. A: <one>Viral recipes</one>. []
641
+ - Is the <one>Polio virion</one> stable at an acid of pH 3? Yes. []
642
+ - Which <one>Influenza virus</one> infects only humans? The <one>Influenza B Virus</one>. []
643
+ - The <one>Human metapneumovirus</one> (<one>HMPV</one>) can cause significant upper and lower respiratory disease in all age groups worldwide. 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). []
644
+ - <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 []
645
+ - Nenne einen konkreten Virus der einen <one>Decoy-Mechanismus</one> verwendet. A: Der <one>Hepatitis B virus</one>.
646
+ - Unterschied zwischen <one>HIV-1B</one> und <one>HIV-1A</one>? HIV-1B infiziert sehr spezifisch Zellen in der Darmschleimhaut.
647
+ - The concept of <one>quasispecies</one> was established when? In <one>1978</one>.
648
+ - 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>.
649
+ - What happens to the <one>herpesvirus</one> when it infects a cell? The linear herpesvirus genome becomes <one>circularized</one>.
650
+ - 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 []
651
+ - 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>. []
652
+ - Give two examples of <one>endocytotic mechanisms</one> used by viruses. A: (1) <one>caveolin-mediated endocytosis</one> (2) <one>clathrin-mediated endocytosis</one> []
653
+ - The <one>first papillomavirus to be studied</one> in detail was ... ? <one>BPV</one> (<two>bovine papillomavirus type 1</two>).
654
+ - <one>What concept</one> limits the RNA Length of RNA viruses? The <one>error-threshold concept</one> limits RNA length. []
655
+ - Name <one>three different examples for subviral agents</one>. A: (1) <one>Prions</one> (2) <one>Viroids</one> (3) <one>Satellites</one>
656
+ - Does <one>HIV</one> insert its genome into DNA? Yes. []
657
+ - 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>.
658
+ - 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). []
659
+ - The <one>vector</one> in sylvatic transmission of <two>African Swine Fever</two> is ... ? A <one>tick</one>. []
660
+ - 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>. []
661
+ - Genes shared among the <one>herpesviruses</one> are important how, usually? They are important in <one>viral reproduction</one>.
662
+ - Allgemein: wie können wir Viren aufbrechen? Mit Hilfe von <one>chaotropen Agenzien</one>.
663
+ - Was genau finden wir in <one>Picornavirus</one> innen? (1) <one>VPg</one> (2) <one>ssRNA</one>
664
+ - The <one>capsid-size of the Poxviruses</one>, in nm (<two>max</two>)? <one>360nm</one>. []
665
+ - 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 []
666
+ - 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.
667
+ - Nenne einen <one>Nachteil</one> des ELISA-Tests für den Virennachweis. A: Anti-Virus Antikörper lassen sich erst nach Wochen in nachweisbaren Mengen nachweisen.
668
+ - <one>Which poliovirus type</one> has been eradicated? <one>Type 2 poliovirus</one>. []
669
+ - <two>Wieviele Menschen</two> sterben in Deutschland jährlich an <one>Influenza-A</one>? Etwa <one>10.000</one>.
670
+ - 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>
671
+ - Name two representatives (genus) of the <one>Sendai virus</one>. A: (1) <one>Morbillivirus</one> (2) <one>Rubulavirus</one>
672
+ - The <one>Filoviridae</one> <two>L protein</two> codes for ... ? The <one>RNA-dependent RNA polymerase</one>.
673
+ - <one>Ribavirin</one> is used against which virus? <one>Ribavirin</one> is used against the <two>hepatitis C virus</two>.
674
+ - A <one>pseudoknot</one> usually occurs in ...? <one>ssRNA</one>. []
675
+ - What is the causative agent of <one>poliomyelitis</one>? The <one>Poliovirus</one>. URL: https://en.wikipedia.org/wiki/Poliovirus []
676
+ - Andere Bezeichnung für <one>Spumaviren des Affen</one>? <one>Simian-Foamy Virus</one>.
677
+ - <one>Poliovirus</one> belongs to which family? <one>Picornavirus</one>. []
678
+ - Können Influenzaviren <one>Myokarditis</one>, also eine Herzmuskelentzündung, verursachen? Ja. []
679
+ - Can we find <one>superantigens</one> in viruses? Yes. []
680
+ - Give another name for <one>viral penetration</one>. A: <one>Viral entry</one>. []
681
+ - 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>
682
+ - <two>Wo</two> genau replizieren <one>Flaviviren</one> intrazellulär? An der Membran des endoplasmatischen Reticulums.
683
+ - An <one>Adenovirus</one> contains <two>how many capsomeres</two>? <one>252</one>. []
684
+ - What is <one>transovarial transmission</one>? Transmission into the next generation through an egg.
685
+ - 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. []
686
+ - What is the <one>morbidity</one>? This is the relative incidence of a particular disease.
687
+ - In Virology, we know the <one>M protein</one>. What does M stand for in this context? <one>M</one> stands for <two>matrix protein</two>. []
688
+ - Give two examples for <one>complex retroviruses</one>. A: (1) <one>lentiviruses</one> (2) <one>spumaviruses</one>
689
+ - Length of the <one>Pithovirus</one>? <one>1.5 µm</one>.
690
+ - Nenne ein konkretes Beispiel bei Viren wo <one>alternative Splicing</one> zum Einsatz kommt. A: Beim <one>SV40 T-Antigen</one>.
691
+ - Das <one>Tollwut-Virus</one> ist ein ... ? Ein <one>Rhabdovirus</one>. URL: https://en.wikipedia.org/wiki/Rhabdoviridae []
692
+ - Nenne ein Beispiel für ein <one>Satellite Virus</one>. A: Das <one>Hepatitis delta virus</one>. []
693
+ - Das <one>Influenza-Genom</one> hat am <two>3' Ende</two> welche 3 Proteine komplexiert? (1) <one>PB1-Protein</one> (2) <one>PB2-Protein</one> (3) <one>PA-Protein</one>
694
+ - <one>Which virus</one> do <three>HeLa cells</three> include in their genome? <one>HPV-18</one>. URL: https://www.nature.com/articles/6605671 []
695
+ - <one>How many receptors</one> does a virion require? 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. []
696
+ - Does the <one>Herpes simplex virus type 1</one> have a <two>tegument</two>? Yes it does. []
697
+ - <one>Rabies virus</one> tend to use which cellular receptor for attachment? The <one>acetyl-choline receptor</one>.
698
+ - <one>Wieviele Viren</one> waren im Jahr ~2014 mindestens bekannt? Mindestens <one>5000</one>. []
699
+ - The viral glycoprotein of <one>Filoviridae</one> is cleaved by <two>endosomal cysteine proteases</two>, such as ... ? The <one>cathepsins</one>.
700
+ - In Virology: what means the term <one>tropism</one>? The restriction of replication of specific viruses to certain tissues and cells.
701
+ - Are <one>polioviruses</one> single or double stranded? They are single stranded (<one>+ssRNA</one>).
702
+ - Die <one>Filoviridae</one> besitzen allgemein <two>n Gene</two> in ihrem Genom? <one>7</one>.
703
+ - Was fehlt den <one>LTR-Retrotransposons</one>? Die <one>env-Region</one>. URL: https://en.wikipedia.org/wiki/LTR_retrotransposon []
704
+ - 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>. []
705
+ - <one>SV40</one> requires which protein for its replication? The <one>large T antigen</one>. []
706
+ - Zu welcher <one>Baltimore-Gruppe</one> gehören die <two>Flaviviridae</two>? Zur <one>Baltimore Gruppe 4</one>. []
707
+ - 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.
708
+ - Infektionen mit <one>Cytomegaloviren</one>, die gegen Ganciclovir resistent geworden sind, werden womit behandelt? Mit <one>Cidofovir</one>.
709
+ - A. W. für <one>reverse Transkriptase</one>? <one>Revertase</one>. URL: https://www.wikidata.org/wiki/Q28774 []
710
+ - 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>
711
+ - If we see a virus able to persist in a healthy individual, what can we conclude from this? That this virus must somehow have strong defensive or evasive capabilities.
712
+ - Why does <one>the Influenza genome</one> <two>require a cell nucleus</two>? Because their genomes absolutely require the <one>cell splicing marchinery</one>. []
713
+ - When was the first virus purified by <one>differential centrifugation</one>"? In <one>1933</one>, by Schlessinger. []
714
+ - The diameter of the <one>Pithovirus</one> virion is ... ? <one>500 nm</one>. []
715
+ - Trivialname für <one>aktive Immunisierung</one>? <one>Schutzimpfung</one>. URL: https://de.wikipedia.org/wiki/Impfung []
716
+ - <one>Rotaviruses</one> belong to which family? <one>Reoviridae</one>. URL: https://en.wikipedia.org/wiki/Reoviridae
717
+ - Wo (in seinem Genom) beginnt die Replikation des Retrovirus? Im 5 Strich LTR Abschnitt. []
718
+ - Nenne <one>eine Erkrankung</one> die durch ein <two>Flavivirus</two> hervorgerufen werden kann. A: Das <one>virale hämorrhagische Fieber</one>.
719
+ - 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>. []
720
+ - In der Virologie werden <one>Zellkulturen</one> verwendet. Welche zwei Typen können hier unterschieden werden? (1) primäre Zellen (2) kontinuerliche Zellinien
721
+ - A. W. für FSME-Impfung? "Zeckenimpfung". []
722
+ - <one>SSPE</one> (<one>Subacute sclerosing panencephalitis</one>) is <two>caused by which virus</two>? By the <one>measles virus</one>.
723
+ - <one>Hämagglutinin</one> hat eine hohe Affinität zu? <one>Sialinsäureresten</one> auf der Wirtszelloberfläche.
724
+ - In <two>1957</two>, there was the <one>Asian Flu</one>, an Influenza strain. Which H and N type did it have? <one>H2N2</one>.
725
+ - Nenne 2 kleine DNA-Viren. A: (1) Polyomaviren (2) Papillomaviren []
726
+ - In which organism can the <one>large T antigen</one> be found? In the <one>Simian virus 40</one>, SV40. []
727
+ - Beim <one>Influenza A virus</one>: welches Protein bildet den <two>ion channel</two>? Das <one>M2 Protein</one>. []
728
+ - Schön geflammte Tulpen durch welchen Virus? <one>Poty Virus</one>. URL: https://en.wikipedia.org/wiki/Potyvirus []
729
+ - Was ist die <one>Tenazität</one>? Das ist die <one>Widerstandsfähigkeit</one>. []
730
+ - Andere Bezeichnung für <one>viral spikes</one>? <one>Peplomer</one> (plural: peplomers). Siehe auch folgenden Link URL: https://en.wikipedia.org/wiki/Peplomer []
731
+ - <one>Influenza</one> gehört zu welcher Gruppe? Influenza gehört zu den <one>Orthomyxoviren</one>. []
732
+ - Der <one>Chikungunya-Virus</one> ist <two>ein Vertreter welcher Virusfamilie</two>? Der <one>Togaviridae</one>. URL: https://en.wikipedia.org/wiki/Chikungunya []
733
+ - Können <three>AAVs</three> in das <one>Wirtschromosom</one> integrieren? Ja. []
734
+ - What is the genome size of <one>human rhinoviruses</one>? About <one>7.200 ssRNA</one>.
735
+ - Seit wann ist <one>Azidothymidin</one> zur <two>Therapie von HIV</two> zugelassen? Seit dem Jahre <one>1987</one>. []
736
+ - Give an example for a virus that is <one>a cap snatcher</one>. A: <one>Influenza</one>.
737
+ - 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>. []
738
+ - <one>Introns</one> were discovered where? In <one>Adenoviruses</one>. []
739
+ - Der <one>Norovirus</one> hat was für ein Genom? Ein <one>(+)ssRNA Genom</one>. []
740
+ - Name <one>a virus of rabbit-tumors</one>. A: The <one>myxoma virus</one>. URL: https://en.wikipedia.org/wiki/Myxoma_virus []
741
+ - Warum der Name <one>L-Protein</one> bei Papillomaviren, zum Beispiel bei den Proteinen L1 und L2? <one>L</one> steht hier für <two>Late</two>. []
742
+ - 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>.
743
+ - Welche <one>Genom-Klasse</one> der Viren kann direkt als mRNA fungieren? Klasse IV Genome. []
744
+ - Die <one>Schweinegrippe</one> hat welchen Subtyp? <one>H1N1</one>. []
745
+ - 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.
746
+ - Wie lässt sich eine <one>Rhinovirusinfektion</one> verhindern? Durch <one>Gabe von Interferon</one>. []
747
+ - Wer sollte allgemein immer zuerst geimpft werden? Risikogruppen. []
748
+ - 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 []
749
+ - Die Influenza-<one>Schweinegrippe</one> von <two>2009</two> hatte welche Konstitution? <one>H1N1</one>. []
750
+ - What is the most common vector of <one>plant viruses</one>? <one>Aphids</one>.
751
+ - Das <one>HPV L1-Protein</one> besteht aus wievielen Untereinheiten? <one>5</one> - es ist ein <two>Pentamer</two>.
752
+ - Das berühmteste <one>Rhabdovirus</one> ist ... ? Das <one>Rabiesvirus</one>. URL: https://de.wikipedia.org/wiki/Rabiesvirus []
753
+ - Was heisst <one>virus de rue</one>? <one>Wildtypvirus</one>. []
754
+ - 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. []
755
+ - How is the <one>poliovirus VPg</one> <two>modified</two>? It is <one>uridylated</one>. URL: https://en.wikipedia.org/wiki/VPg []
756
+ - Nenne einen recht alten und einfachen Test zum Virusnachweis. A: Den <one>Hämagglutinationstest</one>. []
757
+ - <one>Wieviele Basenpaare</one> finden wir im Genom der <two>Polyomaviren</two>? Etwa <two>5000 Basenpaare</two> (genauer: <one>5291 bp</one>).
758
+ - Was zeigt <one>eine hohe Neopterinkonzentration im Blut</one> an? Das <one>eine Virusattacke stattfindet</one>. []
759
+ - 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 []
760
+ - <one>Which virus</one> was the first human virus ever isolated, in the year <two>1902</two>? The <one>yellow fever virus</one>. []
761
+ - Das <one>HIV-Vakzin</one> aus dem Jahre 2005 basierte auf welchem Virus? <one>Adenovirus</one>.
762
+ - Does the <one>Simian Virus 40</one> (SV40) particle contain <two>histones</two>? Yes. []
763
+ - Der <one>Measel Virus</one> verwenden welchen Zellrezeptor? A: <one>CD150</one>.
764
+ - Why does <one>Influenza</one> require a low pH? Because <one>a low pH causes a conformational change in HA</one>.
765
+ - Was ist <one>HTLV I</one>? Ein <one>menschliches Retrovirus</one>.
766
+ - Wer ist der <one>Hauptwirt für Ebola</one>? Der <one>Nilflughund</one>. URL: https://de.wikipedia.org/wiki/Nilflughund
767
+ - Was heisst <one>pleomorph</one>? <one>Keine definierte Form</one>.
768
+ - To <two>which family</two> does the <one>vesicular stomatitis virus</one> belong to? To the <one>rhabdovirus family</one>.
769
+ - 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>.
770
+ - Gibt es Viren die <one>kleiner</one> sind als ein Ribosom? Ja. []
771
+ - How is the <one>major virus capsid protein</one> in <two>adenovirus</two> called? The <one>hexon protein</one>.
772
+ - In Virology - what does <one>HERV</one> stand vor? <one>Human endogenous retroviruses</one>.
773
+ - 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>.
774
+ - The <one>ssDNA circoviruses</one> genome codes for how many proteins? For <one>two</one>. []
775
+ - Die <one>klassische Virusdiagnostik</one> beruht auf ... ? Dem <one>Nachweis von Antikörpern</one>, die der Patient infolge der Infektion gegen das Virus bildet.
776
+ - <one>How many viruses</one> have been described in detail so far? At the least <one>5.000</one>. []
777
+ - 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
778
+ - 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..).
779
+ - Das <one>env-gene product</one> von Retroviren wird während der Maturation in welche Produkte geschnitten? (1) <one>transmembrane domain</one> (2) <one>surface domain</one>
780
+ - 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>. []
781
+ - A <one>viral polymerase</one> typically consists of how many subunits? Just one; viral polymerases tend to be active as a single protein. []
782
+ - Was ist das <one>Virioplankton</one>? Dies sind <one>alle im Wasser vorkommenden Viren</one>. []
783
+ - 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 []
784
+ - Name <one>a Neuraminidase inhibitor</one> against <two>Influenza</two> beginning with the letter <three>P</three>. A: <one>Peramivir</one>.
785
+ - <one>Viruses</one>, in general, can exist in which phases? (1) <one>extracellular</one> (2) <one>intracellular</one>
786
+ - Nenne einen Virus, der ein <one>S-förmiges Capsid</one> besitzt. A: Das <one>Pockenvirus</one>.
787
+ - <one>Chamberland filter diameter</one> is ... (from, to)? <one>100 nm -500 nm</one>. []
788
+ - In <one>wasps</one>: what is the <two>PDV virus</two>, the abbreviation? <one>Symbiotic polydnaviruses</one>.
789
+ - Durchmesser der <one>Rotaviren</one> (von-bis)? <one>70nm - 80nm</one>.
790
+ - Nenne ein Beispiel eines Virus das <one>Negrische Einschlusskörperchen</one> zeigte. A: <one>Rhabdoviren</one>.
791
+ - In der Virologie: <two>wo</two> vor allem finden wir <one>segmentierte Genome</one>? In den Genomen der <one>dsRNA Viren</one>.
792
+ - Nenne eine Virusgruppe die mindestens <one>2 ORFs</one> verwenden. A: Die <one>Togaviren</one>.
793
+ - Beim <one>Corona-Virus</one>: wieso das Wort <three>Corona</three>? <two>Corona</two> steht für <one>Krone</one>. []
794
+ - Gibt es das <one>Quasispezies Konzept</one> auch bei DNA-Viren? Ja. []
795
+ - Das <one>Cauliflower mosaic virus</one>-Genom ist ... ? Ein <one>dsDNA-Genom</one>.
796
+ - Nenne einen Nachteil der HIV-Detektionssysteme. A: Das <one>diagnostische Fenster</one>. Patienten in einem sehr frühen Infektionsstadium werden nicht erkannt.
797
+ - 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>.
798
+ - Do we have <one>antiviral therapies</one> against <two>human rhinoviruses</two>? No. []
799
+ - The <one>SV40 large T antigen</one> binds <two>how many p53 molecules</two>? <one>6</one>, as it is a <two>homohexamer</two>. []
800
+ - <two>Where</two> do most <one>RNA viruses of eukaryotes</one> replicate? In the <one>cytoplasm of the cell</one>. []
801
+ - The <one>parechovirus</one> can cause which disease? <one>Diarrhoea</one>. URL: https://en.wikipedia.org/wiki/Diarrhea
802
+ - <two>Which advantages</two> may <one>segmented genomes</one> have? A <one>more rapid evolution</one>. []
803
+ - Wann kam die <one>HAART Treatment of AIDS</one> auf? <one>1997</one>. []
804
+ - In addition to a <one>high mutation rate</one>, many viruses also have a high ... ? A: They may have a <one>high rate of replication</one>.
805
+ - <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>.
806
+ - Are <one>rabies viruses</one> enveloped? Yes. []
807
+ - <one>Hepatitis B</one> is a viral infection that attacks ... what part of the body? The <one>liver</one>. []
808
+ - How many different classes of <one>viral fusion proteins</one> have been identified to date (2015)? <one>3 different classes</one>. []
809
+ - Andere Bezeichnung für die <one>burst size</one> in der Virologie? <one>Wurfgröße</one>. []
810
+ - Infektion mit dem <one>Hepatitis B virus</one> führt oft zur <two>Progression zu HCC</two>. Was ist damit gemeint? <one>HCC</one>: <two>Hepatocellular carcinoma</two>
811
+ - Nenne <one>drei Vertreter der Minus-Strang-RNA-Viren</one>. A: (1) <one>Orthomyxoviren</one>: <two>Influenza</two> (2) <one>Paramyxoviren</one>: Masern (3) Rhabdoviren: Rabiesvirus
812
+ - How do we call the <one>self-assembly of the TMV virus</one>? <one>Scaffold-assisted assembly</one>.
813
+ - Andere Bezeichnung für die <one>Durchfallviren</one>? <one>Noroviren</one>. URL: https://de.wikipedia.org/wiki/Norovirus []
814
+ - Welche Person prägte den Begriff <one>Virus</one>? <one>Beijerinck</one>. []
815
+ - Name a virus that <one>can snatch caps from cellular mRNA</one>. A: The <one>Bunyavirus</one>. URL: https://en.wikipedia.org/wiki/Bunyavirales
816
+ - <one>What form</one> does <two>the Reoviruses capsid</two> have? They have an <one>icosahedral capsid</one>.
817
+ - In Virology: what can we achieve with <one>Disoxaril</one>? We can <one>inhibit the uncoating of Poliovirus</one>.
818
+ - How many microbes in the Earths ocean are detroyed each day by viruses (in percent)? About <one>20%</one>.
819
+ - What disease is typically caused by a <one>rhinovirus</one>? The <one>common cold</one>. []
820
+ - <one>Leatherjackets</one> können durch welche Viren besonders infiziert werden? Durch <one>Tipula-Viren</one>. URL: https://www.uniprot.org/taxonomy/10490 []
821
+ - <one>Influenza</one> belongs to which family? The <one>Orthomyxovirus family</one>. URL: https://en.wikipedia.org/wiki/Orthomyxoviridae []
822
+ - 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.
823
+ - 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.
824
+ - Which Virus has the <one>largest genome</one>? The <one>Pandoravirus</one>. URL: https://en.wikipedia.org/wiki/Pandoravirus []
825
+ - Give two different examples of <two>paramyxoviruses</two> that are <one>human pathogens</one>. A: (1) <one>mumps</one> (2) <one>measles viruses</one>
826
+ - The <one>spanish flu</one>, aka <three>the 1918-pandemic influenza strain</three>, had which H-N designate? <one>H1N1</one>. []
827
+ - What is a <one>viremia</one>? These are <one>viruses in the blood</one>. URL: https://en.wikipedia.org/wiki/Viremia []
828
+ - 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 []
829
+ - What is the general goal in <one>viral chemotherapy</one>? <one>Stopping the virus without killing the cell</one>.
830
+ - Der <one>Verlauf einer HIV Infektion</one> im Patienten lässt sich in <three>n Phasen</three> einteilen? <one>3</one>. []
831
+ - Can a virus <one>induce apoptosis</one>? Yes, some viruses can. []
832
+ - In general - a virus modifies the intracellular environment of its host ... why? So as to <one>enhance the efficiency of its replication process</one>.
833
+ - 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>.
834
+ - Name <one>a virus that can attack (and damage) the central nervous system</one>. A: The <one>herpes simplex virus</one>.
835
+ - When the <one>reverse transcriptase</one> converts the viral RNA (of a retrovirus infecting eukaryotic cells) into a proviral DNA, what is <three>lost</three>? The <one>Poly-A tail</one>.
836
+ - The <one>Hepatitis A virus</one> belongs to which family? The <one>Picornavirus family</one>.
837
+ - 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.
838
+ - The <one>HIV-1 pol gene</one> encodes ... ? A <one>reverse transcriptase</one>.
839
+ - Bei der <one>chemischen Desinfektion, gegen Viren</one>: unterscheide <two>viruzid</two> und <two>begrenzt viruzid</two>. A: Letzteres meint nur behüllte Viren.
840
+ - Give an example for a virus whose virions contain ribosomes. A: The <one>arenavirus</one>. URL: https://en.wikipedia.org/wiki/Arenavirus#Structure []
841
+ - What are the primary cell targets for the <one>influenza virus</one> in humans? The epithelial cells in the upper and lower respiratory tract.
842
+ - Nenne ein Beispiel für einen <one>segmented ssRNA Virus</one> A: <one>Influenza</one>. URL: https://de.wikipedia.org/wiki/Influenza []
843
+ - All viruses are parasites of ... <one>which machinery</one>? Of the <one>host protein synthesis machinery</one>.
844
+ - 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
845
+ - Der <one>HI-Virus</one> hat das gp160 Protein. In welche 2 Teile wird es gespalten? (1) <one>gp41</one> (2) <one>gp120</one> []
846
+ - Do <one>viruses</one> contain PAMPs? No. []
847
+ - Do <one>Coronaviruses</one> contain a <three>positive-sense</three> or a <three>negative-sense RNA genome</there>? <two>Coronaviruses</two> contain a <one>positive-sense single-stranded RNA genome</one>. []
848
+ - In der Virologie: was genau heisst <one>IRES</one>? <one>Internal ribosome entry site</one>. URL: https://de.wikipedia.org/wiki/IRES_%28Biologie%29 []
849
+ - <one>Retroviral-virions</one> have a complex between their 2 RNAs. How is that complex called? The <one>kissing-loop complex</one>. []
850
+ - 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.
851
+ - 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. []
852
+ - The <one>poliovirus</one> uses <three>n different VP-proteins</three>? About <one>4</one>. []
853
+ - A <one>common cause of Gastroenteritis</one> may be caused by which virus? <one>Rotaviruses</one>.
854
+ - Why may the presence of <one>grazers</one> <three>stimulate viral proliferation</three>? There is an increased availability of nutrients and other growth substrates available when bacteria die.
855
+ - The <one>seasonal flu</one> kills how many people per year globally, taken together? About <two>650.000 per year</two> (primarily due to <one>respiratory causes</one>). []
856
+ - Welche morphologische Form weisen die <one>Baculoviren</one> auf? <one>Baculoviren</one> sind <two>stäbchenförmig</two>. URL: https://de.wikipedia.org/wiki/Baculoviren []
857
+ - Welche Viren produzieren <one>occlusion bodies</one>? Die <one>Baculoviren</one>. []
858
+ - 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
859
+ - 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.
860
+ - <one>Ribonucleaseaktivität</one> bei den Retroviren finden wir wo? In der <one>reversen Transkriptase</one>, bei der <two>RNase H</two>.
861
+ - Nenne ein Beispiel für einen <one>umhüllten RNA Virus</one>. A: <one>HIV-1</one>.
862
+ - How many <one>Influenza B Virus subtypes</one> have been described? <one>None</one> - <two>there are no subtypes</two>.
863
+ - Name <one>an eukaryotic virus that does NOT polyadenylate its mRNA</one>. A: The <one>reoviruses</one>.
864
+ - Name <one>two picoRNA-viral virulence factors</one>. A: (1) <one>FMDV Lb pro</one> (2) <one>HRV2 2A pro</one>
865
+ - Nenne den <one>bekanntesten Vertreter der Lentiviren</one>. A: <one>HIV</one>. URL: https://en.wikipedia.org/wiki/Lentivirus []
866
+ - <one>A virus can kill its host cell</one>. How is this called scientifically? <one>Cytolytic killing</one>.
867
+ - Where do most <one>animal viruses</one> replicate intracellular? In the <one>nucleus</one>. []
868
+ - Wo (strukturell) findet man <one>IRES</one>? In der <one>5'-UTR</one>. []
869
+ - Erkennen <one>Antikörper</one> den HIV-Virus (also dessen Virion)? Ja. []
870
+ - Was genau ist die <one>Wurfgröße</one> in der Virologie? Die durchschnittliche Anzahl der pro infizierten Zelle freigesetzten Phagen.
871
+ - The <one>human cytomegalovirus</one> produces a protein called <three>VL18</three>. This protein is homologous to ... ? <one>HLA class I molecules</one>.
872
+ - Has the <one>measles virus</one> been eradicated from planet earth? No - for example, they were noticed in Graz and also other parts of Austria in the year 2018 and 2019. []
873
+ - Das <one>Adenovirus-Capsid</one> besteht aus <orange>n Hexonen</orange>? <one>240</one>.
874
+ - Wo mögen wir die <one>Geschichte von Virusattacken</one> finden? In <one>Introns</one>. []
875
+ - <one>Poxviruses</one> are large DNA viruses that replicate in the cytosol. They express numerous proteins to subvert the host immunity. 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>.
876
+ - Bei einem <one>Mausembryo</one>: wann wird der Retrovirus-Vektor eingesetzt? Im <one>8 Zell-Stadium</one>. []
877
+ - What is an <one>oncovirus</one>? An oncovirus is <one>a virus that can cause cancer</one>. []
878
+ - <one>Interferon-alpha</one> could be used to treat which viral infection? <one>Hepatitis B infection</one>, for example.
879
+ - Was sind <one>virulente Viren</one>? Dies sind <one>Viren, die eine Zelle nur lysieren können</one>.
880
+ - <one>DNA Viren</one> bevorzugen normalerweise welche Phase des Zellzyklus ihrer Wirtszelle? Die <one>S-Phase</one>. []
881
+ - <one>Subacute sclerosis panencephalitis</one> can arise through which viral infection? Through a <one>measles infection</one>.
882
+ - Can the <one>Herpes simplex virus</one> evade the immune system? Yes, by interference with MHC class I presentation of antigen.
883
+ - <one>Lysis</one> (<one>of viruses</one>) in general is facilitated by which two type of proteins? (1) <one>endolysins</one> (2) <one>holins</one> []
884
+ - Wie viele Nukleotide hat das <one>Poliovirus</one>? A: <one>7500</one> bp.
885
+ - Kodieren <one>Viroide</one> für ein Protein? Nein. []
886
+ - Give one example for an <one>enveloped DNA virus</one>. A: <one>HSV-1</one>.
887
+ - The <one>Sin Nombre</one> virus actually refers to ... ? The <one>hantavirus</one>. URL: https://en.wikipedia.org/wiki/Orthohantavirus []
888
+ - Nenne zwei Vertreter der <one>Togaviruses</one>. A: (1) <one>sindbis virus</one> (2) <one>rubella virus</one>
889
+ - <one>Retroviruses</one> are adept at ... ? <one>Acquiring random pieces of a cell's genome</one>.
890
+ - 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
891
+ - 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)
892
+ - Aside from HIV, name <one>a human retrovirus</one>. A: The <one>Hepatitis B Virion</one>.
893
+ - Nenne ein <one>Flavivirus</one>. A: The <one>yellow fever virus</one>. []
894
+ - Give an example of a virus showing <one>multiple infections</one>. A: <one>Varicella zoster virus</one>.
895
+ - <one>Wie attenuierte Pasteur</one> seine <two>Viren</two>? Er <one>entfernte Rückenmark des Hasen</one> und liess dieses <two>altern</two>.
896
+ - Das <one>Sendai Virus</one> besitzt was für ein Genom? <one>ssRNA</one>.
897
+ - Nenne zwei Beispiele für Viren mit <one>segmented genomes</one>. A: (1) der <one>Influenza Virus</one> (2) der <one>Brome Mosaic Virus</one> []
898
+ - Name two disadvantages if we wish to detect <one>negatively stained virions</one>. A: (1) high cost of equipment (2) limited sensitivity
899
+ - <one>HIV gp160</one> wird gespalten in ...? (1) <one>gp41</one> (2) <one>gp120</one> []
900
+ - <one>Welches Protein</one> ist für <three>SV40</three> sehr wichtig <two>um die DNA Replikation zu starten</two>? Das <one>Large-T Antigen</one>. []
901
+ - 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>.
902
+ - Wann wurden die <one>IRES</one> entdeckt? Im Jahre <one>1988</one>. URL: https://en.wikipedia.org/wiki/Internal_ribosome_entry_site []
903
+ - Wofür steht die Abkürzung <one>m.o.i</one>? <one>Multiplicity of infection</one>. []
904
+ - Das <one>HIV-Virus</one> bindet nur an Zellen die welches Oberflächenprotein besitzen? <one>CD4</one>. []
905
+ - The <one>HIV Vpr protein</one> can induce cell cycle arrest, in which stage? In <one>G2</one>.
906
+ - <one>Which phage</one> relies on a thymine-less DNA containing uracil rather than thymine? The <one>bacteriophage PBS 1</one>/<one>2</one>.
907
+ - Was ist die <one>Eklipsephase</one>? Der Zeitraum vom Beginn der Infektion bis zum Ende der Synthesephase.
908
+ - Are the <one>coronaviruses</one> <three>enveloped</three>? Yes. []
909
+ - Das Medikament <one>Relenza</one> wirkt gegen welchen Virus? <one>Relenza</one> wirkt gegen den <two>Influenza-Virus</two>. []
910
+ - The <one>human rhinovirus</one> has the Capsid Proteins VP4/VP3/VP2/VP1. What is the successor of these? <one>P1</one>.
911
+ - 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>.
912
+ - Wie sieht das <one>5' Ende von Picornaviren</one> aus? Keine Cap, aber das <one>Vpg protein</one>. []
913
+ - Which virus has <one>two protein coats</one>? The <one>Rotavirus</one>.
914
+ - <three>dsRNA-Viruses</three> can be recognized in the cytoplasma through <one>RNA helicases</one>. Give one example for such a RNA helicase that can achieve that. A: <one>RIG-I</one>.
915
+ - Nenne einen Nachteil von <one>Ganciclovir</one> gegenüber <one>Acyclovir</one>. A: Ganciclovir kann in zelluläre DNA eingebaut werden, Aciclovir hingegen nicht.
916
+ - Name two ways how <one>Influenza A</one> can change its antigenic properties. A: (1) <one>antigenic drift</one> (2) <one>antigenic shift</one> []
917
+ - 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>. []
918
+ - Gibt es <one>lysogene Viren in Hefen</one>? Nein. []
919
+ - <one>Autographa california</one> ist ein natürliches Pathogen einer ... ? Einer <one>Motte</one>, die sich von Luzerne ernährt.
920
+ - What <one>orientation</one> does the <three>Retrovirus genome</three> have? It is in the <one>plus (+) orientation</one>. []
921
+ - Do <one>Archaea</one> have viruses? Yes. []
922
+ - <one>Retroviren</one> haben eine RNA und eine DNA-Form. Vor allem die Enden sind hier unterschiedlich. Wie genau? (1) RNA-Form: 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
923
+ - Wann wurde das <one>Poliovirus</one> <three>erstmals de-novo synthetisiert</three>? Im Jahre <one>2002</one>. []
924
+ - 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>
925
+ - Give an example for a <one>complex retrovirus</one>. A: The <one>human immunodeficiency virus</one>. []
926
+ - 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>.
927
+ - Nenne einen gewichtigen <one>Vorteil eines Lebendimpfstoffes</one>. A: Lebendimpfstoffe aktivieren sowohl das humorale als auch das zelluläre Immunsystem.
928
+ - 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
929
+ - In welchem Tier finden wir <one>Isaviren</one>? Bei <one>Lachsen</one>. (Merkschema: <two>Lachse in der Isar</two>). []
930
+ - What is the <one>Virosphere</one>? <one>The world of all viruses on the planet</one>.
931
+ - Wieso ist es schwierig Therapien gegen Viren zu etablieren, verglichen mit Bakterien? Weil Viren den <one>zellulären Stoffwechsel</one> verwenden müssen.
932
+ - Nenne <one>3 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>)
933
+ - Die <one>Adenoviridae</one> umfassen wieviele Subgenera? <one>6</one> - und zwar A bis F.
934
+ - The <one>Picornavirus Virion</one> contains how many mature proteins (from, to)? <one>11-14</one>.
935
+ - <one>Welcher Virus</one> verursacht den normalen <three>Schnupfen</three>? <one>Rhinovirus</one>. []
936
+ - 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>.
937
+ - Nenne einen viralen Erreger, der ein <one>Virusakanthom</one> hervorrufen mag. A: <one>HPV</one> (<two>Humane Papillomviren</two>).
938
+ - 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>. []
939
+ - Which <one>virus family</one> has <three>gapped DNA</three>? The <one>Hepadnaviridae</one>.
940
+ - Nenne ein Beispiel für eine <one>pleomorphe ssRNA-Virus Familie</one>. A: Das <one>Paramyxovirus</one>.
941
+ - What is an <one>emergent virus</one>? An emergent virus 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.
942
+ - Was heisst <one>contagium vivum fluidum</one>? <one>Löslicher lebender Keim</one>.
943
+ - <three>Durchmesser</three> eines typischen <one>Pox Virion</one>? <one>200nm</one>. []
944
+ - What do we mean with <one>v-fos</one>? <one>Viral fos gene</one>.
945
+ - Which general <one>taxonomic groups</one> are missing for viruses? (1) <one>class</one> (2) <one>phylum</one>
946
+ - Warum treten Mutationen meist häufiger bei <one>RNA Viren</one> auf? RNA Viren besitzen <one>keine Proofreading-Funktion</one>. []
947
+ - 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>). []
948
+ - What is <one>the definitive characteristic of transducing retroviruses</one>? The presence of <one>cellular oncogenes</one>.
949
+ - Nenne die zwei <one>Unterfamilien der Retroviridae</one>. A: (1) <one>Spumavirinae</one> (2) <one>Orthoretrovirinae</one>
950
+ - Do <one>circular viral</one> genomes exist? Yes. []
951
+ - 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.
952
+ - What is the goal of <one>virus maturation</one>? It <one>prepares the virus for infection of the next cell</one>.
953
+ - Gegen welchen Virus kann <one>Cidofovir</one> eingesetzt werden? Gegen den <one>Cytomegalovirus</one>.
954
+ - <one>Rituximab</one> interagiert wie mit seiner Zielzelle? Über <one>CD20</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
+ - Beim <one>MERS Coronavirus</one>: was heisst <three>MERS</three>? <one>Middle East respiratory syndrome</one>. URL: https://en.wikipedia.org/wiki/Middle_East_respiratory_syndrome-related_coronavirus []
965
+ - Wie nennen wir allgemein die <one>Untereinheiten der (viralen) Capside</one>? <one>Capsomere</one>. URL: https://en.wikipedia.org/wiki/Capsomere []
966
+ - Die <one>Bornaviren</one> gehören zu welchem Typ von Viren? A: <one>RNA-Viren</one>. []
967
+ - Anderer Begriff für das <one>Pockenvirus</one>? <one>Variola-Virus</one>. []
968
+ - Was sind <one>Enzymbiotics</one>? Dies sind zum Beispiel <one>phage endolysins</one>.
969
+ - Können <one>Röteln</one> gefährlich sein? Ja, für <one>Schwangere</one>. Es kann zu <two>Embryopathien</two> kommen. []
970
+ - Nenne einen Virus der auch <one>Ribosomen</one> <three>besitzt</three>. A: Das <one>Arenavirus</one>. []
971
+ - Why does <one>SV40</one> require the large T-antigen? 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.
972
+ - People in <one>rural areas</one> may, in general, be more vulnerable to which types of infection? <one>Zoonotic infections</one>.
973
+ - Give one specific example of a <one>DNA virus</one> of eukaryotes that replicates in the cytoplasm. A: The <one>Iridovirus</one>.
974
+ - 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.
975
+ - Anderer Begriff für die <one>virale Proteinhülle</one>? <one>Capsid</one>. URL: https://de.wikipedia.org/wiki/Capsid []
976
+ - Bei den <one>Picornaviren</one>: was heisst <three>VPGL</three>? <one>Viral Protein Genome linked</one> []
977
+ - The name <one>Papovavirus</one> derives from ...? <one>Pa</one> for Papillomavirus, <one>Po</one> for Polyomavirus, <one>Va</one> for Vacuolating Agent (SV40)
978
+ - <one>Which cancer</one> can be caused - or made worse - by <three>HPV</three>? <one>HPV</one> is <two>the primary etiological agent in cervical cancer</two>. []
979
+ - Andere Bezeichnung für virale, <one>morphologische Einheiten</one>? <one>Capsomere</one>. []
980
+ - The <one>herpesvirus genome max length</one> is ... ? <one>230kb</one>.
981
+ - Was sind die <one>SRS-Viren</one>? <one>Small-round-structured virus</one>.
982
+ - Beim <one>Poliovirus</one>: wie lange ist dessen <three>VPg Protein</three>? <one>22 Aminosäuren</one>. []
983
+ - Was heisst <one>Mimivirus</one>? A: <one>Microbe Mimicking Virus</one>. []
984
+ - 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.
985
+ - In Virology: what is the <one>minimum infective dose</one>? The minimum amount of virus required for infection of a host.
986
+ - Is the <one>Hepatitis B virus</one> more infectious than the <three>HIV</three> virus? Yes it is. []
987
+ - Welches <one>keyword</one> ist mit dem <three>SV40 T-Antigen</three> assoziiert? <one>Alternative Splicing</one>.
988
+ - <one>Adenovirus</one> bind to which primary receptor, via their fibers? <one>CAR</one>: <two>Coxackie and Adenovirus Receptor</two>.
989
+ - <one>Rhinoviren</one> verwenden den ICAM-1 Rezeptor. Wie nennen wir diesen Rezeptor im CD System? <one>CD54</one>.
990
+ - Was sind <one>pleomorphe Virionen</one>? <one>Viruspartikel</one> die in Größe und Form stark unterschiedlich sind. []
991
+ - Wofür steht das <one>T</one> in <three>T7</three>? <one>Type</one>. []
992
+ - Can viruses degrade the <one>MHC I</one>? Yes. []
993
+ - Das <one>Tabakmosaikvirus</one> (<two>TMV</two>) hat ein Genom aus ...? <one>ssRNA</one> (<royalblue>einzelsträngiger RNA</royalblue>). URL: https://de.wikipedia.org/wiki/Tabakmosaikvirus []
994
+ - Do we find <one>reverse transcriptase</one> <three>only in Retroviruses</three>? No - for example the <one>Hepatitis B virus</one> also employs <two>reverse transcriptase</two>.
995
+ - 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>.
996
+ - The (major) <one>surface protein of HIV</one> is? <one>gp120</one>. []
997
+ - <one>Togaviruses</one> typically contain <three>two ORFs</three>. What do these two ORFs encode in general? One encodes structural proteins, the other one encodes non-structural proteins.
998
+ - Is <one>Ebola</one> <three>transmitted through semen</three>? Yes - even for up to 7 weeks after recovery from illness. []
999
+ - 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
1000
+ - 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>.
1001
+ - The <one>Ebolavirus</one> belongs to ... which family? It belongs to the <one>Filoviridae</one>. []
1002
+ - Do people affected by the <one>Ebola disease</one> show a symptom of a sore throat? Yes. []
1003
+ - 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 []
1004
+ - Nenne <one>ein Enzym</one>, das an der <two>Virusfreisetzung</two> beteiligt ist. A: Die <one>Neuraminidase</one>. []
1005
+ - Woher kommt der Name für die "Hantaviren"? Vom Fluss "Hantaan" in Südorea. URL: https://en.wikipedia.org/wiki/Hantaan_River_virus
1006
+ - 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.
1007
+ - Why do RNA viruses oftenly employ segmented genomes? Because this works to compensate for high error-rates. An error in a single-component genome would incapacitate the entire genome.
1008
+ - Nenne 3 Gründe wieso sich Viren eignen Evolutionsprozesse zu untersuchen. A: (1) kurze Generationszeit (2) grosse Zahl an Nachkommen (3) einfache Struktur