Exam 17: Big Data: Hadoop, Spark, Nosql and Iot
Exam 1: Introduction to Computers and Python 28 Questions
Exam 2: Introduction to Python Programming 32 Questions
Exam 3: Control Statements and Program Development 20 Questions
Exam 4: Functions 18 Questions
Exam 5: Sequences: Lists and Tuples 25 Questions
Exam 6: Dictionaries and Sets 27 Questions
Exam 7: Array-Oriented Programming With Num 18 Questions
Exam 8: Strings: a Deeper Look 20 Questions
Exam 9: Files and Exceptions 30 Questions
Exam 10: Object-Oriented Programming 42 Questions
Exam 11: Computer Science Thinking: Recursion, Searching, Sorting and Big O18 Questions
Exam 12: Natural Language Processing 22 Questions
Exam 13: Data Mining Twitter 15 Questions
Exam 14: Ibm Watson and Cognitive Computing 31 Questions
Exam 15: Machine Learning: Classification, Regression and Clustering 66 Questions
Exam 16: Deep Learning 76 Questions
Exam 17: Big Data: Hadoop, Spark, Nosql and Iot 79 Questions
Select questions type
PubNub provides the ________ Python module for conveniently performing pub/sub operations.
(Multiple Choice)
4.9/5
(36)
Every RDD has access to the current SparkContext via the attribute ________.
(Multiple Choice)
4.9/5
(30)
The following dashboard visualizes simulated sensors from the PubNub simulated IoT sensors stream:
For each sensor, the visualization shows a Gauge (the semicircular visualizations) and a ________ (the jagged lines) to visualize the data.

(Multiple Choice)
4.9/5
(32)
Which of the following statements reflect security, privacy and ethical concerns associated with IoT?
(Multiple Choice)
4.7/5
(36)
Which of the following statements about text searching in MongoDB is false?
(Multiple Choice)
4.8/5
(50)
The PubNub client uses a ________ key in combination with a channel name to subscribe to a channel.
(Multiple Choice)
4.9/5
(37)
xe "underscore:_ SQL wildcard character"________ in a pattern string indicates a single wildcard character at that position.
(Multiple Choice)
4.7/5
(31)
In the SQL query: SELECT * FROM authors
The xe "* SQL wildcard character"asterisk (*) is a ________ indicating that the query should get all the columns from the authors table.
(Multiple Choice)
4.9/5
(41)
Consider the following reducer code: 1 #!/usr/bin/env python3
2 # length_reducer.py
3 """Counts the number of words with each length."""
4 import sys
5 from itertools import groupby
6 from operator import itemgetter
7
8 def tokenize_input():
9 """Split each line of standard input into a key and a value."""
10 for line in sys.stdin:
11 yield line.strip().split('\t')
12
13 # produce key-value pairs of word lengths and counts separated by tabs
14 for word_length, group in groupby(tokenize_input(), itemgetter(0)):
15 try:
16 total = sum(int(count) for word_length, count in group)
17 print(word_length + '\t' + str(total))
18 except ValueError:
19 pass # ignore word if its count was not an integer
Which of the following statements a), b) or c) is false?
(Multiple Choice)
4.9/5
(37)
Showing 41 - 60 of 79
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)