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
Relational databases typically use ACID (Atomicity, xe "consistency"Consistency, Isolation, Durability) transactions. Which of the following ACID attributes is described by: "ensures that concurrent transactions occur as if they were performed sequentially?"
(Multiple Choice)
5.0/5
(35)
Which Hadoop ecosystem technology is described by "SQL querying of non-relational data in Hadoop and NoSQL databases."
(Multiple Choice)
4.9/5
(32)
Consider the following mapper code: 1 #!/usr/bin/env python3
2 # length_mapper.py
3 """Maps lines of text to key-value pairs of word lengths and 1."""
4 import sys
5
6 def tokenize_input():
7 """Split each line of standard input into a list of strings."""
8 for line in sys.stdin:
9 yield line.split()
10
11 # read each line in the the standard input and for every word
12 # produce a key-value pair containing the word, a tab and 1
13 for line in tokenize_input():
14 for word in line:
15 print(str(len(word)) + '\t1')
Which of the following statements a), b) or c) is false.
(Multiple Choice)
4.9/5
(37)
Which of the following statements a), b) or c) about graph databases is false?
(Multiple Choice)
4.8/5
(40)
Xe "author_ISBN table of books database"A goal when designing a relational database is to minimize data ________ among the tables.
(Multiple Choice)
5.0/5
(30)
A ________ shades areas in a Folium map using the values you specify to determine color.
(Multiple Choice)
4.9/5
(31)
Which Hadoop ecosystem technology is described by "A service for managing cluster configurations and coordination between clusters?"
(Multiple Choice)
4.7/5
(35)
________ your IP address is a MongoDB security measure which ensures that only IP addresses you verify are allowed to interact with your MongoDB Atlas cluster.
(Multiple Choice)
4.8/5
(41)
Showing 61 - 79 of 79
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)