Apache NiFi

 20 Minutes
 10 Questions


The Technology, Apache NiFi, Basics test is designed to evaluate the knowledge and understanding of individuals in the field of technology, specifically in relation to Apache NiFi. This test covers the fundamental concepts and principles of Apache NiFi, including its architecture, components, and functionalities. It also assesses the ability of individuals to perform basic tasks using Apache NiFi, such as data ingestion, transformation, and routing. The test includes multiple-choice questions, scenario-based questions, and practical exercises to test the practical skills of the candidates. This test is suitable for individuals who are new to Apache NiFi and want to gain a basic understanding of its features and capabilities. It is also useful for professionals who want to validate their knowledge and skills in Apache NiFi and demonstrate their expertise to potential employers.


Example Question:

Multiple-Choice
In this process group, what is the overall function of the NiFi processors combined?



<processGroup>
  <processor>
    <class>org.apache.nifi.processors.standard.FetchFile</class>
    <property name="File to Fetch">/data/input.txt</property>
    <property name="Completion Strategy">Delete</property>
  </processor>
  <processor>
    <class>org.apache.nifi.processors.standard.SplitText</class>
    <property name="Line Split Count">10</property>
  </processor>
  <processor>
    <class>org.apache.nifi.processors.standard.ReplaceText</class>
    <property name="Search Value">ERROR</property>
    <property name="Replacement Value">WARNING</property>
  </processor>
</processGroup>