Upload Button Icon Add office photos

Filter interviews by

Entranscend Consulting Fullstack Java Developer Interview Questions and Answers

Updated 4 May 2019

Entranscend Consulting Fullstack Java Developer Interview Experiences

1 interview found

I applied via Company Website and was interviewed in Nov 2018. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Print a pyramid in java or c.basic question from core java and android.basic question from html css javascript
  • Q2. Family background,tell me about yourself,why you choose it

Interview Preparation Tips

General Tips: what you have mention in your cv that is important and interviewer asked most of the question from your cv.basic knowledge whatever you had learn in your Btech.basic concept about core java,database,c etc
Skills: Communication, Body Language, Problem Solving, Time Management, Decision Making Skills
Duration: 1-4 weeks

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(4 Questions)

  • Q1. Java Basic questions
  • Q2. SpringBoot Basic questions
  • Q3. Simple DSA problem: "introduction" find duplicate characters
  • Ans. 

    Find duplicate characters in a given array of strings

    • Iterate through each string in the array

    • For each string, iterate through each character and store the count in a hashmap

    • If the count of any character is greater than 1, it is a duplicate

  • Answered by AI
  • Q4. Write code for REST API using spring boot, include all annotation
  • Ans. 

    Code for REST API using Spring Boot with annotations

    • Use @RestController annotation to define the class as a REST controller

    • Use @RequestMapping annotation to map HTTP requests to handler methods

    • Use @GetMapping, @PostMapping, @PutMapping, @DeleteMapping annotations for specific HTTP methods

    • Use @PathVariable annotation to extract values from the URI

    • Use @RequestBody annotation to bind HTTP request body to a method paramete

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Tech panel did not show up

Interview Preparation Tips

Interview preparation tips for other job seekers - Very Bad Process. They kept rescheduling the interview call.
First they scheduled the Technical interview. Sent the invites & then when I joined at the particular time - HR came on the call instead of tech panel & told that interviewer is busy ,got some other interview going on. So, cant have it right now.
This kind of thing happened 3 times where none of tech panel show up.
Very bad. Not expecting from such a big company like Wipro.

Afterwards, they dont even pick call. They just call randomly & setup an interview. And then cancel it. Very unprofessional.
Interview experience
4
Good
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 - Coding Test 

(9 Questions)

  • Q1. What is sychronization ?
  • Ans. 

    Synchronization is the process of coordinating multiple threads to ensure safe and consistent access to shared resources.

    • Synchronization is used to prevent race conditions and ensure thread safety.

    • It can be achieved using synchronized blocks or methods.

    • Synchronization can cause performance issues if not used properly.

    • Example: Synchronizing access to a shared counter variable in a multi-threaded application.

  • Answered by AI
  • Q2. What is encapsulation ?
  • Ans. 

    Encapsulation is the process of hiding implementation details and providing access to only necessary information.

    • Encapsulation is achieved through access modifiers such as public, private, and protected.

    • It helps in achieving data abstraction and information hiding.

    • Encapsulation provides better control over the data and prevents unauthorized access.

    • Example: A class with private variables and public methods to access the...

  • Answered by AI
  • Q3. What is interface in java ?
  • Ans. 

    An interface in Java is a collection of abstract methods and constants that can be implemented by a class.

    • Interfaces are used to achieve abstraction and provide a way to implement multiple inheritance in Java.

    • All methods in an interface are abstract by default and cannot have a body.

    • A class can implement multiple interfaces but can only extend one class.

    • Interfaces can also have default and static methods with a body.

    • Ex...

  • Answered by AI
  • Q4. What is collection framework?
  • Ans. 

    Collection framework is a set of classes and interfaces that provide a way to store and manipulate groups of objects.

    • It provides interfaces like List, Set, Queue, etc. for storing collections of objects.

    • It also provides classes like ArrayList, HashSet, PriorityQueue, etc. that implement these interfaces.

    • It allows easy manipulation of collections using methods like add, remove, contains, etc.

    • It provides algorithms like ...

  • Answered by AI
  • Q5. What is diffrence between Arraylist and vector ?
  • Ans. 

    ArrayList is not synchronized while Vector is synchronized.

    • ArrayList is faster than Vector as it is not synchronized.

    • Vector is thread-safe while ArrayList is not.

    • Vector is a legacy class while ArrayList is not.

    • Vector can grow by a specified amount while ArrayList grows by 50% of its size.

    • Example: ArrayList list = new ArrayList<>(); Vector vector = new Vector<>();

    • Example: list.add(1); vector.add(1);

    • Example: list.get(0);

  • Answered by AI
  • Q6. What are the legacy classes in java?
  • Ans. 

    Legacy classes in Java are the classes that have been replaced by newer versions but are still supported for backward compatibility.

    • Legacy classes are part of the Java API and are still supported for backward compatibility.

    • They have been replaced by newer versions but are still used in older applications.

    • Examples of legacy classes include Vector, Hashtable, and Enumeration.

    • Legacy classes are not recommended for use in ...

  • Answered by AI
  • Q7. What is joins in SQL ?
  • Ans. 

    Joins in SQL are used to combine data from two or more tables based on a related column.

    • Joins are used to retrieve data from multiple tables in a single query.

    • There are different types of joins such as inner join, left join, right join, and full outer join.

    • Inner join returns only the matching rows from both tables, left join returns all rows from the left table and matching rows from the right table, right join returns...

  • Answered by AI
  • Q8. What is autoboxing and auto-unboxing ?
  • Ans. 

    Autoboxing is the automatic conversion of primitive data types to their corresponding object wrapper classes.

    • Autoboxing allows primitive data types to be used as objects.

    • Auto-unboxing is the reverse process of autoboxing.

    • Autoboxing and auto-unboxing are performed automatically by the compiler.

    • Example: int i = 10; Integer j = i; // autoboxing

    • Example: Integer j = 10; int i = j; // auto-unboxing

  • Answered by AI
  • Q9. Difference between where clause and having clause in SQL ?
  • Ans. 

    Where clause filters rows before grouping, having clause filters groups after grouping.

    • Where clause is used to filter rows based on a condition before grouping.

    • Having clause is used to filter groups based on a condition after grouping.

    • Where clause is used with SELECT, UPDATE, DELETE statements.

    • Having clause is used with SELECT statement and GROUP BY clause.

    • Where clause cannot contain aggregate functions.

    • Having clause c...

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn

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 - Assignment 

Coding is little difficult so please go through logic

Round 3 - Technical 

(2 Questions)

  • Q1. The interview is based on the skills you mentioned in resume
  • Q2. What is the use of Java
  • Ans. 

    Java is a versatile programming language used for developing a wide range of applications, from web and mobile apps to enterprise systems.

    • Java is used for developing web applications, mobile applications, desktop applications, and enterprise systems.

    • It is commonly used in backend development for server-side programming.

    • Java is also used in game development, scientific applications, and big data processing.

    • It is platfor...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Atos is the only company where many freshers are forced to resign as they don't have projects

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

(2 Questions)

  • Q1. Differences between promises and observables
  • Ans. 

    Promises are used for a single async operation while observables handle multiple async operations and can be cancelled.

    • Promises are eager, meaning they start immediately upon creation.

    • Observables are lazy, meaning they only start when subscribed to.

    • Promises can only handle a single value or error, while observables can handle multiple values over time.

    • Observables can be cancelled, while promises cannot be cancelled.

    • Pro...

  • Answered by AI
  • Q2. Angular vs react differences
  • Ans. 

    Angular and React are both popular front-end frameworks, but they have some key differences in terms of architecture, syntax, and ecosystem.

    • Angular is a full-fledged framework with a steep learning curve, while React is a library that is more flexible and easier to learn.

    • Angular uses two-way data binding, while React uses one-way data flow.

    • Angular has a more opinionated architecture and provides more out-of-the-box fea...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep attending more Interviews.work on sure shot questions. Maintain goood attitude learn from rejections and get better everyday.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(4 Questions)

  • Q1. Java Basic questions
  • Q2. SpringBoot Basic questions
  • Q3. Simple DSA problem: "introduction" find duplicate characters
  • Ans. 

    Find duplicate characters in a given array of strings

    • Iterate through each string in the array

    • For each string, iterate through each character and store the count in a hashmap

    • If the count of any character is greater than 1, it is a duplicate

  • Answered by AI
  • Q4. Write code for REST API using spring boot, include all annotation
  • Ans. 

    Code for REST API using Spring Boot with annotations

    • Use @RestController annotation to define the class as a REST controller

    • Use @RequestMapping annotation to map HTTP requests to handler methods

    • Use @GetMapping, @PostMapping, @PutMapping, @DeleteMapping annotations for specific HTTP methods

    • Use @PathVariable annotation to extract values from the URI

    • Use @RequestBody annotation to bind HTTP request body to a method paramete

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Java 8 code to find occurrence
  • Ans. 

    Java 8 code to find occurrence of a specific string in an array of strings

    • Use Java 8 Stream API to filter the array of strings based on the specific string

    • Count the occurrences of the specific string using the 'count' method

    • Return the count of occurrences

  • Answered by AI
  • Q2. Core java questions
  • Q3. Collection questions
  • Q4. Spring boot question
Round 2 - HR 

(2 Questions)

  • Q1. Basic introduction
  • Q2. Salary discussion

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - 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 2 - Aptitude Test 

Train and time and work

Round 3 - Technical 

(3 Questions)

  • Q1. Python fullstack
  • Q2. Introduction,projects,skills,strenths,habies,goles
  • Q3. Python fullstack with django

Interview Preparation Tips

Topics to prepare for Infosys Python Fullstack Developer interview:
  • about myself
  • my skills
  • strenths
  • projectwork
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on data types, tuples, generators and iterators.
  • Q2. Definitions of above was expected

Tell us how to improve this page.

People are getting interviews through

based on 1 Entranscend Consulting interview
Company Website
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
WNS Interview Questions
3.4
 • 957 Interviews
IQVIA Interview Questions
3.9
 • 453 Interviews
Goldman Sachs Interview Questions
3.6
 • 404 Interviews
Atos Interview Questions
3.9
 • 362 Interviews
TCE Interview Questions
3.8
 • 239 Interviews
View all

Entranscend Consulting Fullstack Java Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

4.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
Senior Systems Engineer
4 salaries
unlock blur

₹2.2 L/yr - ₹3 L/yr

System Engineer
3 salaries
unlock blur

₹1.1 L/yr - ₹1.8 L/yr

Fullstack Java Developer
3 salaries
unlock blur

₹1 L/yr - ₹1.5 L/yr

Explore more salaries
Compare Entranscend Consulting with

Wipro

3.7
Compare

Infosys

3.7
Compare

Tech Mahindra

3.6
Compare

WNS

3.4
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