Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Estuate Software Team. If you also belong to the team, you can get access from here

Estuate Software Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Estuate Software Interview Questions, Process, and Tips

Updated 13 Jan 2025

Top Estuate Software Interview Questions and Answers

View all 10 questions

Estuate Software Interview Experiences

Popular Designations

6 interviews found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 31 Jul 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Questions on managerial skill
Round 3 - Technical 

(1 Question)

  • Q1. On testing and sql
Round 4 - HR 

(1 Question)

  • Q1. Expected salary, joining period

Interview Preparation Tips

Interview preparation tips for other job seekers - Good place for freshers only... experienced candidates have no growth

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (9)

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 13 Jan 2025

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Regression testing
  • Q2. Api testing
  • Q3. SQL

Test Engineer Interview Questions asked at other Companies

Q1. 1. What is the frame work u have worked and explain the framework with folder structure? 2. purely based on testing, different testing types like functional and non functional tests 3. real time scenarios like last min bugs before release? ... read more
View answer (4)

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 31 Oct 2023

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. Regarding basic SQL, Tableau questions
  • Q2. SQL functions , clauses, and basic scenariobased questions
  • Q3. Tableau basic questions like : filters, charts, dashboards etc.
Round 3 - Technical 

(1 Question)

  • Q1. Regarding SQL only basic questions

Interview Preparation Tips

Topics to prepare for Estuate Software Data Analyst interview:
  • SQL
Interview preparation tips for other job seekers - Don't join.

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)

I applied via Recruitment Consultant and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

11 Questions

  • Q1. 1. Explain about your roles and responsibilities?
  • Q2.  2. Difference between sanity and smoke testing?
  • Ans. 

    Sanity testing is a narrow and deep testing approach while smoke testing is a wide and shallow testing approach.

    • Sanity testing is done to check if the critical functionalities of the application are working fine after a small change is made.

    • Smoke testing is done to check if the application is stable enough to proceed with further testing.

    • Sanity testing is a subset of regression testing while smoke testing is a subset o...

  • Answered by AI
  • Q3. 3. Explain about framework execution flow indepth?
  • Ans. 

    Framework execution flow involves the sequence of steps followed by the automation framework to execute a test case.

    • The framework reads the test case from the test data source.

    • It then identifies the test steps and their corresponding actions.

    • The framework then executes the test steps in the defined sequence.

    • During execution, the framework captures and reports the test results.

    • Finally, the framework generates a test rep

  • Answered by AI
  • Q4. 4. How do run failed testcases and what is the use of TestNg?
  • Ans. 

    TestNg is a testing framework used to run failed test cases and manage test suites.

    • TestNg allows rerunning of failed test cases using the 'rerun-failed.xml' file.

    • It provides annotations to manage test execution flow and grouping of test cases.

    • TestNg generates detailed test reports and supports parallel test execution.

    • It also provides data-driven testing and integration with other tools like Selenium and JUnit.

  • Answered by AI
  • Q5. 5.How do you schedule jobs in Jenkins and explain about complete flow?
  • Ans. 

    Jenkins jobs can be scheduled using the Build Triggers option. The flow includes SCM polling, build, and post-build actions.

    • Go to the job configuration page and select Build Triggers

    • Choose the appropriate trigger option such as Poll SCM or Build periodically

    • Configure the trigger settings such as the schedule or polling interval

    • Add build steps and post-build actions as required

    • Save the job configuration

    • Jenkins will auto...

  • Answered by AI
  • Q6. 6. Explain about different oops concepts in detail?
  • Ans. 

    Object-oriented programming concepts that help in building modular and reusable software.

    • Encapsulation - bundling data and methods that operate on that data within a single unit

    • Inheritance - creating new classes from existing ones, inheriting their properties and methods

    • Polymorphism - ability of objects to take on many forms, allowing different objects to be treated as if they were the same type

    • Abstraction - hiding imp...

  • Answered by AI
  • Q7. 7. Write a program to find second highest number in an array?
  • Ans. 

    Program to find second highest number in an array of strings.

    • Convert strings to integers

    • Sort the array in descending order

    • Return the second element

  • Answered by AI
  • Q8. 8. Write a query to findout salary more than 10000 and dept belongs to finance?
  • Ans. 

    Query to find salary more than 10000 and dept belongs to finance

    • Use SELECT statement with WHERE clause

    • Specify salary greater than 10000 and department as finance

    • Use AND operator to combine conditions

  • Answered by AI
  • Q9. 9. Write a program to find Character occurance of given string?
  • Ans. 

    A program to find the occurrence of characters in a given string.

    • Create an empty dictionary to store the character count.

    • Loop through each character in the string.

    • If the character is already in the dictionary, increment its count.

    • If the character is not in the dictionary, add it with a count of 1.

    • Return the dictionary with character counts.

  • Answered by AI
  • Q10. 10. Explain about verification and validation process?
  • Ans. 

    Verification ensures that the software meets the specified requirements, while validation ensures that the software meets the customer's needs.

    • Verification checks if the software is built according to the design specifications.

    • Validation checks if the software meets the customer's requirements.

    • Verification is done before validation.

    • Verification includes reviews, walkthroughs, and inspections.

    • Validation includes testing

  • Answered by AI
  • Q11. 11. How do you ensure that you have 100% testcoverage?
  • Ans. 

    100% test coverage is not possible, but we can aim for maximum coverage by prioritizing tests and using automation.

    • Prioritize tests based on risk and criticality

    • Use automation to cover repetitive and time-consuming tests

    • Perform code reviews to ensure all code paths are covered

    • Continuously monitor and update test suite

    • Collaborate with developers to ensure all changes are tested

    • Use tools like code coverage analysis to id

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi I have been interviewed for 40 mins and Actually the position for Manaul Testing and Interviewer asked more about Automation Testing and after asking each and every question at the end of 40 mins he said he has done with interview.
And no response from them regarding the feedback and I called many times finally I got a message from them that you are not shortlisted
I was wondering why they rejected simply without any drawback from my side even they wast d my time for more than 2 hours just to schedule the interview even they didn't update me that interview will be scheduled within 30 mins or 40 mins like that.
Simply waited me for more than 2 hours waste company and worst interview process. Even hr people not allowed me to allow for the call initially and said that you have not logged in.
Worst company I have ever seen so far.

Skills evaluated in this interview

Top Estuate Software Senior Test Engineer Interview Questions and Answers

Q1. 4. How do run failed testcases and what is the use of TestNg?
View answer (1)

Senior Test Engineer Interview Questions asked at other Companies

Q1. From Selenium -> Which Automation framework I have implemented in my project . Explain each framework components. How to handle dynamic web element. how to handle hidden element. how to upload file in selenium, where hashmap is used in s... read more
View answer (1)

Estuate Software interview questions for popular designations

 Technical Lead

 (1)

 Software Engineer

 (1)

 Data Analyst

 (1)

 Test Engineer

 (1)

 QA Engineer

 (1)

 Senior Test Engineer

 (1)

I applied via Referral and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. They asking java releted questions

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good experience, they have taking 2rounds technical , they asking oops concepts, threads , exeption

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (220)

I applied via Naukri.com and was interviewed before Oct 2021. There were 3 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 - Technical 

(3 Questions)

  • Q1. Basic details about yourself
  • Q2. Tell about yourself and your previous experience in brief.
  • Q3. Next technical questions depends on your technology.
Round 3 - Technical 

(1 Question)

  • Q1. Client round was easy, they just checked confidence in my knowledge.

Interview Preparation Tips

Interview preparation tips for other job seekers - 2 technical rounds and 1 hr round.
1st technical from Estuate employee
2nd technical from Client
Last HR discussion

Technical Lead Interview Questions asked at other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to production deployment and tools used in the process. 2. What is auto-scaling in a microservices architecture? 3. Difference between micro-service and serverless. 4. If you were going t... read more
View answer (4)

Interview questions from similar companies

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

Round 1 - Aptitude Test 

Aptitude test

Round 2 - Group Discussion 

Current affairs

Round 3 - Technical 

(1 Question)

  • Q1. Puzzle , sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, whatever you know just be confident

Interview Preparation Tips

Round: Test
Experience: It was nice set of mixed bag questions each challenging your brain to scratch more and find the trick.
Tips: Be calm in solving the questions, Practice few tricks to solve

work,time,distance,number series problem etc. quickly to help save the

time.
Duration: 20 minuntes minutes
Total Questions: 25

Round: Resume Shortlist
Experience: I think resume played a important role in selection processes.
Tips: Make it simple and HIGHLIGHT your good work and experiences.Interviewer don't have time to go through whole crap what we write so basically focus on highlighting your achievements and internships.

Round: Group Discussion
Experience: People are dying to take the opportunity and speak.You will be facing a fish market in few cases, rest it is calm and everyone is given a chance to put forward there point.
Tips: Generally u have to decide which side of the boat u want to be on.

Either go against the topic or in favor whichever you are more

comfortable with.

College Name: IIT ROORKEE

Interview Questionnaire 

18 Questions

  • Q1. Tell me about your yourself
  • Ans. 

    I am a detail-oriented business analyst with experience in data analysis and process improvement.

    • I have a Bachelor's degree in Business Administration

    • I have worked with various stakeholders to identify business needs and requirements

    • I am proficient in SQL and Excel for data analysis

    • I have experience in process improvement and project management

    • I am a strong communicator and collaborator

  • Answered by AI
  • Q2. Tell us about your training and internships
  • Ans. 

    I have completed a business analyst certification course and have interned at a software development company.

    • Completed a business analyst certification course from XYZ Institute

    • Interned at ABC Software Development Company for 6 months

    • Worked on requirement gathering, documentation and analysis for a project

    • Assisted senior business analysts in creating project plans and reports

  • Answered by AI
  • Q3. What is the role of Instrumentation Department? (my training)
  • Ans. 

    The Instrumentation Department is responsible for designing, installing, and maintaining control systems and instruments used in industrial processes.

    • Designing and implementing control systems for industrial processes

    • Installing and maintaining instruments used in industrial processes

    • Ensuring accuracy and reliability of instruments and control systems

    • Collaborating with other departments to optimize processes and improve...

  • Answered by AI
  • Q4. Why do you want to join Affine Analytics?
  • Ans. 

    I am excited to join Affine Analytics because of their reputation for delivering innovative solutions and their focus on employee growth.

    • Affine Analytics has a strong track record of delivering cutting-edge solutions to clients across industries.

    • I am impressed by the company's commitment to employee growth and development, as evidenced by their training and mentorship programs.

    • I am excited about the opportunity to work...

  • Answered by AI
  • Q5. Why Data anayltics? Why not a technical job in your field?
  • Ans. 

    Data analytics allows me to use my technical skills to solve business problems and make data-driven decisions.

    • Data analytics helps me to identify patterns and trends in data that can be used to improve business processes.

    • It allows me to work with large datasets and use statistical methods to extract insights.

    • I can use my technical skills to develop and implement data models and algorithms.

    • Data analytics is a growing fi...

  • Answered by AI
  • Q6. If I keep two diodes in series will it work as a transistor? (EC branch)
  • Ans. 

    No, two diodes in series cannot work as a transistor.

    • Transistors have three terminals while diodes have two.

    • Transistors can amplify signals while diodes cannot.

    • Transistors can be used as switches while diodes cannot.

    • Diodes in series will only increase the voltage drop.

    • Transistors have different modes of operation such as common emitter, common base, and common collector.

  • Answered by AI
  • Q7. What exactly have you accomplished with the drone? (my final year project)
  • Ans. 

    I developed a drone that can detect and monitor forest fires.

    • Designed and built a drone with thermal imaging camera

    • Integrated machine learning algorithm to detect fire

    • Tested and validated the drone in a controlled forest environment

    • Presented the project at a national engineering conference

  • Answered by AI
  • Q8. How frequently do you play Badminton? (Hobby)
  • Ans. 

    I play badminton twice a week as a hobby.

    • I enjoy playing badminton as a way to stay active and relieve stress.

    • I usually play with friends or family members at a local community center.

    • I have been playing badminton for several years and have improved my skills over time.

  • Answered by AI
  • Q9. Do you have any problem working in Bangalore?
  • Ans. 

    No, I don't have any problem working in Bangalore.

    • I am familiar with the city and its culture

    • I have worked in Bangalore before and enjoyed my experience

    • I am open to new experiences and challenges

    • I am willing to adapt to the local environment and work culture

  • Answered by AI
  • Q10. Do you have any questions for us?
  • Q11. Which football club do you follow? (My answer: Real Madrid) (Que based on hobby)
  • Q12. Why is Real Madrid your favorite?
  • Ans. 

    Real Madrid is my favorite because of their rich history, success, and style of play.

    • Real Madrid has won a record 13 Champions League titles, which is a testament to their success

    • Their style of play is attractive and entertaining to watch

    • The club has a rich history and has had some of the greatest players in football history, such as Cristiano Ronaldo and Zinedine Zidane

  • Answered by AI
  • Q13. Assume you are the CEO of Flipkart. Your board has decided to go App only. What factors would you consider before making your final decision. (You have the relevant data from your website of last 7 years ...
  • Ans. 

    Factors to consider before going App only as CEO of Flipkart

    • Analyze the data from website and app to understand user behavior

    • Evaluate the impact on sales and revenue

    • Consider the potential loss of customers who prefer website over app

    • Assess the cost of developing and maintaining the app

    • Evaluate the competition and their strategies

    • Consider the impact on brand image and customer loyalty

    • Assess the feasibility of providing ...

  • Answered by AI
  • Q14. The Horse Puzzle
  • Q15. 3 Ants triangle puzzle
  • Q16. 3 Jars puzzle (Apple/Orange puzzle)
  • Q17. I have two jars of 5 litres and 3 litres. How can I measure 4 litres? (Assume: Infinite supply of water and no third jar is present)
  • Q18. A revolver with 2 bullets puzzle

Interview Preparation Tips

Round: Test
Experience: The first 10 questions were Data Interpretation type. There were around 4 to 5 logic questions. The rest were quantitative questions.
The questions were pretty basic.
Tips: The aim is to check the speed of your calculations.
Duration: 30 minutes
Total Questions: 23

Round: Group Discussion
Tips: Speak relevant points and you will be fine.
High proficiency in English is a must.
Duration: 10 minutes

Round: Puzzle Interview
Experience: The interview was great and lasted around 35-40 minutes. The interviewer gave ample amount of time to solve the questions.
To answer the questions was ofcourse important but approach to your final answer is very important as well. If you already know the answer but fail to explain the approach to the interviewer, you will get rejected.
Tips: Keep the interviewer in the loop and keep explaining him what you are thinking.
Fluent English is very important as well.

Round: HR Interview
Experience: The interviewers were very friendly and the interview lasted around 15 min.
Tips: Have one or two favorite subject/s from which you can answer any question thrown at you.
Be well versed about your final year project.
Do not put rubbish in your resume as they read the entire resume.

Skills: Enthusiasm, Projects, Proficiency In English, Logical Puzzles, Logical Thinking
College Name: NIT Surat
Funny Moments: As the HR interviewer is an alumni of my college, we had some chat about the college. This made the interview mood very light.

Interview Questionnaire 

2 Questions

  • Q1. Mostly puzzles and one case study
  • Q2. They asked me questions about my interests and hobbies

Interview Preparation Tips

Round: Test
Experience: There were three sets of question paper. We were sitting according to our roll number then question paper with rough sheet were distributed and we were allowed 1 hour to finish that. There was no negative marking.
Tips: For aptitude practice data interpretation and data sufficiency
Duration: 1 hour
Total Questions: 30

Round: Group Discussion
Duration: 15 minutes

Round: Technical Interview
Tips: Practice puzzles and case study for this round

Round: HR Interview
Tips: Be yourself

College Name: NIT Rourkela

Estuate Software Interview FAQs

How many rounds are there in Estuate Software interview?
Estuate Software interview process usually has 2-3 rounds. The most common rounds in the Estuate Software interview process are Technical, Resume Shortlist and HR.
How to prepare for Estuate Software interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Estuate Software. The most common topics and skills that interviewers at Estuate Software expect are Java, Javascript, Healthcare, Legal Advisory and Bfsi.
What are the top questions asked in Estuate Software interview?

Some of the top questions asked at the Estuate Software interview -

  1. 4. How do run failed testcases and what is the use of Test...read more
  2. 5.How do you schedule jobs in Jenkins and explain about complete fl...read more
  3. 8. Write a query to findout salary more than 10000 and dept belongs to finan...read more

Tell us how to improve this page.

Estuate Software Interview Process

based on 5 interviews

Interview experience

2.8
  
Poor
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 49 Interviews
IT By Design Interview Questions
3.5
 • 40 Interviews
ConsultAdd Interview Questions
3.5
 • 36 Interviews
Junglee Games Interview Questions
3.1
 • 32 Interviews
View all

Estuate Software Reviews and Ratings

based on 69 reviews

3.2/5

Rating in categories

2.9

Skill development

3.1

Work-life balance

2.7

Salary

2.8

Job security

2.8

Company culture

2.5

Promotions

2.9

Work satisfaction

Explore 69 Reviews and Ratings
Software Engineer
159 salaries
unlock blur

₹2.8 L/yr - ₹7.5 L/yr

Senior Software Engineer
59 salaries
unlock blur

₹4.5 L/yr - ₹13.9 L/yr

Technical Lead
32 salaries
unlock blur

₹9.1 L/yr - ₹34 L/yr

Data Analyst
24 salaries
unlock blur

₹2.9 L/yr - ₹5.5 L/yr

Software Trainee
16 salaries
unlock blur

₹2.8 L/yr - ₹3 L/yr

Explore more salaries
Compare Estuate Software with

Maxgen Technologies

4.6
Compare

Value Point Systems

3.6
Compare

JoulestoWatts Business Solutions

2.9
Compare

F1 Info Solutions and Services

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