Upload Button Icon Add office photos

Filter interviews by

Telesoft Labs Junior Java Developer Interview Questions and Answers

Updated 4 Apr 2024

Telesoft Labs Junior Java Developer Interview Experiences

2 interviews found

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

I applied via Referral and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic Aptitude questions were asked

Round 2 - Technical 

(2 Questions)

  • Q1. Array programs, SQL queries
  • Q2. String manipulation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude topics.

Round 2 - Technical 

(2 Questions)

  • Q1. Springboot concepts, array
  • Q2. String manipulation

Junior Java Developer Interview Questions Asked at Other Companies

Q1. What are the dependencies that are present in spring and explain ... read more
Q2. Why we need Oops concepts? What is Constructor? Need of Construct ... read more
Q3. Can you override static method ?
Q4. 1)What are the aggregade functions sql?
Q5. What is OOPs concept in Java? Explain what Inheritance is, polymo ... read more

Interview questions from similar companies

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

(2 Questions)

  • Q1. Ooops questions asked for me
  • Q2. Collections questions asked for me
Round 2 - HR 

(1 Question)

  • Q1. Normal questions

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

(3 Questions)

  • Q1. Ddl dml dcl TCL join
  • Q2. Ddl dml dcl TCL join no multiple questions
  • Q3. No multiple questions

Interview Preparation Tips

Interview preparation tips for other job seekers - To obtain a challenging carrier in the IT industry and put my all efforts into the growth of the organisation and have a great working environment

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

Aptitude test like technical questions

Round 3 - Coding Test 

Coding test for technical analysis

Round 4 - HR 

(1 Question)

  • Q1. HR is asking same basic questions java
Round 5 - Technical 

(2 Questions)

  • Q1. Technical questions asked
  • Q2. Full stack java developer

Interview Preparation Tips

Interview preparation tips for other job seekers - Core java, Advance Java, Oracle, Spring, HTML5, CSS, JavaScript and Angular-13
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Core java , Collections, OOP
  • Q2. Spring , Mysql, Hibernate, Machine test

I applied via Naukri.com and was interviewed in Jul 2022. There were 3 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 - Technical 

(1 Question)

  • Q1. Self introduction , Java releted questions
Round 3 - HR 

(1 Question)

  • Q1. Company related questions and salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to work on our company i'm waiting for your response
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(7 Questions)

  • Q1. What are primitive and non primitive data types
  • Ans. 

    Primitive data types are basic data types provided by the programming language, while non-primitive data types are created by the programmer.

    • Primitive data types include int, float, double, char, boolean, etc.

    • Non-primitive data types include arrays, classes, interfaces, etc.

    • Primitive data types store actual values, while non-primitive data types store references to objects.

  • Answered by AI
  • Q2. What are access modifiers and non access modifiers
  • Ans. 

    Access modifiers control the visibility of classes, methods, and variables. Non-access modifiers provide additional functionality.

    • Access modifiers: public, private, protected, default

    • Non-access modifiers: static, final, abstract, synchronized

    • Example: public class MyClass { private int myVar; }

  • Answered by AI
  • Q3. What are all Java 8 features and explain the one which we have used in our project
  • Ans. 

    Java 8 features include lambda expressions, functional interfaces, streams, and more.

    • Lambda expressions allow concise syntax for defining anonymous functions.

    • Functional interfaces can have only one abstract method and are used for lambda expressions.

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

    • Optional class helps to avoid NullPointerException by wrapping a value that may be null.

  • Answered by AI
  • Q4. CICD tools which we have used explain in high level
  • Ans. 

    CICD tools automate the process of building, testing, and deploying code changes.

    • Popular CICD tools include Jenkins, GitLab CI/CD, CircleCI, and Travis CI

    • These tools help in automating the software development lifecycle

    • They enable continuous integration, continuous delivery, and continuous deployment

    • CICD tools help in improving code quality, reducing manual errors, and increasing development speed

  • Answered by AI
  • Q5. What is containerization
  • Ans. 

    Containerization is a lightweight, portable, and self-sufficient way to package and run applications.

    • Containerization involves encapsulating an application and its dependencies into a container image.

    • Containers are isolated from each other and share the host OS kernel.

    • Popular containerization platforms include Docker and Kubernetes.

    • Containerization allows for easy deployment and scaling of applications.

  • Answered by AI
  • Q6. What is indexing in sql
  • Ans. 

    Indexing in SQL is a technique used to improve the performance of queries by creating a data structure that allows for faster retrieval of data.

    • Indexes are created on columns in a database table to speed up the retrieval of rows that match a certain condition in a query.

    • They work similar to the index in a book, allowing the database to quickly locate the rows that satisfy the query.

    • Indexes can be created using a single...

  • Answered by AI
  • Q7. Programming question on stream like finding the longest string in a given list of string

Skills evaluated in this interview

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

I was interviewed in Feb 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Why string immutable
  • Ans. 

    String is immutable in Java to ensure security, thread safety, and optimization.

    • Immutable strings prevent accidental changes to sensitive data like passwords.

    • Immutable strings allow for safe sharing of data across multiple threads.

    • Immutable strings enable string pooling for memory optimization.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Questions about spring boot annotations

Skills evaluated in this interview

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 May 2024. There was 1 interview round.

Round 1 - Coding Test 

1. Basic Java
2. Code Snippet
3. Microservices

Telesoft Labs Interview FAQs

How many rounds are there in Telesoft Labs Junior Java Developer interview?
Telesoft Labs interview process usually has 2 rounds. The most common rounds in the Telesoft Labs interview process are Aptitude Test and Technical.
What are the top questions asked in Telesoft Labs Junior Java Developer interview?

Some of the top questions asked at the Telesoft Labs Junior Java Developer interview -

  1. Array programs, SQL quer...read more
  2. Springboot concepts, ar...read more
  3. String manipulat...read more

Tell us how to improve this page.

Telesoft Labs Junior Java Developer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more
Software Developer
6 salaries
unlock blur

₹1.2 L/yr - ₹2.4 L/yr

Java Developer
4 salaries
unlock blur

₹2 L/yr - ₹3.6 L/yr

Technical Support Engineer
4 salaries
unlock blur

₹2 L/yr - ₹3.2 L/yr

Linux Administrator
4 salaries
unlock blur

₹3.2 L/yr - ₹4.8 L/yr

Senior Technical Support Engineer
4 salaries
unlock blur

₹2.3 L/yr - ₹3.6 L/yr

Explore more salaries
Compare Telesoft Labs with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

HCLTech

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