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

Filter interviews by

GlobalLogic Application Developer Interview Questions and Answers

Updated 12 Nov 2024

GlobalLogic Application Developer Interview Experiences

1 interview found

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

(1 Question)

  • Q1. Kubernetes related

Interview questions from similar companies

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 - Aptitude Test 

The first stage of the aptitude test was a written examination. it consisted of multiple-choice questions and problem-solving exercises, the question covered a wide range of topics such as logical reasoning, numerical ability, and verbal comprehension. the time limit was challenging, but I completed most of the questions.

Round 3 - Coding Test 

In summary, the coding round was a challenging yet rewarding experience. it tested my programming abilities, problem-solving skills,
and ability to deliver efficient and error-free code within a time constraint. with adequate round preparation, focus, and practice, I navigated the coding round confidently and showcased my technical capabilities.

Round 4 - Technical 

(5 Questions)

  • Q1. Create a regular expression accepting 10-digit numeric characters starting with 1, 2, or 3.
  • Ans. 

    Regular expression for 10-digit numeric characters starting with 1, 2, or 3.

    • Use the pattern ^[1-3]\d{9}$ to match the criteria

    • The ^ symbol denotes the start of the string

    • The [1-3] specifies that the first digit must be 1, 2, or 3

    • \d{9} matches exactly 9 numeric digits

    • $ indicates the end of the string

  • Answered by AI
  • Q2. What do you mean by OOPS?
  • Ans. 

    OOPS stands for Object-Oriented Programming System. It is a programming paradigm based on the concept of objects.

    • OOPS focuses on creating objects that contain data in the form of fields (attributes) and code in the form of procedures (methods).

    • Encapsulation, inheritance, and polymorphism are key principles of OOPS.

    • Encapsulation refers to the bundling of data and methods that operate on the data into a single unit (obje...

  • Answered by AI
  • Q3. What are the basic SQL skills?
  • Ans. 

    Basic SQL skills include querying databases, manipulating data, and understanding database structures.

    • Writing basic SQL queries to retrieve data from databases

    • Understanding and using SQL functions and operators

    • Creating and modifying database tables and relationships

    • Using SQL to filter, sort, and group data

    • Understanding basic SQL syntax and commands

  • Answered by AI
  • Q4. What is a join in SQL? What are the types of joins?
  • Ans. 

    A join in SQL is used to combine rows from two or more tables based on a related column between them.

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN returns rows when there is at least one match in both tables.

    • LEFT JOIN returns all rows from the left table and the matched rows from the right table.

    • RIGHT JOIN returns all rows from the right table and the matched rows from the left tabl...

  • Answered by AI
  • Q5. Convert Hours into Seconds.
  • Ans. 

    To convert hours into seconds, multiply the number of hours by 3600.

    • Multiply the number of hours by 3600 to get the equivalent seconds.

    • For example, 2 hours = 2 * 3600 = 7200 seconds.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

(1 Question)

  • Q1. Technical discussion
Round 3 - Behavioral 

(1 Question)

  • Q1. Process flow of my work
  • Ans. 

    My work involves analyzing requirements, designing solutions, coding, testing, and deploying applications.

    • Analyze requirements provided by stakeholders

    • Design solutions based on requirements

    • Code the application using appropriate programming languages

    • Test the application for bugs and errors

    • Deploy the application to production environment

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - good discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Jun 2022. There were 4 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 

Formulas related to ece

Round 3 - Coding Test 

Arrays,oops,reverse program

Round 4 - HR 

(1 Question)

  • Q1. Self introduction,family background, relocate,any shifts

I applied via Recruitment Consultant and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Plan and package
  • Q2. Cursor
  • Q3. Array, continue vs next

Interview Preparation Tips

Interview preparation tips for other job seekers - For exp 1-3 yrs: focus on your basics that is enough.
For exp 3-5 yrs: strong technical in depth questions
For 5 and above: real life project scenarios.
Round 1 - Technical 

(1 Question)

  • Q1. Core Java , collection framework, exception handling
Round 2 - Technical 

(1 Question)

  • Q1. J2EE, spring , hibernate, database queries
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion and company related information

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared yourself and be confident while interview

I applied via LinkedIn and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. How do you allocate memory to 2D array dynamically? How and why does that work?
  • Ans. 

    Dynamic allocation of memory to 2D array is done using double pointer and malloc function.

    • Declare a double pointer to hold the 2D array.

    • Allocate memory to the first dimension using malloc function.

    • Allocate memory to the second dimension using a loop and malloc function.

    • Free the memory after use to avoid memory leaks.

    • Example: int **arr; arr = (int **)malloc(rows * sizeof(int *));

    • Example: for(int i=0; i

  • Answered by AI
  • Q2. Given string 'aabbdbdges', write a function to return a string in which there would be the letter followed by it's count of occurrence. (the output from the function for the given string should be a2b3d2g2...
  • Q3. Questions regarding memory allocation layout in C
  • Q4. Questions on Code lifecycle. Like, what is assembly code? what are macros?
Round 2 - Manegerial round 

(2 Questions)

  • Q1. Detailed questions regarding what is sprint, what is iteration? what is a story? what is a scrum? what is the role of scrum master?
  • Q2. Explain waterfall model
  • Ans. 

    Waterfall model is a linear sequential approach to software development.

    • It follows a sequential process where each phase must be completed before moving to the next one.

    • It is a rigid model and changes cannot be made easily once a phase is completed.

    • It is suitable for projects with well-defined requirements and a clear understanding of the end product.

    • Phases include requirements gathering, design, implementation, testin...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for DXC Technology Application Developer interview:
  • C
Interview preparation tips for other job seekers - Prepare how the memory layout works in C.
And have hands on practice writing small small C codes.

Skills evaluated in this interview

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

(1 Question)

  • Q1. Subject related questions
Round 3 - Technical 

(1 Question)

  • Q1. 2 nd round is Manager round
Round 4 - HR 

(1 Question)

  • Q1. Salary discusson and some what ask about previous organisation.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepared basics and real time scenarios thoroughly.

I applied via Naukri.com and was interviewed before Oct 2021. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Explain fi to sd intigration
  • Ans. 

    FI to SD integration refers to the integration between SAP Financials (FI) and Sales and Distribution (SD) modules.

    • FI and SD are two important modules in SAP ERP system

    • FI module deals with financial transactions and accounting

    • SD module deals with sales and distribution processes

    • Integration between FI and SD modules ensures that financial transactions are accurately recorded for sales and distribution activities

    • Examples...

  • Answered by AI
  • Q2. Explain about tickets
  • Ans. 

    Tickets are a means of tracking and managing tasks or issues within a system.

    • Tickets can be created by users or automatically generated by the system.

    • They typically include information such as a title, description, priority level, and status.

    • Tickets can be assigned to specific individuals or teams for resolution.

    • They are commonly used in software development, customer support, and project management.

    • Examples of ticketi...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for DXC Technology Application Developer interview:
  • GL
  • Ap
  • Accounts Receivable
  • Asset Management
Interview preparation tips for other job seekers - practice on tickets
practice on configuration of GL ,AP ,AR and Asset account

I applied via LinkedIn and was interviewed in Apr 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be truthful in your resume. It is very easy to catch false or lies during the interview by asking basic questions.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Cover All Core ABAP From Data Dictionary to Enhancement then move to Advance ABAP like O data Services, ABAP Proxy, Web Services, OOPS ABAP. asked Real-time scenario For BTE Development . From Start to e...

Interview Preparation Tips

Topics to prepare for Fujitsu Application Developer interview:
  • Migration Project steps
  • CDS VIEW
  • AMDP
Interview preparation tips for other job seekers - try to become a Full-stack Developer in SAP Technical Domain as well currently the market is seeking candidates who can work on Core Abap as well as o Data Services and Fiori As well.

GlobalLogic Interview FAQs

How many rounds are there in GlobalLogic Application Developer interview?
GlobalLogic interview process usually has 1 rounds. The most common rounds in the GlobalLogic interview process are Technical.
How to prepare for GlobalLogic Application 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 Application Development, Communication Skills, HTML, Java and Javascript.

Tell us how to improve this page.

GlobalLogic Application Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
GlobalLogic Application Developer Salary
based on 5 salaries
₹1.8 L/yr - ₹6.5 L/yr
49% less than the average Application Developer Salary in India
View more details
Associate Analyst
3.9k salaries
unlock blur

₹1 L/yr - ₹7.2 L/yr

Senior Software Engineer
3.3k salaries
unlock blur

₹5.2 L/yr - ₹22 L/yr

Analyst
3.1k salaries
unlock blur

₹1 L/yr - ₹5.5 L/yr

Software Engineer
3k salaries
unlock blur

₹3 L/yr - ₹13 L/yr

Associate Consultant
2.8k salaries
unlock blur

₹9.2 L/yr - ₹33.9 L/yr

Explore more salaries
Compare GlobalLogic 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