Hadoop LinkedIn Skill Assessment Answer 2022

Rate this post

Here, We see Hadoop LinkedIn Skill Assessment Answers. This assessment test consists 15-20 MCQs to demonstrate your knowledge in your selected skills. MCQs comes from different topics – Hadoop Common, Hadoop Components, Hadoop Concepts, MapReduce, Using Hadoop.

Table of Contents

Q1. Partitioner controls the partitioning of what data?

  1. final keys
  2. final values
  3. intermediate keys✔️
  4. intermediate values

Q2. SQL Windowing functions are implemented in Hive using which keywords?

  1. UNION DISTINCT, RANK
  2. OVER, RANK✔️
  3. OVER, EXCEPT
  4. UNION DISTINCT, RANK

Q3. Rather than adding a Secondary Sort to a slow Reduce job, it is Hadoop best practice to perform which optimization?

  1. Add a partitioned shuffle to the Map job.
  2. Add a partitioned shuffle to the Reduce job.✔️
  3. Break the Reduce job into multiple, chained Reduce jobs.
  4. Break the Reduce job into multiple, chained Map jobs.

Q4. Hadoop Auth enforces authentication on protected resources. Once authentication has been established, it sets what type of authenticating cookie?

  1. encrypted HTTP
  2. unsigned HTTP
  3. compressed HTTP
  4. signed HTTP✔️

Q5. MapReduce jobs can be written in which language?

  1. Java or Python✔️
  2. SQL only
  3. SQL or Java
  4. Python or SQL

Q6. To perform local aggregation of the intermediate outputs, MapReduce users can optionally specify which object?

  1. Reducer
  2. Combiner✔️
  3. Mapper
  4. Counter

Q7. To verify job status, look for the value ___ in the ___.

  1. SUCCEEDED; syslog
  2. SUCCEEDED; stdout✔️
  3. DONE; syslog
  4. DONE; stdout

Q8. Which line of code implements a Reducer method in MapReduce 2.0?

  1. public void reduce(Text key, Iterator<IntWritable> values, Context context){…}✔️
  2. public static void reduce(Text key, IntWritable[] values, Context context){…}
  3. public static void reduce(Text key, Iterator<IntWritable> values, Context context){…}
  4. public void reduce(Text key, IntWritable[] values, Context context){…}

Q9. To get the total number of mapped input records in a map job task, you should review the value of which counter?

  1. FileInputFormatCounter
  2. FileSystemCounter
  3. JobCounter
  4. TaskCounter (NOT SURE)✔️

Q10. Hadoop Core supports which CAP capabilities?

  1. A, P✔️
  2. C, A
  3. C, P
  4. C, A, P

Q11. What are the primary phases of a Reducer?

  1. combine, map, and reduce
  2. shuffle, sort, and reduce✔️
  3. reduce, sort, and combine
  4. map, sort, and combine

Q12. To set up Hadoop workflow with synchronization of data between jobs that process tasks both on disk and in memory, use the ___ service, which is ___.

  1. Oozie; open source
  2. Oozie; commercial software
  3. Zookeeper; commercial software
  4. Zookeeper; open source✔️

Q13. For high availability, use multiple nodes of which type?

  1. data
  2. name✔️
  3. memory
  4. worker

Q14. DataNode supports which type of drives?

  1. hot swappable✔️
  2. cold swappable
  3. warm swappable
  4. non-swappable

Q15. Which method is used to implement Spark jobs?

  1. on disk of all workers
  2. on disk of the master node
  3. in memory of the master node
  4. in memory of all workers✔️

Q16. In a MapReduce job, where does the map() function run?

  1. on the reducer nodes of the cluster
  2. on the data nodes of the cluster (NOT SURE)✔️
  3. on the master node of the cluster
  4. on every node of the cluster

Q17. To reference a master file for lookups during Mapping, what type of cache should be used?

  1. distributed cache✔️
  2. local cache
  3. partitioned cache
  4. cluster cache

Q18. Skip bad records provides an option where a certain set of bad input records can be skipped when processing what type of data?

  1. cache inputs
  2. reducer inputs
  3. intermediate values
  4. map inputs✔️

Q19. Which command imports data to Hadoop from a MySQL database?

  1. spark import –connect jdbc:mysql://mysql.example.com/spark –username spark –warehouse-dir user/hue/oozie/deployments/spark
  2. sqoop import –connect jdbc:mysql://mysql.example.com/sqoop –username sqoop –warehouse-dir user/hue/oozie/deployments/sqoop
  3. sqoop import –connect jdbc:mysql://mysql.example.com/sqoop –username sqoop –password sqoop –warehouse-dir user/hue/oozie/deployments/sqoop✔️
  4. spark import –connect jdbc:mysql://mysql.example.com/spark –username spark –password spark –warehouse-dir user/hue/oozie/deployments/spark

Q20. In what form is Reducer output presented?

  1. compressed (NOT SURE)✔️
  2. sorted
  3. not sorted
  4. encrypted

Q21. Which library should be used to unit test MapReduce code?

  1. JUnit
  2. XUnit
  3. MRUnit✔️
  4. HadoopUnit

Q22. If you started the NameNode, then which kind of user must you be?

  1. hadoop-user
  2. super-user✔️
  3. node-user
  4. admin-user

Q23. State _ between the JVMs in a MapReduce job

  1. can be configured to be shared
  2. is partially shared
  3. is shared
  4. is not shared (https://www.lynda.com/Hadoop-tutorials/Understanding-Java-virtual-machines-JVMs/191942/369545-4.html)✔️

Q24. To create a MapReduce job, what should be coded first?

  1. a static job() method
  2. a Job class and instance (NOT SURE)✔️
  3. a job() method
  4. a static Job class

Q25. To connect Hadoop to AWS S3, which client should you use?

  1. S3A✔️
  2. S3N
  3. S3
  4. the EMR S3

Q26. HBase works with which type of schema enforcement?

  1. schema on write
  2. no schema
  3. external schema
  4. schema on read✔️

Q27. HDFS file are of what type?

  1. read-write
  2. read-only
  3. write-only
  4. append-only✔️

Q28. A distributed cache file path can originate from what location?

  1. hdfs or top
  2. http
  3. hdfs or http✔️
  4. hdfs

Q29. Which library should you use to perform ETL-type MapReduce jobs?

  1. Hive
  2. Pig✔️
  3. Impala
  4. Mahout

Q30. What is the output of the Reducer?

  1. a relational table
  2. an update to the input file
  3. a single, combined list
  4. a set of <key, value> pairs✔️

Q31. To optimize a Mapper, what should you perform first?

  1. Override the default Partitioner.
  2. Skip bad records.
  3. Break up Mappers that do more than one task into multiple Mappers.
  4. Combine Mappers that do one task into large Mappers.

Q32. When implemented on a public cloud, with what does Hadoop processing interact?

  1. files in object storage✔️
  2. graph data in graph databases
  3. relational data in managed RDBMS systems
  4. JSON data in NoSQL databases

Q33. In the Hadoop system, what administrative mode is used for maintenance?

  1. data mode
  2. safe mode✔️
  3. single-user mode
  4. pseudo-distributed mode

Q34. In what format does RecordWriter write an output file?

  1. <key, value> pairs✔️
  2. keys
  3. values
  4. <value, key> pairs

Q35. To what does the Mapper map input key/value pairs?

  1. an average of keys for values
  2. a sum of keys for values
  3. a set of intermediate key/value pairs✔️
  4. a set of final key/value pairs

Q36. Which Hive query returns the first 1,000 values?

  1. SELECT…WHERE value = 1000
  2. SELECT … LIMIT 1000✔️
  3. SELECT TOP 1000 …
  4. SELECT MAX 1000…

Q37. To implement high availability, how many instances of the master node should you configure?

  1. one
  2. zero
  3. shared
  4. two or more

Q38. Hadoop 2.x and later implement which service as the resource coordinator?

  1. kubernetes
  2. JobManager
  3. JobTracker
  4. YARN✔️

Q39. In MapReduce, _ have _

  1. tasks; jobs
  2. jobs; activities
  3. jobs; tasks✔️
  4. activities; tasks

Q40. What type of software is Hadoop Common?

  1. database
  2. distributed computing framework✔️
  3. operating system
  4. productivity tool

Q41. If no reduction is desired, you should set the numbers of _ tasks to zero

  1. combiner
  2. reduce✔️
  3. mapper
  4. intermediate

Q42. MapReduce applications use which of these classes to report their statistics?

  1. mapper
  2. reducer
  3. combiner
  4. counter✔️

Q43. _ is the query language, and _ is storage for NoSQL on Hadoop

  1. HDFS; HQL
  2. HQL; HBase✔️
  3. HDFS; SQL
  4. SQL; HBase

Q44. MapReduce 1.0 _ YARN

  1. does not include✔️
  2. is the same thing as
  3. includes
  4. replaces

Q45. Which type of Hadoop node executes file system namespace operations like opening, closing, and renaming files and directories?

  1. ControllerNode
  2. DataNode
  3. MetadataNode
  4. NameNode✔️

Q46. HQL queries produce which job types?

  1. Impala
  2. MapReduce
  3. Spark
  4. Pig

Q47 Suppose you are trying to finish a Pig script that converts text in the input string to uppercase. What code is needed on line 2 below?

1 data = LOAD '/user/hue/pig/examples/data/midsummer.txt'...
2
  1. as (text:CHAR[]); upper_case = FOREACH data GENERATE org.apache.pig.piggybank.evaluation.string.UPPER(TEXT);
  2. as (text:CHARARRAY); upper_case = FOREACH data GENERATE org.apache.pig.piggybank.evaluation.string.UPPER(TEXT);✔️
  3. as (text:CHAR[]); upper_case = FOREACH data org.apache.pig.piggybank.evaluation.string.UPPER(TEXT);
  4. as (text:CHARARRAY); upper_case = FOREACH data org.apache.pig.piggybank.evaluation.string.UPPER(TEXT);

Q48. In a MapReduce job, which phase runs after the Map phase completes?

  1. Combiner✔️
  2. Reducer
  3. Map2
  4. Shuffle and Sort

Q49. Where would you configure the size of a block in a Hadoop environment?

  1. dfs.block.size in hdfs-site.xmls✔️
  2. orc.write.variable.length.blocks in hive-default.xml
  3. mapreduce.job.ubertask.maxbytes in mapred-site.xml
  4. hdfs.block.size in hdfs-site.xml

Q50. Hadoop systems are _ RDBMS systems.

  1. replacements for
  2. not used with
  3. substitutes for
  4. additions for✔️

Q51. Which object can be used to distribute jars or libraries for use in MapReduce tasks?

  1. distributed cache✔️
  2. library manager
  3. lookup store
  4. registry

Leave a Comment

five × four =