Simulacro examen Associate

Simulacro examen Associate

Professional Development

8 Qs

quiz-placeholder

Similar activities

Network Fundamentals-Data Link Layer

Network Fundamentals-Data Link Layer

9th Grade - Professional Development

11 Qs

Understanding of RAM

Understanding of RAM

Professional Development

12 Qs

DP 203 M1

DP 203 M1

Professional Development

10 Qs

IT ENGLISH: Research Project Topics - Big Data

IT ENGLISH: Research Project Topics - Big Data

Professional Development

10 Qs

OSI LAYER

OSI LAYER

KG - Professional Development

10 Qs

Python Libraries Series - Pandas

Python Libraries Series - Pandas

Professional Development

11 Qs

CSH-16-02-2021

CSH-16-02-2021

Professional Development

10 Qs

FinTech 13-3 AWS

FinTech 13-3 AWS

Professional Development

8 Qs

Simulacro examen Associate

Simulacro examen Associate

Assessment

Quiz

Computers

Professional Development

Hard

Created by

Docente Datapath

Used 1+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following operations can execute a SQLquery on a table?

spark.query()

DataFrame.sql()

spark.sql()

DataFrame.createOrReplaceTempView()

DataFrame.createTempView()

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following statements about the Sparkdriver is incorrect?

The Spark driver is the node in which the Spark application'smain method runs to coordinate the Spark application.

The Spark driver is horizontally scaled to increaseoverall processing throughput.

The Spark driver contains the SparkContext object.

The Spark driver is responsible for scheduling theexecution of data by various worker nodes in cluster mode.

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following statements about slots is true? (Slots = Cores)

There must be more slots than executors.

There must be more tasks than slots.

Slots are resources for parallelization within a Sparkapplication

Slots are resources for parallelization within a Sparkapplication.

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following is a combination of a blockof data and a set of transformers that will run on a single executor?

Executor

Node

Job

Task

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following is a group of tasks that can be executed in parallel to compute the same set of operations on potentially multiple machines?

Job

Slot

Executor

Stage

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following describes a shuffle?

A shuffle is the process by which data is compared across partitions.

A shuffle is the proccess by which data is compared across executors

A shuffle is the process by with tasks are ordered for execution.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following operations will trigger evaluation?

DataFrame.filter()

DataFrame.distinct()

DataFrame.join()

DataFrame.count()

8.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following data structures are Spark DataFramesbuilt on top of?

Arrays

Strings

RDDs

Vectors