Week 2 (still, don't worry about rankings)

Week 2 (still, don't worry about rankings)

University

8 Qs

quiz-placeholder

Similar activities

Cosmid and cosmid cloning

Cosmid and cosmid cloning

University

10 Qs

epidemiologia 1

epidemiologia 1

University

9 Qs

MECHANISMS OF DRUG ACTION

MECHANISMS OF DRUG ACTION

University

12 Qs

(Refresher) Infectious Diseases Topics 1 & 2

(Refresher) Infectious Diseases Topics 1 & 2

11th Grade - University

10 Qs

Basic Virology

Basic Virology

University

10 Qs

cDNA synthesis and Gene Libraries

cDNA synthesis and Gene Libraries

University

10 Qs

Lecture 17-Plant Virus-Vector Interactions:Circulative, Propagat

Lecture 17-Plant Virus-Vector Interactions:Circulative, Propagat

University

10 Qs

Genome Is Not The Same As It Was

Genome Is Not The Same As It Was

11th Grade - University

9 Qs

Week 2 (still, don't worry about rankings)

Week 2 (still, don't worry about rankings)

Assessment

Quiz

Biology

University

Medium

Created by

Jorge Cardoso

Used 1+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

While doing your R script, be scared of:

Typos

Not writing comments

Giving multiple vectors the same name

All other options

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

For the vector: x <- ( 100, 200, 3.00), what output do we expect to see from the command "class(x)"

Logical

Character

Numeric

Nonsense

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Will R interpret the vectors " x <- (1, 2, 3)" and "X <- (1, 2, 3)" as THE SAME vector? A.k.a, it is a SINGLE vector typed twice?

Yes

No

...maybe?

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Lets say you wanna compare vectors named "x" and "y", so you write:

y <- (5 * 1)

x <- (5 * 2)

x <- (1 + 1)

Then:

test <- y > x

Which value will be stored in "test"?

TRUE

FALSE

wat?

5.

MULTIPLE CHOICE QUESTION

10 sec • Ungraded

Media Image

Look at this image and take a breather:

amazing

I don't like oranges

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

in R language, what does this mean: <-

Less or equal

A backwards sign

Assign operator

Assign value

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

In R language, what does the code " print( "I love R")" do?

It lies

(don't chose this option)

Uses the command "Print" to feed a character string to our output

Uses the command "Print" to feed a logical string to our output

Uses the command "Print" to feed a numerical string to our output

8.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Are the vectors below E X A C T L Y the same thing?

x <- ( 1, 2, 3)

x <- ( "1", "2", "3")

No but don't know why

Yes

No, the first is a CHARACTER vector and the second is a NUMERIC vector

No, the first is a NUMERIC vector and the second is a CHARACTER vector