Upload Button Icon Add office photos
Engaged Employer

i

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

GlobalLogic Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 4.3k Reviews

Filter interviews by

GlobalLogic Java Back End Developer Interview Questions and Answers

Updated 31 Oct 2022

GlobalLogic Java Back End Developer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in May 2022. There were 3 interview rounds.

Round 1 - Coding Test 

It was easy coding test they give a array based question

Round 2 - Technical 

(1 Question)

  • Q1. Full java core questions like garbage collector, oops concept, exception handling, collection framework, Why String is immutable, moltithreding
Round 3 - HR 

(1 Question)

  • Q1. Nothing sallary discussion and location

Interview Preparation Tips

Interview preparation tips for other job seekers - Start preparation from scratch of java like jvm jre and jdk then come on features of java then about main function related questions and after that static keyword and final keyword then come on constructor and constructor can be static or not then all oops concept then collection framework, exception handling, garbage collection, finally,finalize,and java8 features from that you can easily crack any interview of 1 year experience and fresher

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Java 8 features
  • Q2. Collections , and internal working hashmap
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain architecture of your project
  • Q2. Some questions on Java, Spring Boot and sql
Round 2 - Technical 

(2 Questions)

  • Q1. Project flow and some behavioural questions
  • Q2. Project contribution of yours
  • Ans. 

    Developed a web application for tracking employee attendance and performance

    • Implemented user authentication and authorization using Spring Security

    • Utilized Hibernate for database interaction and data persistence

    • Designed and developed RESTful APIs for frontend integration

    • Used AngularJS for frontend development to create interactive user interfaces

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Basic formalities before offer release

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand your project properly and have your basic of programming very clear
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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. JVM related Questions
  • Q2. Angular features
  • Q3. React Features and how to deploy
  • Ans. 

    React is a JavaScript library for building user interfaces. Deployment can be done using various methods.

    • React features include virtual DOM, component-based architecture, JSX syntax, and state management.

    • Deployment can be done using tools like Heroku, Netlify, AWS, or manually by building and serving static files.

    • Continuous integration and deployment (CI/CD) pipelines can be set up to automate the deployment process.

    • Se...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Wasted my time interviewers are not good in this company mostly they wont select you since your are not from south India. They will ask some question even if you ask all correct they will not select you bcos they already have selected other person and just finishes interview in 15min and so. Advice: Don't waste time.

Skills evaluated in this interview

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

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

Round 1 - Group Discussion 

They asked question about myself

Round 2 - Coding Test 

Gave codeing in advance java concepts

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

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

Round 1 - Coding Test 

1. Find longest repeating character from back.
2. Find all non-duplicates in an array and return in sorted manner.

Round 2 - One-on-one 

(11 Questions)

  • Q1. Suppose we have more 2 interfaces with the same default method. What will happen when we try to implment both the interfaces in the same class.?
  • Ans. 

    The class will have to provide its own implementation of the conflicting default method.

    • When implementing multiple interfaces with the same default method, a class must provide its own implementation of the conflicting method.

    • The class cannot inherit the default implementation from both interfaces.

    • The class can choose to implement one of the default methods and provide its own implementation for the other.

    • Alternatively...

  • Answered by AI
  • Q2. Terminal vs Intermediate Operations in streams
  • Ans. 

    Terminal operations in streams produce a result or a side effect, while intermediate operations transform or filter the data.

    • Terminal operations are the final operations in a stream pipeline, such as forEach, collect, or reduce.

    • Intermediate operations are operations that can be chained together, such as filter, map, or sorted.

    • Terminal operations trigger the processing of the stream and produce a result or a side effect...

  • Answered by AI
  • Q3. Try vs try-with-resources
  • Ans. 

    try vs try-with-resources

    • The 'try' statement is used to define a block of code to be tested for exceptions.

    • The 'try-with-resources' statement is used to automatically close resources that implement the AutoCloseable interface.

    • Try-with-resources is more concise and less error-prone compared to try-catch-finally.

    • Try-with-resources can handle multiple resources in a single statement.

  • Answered by AI
  • Q4. Iterator vs ListIterator
  • Ans. 

    Iterator is a universal interface for iterating over a collection, while ListIterator is a specialized interface for iterating over lists.

    • Iterator can only move forward, while ListIterator can move in both directions.

    • ListIterator has additional methods like previous(), hasPrevious(), and add().

    • ListIterator is only available for List implementations, while Iterator can be used with any collection.

  • Answered by AI
  • Q5. What are projections in Spring Data JPA?
  • Ans. 

    Projections in Spring Data JPA allow customizing the shape of the data returned from a query.

    • Projections are used to retrieve specific fields or a subset of fields from an entity.

    • They help in reducing the amount of data transferred over the network.

    • Projections can be defined using interfaces or classes.

    • They can be used with both JPQL and native SQL queries.

    • Projections can be used to fetch related entities as well.

  • Answered by AI
  • Q6. What are the two types of compiler in angular?
  • Ans. 

    The two types of compiler in Angular are JIT (Just-in-Time) compiler and AOT (Ahead-of-Time) compiler.

    • JIT compiler compiles the code at runtime in the browser.

    • AOT compiler compiles the code before the application is deployed to the browser.

    • JIT compilation is slower but allows for faster development and debugging.

    • AOT compilation is faster but requires additional build step before deployment.

  • Answered by AI
  • Q7. What are the different types of data binding in Angular?
  • Ans. 

    Data binding in Angular allows automatic synchronization of data between the model and the view.

    • Interpolation: {{ }} - binds data from the component to the view

    • Property binding: [] - binds data from the component to an element property

    • Event binding: () - binds an event from the view to a method in the component

    • Two-way binding: [()] - combines property and event binding to achieve two-way data flow

  • Answered by AI
  • Q8. Promises vs Observables
  • Ans. 

    Promises are used for asynchronous programming in JavaScript, while Observables are used for reactive programming.

    • Promises represent a single value that may be available now or in the future.

    • Observables represent a stream of values that can be emitted over time.

    • Promises are eager, meaning they start executing as soon as they are created.

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

    • Promises...

  • Answered by AI
  • Q9. Constructor vs ngOnInit
  • Ans. 

    Constructor is a special method used to initialize an object, while ngOnInit is a lifecycle hook in Angular.

    • Constructor is used to create and initialize an object of a class.

    • ngOnInit is a lifecycle hook in Angular that is called after the component is initialized.

    • Constructor is defined using the constructor keyword, while ngOnInit is a method defined in the component class.

    • Constructor is called only once during the cre...

  • Answered by AI
  • Q10. When to use Inline Template vs External Template in Angular?
  • Ans. 

    Inline templates are used for small, simple templates, while external templates are used for larger, complex templates.

    • Inline templates are defined within the component's TypeScript file using the template property.

    • External templates are defined in separate HTML files and linked to the component using the templateUrl property.

    • Inline templates are useful for small components or when the template is simple and doesn't re...

  • Answered by AI
  • Q11. Which module is used for http calls in Angular?
  • Ans. 

    HttpClient module is used for http calls in Angular.

    • HttpClient module is part of the @angular/common/http package.

    • It provides a simplified API for making HTTP requests.

    • It supports various HTTP methods like GET, POST, PUT, DELETE, etc.

    • It also supports features like request/response headers, query parameters, error handling, etc.

    • Example: import { HttpClient } from '@angular/common/http';

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Good coding questions related array and string

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

I applied via Referral and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Basic core java, multi threading, spring, collection
  • Q2. Spring features
  • Q3. Spring vs spring boot
  • Ans. 

    Spring is a framework for building Java applications, while Spring Boot is a tool that simplifies the setup and configuration of Spring applications.

    • Spring provides a comprehensive framework for building Java applications, including features like dependency injection, AOP, and MVC.

    • Spring Boot is built on top of Spring and provides auto-configuration, which reduces the boilerplate code required to set up a Spring applic...

  • Answered by AI
  • Q4. Multi threading
  • Q5. Map vs flat map
  • Ans. 

    Map applies a function to each element of a stream and returns a new stream of the results. FlatMap applies a function to each element and flattens the results into a single stream.

    • Map transforms each element of a stream independently.

    • FlatMap transforms each element of a stream and flattens the results into a single stream.

    • Map is useful when you want to transform each element of a stream into another type.

    • FlatMap is us...

  • Answered by AI

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

GlobalLogic Interview FAQs

How many rounds are there in GlobalLogic Java Back End Developer interview?
GlobalLogic interview process usually has 4 rounds. The most common rounds in the GlobalLogic interview process are Resume Shortlist, Coding Test and Technical.
How to prepare for GlobalLogic Java Back End 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 GlobalLogic. The most common topics and skills that interviewers at GlobalLogic expect are Java, AWS, Microservices, Devops and NoSQL.
What are the top questions asked in GlobalLogic Java Back End Developer interview?

Some of the top questions asked at the GlobalLogic Java Back End Developer interview -

  1. Full java core questions like garbage collector, oops concept, exception handli...read more
  2. Nothing sallary discussion and locat...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 GlobalLogic interview
Job Portal
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

TCS Interview Questions
3.7
 • 10.2k Interviews
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
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
DXC Technology Interview Questions
3.7
 • 801 Interviews
Mphasis Interview Questions
3.4
 • 784 Interviews
Nagarro Interview Questions
4.0
 • 759 Interviews
View all
GlobalLogic Java Back End Developer Salary
based on 16 salaries
₹4.7 L/yr - ₹7.8 L/yr
17% more than the average Java Back End Developer Salary in India
View more details

GlobalLogic Java Back End Developer Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

4.4

Skill development

4.6

Work-Life balance

2.0

Salary & Benefits

3.3

Job Security

4.6

Company culture

2.3

Promotions/Appraisal

4.3

Work Satisfaction

Explore 2 Reviews and Ratings
Associate Analyst
3.8k salaries
unlock blur

₹1 L/yr - ₹4 L/yr

Senior Software Engineer
3.3k salaries
unlock blur

₹5.2 L/yr - ₹21.9 L/yr

Analyst
3.1k salaries
unlock blur

₹0.5 L/yr - ₹5.5 L/yr

Software Engineer
2.9k salaries
unlock blur

₹3.2 L/yr - ₹13 L/yr

Associate Consultant
2.7k salaries
unlock blur

₹9 L/yr - ₹32 L/yr

Explore more salaries
Compare GlobalLogic with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.7
Compare

HCLTech

3.5
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