Level 1 Lecture2

Level 1 Lecture2

Professional Development

5 Qs

quiz-placeholder

Similar activities

Basics of R Programming-II

Basics of R Programming-II

12th Grade - Professional Development

10 Qs

DQuiz

DQuiz

Professional Development

10 Qs

Matrix

Matrix

Professional Development

10 Qs

CHARTS

CHARTS

KG - Professional Development

10 Qs

Introduction to Machine Learning

Introduction to Machine Learning

KG - Professional Development

10 Qs

Non-Tech Cases Part 1

Non-Tech Cases Part 1

Professional Development

5 Qs

Interpreting Graphs

Interpreting Graphs

Professional Development

9 Qs

dplyr basics

dplyr basics

University - Professional Development

7 Qs

Level 1 Lecture2

Level 1 Lecture2

Assessment

Quiz

Mathematics

Professional Development

Hard

Created by

Mariam Metawe3

Used 4+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

4 power 2 equal 16 how to make this calculation in R?

4^2

4**2

None of the them

Both of them

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

which function creates vector?

vector( )

vec( )

c( )

All of the Above

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

if a vector called vec contains 4 items in the follwoing order

30, "Apples", 20, "Bananas"

what what is the result of this

vec[1]

30

"30"

"Apples"

20

4.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Choose the correct statement(s)

you can choose more than one answer

matrix two dimension

vector one dimension

matrix one dimension

vector two dimension

matrix can hold different types of data

vector can't hold different types of data

Both vectors and matrices hold only one type of data

5.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which statement(s) is true about dataframe structure in R

You can choose more than one answer

Different columns in dataframe should hold the same data type

Different columns in dataframe can hold different data types

Each column can contains different data type

Each column should contain single data type