Upload Button Icon Add office photos
Engaged Employer

i

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

Utthunga Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Utthunga Technologies Interview Questions and Answers for Experienced

Updated 16 Jan 2025

Utthunga Technologies Interview Experiences for Experienced

Popular Designations

13 interviews found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(4 Questions)

  • Q1. Questions related to html5, css3, angular. project based questions
  • Q2. Difference between var let and const
  • Ans. 

    var is function scoped, let is block scoped, const is block scoped and cannot be reassigned.

    • var is function scoped, let is block scoped, const is block scoped and cannot be reassigned

    • var can be redeclared and updated, let can be updated but not redeclared, const cannot be redeclared or updated

    • Use const for values that should not change, use let for values that may change, use var sparingly

  • Answered by AI
  • Q3. Angular component communication,rxjs, state management
  • Q4. Callback,timeout related questions

Skills evaluated in this interview

Lead UI Developer Interview Questions asked at other Companies

Q1. difference between var let and const
View answer (1)
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Technical 

(1 Question)

  • Q1. About plant and designing

Interview Preparation Tips

Interview preparation tips for other job seekers - No

Process Engineer Interview Questions asked at other Companies

Q1. What is APQP and where is it used. And how many phases does it have? and fmea which phase are performed?
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Feb 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Swift interview questions

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Questions related to your profile

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

Utthunga Technologies interview questions for popular designations

 Software Developer

 (4)

 Software Engineer

 (2)

 Embedded Testing Engineer

 (2)

 Senior Software Engineer

 (2)

 Java Developer

 (2)

 Process Engineer

 (1)

 Software Tester

 (1)

 Associate Engineer

 (1)

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Technical 

(1 Question)

  • Q1. Pump, compressor

Senior Process Engineer Interview Questions asked at other Companies

Q1. Which method to find no of plates in distillation column?
View answer (2)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Feb 2023. 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. Explain Oops concepts in c# Solid and design principles Task vs thread Difference between interface and abstract class
  • Ans. 

    OOPs concepts in C#, SOLID and design principles, Task vs Thread, Interface vs Abstract class

    • OOPs concepts in C# include encapsulation, inheritance, polymorphism, and abstraction

    • SOLID principles are Single Responsibility, Open/Closed, Liskov Substitution, Interface Segregation, and Dependency Inversion

    • Task is a unit of work in C# that represents an asynchronous operation, while Thread is a separate path of execution wi...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Same as 1 st round with programing questions
Round 4 - One-on-one 

(1 Question)

  • Q1. Explain singleton design pattern, And general questions

Skills evaluated in this interview

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 (203)

Jobs at Utthunga Technologies

View all
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 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 

(2 Questions)

  • Q1. Questions about the DCS system Questions about PLC Questions about Process you are into
  • Q2. Questions about PID Questions about Process again

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident even if you are wrong and accept if you don't know
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Python basics questions
  • Q2. Git basic questions
Round 2 - Technical 

(1 Question)

  • Q1. Jenkins basic questions

Embedded Testing Engineer Interview Questions asked at other Companies

Q1. Data structures which I have learnt during college days STL classes which I have seen during my work
View answer (1)

Team Lead Interview Questions & Answers

user image Anonymous

posted on 18 Apr 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Apr 2023.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Technical Question regarding Heavy Motor Vehicles
  • Q2. Excavator and Haul Truck FMEA

Team Lead Interview Questions asked at other Companies

Q1. write a java program to get maxing profit by buying and selling a share from a given set of values (they will change the question after you give solution, like if consider buying only once and selling once they will say to buying multiple t... read more
View answer (3)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What self keyword Write code in python
  • Ans. 

    The self keyword in Python is a reference to the current instance of a class.

    • self is always the first parameter in a method within a class

    • It is used to access variables and methods within the class

    • Example: class MyClass: def __init__(self, x): self.x = x def print_x(self): print(self.x)

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. What do you know about the company

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Skills evaluated in this interview

Embedded Testing Engineer Interview Questions asked at other Companies

Q1. Data structures which I have learnt during college days STL classes which I have seen during my work
View answer (1)

Utthunga Technologies Interview FAQs

How many rounds are there in Utthunga Technologies interview for experienced candidates?
Utthunga Technologies interview process for experienced candidates usually has 1-2 rounds. The most common rounds in the Utthunga Technologies interview process for experienced candidates are Technical, Resume Shortlist and One-on-one Round.
How to prepare for Utthunga Technologies interview for experienced candidates?
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 Utthunga Technologies. The most common topics and skills that interviewers at Utthunga Technologies expect are Communication Skills, C++, Embedded C, Python and Programming.
What are the top questions asked in Utthunga Technologies interview for experienced candidates?

Some of the top questions asked at the Utthunga Technologies interview for experienced candidates -

  1. Explain Oops concepts in c# Solid and design principles Task vs thread Differen...read more
  2. difference between var let and co...read more
  3. What self keyword Write code in pyt...read more
How long is the Utthunga Technologies interview process?

The duration of Utthunga Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Utthunga Technologies Interview Process for Experienced

based on 10 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Cyient Interview Questions
3.6
 • 284 Interviews
KPIT Technologies Interview Questions
3.4
 • 281 Interviews
View all

Utthunga Technologies Reviews and Ratings

based on 181 reviews

3.3/5

Rating in categories

3.3

Skill development

2.9

Work-life balance

3.0

Salary

3.1

Job security

3.0

Company culture

2.8

Promotions

3.0

Work satisfaction

Explore 181 Reviews and Ratings
SAP DMC and Agile PLM Integrator / Engineer

Bangalore / Bengaluru

3-6 Yrs

Not Disclosed

SAP Solutions Architect and Consultant (Americas Market)

Bangalore / Bengaluru

8-11 Yrs

Not Disclosed

Senior Engineer- Dynamic Simulation

Pune

4-5 Yrs

Not Disclosed

Explore more jobs
Software Engineer
233 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
155 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
134 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
74 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
60 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Utthunga Technologies with

L&T Technology Services

3.3
Compare

TCS

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

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