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 Java Developer Interview Questions and Answers

Updated 16 Jan 2025

Utthunga Technologies Java Developer Interview Experiences

2 interviews found

Java Developer Interview Questions & Answers

user image ABHISHEK INGLE

posted on 16 Jan 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java, Spring Boot Questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basics of java and some of the programs on java

Round 2 - Technical 

(1 Question)

  • Q1. All the basics of java and sql
Round 3 - HR 

(1 Question)

  • Q1. About myself and company

Interview Preparation Tips

Interview preparation tips for other job seekers - Best company to start the career for freshers
And best place to improve your knowledge on various technology

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size ... read more
Q2. Parent class has run() and walk() . Parent run() - calls walk() C ... read more
asked in Infosys
Q3. Which should be preferred between String and StringBuffer when th ... read more
asked in Deloitte
Q4. Convert BST to Greater Sum Tree Given a Binary Search Tree (BST) ... read more
Q5. 2. What will happen if hashcode only returns a constant? How will ... read more

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Jan 2022. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. OOPs concepts and program on linked list reversal and c pointer concepts
Round 2 - Technical 

(1 Question)

  • Q1. OOPs concepts,C basis, IPC and signals
Round 3 - Technical 

(1 Question)

  • Q1. OOPs concepts, c basics, data structures
Round 4 - HR 

(5 Questions)

  • Q1. Share details of your previous job.
  • Q2. What are your salary expectations?
  • Q3. What is your family background?
  • Q4. Why are you looking for a change?
  • Q5. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Have gone though 3 levels of technical interviews followed by manageral discussion and HR discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Given programming questions
String programs

Round 2 - Technical 

(1 Question)

  • Q1. Asked basic to intermediate level questions Datatypes OOP concepts Code snippets

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics clearly with understanding.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Jan 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. 1. Basic OOP Concepts 2. Difference between structure and class in terms of constructor 3. Can members of structure be defined as private 4. What's lambda function and it's real life use case 5. Difference...
  • Q2. 6. What's O(n) in time and space complexity
  • Ans. 

    O(n) refers to linear time and space complexity.

    • O(n) means that the time or space required by an algorithm grows linearly with the size of the input.

    • It implies that the algorithm's performance is directly proportional to the input size.

    • For example, if an algorithm takes 10 seconds to process 100 elements, it would take 20 seconds to process 200 elements.

    • O(n) complexity is considered efficient and desirable in most case

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basic clear and talk as much as possible

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Sep 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 

(5 Questions)

  • Q1. What is copy constructor?
  • Ans. 

    Copy constructor is a special type of constructor which creates a new object as a copy of an existing object.

    • Copy constructor is used to initialize a new object as a copy of an existing object.

    • It takes an object of the same class as a parameter.

    • It is called automatically when a new object is created from an existing object.

    • Example: class MyClass { public: MyClass(const MyClass& obj) { // copy constructor logic } };

  • Answered by AI
  • Q2. Difference between copy constructor and assignment operator
  • Ans. 

    Copy constructor is used to create a new object as a copy of an existing object, while assignment operator is used to assign values from one object to another.

    • Copy constructor is called when a new object is created from an existing object, while assignment operator is called when an existing object is assigned values from another object.

    • Copy constructor creates a new object with its own memory space, while assignment o...

  • Answered by AI
  • Q3. What is static function
  • Ans. 

    A static function is a function that is associated with a class rather than an instance of the class.

    • Static functions can be called without creating an instance of the class.

    • Static functions are commonly used for utility functions that do not require access to instance-specific data.

    • Static functions are declared using the 'static' keyword in many programming languages.

    • Example: 'Math.max()' in JavaScript is a static fun

  • Answered by AI
  • Q4. Write Fibonacci series
  • Ans. 

    Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • Start with 0 and 1 as the first two numbers in the series

    • Add the previous two numbers to get the next number in the series

    • Repeat this process to generate the Fibonacci series

  • Answered by AI
  • Q5. What is single ton design pattern
  • Ans. 

    Singleton design pattern ensures a class has only one instance and provides a global point of access to it.

    • Ensures a class has only one instance

    • Provides a global point of access to that instance

    • Commonly used in scenarios where only one instance of a class is needed, such as database connections or logging

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If ur c++ developer go through the c++ 11/14 concept

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is the concept of virtual inheritance in relation to vtables and vptrs in object-oriented programming?
  • Ans. 

    Virtual inheritance allows a derived class to inherit from a base class without creating duplicate base class subobjects.

    • Virtual inheritance is used to resolve the Diamond Problem in C++ where a class inherits from two classes that have a common base class.

    • It ensures that only one copy of the base class is inherited by the derived class.

    • Virtual inheritance introduces a virtual base class subobject to the derived class,...

  • Answered by AI
  • Q2. Explained about vtptr and vtable initialisation and structure
Round 2 - Technical 

(1 Question)

  • Q1. What is the implementation of a class for string operations?
  • Ans. 

    A class for string operations can include methods for concatenation, substring extraction, length calculation, etc.

    • Create a class with methods like concatenateStrings, extractSubstring, calculateLength, etc.

    • Use string manipulation functions like substring, concat, length, etc. within the class methods.

    • Ensure error handling for edge cases like empty strings or out-of-bounds indices.

    • Example: class StringOperations { conc...

  • Answered by AI
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Why do you want to join this company?
  • Ans. 

    I admire your company's innovative approach and commitment to quality, which aligns with my career goals and values as a developer.

    • Your company's focus on cutting-edge technology, like AI and machine learning, excites me as I want to work on impactful projects.

    • I appreciate your commitment to professional development, such as mentorship programs, which will help me grow my skills.

    • The collaborative culture here fosters c...

  • Answered by AI
  • Q2. What are the sql constraints?
  • Ans. 

    SQL constraints are rules applied to table columns to enforce data integrity and validity.

    • PRIMARY KEY: Uniquely identifies each record in a table. Example: `CREATE TABLE Users (UserID INT PRIMARY KEY);`

    • FOREIGN KEY: Ensures referential integrity between two tables. Example: `FOREIGN KEY (UserID) REFERENCES Users(UserID)`.

    • UNIQUE: Ensures all values in a column are different. Example: `CREATE TABLE Users (Email VARCHAR(25...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024.

Round 1 - Aptitude Test 

The aptitude test is beneficial and somewhat easy.

Round 2 - Coding Test 

The coding test was both successful and somewhat challenging.

Round 3 - Group Discussion 

Group discussions are highly beneficial.

Round 4 - Technical 

(2 Questions)

  • Q1. What is the concept of Object-Oriented Programming (OOP) in Python?
  • Ans. 

    Object-Oriented Programming (OOP) in Python is a programming paradigm based on objects and classes to structure code effectively.

    • Encapsulation: Bundling data and methods that operate on the data within one unit (class). Example: class Dog with attributes and methods.

    • Inheritance: Mechanism to create a new class using properties of an existing class. Example: class Bulldog inherits from class Dog.

    • Polymorphism: Ability to...

  • Answered by AI
  • Q2. What can you tell me about machine learning algorithms?
  • Ans. 

    Machine learning algorithms enable computers to learn from data and make predictions or decisions without explicit programming.

    • Supervised Learning: Algorithms learn from labeled data. Example: Linear Regression for predicting house prices.

    • Unsupervised Learning: Algorithms identify patterns in unlabeled data. Example: K-Means Clustering for customer segmentation.

    • Reinforcement Learning: Algorithms learn by interacting wi...

  • Answered by AI
Round 5 - HR 

(2 Questions)

  • Q1. Can you tell me about yourself?
  • Q2. What makes you a suitable candidate for this position?
  • Ans. 

    I possess a blend of relevant skills, experience, and a strong commitment to contributing positively to your team.

    • Strong analytical skills: In my previous role, I successfully analyzed market trends to improve product positioning.

    • Team collaboration: I led a project team that increased efficiency by 20% through effective communication and delegation.

    • Adaptability: I quickly learned new software tools that enhanced our wo...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Simply prepare the items listed in your resume, and always maintain confidence, regardless of whether you know the answers to the questions or not.

I applied via Referral and was interviewed before Jun 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 - One-on-one 

(1 Question)

  • Q1. Your identified development ar Expectations from New role and organisations

Interview Preparation Tips

Interview preparation tips for other job seekers - Be real, do not make things up.
Ingenuity can be caught easily

Utthunga Technologies Interview FAQs

How many rounds are there in Utthunga Technologies Java Developer interview?
Utthunga Technologies interview process usually has 2-3 rounds. The most common rounds in the Utthunga Technologies interview process are Technical, Resume Shortlist and Aptitude Test.
How to prepare for Utthunga Technologies Java Developer 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 Utthunga Technologies. The most common topics and skills that interviewers at Utthunga Technologies expect are Java, OOP, RDBMS and Spring.
What are the top questions asked in Utthunga Technologies Java Developer interview?

Some of the top questions asked at the Utthunga Technologies Java Developer interview -

  1. All the basics of java and ...read more
  2. Java, Spring Boot Questi...read more

Tell us how to improve this page.

Utthunga Technologies Java Developer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Falcon Autotech Interview Questions
3.9
 • 45 Interviews
GKN Interview Questions
3.8
 • 22 Interviews
TMEIC Interview Questions
3.8
 • 19 Interviews
Festo Interview Questions
3.9
 • 18 Interviews
View all
Utthunga Technologies Java Developer Salary
based on 4 salaries
₹3.6 L/yr - ₹16 L/yr
85% more than the average Java Developer Salary in India
View more details

Utthunga Technologies Java Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

4.0

Work-life balance

3.0

Salary

5.0

Job security

4.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
230 salaries
unlock blur

₹4 L/yr - ₹15.6 L/yr

Senior Software Engineer
161 salaries
unlock blur

₹6.9 L/yr - ₹22.5 L/yr

Associate Software Engineer
134 salaries
unlock blur

₹2.5 L/yr - ₹6.8 L/yr

Software Developer
73 salaries
unlock blur

₹3.5 L/yr - ₹15 L/yr

Technical Lead
62 salaries
unlock blur

₹8.5 L/yr - ₹27 L/yr

Explore more salaries
Compare Utthunga Technologies with

Rockwell Automation

3.7
Compare

GKN

3.8
Compare

Titan Engineering & Automation

4.0
Compare

Falcon Autotech

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