Upload Button Icon Add office photos

Nutanix

Compare button icon Compare button icon Compare

Filter interviews by

Nutanix E Learning Developer Interview Questions and Answers

Updated 25 Jul 2023

Nutanix E Learning Developer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jul 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. About the assignment
  • Q2. Writing assignment was asked
Round 3 - Technical 

(1 Question)

  • Q1. Softwares that i am aware of
  • Ans. 

    I am aware of various e-learning authoring tools such as Articulate Storyline, Adobe Captivate, and Camtasia.

    • Articulate Storyline

    • Adobe Captivate

    • Camtasia

  • Answered by AI
Round 4 - Discussio n 

(1 Question)

  • Q1. Html related questions were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Excellent company and good team

Interview questions from similar companies

I was interviewed in Oct 2016.

Interview Questionnaire 

8 Questions

  • Q1. C,C++, Programming Concepts
  • Q2. Resume Based
  • Q3. Puzzle Questions
  • Q4.  OS, Database, Networking, Computer Architecture based question
  • Q5. Project Based- Briefs, Details
  • Q6. What are your hobbies
  • Ans. 

    My hobbies include hiking, playing guitar, and cooking.

    • Hiking: I enjoy exploring nature trails and challenging myself physically.

    • Playing guitar: I love learning new songs and improving my skills.

    • Cooking: I like experimenting with different recipes and creating delicious meals.

  • Answered by AI
  • Q7. Where do you see yourself in 5 years
  • Ans. 

    In 5 years, I see myself as a senior software developer leading a team and working on complex projects.

    • Leading a team of developers

    • Working on complex projects

    • Continuously learning and improving my skills

    • Contributing to the growth and success of the company

  • Answered by AI
  • Q8. Why do you want to join DELL.
  • Ans. 

    I want to join DELL because of their innovative technology solutions and strong reputation in the industry.

    • DELL is known for their cutting-edge technology solutions which align with my passion for software development.

    • I admire DELL's strong reputation in the industry and their commitment to customer satisfaction.

    • I believe joining DELL will provide me with opportunities for growth and career advancement.

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: CGPA>9.0

Skills: Technical Skills
College Name: KIIT University

I was interviewed in Jan 2017.

Interview Preparation Tips

Round: Group Discussion
Experience: All got different topics to discuss on gd.
Tips: Plan before you speak. Be sure whether you are to or against.
Duration: 5 minutes

Round: Test
Experience: More questions on blood relationship, ages
Tips: Os db on technical
Duration: 1 hour

Skills: Technical Questions, Manage A Difficult Situation, Technical Knowledge(ML

I was interviewed before Sep 2016.

Interview Preparation Tips

Round: Group Discussion
Experience: Interview was scheduled in Grab Job consultancy. In that, a class room, where we all asked to sit and interviewer was sitting in front and asked to speak one by one on the topic traffic situation in Hyderabad.
Tips: Just speak once two to three lines. Don't rush to speak. Take ur time and don't try speak repeatedly.
Duration: 35 minutes

Round: Technical Interview
Experience: System based test. Easy question from java , c, data structure.

Round: HR Interview
Experience: Not held because already we got too late.

Skills: Proficiency In English, Basic Coding
College Name: Medak College of engineering

I was interviewed in Mar 2017.

Interview Questionnaire 

5 Questions

  • Q1. Oops concepts in Java?
  • Ans. 

    Oops concepts in Java

    • Encapsulation - hiding implementation details

    • Inheritance - reusing code and creating parent-child relationships

    • Polymorphism - multiple forms of a method or object

    • Abstraction - creating abstract classes and interfaces

    • Example: Encapsulation - using private variables and public methods

    • Example: Inheritance - creating a subclass that inherits from a superclass

    • Example: Polymorphism - using method overloa...

  • Answered by AI
  • Q2. Altering columns in Databases?
  • Ans. 

    Altering columns in databases involves modifying the structure of a table by adding, deleting or modifying columns.

    • Use ALTER TABLE statement to modify columns

    • Add new columns using ADD COLUMN

    • Delete columns using DROP COLUMN

    • Modify columns using MODIFY COLUMN

    • Changing column data type may result in data loss

  • Answered by AI
  • Q3. Asked some queries in SQL
  • Q4. Reversing a number in java?
  • Ans. 

    Reversing a number in Java

    • Convert the number to a string

    • Use StringBuilder to reverse the string

    • Convert the reversed string back to a number

  • Answered by AI
  • Q5. Extracting words from a line in java?
  • Ans. 

    To extract words from a line in Java, split the line using whitespace as delimiter.

    • Use the split() method of String class

    • Pass the whitespace regex as argument to split() method

    • Iterate over the resulting array to get individual words

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: Started with the question "Tell me about yourself". Asked me about Core Java. Asked to solve some questions related to Java and SQL.
Tips: Be prepared with high knowledge in Java, Data Structures and SQL.

Skills: Java Programming, Data Strrutures, SQL
College Name: IIITDM Jabalpur

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Oct 2019. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. I had been aksed tricky questions
  • Q2. I gave answers of all.

Interview Preparation Tips

Interview preparation tips for other job seekers - Mam it was quite good

I applied via Recruitment Consultant and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. C++ oops concepts
  • Q2. Early and late binding
  • Q3. Copy constructors

Interview Preparation Tips

Interview preparation tips for other job seekers - Job profile was software developer for c++

I was interviewed before Mar 2021.

Round 1 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was the first technical round.

  • Q1. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. 

    Reverse a singly linked list of integers and return the head of the reversed linked list.

    • Iterate through the linked list and reverse the pointers to point to the previous node instead of the next node.

    • Keep track of the previous, current, and next nodes while reversing the linked list.

    • Update the head of the reversed linked list as the last node encountered during reversal.

  • Answered by AI
  • Q2. 

    LCA of Binary Tree Problem Statement

    You are given a binary tree consisting of distinct integers and two nodes, X and Y. Your task is to find and return the Lowest Common Ancestor (LCA) of these two nodes...

  • Ans. 

    Find the Lowest Common Ancestor (LCA) of two nodes in a binary tree.

    • Traverse the binary tree to find the paths from the root to nodes X and Y.

    • Compare the paths to find the last common node, which is the LCA.

    • Handle cases where one node is an ancestor of the other.

    • Consider edge cases like when X or Y is the root node.

    • Implement a recursive or iterative solution to find the LCA efficiently.

  • Answered by AI
  • Q3. What is internal fragmentation?
  • Ans. 

    Internal fragmentation occurs when allocated memory is larger than the requested memory, leading to wasted space.

    • Internal fragmentation is common in memory management systems.

    • It occurs when a block of memory is allocated to a process, but the process does not use all of the allocated memory.

    • This results in wasted space within the allocated block.

    • For example, if a process requests 100 bytes of memory but is allocated a ...

  • Answered by AI
  • Q4. Which part of memory stores uninitialized static and global variables?
  • Ans. 

    BSS segment in memory stores uninitialized static and global variables.

    • BSS segment stands for 'Block Started by Symbol' and is a section of memory where uninitialized static and global variables are stored.

    • Variables declared with the 'static' keyword or as global variables without initialization are stored in the BSS segment.

    • For example, int a; or static int b; would be stored in the BSS segment.

  • Answered by AI
Round 2 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round with questions on DSA, OS, OOPS etc.

  • Q1. 

    Integer Square Root Calculation

    Given a positive integer 'N', compute its square root and return it. If 'N' is not a perfect square, then return the floor value of sqrt(N).

    Example:

    Input:
    N = 25
    N = 20
    N...
  • Ans. 

    Calculate the square root of a positive integer and return the floor value if not a perfect square.

    • Use the sqrt() function to calculate the square root of the given integer.

    • If the square root is not an integer, return the floor value using floor() function.

    • Handle constraints such as the range of 'N' and the number of test cases.

  • Answered by AI
  • Q2. Where does the returned value for the 'main' function go?
  • Ans. 

    The returned value for the 'main' function goes to the operating system.

    • The returned value is typically an integer representing the exit status of the program.

    • A return value of 0 usually indicates successful execution, while non-zero values indicate errors.

    • The operating system can use the return value to determine the success or failure of the program.

  • Answered by AI
  • Q3. What is a segmentation fault?
  • Ans. 

    A segmentation fault is a type of error that occurs when a program tries to access a memory location that it is not allowed to access.

    • Occurs when a program tries to access memory outside of its allocated space

    • Usually caused by bugs in the code such as accessing an uninitialized pointer or writing past the end of an array

    • Can lead to program crashes or unexpected behavior

    • Example: Accessing an element beyond the bounds of

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

This was a typical managerial round.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPANetApp India Pvt Ltd interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OS, DBMS, Networking, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Mar 2021.

Round 1 - Face to Face 

(5 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round with questions on DSA, Programming and OOPS.

  • Q1. 

    Implement strstr() Function in C Problem Statement

    Given two strings A and B, find the index of the first occurrence of A in B. If A is not present in B, return -1.

    Example:

    Input:
    A = "bc", B = "abcdd...
  • Ans. 

    Implement the strstr() function in C to find the index of the first occurrence of one string in another.

    • Iterate through the main string and check if the substring matches at each position.

    • Return the index if a match is found, else return -1.

    • Handle edge cases like empty strings or when the substring is longer than the main string.

  • Answered by AI
  • Q2. What happens when we try to access a null pointer in C?
  • Ans. 

    Accessing a null pointer in C results in a segmentation fault, as the program tries to access memory at address 0.

    • Attempting to dereference a null pointer will result in a segmentation fault, as the program tries to access memory at address 0.

    • It is important to always check if a pointer is null before attempting to access its value.

    • Example: int *ptr = NULL; printf('%d', *ptr); // This will result in a segmentation faul

  • Answered by AI
  • Q3. What are the phases of a compiler?
  • Ans. 

    Phases of a compiler include lexical analysis, syntax analysis, semantic analysis, optimization, and code generation.

    • Lexical analysis: Converts source code into tokens.

    • Syntax analysis: Checks the syntax of the code using a grammar.

    • Semantic analysis: Checks the meaning of the code.

    • Optimization: Improves the code for efficiency.

    • Code generation: Generates machine code or intermediate code.

  • Answered by AI
  • Q4. What is a system stack?
  • Ans. 

    A system stack is a data structure that stores information about the active subroutines of a computer program.

    • A system stack typically consists of a stack of frames, each representing a subroutine call.

    • The stack grows and shrinks as subroutines are called and returned.

    • The top of the stack points to the currently executing subroutine.

    • Common operations on a system stack include push (adding a new frame) and pop (removing

  • Answered by AI
  • Q5. 

    Count Set Bits Problem Statement

    Given an integer N, for each integer from 0 through N, find and print the number of set bits (1s) present in its binary representation.

    Example:

    Input:
    N = 5
    Output:
    ...
  • Ans. 

    Count the number of set bits in binary representation of integers from 0 to N.

    • Iterate through integers from 0 to N and count the number of set bits in their binary representation.

    • Use bitwise operations to check if a bit is set in the binary representation.

    • Return the count of set bits for each integer in the range.

  • Answered by AI
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round with questions on DSA, Programming and OOPS.

  • Q1. 

    Inorder Traversal of a Binary Tree Without Recursion

    You are provided with a binary tree consisting of 'N' nodes, where each node contains an integer value. Your task is to perform the In-Order traversal ...

  • Ans. 

    Perform In-Order traversal on a binary tree without recursion.

    • Use a stack to simulate the recursive process of In-Order traversal.

    • Start with the root node and keep traversing left until reaching a null node, pushing nodes onto the stack.

    • Pop nodes from the stack, print the value, and move to the right child if it exists.

    • Repeat until the stack is empty and all nodes have been visited.

  • Answered by AI
  • Q2. 

    Detect Loop in Singly Linked List

    Determine if a given singly linked list of integers contains a cycle.

    Explanation:

    A cycle in a linked list occurs when a node's next points back to a previous node in ...

  • Ans. 

    Detect if a singly linked list has a cycle by using Floyd's Cycle Detection Algorithm.

    • Use Floyd's Cycle Detection Algorithm to detect a cycle in a singly linked list.

    • Maintain two pointers, one moving at twice the speed of the other.

    • If there is a cycle, the two pointers will eventually meet.

    • If one of the pointers reaches the end of the list (null), there is no cycle.

  • Answered by AI
  • Q3. What is an interrupt?
  • Ans. 

    An interrupt is a signal sent to the CPU to alert it of an event that needs immediate attention.

    • Interrupts can be generated by hardware devices or software programs.

    • They can be used to handle events such as keyboard input, mouse clicks, or network activity.

    • Interrupts can be classified as hardware interrupts, software interrupts, or exceptions.

    • Examples of interrupts include the timer interrupt, which is used for multita...

  • Answered by AI
  • Q4. What is the CSMA protocol?
  • Ans. 

    CSMA stands for Carrier Sense Multiple Access. It is a protocol used in network communication to avoid collisions.

    • CSMA allows devices to listen to the network before transmitting data to avoid collisions.

    • If a device senses that the network is busy, it waits for a random amount of time before attempting to transmit.

    • CSMA/CD (Collision Detection) is a variant of CSMA used in Ethernet networks.

    • CSMA/CA (Collision Avoidance)

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical Managerial round.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPANetApp India Pvt Ltd interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Networking, OS, DBMS, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

18 Questions

  • Q1. UDP v TCP
  • Q2. Connection less vs connection oriented
  • Ans. 

    Connection-oriented protocols establish a dedicated end-to-end connection before data transmission, while connectionless protocols do not.

    • Connection-oriented protocols ensure reliable data transmission, while connectionless protocols do not guarantee reliability.

    • Connection-oriented protocols are used in applications such as file transfer and email, while connectionless protocols are used in applications such as video s...

  • Answered by AI
  • Q3. Some more basic questions related to networking
  • Q4. 6 people, 6 hats some black, others white, standing in a row, how many can identify the hats on their heads, if they can’t communicate, only make a strategy beforehand
  • Q5. Some more puzzles
  • Q6. Extracurricular activities
  • Q7. Basic questions like analyzing a pen, based on how deep you can think
  • Q8. About yourself?
  • Q9. Experience of the whole day?
  • Ans. 

    My experience of the whole day was productive and challenging.

    • Started the day with a team meeting to discuss project progress

    • Worked on coding and debugging for several hours

    • Collaborated with colleagues to solve complex problems

    • Attended a training session on new software development tools

    • Finished the day by reviewing and documenting my work

  • Answered by AI
  • Q10. Your role in NetApp?
  • Ans. 

    I am a software developer at NetApp.

    • Design and develop software applications

    • Collaborate with cross-functional teams

    • Write clean and efficient code

    • Participate in code reviews and testing

    • Stay up-to-date with emerging trends and technologies

  • Answered by AI
  • Q11. Extra curricular activities, fests etc.?
  • Q12. Questions, if any?
  • Q13. Topic of interest and why
  • Q14. Explain your internship
  • Q15. 8 ball puzzle, 7 have same weight 1 has diff
  • Q16. Same puzzle with 9 balls and optimize it
  • Q17. What does a QA do
  • Ans. 

    A QA (Quality Assurance) is responsible for ensuring that software products meet the required quality standards.

    • Develop and execute test plans and test cases

    • Identify and report defects and issues

    • Collaborate with developers to resolve issues

    • Ensure compliance with industry standards and regulations

    • Continuously improve testing processes and methodologies

  • Answered by AI
  • Q18. About netapp?

Interview Preparation Tips

Round: Test
Experience: First a written round was conducted. Written was based on Programming, Data structure, OS and Aptitude. There were 4 sections with a total of 50 questions to be done in 1 hour, with each section having individual cut-off.

Skills: Data structure, Algorithm, Java
College Name: NA

Skills evaluated in this interview

Nutanix Interview FAQs

How many rounds are there in Nutanix E Learning Developer interview?
Nutanix interview process usually has 4 rounds. The most common rounds in the Nutanix interview process are Resume Shortlist, One-on-one Round and Technical.
What are the top questions asked in Nutanix E Learning Developer interview?

Some of the top questions asked at the Nutanix E Learning Developer interview -

  1. Softwares that i am aware...read more
  2. Html related questions were as...read more

Tell us how to improve this page.

Nutanix E Learning Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

IBM Interview Questions
4.0
 • 2.3k Interviews
Oracle Interview Questions
3.7
 • 847 Interviews
Dell Interview Questions
4.0
 • 386 Interviews
Cisco Interview Questions
4.1
 • 371 Interviews
Adobe Interview Questions
3.9
 • 234 Interviews
24/7 Customer Interview Questions
3.5
 • 175 Interviews
Dassault Systemes Interview Questions
4.0
 • 161 Interviews
View all
Member Technical Staff
101 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

System Reliability Engineer
46 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Mts1
35 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

MTS-4
35 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Staff Member 3
35 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Nutanix with

Red Hat

4.3
Compare

VMware Software

4.4
Compare

Cisco

4.1
Compare

Dell

4.0
Compare
Did you find this page helpful?
Yes No
write
Share an Interview