Upload Button Icon Add office photos

Filter interviews by

Horiba India Software Development Engineer Intern Interview Questions and Answers

Updated 20 Jun 2024

Horiba India Software Development Engineer Intern Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic question in angular and c#

Round 2 - One-on-one 

(3 Questions)

  • Q1. Explain about yourself
  • Q2. Explain about OOPS in java
  • Ans. 

    OOPS in Java stands for Object-Oriented Programming System, which is a programming paradigm based on the concept of objects.

    • OOPS focuses on creating objects that interact with each other to solve complex problems

    • It involves concepts like classes, objects, inheritance, polymorphism, and encapsulation

    • Example: Inheritance allows a subclass to inherit properties and behaviors from a superclass

  • Answered by AI
  • Q3. Basic question in angular
Round 3 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. Asked about my family

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Army Institute of Technology, Pune and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

There was a coding round and out of 75 students 28 got selected for next round

Round 2 - Technical 

(2 Questions)

  • Q1. Total on resume and basic coding questions like write code for different sorting algorithms.
  • Q2. Explain your project in detail and asking cross questions regarding project.
Round 3 - Technical 

(1 Question)

  • Q1. I was rejected in round 2.

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through your resume thoroughly, and have a basic DSA knowledge.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Is TDD an overkill?
  • Q2. Tell me how you will manage 10k+ records on an application UI? (This was a system design question)

Interview Preparation Tips

Interview preparation tips for other job seekers - Pros: HR interaction from beginning till interview was great.
Cons: Interviewers interviewed me for a different role than I was expected to be interviewed for. So I found there was a lack of communication between the HR and the interviewees.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Coding Test 

Algorithm to create a Linked List.

Round 2 - Technical 

(1 Question)

  • Q1. Project and past exprience related interview
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jun 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Java coding questions, basic Java questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Java basics questions.
  • Q2. Live coding.
Round 3 - Technical 

(2 Questions)

  • Q1. Discussion on previous experience and projects.
  • Q2. System design question
Round 4 - Technical 

(2 Questions)

  • Q1. Questions on SQL, Java advanced, personal projects, Java frameworks, UI based questions, Agile methodologies.
  • Q2. Interview discussion with the whole team.
Round 5 - HR 

(2 Questions)

  • Q1. Benefits discussion.
  • Q2. Salary discussion.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Technical sql questions

Round 2 - Coding Test 

Oops concept and sql db questions

Round 3 - Technical 

(1 Question)

  • Q1. Dependency injection
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Print the largest string from the given 5 strings
  • Ans. 

    Find the largest string from a given array of 5 strings

    • Iterate through the array of strings and compare the length of each string

    • Keep track of the largest string found so far

    • Return the largest string at the end

  • Answered by AI
  • Q2. Check if the required dropdown option is displayed or not
  • Ans. 

    Use Selenium WebDriver to locate the dropdown element and check if the required option is displayed

    • Locate the dropdown element using Selenium WebDriver

    • Use the Select class to interact with the dropdown

    • Verify if the required option is displayed using isSelected() method

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Normal DP question (LC med)

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal and was interviewed in Dec 2022. 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 - Technical 

(6 Questions)

  • Q1. How do you find the code performance issue in the code deployed in production?
  • Ans. 

    To find code performance issues in production, use monitoring tools and profiling techniques.

    • Use monitoring tools like New Relic, AppDynamics, or Datadog to track performance metrics and identify bottlenecks.

    • Use profiling techniques like CPU profiling, memory profiling, and network profiling to pinpoint specific areas of the code that are causing performance issues.

    • Analyze logs and error messages to identify patterns a...

  • Answered by AI
  • Q2. What is asynchronous programming
  • Ans. 

    Asynchronous programming is a programming paradigm that allows multiple tasks to run concurrently without blocking each other.

    • Asynchronous programming is used to improve the performance of applications that require a lot of I/O operations.

    • It involves the use of callbacks, promises, and async/await keywords in JavaScript.

    • Asynchronous programming can be used in both front-end and back-end development.

    • Examples of asynchro...

  • Answered by AI
  • Q3. Write a program to change background after every 0.5 sec interval to orange,white,green on button click in Angular?
  • Ans. 

    Program to change background color on button click in Angular

    • Create a button in Angular template

    • Add click event listener to the button

    • Use setInterval() function to change background color after every 0.5 sec

    • Use ngStyle directive to change background color dynamically

  • Answered by AI
  • Q4. How to load a component only after 3 of my services are loaded?
  • Ans. 

    Use Angular's 'resolve' property to load component after services are loaded.

    • Create a resolver service that waits for all three services to complete before resolving.

    • Add the resolver service to the 'resolve' property of the component's route.

    • Access the resolved data in the component using the ActivatedRoute service.

    • Example: { path: 'my-component', component: MyComponent, resolve: { data: MyResolverService } }

  • Answered by AI
  • Q5. What is difference between iquerable and ienumrable
  • Ans. 

    IQueryable is for querying data from a source that implements IQueryable interface while IEnumerable is for iterating over a collection of data.

    • IQueryable is used for deferred execution while IEnumerable is used for immediate execution.

    • IQueryable is used for querying data from a remote data source while IEnumerable is used for querying data from an in-memory collection.

    • IQueryable is more efficient for large datasets as...

  • Answered by AI
  • Q6. When you go with entity framework and ado.net
  • Ans. 

    Entity Framework is an ORM while ADO.NET is a data access technology.

    • Entity Framework is easier to use and provides more abstraction than ADO.NET.

    • ADO.NET is faster and more flexible than Entity Framework.

    • Use Entity Framework for simple CRUD operations and ADO.NET for complex queries and performance-critical applications.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared on skills from your resume. Prepare more on Angular,Design patterns. Should have knowledge on Azure.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

It was straightforward

Round 3 - HR 

(2 Questions)

  • Q1. Was easy explaining about role
  • Q2. Previous experience. How to handle the role and expectation. Work schedule. Explain about the team
  • Ans. 

    The candidate should discuss their previous experience, how they handle their role and expectations, their work schedule, and provide an explanation about their previous team.

    • Discuss previous experience in software engineering roles

    • Explain how you handled your role and met expectations in previous positions

    • Describe your typical work schedule and any flexibility you have

    • Provide an overview of your previous team, their s

  • Answered by AI

Horiba India Interview FAQs

How many rounds are there in Horiba India Software Development Engineer Intern interview?
Horiba India interview process usually has 3 rounds. The most common rounds in the Horiba India interview process are Aptitude Test, One-on-one Round and HR.
What are the top questions asked in Horiba India Software Development Engineer Intern interview?

Some of the top questions asked at the Horiba India Software Development Engineer Intern interview -

  1. Explain about OOPS in j...read more
  2. basic question in angu...read more

Tell us how to improve this page.

Horiba India Software Development Engineer Intern Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TransUnion Interview Questions
4.0
 • 88 Interviews
British Airways Interview Questions
3.1
 • 28 Interviews
Apotex Research Interview Questions
4.1
 • 28 Interviews
SMC Corporation Interview Questions
3.6
 • 27 Interviews
Eversendai Interview Questions
3.8
 • 27 Interviews
Plastic Omnium Interview Questions
3.7
 • 24 Interviews
Allegion Interview Questions
4.3
 • 23 Interviews
View all
Engineer- Customer Support
64 salaries
unlock blur

₹4 L/yr - ₹8.1 L/yr

Senior Engineer
34 salaries
unlock blur

₹4.5 L/yr - ₹12 L/yr

Assistant Manager
31 salaries
unlock blur

₹7.6 L/yr - ₹14 L/yr

Service Engineer
28 salaries
unlock blur

₹2.2 L/yr - ₹6.7 L/yr

Product Manager
17 salaries
unlock blur

₹7 L/yr - ₹16.8 L/yr

Explore more salaries
Compare Horiba India with

Thermo Fisher Scientific

3.9
Compare

Agilent Technologies

4.2
Compare

Waters Corporation

4.1
Compare

Shimadzu Analytical India

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