Upload Button Icon Add office photos

Filter interviews by

Yotta Tech Ports Java Developer Interview Questions and Answers

Updated 4 Jul 2024

Yotta Tech Ports Java Developer Interview Experiences

2 interviews found

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

I applied via Referral and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Exception Handling, TRy catch,throw and throws key word
  • Q2. Multithreading, Puzless : candles,Water Containers,ropes,fake coin
Round 2 - Group Discussion 

Artificial Intelligence

Interview Preparation Tips

Interview preparation tips for other job seekers - There are Checking both technical and Logical thinking skills

Java Developer Interview Questions & Answers

user image Devendar Marepally

posted on 12 Jun 2024

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

Test-duration: 1hr
time and distance
ages
quantitative aptitude
problem-solving

Round 2 - Group Discussion 

Expected topic on AI
time duration 20 min

Round 3 - Coding Test 

Medium level
time duration: 60 min

Round 4 - Technical 

(2 Questions)

  • Q1. What is propagation
  • Ans. 

    Propagation refers to the process of passing an exception up the call stack until it is caught and handled.

    • Exceptions can be propagated from a method to its caller if not caught and handled within the method.

    • Propagation continues until an appropriate catch block is found to handle the exception.

    • Propagation allows for centralized exception handling in higher-level methods.

    • Example: If a method throws an IOException but d...

  • Answered by AI
  • Q2. What is HashMap. Differ between hashmap and hashset
  • Ans. 

    HashMap is a data structure in Java that stores key-value pairs. HashMap allows null keys and values, and does not maintain order.

    • HashMap uses key-value pairs to store and retrieve data efficiently.

    • HashMap allows null keys and values.

    • HashMap does not maintain order of elements.

    • HashSet is a collection of unique elements, does not allow duplicates.

    • HashSet does not have key-value pairs like HashMap.

  • Answered by AI

Skills evaluated in this interview

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 1You have been given an integer array/list(ARR) of size N ... read more
Q2. Parent class has run() and walk() . Parent run() - calls walk() C ... read more
asked in LTIMindtree
Q3. Longest Harmonious SubsequenceYou are given an array ‘ARR’ of 'N' ... read more
asked in Deloitte
Q4. Convert Bst To The Greater Sum TreeYou have been given a Binary S ... read more
Q5. 2. What will happen if hashcode only returns a constant? How will ... read more

Interview questions from similar companies

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

I applied via Company Website and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - HR 

(5 Questions)

  • Q1. Java & advance java,spring Boot
  • Ans. 

    I m to get yourlife company to work.

  • Answered Anonymously
  • Q2. Check my skills
  • Ans. 

    It's like technical round & Hr round , way of language speaking.

  • Answered Anonymously
  • Q3. I ability to doing work hard in this company
  • Q4. I'm have read to extra work form this company
  • Q5. I hope I think about me good everything it's OK thank you my side.

Interview Preparation Tips

Topics to prepare for Amazon Java Developer interview:
  • Core Java
  • JDBC
  • Servlets
  • Hibernate
  • Spring Boot
Interview preparation tips for other job seekers - Good
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. No one showed up to interview
  • Q2. Even they don’t responded to my mails

Interview Preparation Tips

Interview preparation tips for other job seekers - Respect other people time
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Regular core java, OOPS, Spring Boot questions. It was like a rapid-fire round.
Round 2 - One-on-one 

(3 Questions)

  • Q1. Coding question - find repeat elements in an array
  • Ans. 

    Find repeat elements in an array of strings

    • Iterate through the array and store each element in a HashMap with its count

    • Check if the count of any element is greater than 1, then it is a repeat element

    • Return the repeat elements found in the array

  • Answered by AI
  • Q2. Project related questions
  • Q3. Build a basic CRUD REST API endpoint
  • Ans. 

    Build a basic CRUD REST API endpoint

    • Create a REST API endpoint for each CRUD operation (Create, Read, Update, Delete)

    • Use HTTP methods like POST, GET, PUT, DELETE to perform CRUD operations

    • Implement data validation and error handling for each operation

    • Utilize a framework like Spring Boot or Express.js to simplify API development

  • Answered by AI
Round 3 - One-on-one 

(3 Questions)

  • Q1. Behavioral questions
  • Q2. Technical questions about SpringBoot and microservices
  • Q3. SQL question - third highest salary
  • Ans. 

    To find the third highest salary in a SQL table, you can use the 'SELECT TOP 1' statement with 'ORDER BY salary DESC OFFSET 2 ROWS FETCH NEXT 1 ROWS ONLY'.

    • Use the 'SELECT TOP 1' statement to retrieve only one record

    • Order the records by salary in descending order using 'ORDER BY salary DESC'

    • Skip the first two highest salaries using 'OFFSET 2 ROWS'

    • Fetch the next record after skipping the first two using 'FETCH NEXT 1 ROW

  • Answered by AI

Skills evaluated in this interview

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

Implementation of the Spring security

Interview Preparation Tips

Interview preparation tips for other job seekers - good
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
-

I applied via Referral and was interviewed in May 2023. 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 

(2 Questions)

  • Q1. What are the advantages of spring boot
  • Ans. 

    Spring Boot provides a simplified way to create stand-alone, production-grade Spring-based Applications.

    • Rapid application development

    • Embedded server for easy deployment

    • Auto-configuration for setting up Spring projects quickly

    • Microservices support

    • Actuator for monitoring and managing applications

  • Answered by AI
  • Q2. Java oops concept and sql questions
Round 3 - Technical 

(2 Questions)

  • Q1. Questions on the current project
  • Q2. Microservices architecture in spring microservices
  • Ans. 

    Microservices architecture in Spring is a way of designing software applications as a collection of loosely coupled services.

    • Microservices architecture breaks down a large application into smaller, independent services that can be developed, deployed, and scaled independently.

    • Spring Boot and Spring Cloud are commonly used frameworks for building microservices in Java.

    • Each microservice typically has its own database and...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
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 - Technical 

(2 Questions)

  • Q1. Java 8 new features
  • Ans. 

    Java 8 introduced several new features including lambda expressions, streams, and default methods.

    • Lambda expressions allow for functional programming and simplify code.

    • Streams provide a way to process collections of data in a functional way.

    • Default methods allow for adding new methods to interfaces without breaking existing implementations.

    • Other new features include the Date and Time API, Nashorn JavaScript engine, and...

  • Answered by AI
  • Q2. Stream api coding questions
Round 3 - Technical 

(2 Questions)

  • Q1. Your last project
  • Ans. 

    Developed a web-based inventory management system for a retail company

    • Used Java, Spring Boot, and MySQL for backend development

    • Implemented a responsive UI using AngularJS and Bootstrap

    • Integrated barcode scanning functionality for faster inventory management

    • Implemented user authentication and authorization using Spring Security

    • Deployed the application on AWS EC2 instance

  • Answered by AI
  • Q2. Challenged faced in last project
  • Ans. 

    Integrated a new payment gateway in the project

    • Had to understand the API documentation of the payment gateway

    • Had to modify the existing codebase to integrate the new gateway

    • Had to test the integration thoroughly to ensure it works as expected

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It had L1 and L2 round. L1 was about general questions and L2 was about your last project and experience.

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Jun 2023. There were 5 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 - Aptitude Test 

For freshers there is online aptitude test.

Round 3 - Coding Test 

Coding round is done by interviewers on live screen sharing

Round 4 - One-on-one 

(1 Question)

  • Q1. Here they discuss about projects and work in depth.
Round 5 - HR 

(2 Questions)

  • Q1. Tell me about yourself? What are your hobbies? If you get chance to work with our company what is your expectations from us?
  • Q2. Discuss about policies and work culture

I applied via Company Website and was interviewed in Dec 2021. There were 8 interview rounds.

Round 1 - Case Study 

Degree College ( B.C .A) group

Round 2 - Coding Test 
Round 3 - HR 

(1 Question)

  • Q1. What are your salary expectations?
Round 4 - Assignment 

Java developer

Round 5 - HR 

(5 Questions)

  • Q1. Tell me about yourself.
  • Q2. We want job? When coming to my mail in message
  • Q3. Who many salary in monthly income?
  • Q4. Which time open the office?
  • Q5. We given work from ?
Round 6 - One-on-one 

(3 Questions)

  • Q1. We want job? How much given in monthly income.?
  • Q2. We given work from home?
  • Q3. Where branch in Wipro BPS?
  • Ans. 

    Wipro BPS has multiple branches across India and globally.

    • Wipro BPS has branches in major cities like Bangalore, Chennai, Mumbai, Pune, Hyderabad, etc.

    • They also have branches in countries like the USA, UK, Australia, etc.

    • The exact branch location for a Java Developer role may depend on the project and client requirements.

  • Answered by AI
Round 7 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 8 - Group Discussion 

I am fresher in Wipro BPS

Interview Preparation Tips

Topics to prepare for Wipro Java Developer interview:
  • Java
  • Advanced Java
  • Java developer
  • Software Engineering
  • Software Testing
Interview preparation tips for other job seekers - I want job ? I am studying in degree College in B.C.A group

Yotta Tech Ports Interview FAQs

How many rounds are there in Yotta Tech Ports Java Developer interview?
Yotta Tech Ports interview process usually has 3 rounds. The most common rounds in the Yotta Tech Ports interview process are Group Discussion, Aptitude Test and Coding Test.
What are the top questions asked in Yotta Tech Ports Java Developer interview?

Some of the top questions asked at the Yotta Tech Ports Java Developer interview -

  1. What is HashMap. Differ between hashmap and hash...read more
  2. what is propagat...read more
  3. Exception Handling, TRy catch,throw and throws key w...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Yotta Tech Ports interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Associate Software Engineer
12 salaries
unlock blur

₹3.8 L/yr - ₹9.4 L/yr

Software Engineer
10 salaries
unlock blur

₹1.8 L/yr - ₹6.5 L/yr

Software Developer
7 salaries
unlock blur

₹0.7 L/yr - ₹4.5 L/yr

Associate Engineer
5 salaries
unlock blur

₹5.6 L/yr - ₹9.6 L/yr

Junior Software Engineer
5 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Explore more salaries
Compare Yotta Tech Ports with

Adani Ports and SEZ

3.9
Compare

Essar Ports

4.7
Compare

Jawaharlal Nehru Port Trust

4.3
Compare

Krishnapatnam Port

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview