Bio trivia
Coding trivia
100

Cells that have high protein synthesis have a particularly high number of _______________ .  

a) Lysosomes b) Ribosomes c) Chromosomes d) Nucleoli

b) Ribosomes

100

Which is a valid variable name in Python?

a) 1_Data b) old-data c) price_in_$ d) _output

The correct answer is: _output

There are the two syntax rules we need to follow when we're naming variables in Python:
— We must use only letters, numbers, or underscores (we can't use apostrophes, hyphens, spaces, etc.).
— Variable names can't begin with a number.


200

Which RNA carries the genetic message?  
a) rRNA b) tRNA c) mRNA d) All of the above

c) mRNA

200

In the following R code, What is the result of line 3?

xvect <- c(1,2,3)

xvect[2]  <- "2"

xvect

[1] "1" "2" "3"

300

Name the short fragments of DNA formed on the lagging strand during DNA replication

Okazaki fragments

300

In Linux: when executing a command and passing the output to another command, which CHARACTER allows you to chain these commands together?

| (pipe)

400

Name the site on the ribosome which hosts the peptidyl-tRNAs during translation elongation 

The ribosomal P-site

400

In R, Which function displays the first five rows of the data frame named pizza?

head(pizza, 5)

M
e
n
u