Upload Button Icon Add office photos

Filter interviews by

Evive Software Analytics Developer Interview Questions and Answers

Updated 14 May 2017

Evive Software Analytics Developer Interview Experiences

1 interview found

Developer Interview Questions & Answers

user image Anonymous

posted on 13 May 2017

I appeared for an interview in Apr 2017.

Interview Questionnaire 

9 Questions

  • Q1. Complexity Questions.For loop, Sorting Tech. Complexity.
  • Q2. Sorting Questions: Merge Sort, Quick Sort.
  • Q3. Data Structures Questions:Linked List, Binary Tree, Binary Search Tree, Stacks, LIFO, FIFO, Implementing stack in queue.
  • Q4. Java Concepts: Object Oriented Concepts, Multi-Threading, Generics in Java.
  • Q5. Basic Coding Questions: e.g: Swap without third variable and XOR Operator.
  • Q6. Tell Me About Yourself
  • Ans. 

    I am a passionate developer with a strong background in web development and a love for problem-solving.

    • Experienced in HTML, CSS, JavaScript, and various web development frameworks

    • Proficient in backend development with Node.js and databases like MongoDB

    • Strong understanding of responsive design and user experience principles

  • Answered by AI
  • Q7. Why You Want To Join Our Company?
  • Ans. 

    I am impressed by your company's innovative projects and strong team culture.

    • I admire your company's commitment to pushing boundaries in technology.

    • I am excited about the opportunity to work with a talented team of developers.

    • Your company's reputation for fostering growth and learning aligns with my career goals.

  • Answered by AI
  • Q8. Your Interests
  • Ans. 

    I am passionate about web development, machine learning, and open-source projects.

    • Web development: I enjoy creating responsive and user-friendly websites using HTML, CSS, and JavaScript.

    • Machine learning: I am fascinated by the potential of AI and enjoy working on projects involving data analysis and predictive modeling.

    • Open-source projects: I actively contribute to open-source projects on platforms like GitHub, collabo...

  • Answered by AI
  • Q9. Quality That Makes You Different From Others
  • Ans. 

    My attention to detail and problem-solving skills set me apart from others.

    • I have a keen eye for spotting errors and inconsistencies in code

    • I excel at troubleshooting and finding solutions to complex technical issues

    • I am constantly seeking to improve my skills and stay up-to-date with the latest technologies

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: During this round we were given set of 10 subjective questions, some questions were purely coding questions in which we were required to write code in any preferred coding language. e.g:- find the kth largest element in the array, other questions were based on front end and back end situations (html, css) and some questions were based on linux commands.
Duration: 1 hour
Total Questions: 10

Skills: Coding Skills, Coding Skills And Knowledge On Data Structures, Communication And Confidence, Thinking Approach, Logical And Structured Thinking, Reasoning Ability
College Name: Chitkara University, Patiala

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Feb 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions on Salesforce Basics. One can learn all great features in Salesforce.com but we must know the basic admin functionalities and features in Saleforce.
Round 2 - Behavioral 

(1 Question)

  • Q1. The questions will be on your career, Resume. They will look for story telling skills, can you be a team player and individual player, etc. Can be technical as well.

Interview Preparation Tips

Interview preparation tips for other job seekers - First know the basics of Saleforce.com for functional role then you dive into all great features in Salesforce.

I applied via Company Website and was interviewed in Oct 2018. There was 0 interview round.

Interview Preparation Tips

General Tips: This interview was a technical one but was majorly a stress test. It lasted for about 1 hour 10 minutes. The interviewer wanted to test both my knowledge and communication skills. Most of the questions asked to me were related to my B.Tech curriculum i.e. computer science related topics. He stressed a lot on the basics related to my project topic. Luckily I was able to answer most of the questions correctly. I tried to answer each question with examples and also used props on the table (like pens, paperweights, pen stands etc.) to explain my theories. It was my first offcampus interview, and I think I did pretty well for a fresher.
You need to stay calm and should apply presence of mind. Please go through the job description thoroughly word-by-word and recheck your resume to ensure that you are a best-fit for the position.
Skills: Communication, Body Language, Problem Solving, Leadership, Presentation Skills
Duration: <1 week

I applied via Campus Placement and was interviewed before Feb 2021. There were 2 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 - Aptitude Test 

Focus on industry-specific nuances

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on the industry you are familiar with and discuss the challenges and probable solutions.

I applied via Naukri.com and was interviewed before May 2021. There were 2 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 - Coding Test 

Coding questions will be given

Interview Preparation Tips

Interview preparation tips for other job seekers - Do well. Be bold and answer what you know.

I applied via Walk-in and was interviewed before Sep 2019. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Tell us about yourself
  • Q2. What made you to choose Accenture?
  • Q3. Speak about something for atleast 5 mins( to check verbal communication)
  • Q4. How much salary are you expecting?

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't be nervous and don't prepare too much cuz it'll just make the convo go more artificial so be relaxed/confident and just go with the flow.. keep it real

I applied via Naukri.com and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Rest API, Java 8 Stream

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for core java and restful services

I applied via Walk-in and was interviewed before Sep 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1.Technical Ques(OOPS Concept)and 2. Area of Interest 3. About Company 4. more

Interview Preparation Tips

Interview preparation tips for other job seekers - Hello Folks,
Sharing some tips while facing Interview Assessment or GD Round Assessment.
1. Be Confident always give the answer what they ask for, Never connect your answer with different topic.
2. Always go through Company Portal or wiki about their Operation & Function.
3. Always have positive vibes that whatever yes or No, You will surely gain something.
All the Best..!!

I appeared for an interview in Aug 2017.

Interview Questionnaire 

7 Questions

  • Q1. Implement Merge Sort.
  • Ans. 

    Merge Sort is a divide and conquer algorithm that sorts an array by dividing it into two halves, sorting them separately, and then merging the sorted halves.

    • Divide the array into two halves

    • Recursively sort the two halves

    • Merge the sorted halves

  • Answered by AI
  • Q2. Given a BST containing distinct integers, and a number ‘X’, find all pairs of integers in the BST whose sum is equal to ‘X’.
  • Ans. 

    Find pairs of integers in a BST whose sum is equal to a given number.

    • Traverse the BST and store the values in a hash set.

    • For each node, check if (X - node.value) exists in the hash set.

    • If yes, add the pair (node.value, X - node.value) to the result.

    • Continue traversal until all nodes are processed.

  • Answered by AI
  • Q3. Given a set of time intervals in any order, merge all overlapping intervals into one and output the result which should have only mutually exclusive intervals.
  • Ans. 

    Merge overlapping time intervals into mutually exclusive intervals.

    • Sort the intervals based on their start time.

    • Iterate through the intervals and merge overlapping intervals.

    • Output the mutually exclusive intervals.

    • Example: [(1,3), (2,6), (8,10), (15,18)] -> [(1,6), (8,10), (15,18)]

  • Answered by AI
  • Q4. What are the different types of hashing? Suggest an alternative and a better way for Linear Chaining.
  • Ans. 

    Different types of hashing and alternative for Linear Chaining

    • Different types of hashing include division, multiplication, and universal hashing

    • Alternative for Linear Chaining is Open Addressing

    • Open Addressing includes Linear Probing, Quadratic Probing, and Double Hashing

  • Answered by AI
  • Q5. Implement AVL Tree.
  • Ans. 

    An AVL tree is a self-balancing binary search tree where the heights of the left and right subtrees differ by at most one.

    • AVL tree is a binary search tree with additional balance factor for each node.

    • The balance factor is the difference between the heights of the left and right subtrees.

    • Insertion and deletion operations in AVL tree maintain the balance factor to ensure the tree remains balanced.

    • Rotations are performed ...

  • Answered by AI
  • Q6. Minimum number of squares whose sum equals to given number n.
  • Ans. 

    Find the minimum number of squares whose sum equals to a given number n.

    • Use dynamic programming to solve the problem efficiently.

    • Start with finding the square root of n and check if it is a perfect square.

    • If not, then try to find the minimum number of squares required for the remaining number.

    • Repeat the process until the remaining number becomes 0.

    • Return the minimum number of squares required for the given number n.

  • Answered by AI
  • Q7. Insertion sort for a singly linked list.
  • Ans. 

    Insertion sort for a singly linked list.

    • Traverse the list and compare each node with the previous nodes

    • If the current node is smaller, swap it with the previous node

    • Repeat until the end of the list is reached

    • Time complexity is O(n^2)

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 2 coding questions (no penalty for wrong submission) and 20 Multiple Choice Questions(with negative marking). We were given 90 minutes to solve them. MCQs were based on Data Structures, OS, CN, C outputs, OOP etc.
Tips: Experience in Competitive Programming might help in solving coding questions. No constraints were mentioned and detailed Instructions related to problem were stated vaguely. So code carefully.
Duration: 1 hour 30 minutes
Total Questions: 22

Round: Technical Interview
Experience: The interviewer asked me to introduce myself and a brief introduction of the projects that I have done. She first asked me questions related to my project. After that she moved on to the data structures part.
Tips: Take your time to approach the problems and if the question is not clear ask the interviewer to explain it again.

Round: Technical Interview
Experience: The interviewer asked me about how my previous round went. After that, he asked me to introduce myself and a brief introduction of the projects that I have done. He first asked me a few questions related to my project. Then he moved on to the data structures part. In this round the interviewer gave me strict time limit for coding the solution on paper for each problem and as soon as I was done coding he gave me 2-3 minutes every time to find errors and debug my code.
Tips: Do not panic even if the interviewer sets time limit while solving problems. If the question is not clear ask the interviewer to explain it again.

College Name: The LNM Institute Of Information Technology, Jaipur

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Regarding excel and SAP

Interview Preparation Tips

Interview preparation tips for other job seekers - Be preaperd for the role for which you ra egoing

Evive Software Analytics Interview FAQs

What are the top questions asked in Evive Software Analytics Developer interview?

Some of the top questions asked at the Evive Software Analytics Developer interview -

  1. Data Structures Questions:Linked List, Binary Tree, Binary Search Tree, Stacks,...read more
  2. Basic Coding Questions: e.g: Swap without third variable and XOR Operat...read more
  3. Complexity Questions.For loop, Sorting Tech. Complexi...read more

Tell us how to improve this page.

Developer Interview Questions from Similar Companies

View all
Qa Developer
11 salaries
unlock blur

₹4.8 L/yr - ₹17 L/yr

Software Developer
11 salaries
unlock blur

₹5.5 L/yr - ₹12.5 L/yr

Business Analyst
11 salaries
unlock blur

₹5.5 L/yr - ₹7 L/yr

QA Engineer
9 salaries
unlock blur

₹5.5 L/yr - ₹8 L/yr

Software Development Engineer
8 salaries
unlock blur

₹6.3 L/yr - ₹15 L/yr

Explore more salaries
Compare Evive Software Analytics with

Accenture

3.8
Compare

Capgemini

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

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