wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Spark

Total questions: 10

Worksheet time: 10mins

Name
Class
Date
1.

RDDs are immutable

a)

TRUE

b)

FALSE

2.

Which of the following are properties of Spark transformations?

a)

They are not computed right away

b)

They are computed right away

c)

They are vulnerable to machine failures

3.

Which of the following is not a property of Spark Actions?

a)

They cause Spark to execute the recipe to transform the source data

b)

They are the primary mechanism for getting results out of Spark

c)

They are lazily evaluated

d)

The results are returned to the driver

4.

RDDs that are reused may be cached

a)

TRUE

b)

FALSE

5.

S1: Actions cause parallel computation to be immediately executed

S2: Transformations lazily create new RDDs

a)

S1: True S2: True

b)

S1: True S2: False

c)

S1: False S2: True

d)

S1: False S2: False

6.

In iterative or repeated computations, broadcast variables avoid the problem of repeatedly sending the same data to workers:

a)

False

b)

True

7.

What language spark written in

a)

Java

b)

R

c)

Python

d)

Scala

8.

Apache Spark RDD stands for

a)

Resilient Distributed Dataset

b)

R Distributed Dataset

c)

Resilient Dataset Distributed

d)

ReDeclared Dataset

9.

Complete the following:

Spark store data in ___________. which makes it 100 times faster than MapReduce

a)

memory

b)

disk

10.

Which of them is not Spark Library?

a)

Spark SQL

b)

MLlib (machine learning)

c)

GraphX (graph)

d)

Spark Streaming

e)

Kafka