Upload Button Icon Add office photos

Thermo Fisher Scientific

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Thermo Fisher Scientific Junior Engineer Interview Questions and Answers

Updated 17 Nov 2022

Thermo Fisher Scientific Junior Engineer Interview Experiences

1 interview found

Round 1 - Technical 

(3 Questions)

  • Q1. How much experince in this field
  • Ans. 

    I have 2 years of experience in this field.

    • I have worked as a Junior Engineer for 2 years.

    • During my time in this field, I have gained experience in various aspects of engineering such as design, testing, and analysis.

    • I have also worked on several projects, including a project to improve the efficiency of a manufacturing process.

    • I am constantly learning and keeping up with the latest developments in the field.

  • Answered by AI
  • Q2. Why are you like this work
  • Ans. 

    I am passionate about this work because it allows me to apply my technical skills and problem-solving abilities to make a positive impact.

    • I enjoy working with technology and finding innovative solutions.

    • I find satisfaction in overcoming challenges and learning new things.

    • I appreciate the opportunity to contribute to the development of useful products or services.

    • I value the collaborative nature of engineering work and ...

  • Answered by AI
  • Q3. Tell us something about you
  • Ans. 

    I am a dedicated and enthusiastic Junior Engineer with a strong passion for problem-solving and learning new technologies.

    • I have a Bachelor's degree in Engineering with a focus on software development.

    • I have experience working on various projects during my studies, including developing a web application for a local business.

    • I am proficient in programming languages such as Java, Python, and JavaScript.

    • I have a solid und...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - my experince is this company it's ok, but washroom is very bad

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair

Round 1 - One-on-one 

(1 Question)

  • Q1. Self , previous year company work

Interview Questionnaire 

1 Question

  • Q1. How to design vacuum pump
  • Ans. 

    Designing a vacuum pump involves selecting the appropriate type, determining the required flow rate and pressure, and sizing the components.

    • Choose the type of vacuum pump based on the application (e.g. rotary vane, diaphragm, scroll, etc.)

    • Determine the required flow rate and pressure for the system

    • Size the components, including the pump, motor, and piping, to meet the flow rate and pressure requirements

    • Consider factors...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude is easy and if your basics are strong

Round 2 - Coding Test 

Coding round has 2 parts realtime coding and coding

Round 3 - Technical 

(2 Questions)

  • Q1. Asked about projects
  • Q2. Asked about oop concept
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Mar 2023. There were 2 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Sql related questions like temp tables, ctes, performance tuning. magic tables, how to read execution plan. error handling in stored procs.
  • Q2. SSIS questions related to multiple sources. transformations used, error logging, event handlers. conatiners.

Interview Preparation Tips

Interview preparation tips for other job seekers - BD is a product based company and it might take time for them to finalized so you need to have patience. Although my interview went pretty well but they took almost 40 days to tell me it is on hold.

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

Interview Questionnaire 

1 Question

  • Q1. Here they have work basically based on windows. So better to have c# and windows related stuff. Like win32, mfc, .net, c# . Here in my case I did not have experience in windows to ki made them clear about ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Two technical rounds were there and one more technical round with US panel were there. They were very cooperative.

I applied via Referral and was interviewed before Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Evaluation of tablets . principle of uv ir hplc gc, ph meter, solubility ranges ,bcs classification ,types of polymers, various excipients used in a formulation of tablets, binding agents ,types of tablets...

Interview Preparation Tips

Interview preparation tips for other job seekers - Moderate level if you prepare. Preparation is all the thing you need. For fresher their will be simple but be thorough with your project.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Why do you want this role?
  • Q2. What experience do you have that makes you suited to the role?
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 Resume 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

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic questions people struggle to speak English though
Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself.
  • Ans. 

    I am a highly motivated and experienced professional with a strong background in the field.

    • I have a Bachelor's degree in Business Administration.

    • I have over 5 years of experience working as an Associate in a reputable company.

    • I am skilled in data analysis, project management, and client relations.

    • I have successfully led a team of 10 members to achieve project goals within tight deadlines.

    • I am a quick learner and adapt

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I guess someone's who's been rejected in a BPO with a reason of communication will clear this organisations interview
Contribute & help others!
anonymous
You can choose to be anonymous

Thermo Fisher Scientific Interview FAQs

How many rounds are there in Thermo Fisher Scientific Junior Engineer interview?
Thermo Fisher Scientific interview process usually has 2 rounds. The most common rounds in the Thermo Fisher Scientific interview process are Resume Shortlist and Technical.

Recently Viewed

INTERVIEWS

Imarticus Learning

No Interviews

INTERVIEWS

HCLTech

No Interviews

SALARIES

Mentorsity

INTERVIEWS

Imarticus Learning

No Interviews

SALARIES

Baxter International

INTERVIEWS

HCLTech

No Interviews

INTERVIEWS

Imarticus Learning

No Interviews

INTERVIEWS

Seclore

No Interviews

SALARIES

Mentorsity

INTERVIEWS

Imarticus Learning

No Interviews

Tell us how to improve this page.

Interview Questions from Similar Companies

Biocon Limited Interview Questions
3.9
 • 152 Interviews
Panacea Biotec Interview Questions
3.7
 • 56 Interviews
Praj Industries Interview Questions
4.1
 • 36 Interviews
Jubilant Biosys Interview Questions
3.8
 • 36 Interviews
Avantor Interview Questions
3.5
 • 28 Interviews
View all

Thermo Fisher Scientific Junior Engineer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

2.0

Salary

2.0

Job security

1.0

Company culture

2.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
126 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer III
102 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Area Sales Manager
83 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer2
83 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
54 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Thermo Fisher Scientific with

Agilent Technologies

4.1
Compare

Danaher

4.0
Compare

PerkinElmer

4.2
Compare

Waters Corporation

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