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 Technical Architect Interview Questions, Process, and Tips

Updated 22 Sep 2024

Top GlobalLogic Technical Architect Interview Questions and Answers

  • Q1. How will you improve performance of legacy app which has to work with your latest microservice.
  • Q2. Design an elaborate user access control system, with granular control from pages, controls, data, and response masking.
  • Q3. Describe microservices architecture for a wealth management app
View all 6 questions

GlobalLogic Technical Architect Interview Experiences

2 interviews found

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Describe 5 non functional requirements
  • Ans. 

    Non functional requirements are criteria that specify how a system should behave, rather than what it should do.

    • Performance - system should respond within 2 seconds for all user interactions

    • Scalability - system should be able to handle 1000 concurrent users

    • Reliability - system should have a 99.99% uptime

    • Security - system should encrypt all sensitive data

    • Usability - system should have a user-friendly interface

  • Answered by AI
  • Q2. How will you improve performance of legacy app which has to work with your latest microservice.
  • Ans. 

    Improve legacy app performance by optimizing code, implementing caching, and scaling resources.

    • Optimize code by identifying and removing bottlenecks

    • Implement caching to reduce database calls and improve response time

    • Scale resources by using containers or serverless architecture

    • Use asynchronous processing for long-running tasks

    • Upgrade hardware or infrastructure if necessary

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Explain security in microservices
  • Ans. 

    Security in microservices involves implementing authentication, authorization, encryption, and monitoring to protect data and services.

    • Implement authentication and authorization mechanisms to control access to microservices.

    • Use encryption to secure communication between microservices and external clients.

    • Implement monitoring and logging to detect and respond to security incidents.

    • Consider using API gateways for central...

  • Answered by AI
  • Q2. Describe microservices architecture for a wealth management app
  • Ans. 

    Microservices architecture for a wealth management app involves breaking down the application into smaller, independent services.

    • Each microservice focuses on a specific business function, such as client onboarding, portfolio management, or reporting.

    • Services communicate through APIs, allowing for flexibility and scalability.

    • Each microservice can be developed, deployed, and scaled independently, leading to faster develo...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for GlobalLogic Technical Architect interview:
  • Java
  • Microservices

Skills evaluated in this interview

Technical Architect Interview Questions & Answers

user image Animesh Agarwal

posted on 21 Sep 2024

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Theoretical questions on dot net and database
Round 2 - One-on-one 

(2 Questions)

  • Q1. Design an elaborate user access control system, with granular control from pages, controls, data, and response masking.
  • Ans. 

    Design a user access control system with granular control for pages, controls, data, and response masking.

    • Implement role-based access control (RBAC) to assign permissions to users based on their roles.

    • Utilize attribute-based access control (ABAC) for more fine-grained control over access to specific pages, controls, and data.

    • Implement data masking techniques to ensure sensitive information is not exposed in responses.

    • U...

  • Answered by AI
  • Q2. How would you optimize the sparse array access.
  • Ans. 

    Optimizing sparse array access involves using data structures like hash maps or trees to efficiently store and retrieve values.

    • Use a hash map to store only non-null values and their corresponding indices.

    • Implement a tree-based data structure like a binary search tree or a trie for faster access to sparse array elements.

    • Consider using a compressed sparse row (CSR) format for large sparse arrays to reduce memory usage an

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Expectations and offer

Skills evaluated in this interview

Technical Architect Interview Questions Asked at Other Companies

asked in IBM
Q1. How to manage clients, how to handle critical issues with example
asked in IBM
Q2. how you handle non functional requirements ? how you do capacity ... read more
asked in IBM
Q3. What are different modernizations you did on Mainframes ?
asked in IBM
Q4. What architectural principles / methodologies you know ?
asked in Altimetrik
Q5. ASP.NET page life cycle and events in it and how page will be ren ... read more

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Feb 2023. There were 2 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. Interview was with the Sr. Manager. Questions were mostly basic of Azure. There main focus was on Cosmos Db. They want to start a new project on Cosmos so were looking for that knowledge.
  • Q2. What role and responsibilities you hadlre. Have you worked on Microservices?

Interview Preparation Tips

Interview preparation tips for other job seekers - Cosmos db is necessity now a days as most of the companies are lookgin for it.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain virtual dom in React.
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM in React, used for efficient updates.

    • Virtual DOM is a concept where a lightweight copy of the actual DOM is created in memory.

    • When changes are made to the virtual DOM, React compares it with the actual DOM to identify the minimal number of updates needed.

    • This process helps in optimizing performance by reducing the number of actual DOM manipulations.

    • Example: When a use...

  • Answered by AI
  • Q2. How do you implement passwordless system
  • Ans. 

    Implementing passwordless system involves using alternative authentication methods.

    • Use email or SMS verification codes

    • Implement biometric authentication

    • Utilize hardware security keys

    • Implement OAuth or OpenID Connect for single sign-on

    • Leverage FIDO2 standards for passwordless authentication

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What to do for a cookieless system
  • Ans. 

    To create a cookieless system, use alternative methods like local storage or URL parameters for tracking user data.

    • Use local storage to store user data on the client side

    • Utilize URL parameters to pass data between pages

    • Implement server-side session management for user authentication

    • Consider using JSON Web Tokens (JWT) for secure data transmission

  • Answered by AI
  • Q2. Explain in detail S.O.L.I.D principles
  • Ans. 

    S.O.L.I.D principles are a set of five design principles in object-oriented programming to make software designs more understandable, flexible, and maintainable.

    • Single Responsibility Principle (SRP) - A class should have only one reason to change.

    • Open/Closed Principle (OCP) - Software entities should be open for extension but closed for modification.

    • Liskov Substitution Principle (LSP) - Objects of a superclass should b...

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. About you?

I applied via Naukri.com and was interviewed before Sep 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Domain related stuffs.
  • Q2. Framework related questions commonly on the configuration part

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, share your knowledge . If you don't know the exact answers try to answer some relative things if you know.

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Angular user defined logics and its reflection in browser, javascript consoles . Basics of java platforms jvm, java collections, SQL keys, joins, logics of data structures.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was very interacting and challenging interview for me as I tried many hopes to get a job during this adverse pandemic. It really boosted my self-confidence in reaching a job by myself.Still miles to go for reaching my success rim.

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

It happens in very friendly manner.

  • Q1. 

    Paths in a Matrix Problem Statement

    Given an 'M x N' matrix, print all the possible paths from the top-left corner to the bottom-right corner. You can only move either right (from (i,j) to (i,j+1)) or dow...

  • Ans. 

    Print all possible paths from top-left to bottom-right in a matrix by moving only right or down.

    • Use backtracking to explore all possible paths from top-left to bottom-right in the matrix.

    • At each cell, recursively explore moving right and down until reaching the bottom-right corner.

    • Keep track of the current path and add it to the result when reaching the destination.

  • Answered by AI
  • Q2. Can you create 2 tables in SQL and perform different operations on them?
  • Ans. 

    Yes, I can create 2 tables in SQL and perform operations like INSERT, SELECT, UPDATE, and DELETE.

    • Create Table 1: CREATE TABLE employees (id INT, name VARCHAR(50), salary DECIMAL(10,2));

    • Create Table 2: CREATE TABLE departments (dept_id INT, dept_name VARCHAR(50));

    • Insert Data: INSERT INTO employees VALUES (1, 'John Doe', 50000);

    • Select Data: SELECT * FROM employees WHERE salary > 40000;

    • Update Data: UPDATE employees SET...

  • Answered by AI
Round 2 - Face to Face 

Round duration - 90 minutes
Round difficulty - Medium

No problem occur very friendly environment.

Round 3 - Face to Face 

(1 Question)

Round duration - 90 minutes
Round difficulty - Hard

  • Q1. 

    Rat in a Maze Problem Statement

    You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...

  • Ans. 

    Find all possible paths for a rat in a maze from source to destination.

    • Use backtracking to explore all possible paths in the maze.

    • Keep track of visited cells to avoid revisiting them.

    • Explore all possible directions (up, down, left, right) from each cell.

    • Add the current direction to the path and recursively explore further.

    • If the destination is reached, add the path to the list of valid paths.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteriaAbove 7 CGPAVirtusa interview preparation:Topics to prepare for the interview - Linked List, Binary Search Tree ,Queue, Array ,DP ,Graph ,RecursionTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Competitive programming plays a major role when you are appearing for coding rounds as a fresher. In the coding rounds, you won't get direct problems copied from Geeksforgeeks or Leetcode. You would be required to use your logical thinking to go ahead in the process. This is where competitive programming helps.

Tip 2 : Coding rounds are all about Coding + Timing. Most people fail to excel due to the pressure of a timer ticking on your head. So, instead of just solving problems, try to participate in timed contests. This will help you be used to the pressure of the timer.

Tip 3 : Many big companies like Microsoft, Amazon, and even Google expect you to be good at standard problems. So, once you are done with coding round by your logical skills and competitive programming, you must be well versed with some standard problems in order to excel.

Application resume tips for other job seekers

Tip 1 : Make it short, crisp, and simple. It is always good to have a 1 pager resume. 
Tip 2 : Resume must comprise of the following: Educational Qualifications, Technical skills, Projects, Work experience (if any), Achievements. Other than this, you may include some extra co-curricular achievements.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before Jun 2021.

Round 1 - Coding Test 

Had DSA and aptitude questions

Round 2 - Technical 

(1 Question)

  • Q1. DSA a questions, Database Questions
Round 3 - HR 

(1 Question)

  • Q1. 5 min question and answers about company

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA and database management

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

Interview Questionnaire 

4 Questions

  • Q1. IT Asset Reconciliation
  • Q2. IT Asset Management Life Cycle
  • Ans. 

    IT Asset Management Life Cycle involves the management of IT assets from acquisition to disposal.

    • Acquisition of IT assets

    • Tracking and monitoring of assets

    • Maintenance and upgrades

    • Retirement and disposal

    • Compliance with regulations and policies

  • Answered by AI
  • Q3. Software Asset Management Optimisation
  • Q4. Why are you leaving you current organisation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Prepare

GlobalLogic Interview FAQs

How many rounds are there in GlobalLogic Technical Architect interview?
GlobalLogic interview process usually has 2-3 rounds. The most common rounds in the GlobalLogic interview process are Technical, One-on-one Round and HR.
How to prepare for GlobalLogic Technical Architect 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 HTML, Telecom, AWS, Javascript and Python.
What are the top questions asked in GlobalLogic Technical Architect interview?

Some of the top questions asked at the GlobalLogic Technical Architect interview -

  1. How will you improve performance of legacy app which has to work with your late...read more
  2. Design an elaborate user access control system, with granular control from page...read more
  3. Describe microservices architecture for a wealth management ...read more

Tell us how to improve this page.

GlobalLogic Technical Architect Interview Process

based on 2 interviews

Interview experience

2.5
  
Poor
View more
GlobalLogic Technical Architect Salary
based on 74 salaries
₹19.5 L/yr - ₹41.7 L/yr
11% more than the average Technical Architect Salary in India
View more details

GlobalLogic Technical Architect Reviews and Ratings

based on 5 reviews

1.4/5

Rating in categories

1.3

Skill development

1.2

Work-life balance

1.8

Salary

2.0

Job security

1.1

Company culture

1.4

Promotions

1.4

Work satisfaction

Explore 5 Reviews and Ratings
Associate Analyst
4k salaries
unlock blur

₹1.2 L/yr - ₹5 L/yr

Senior Software Engineer
3.4k salaries
unlock blur

₹5.2 L/yr - ₹22.5 L/yr

Analyst
3.1k salaries
unlock blur

₹1.2 L/yr - ₹5.5 L/yr

Software Engineer
3k salaries
unlock blur

₹3 L/yr - ₹12.7 L/yr

Associate Consultant
2.9k salaries
unlock blur

₹9.2 L/yr - ₹33 L/yr

Explore more salaries
Compare GlobalLogic with

Genpact

3.8
Compare

DXC Technology

3.7
Compare

Sutherland Global Services

3.6
Compare

Optum Global Solutions

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