Upload Button Icon Add office photos

Filter interviews by

Global Technologies Interview Questions and Answers

Updated 16 Oct 2023

Global Technologies Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed in Apr 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basics knowledge of arithmetic, logic,verbal is needed

Round 2 - Coding Test 

Coding a question given in any language

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice practice practice

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (178)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. What is the Look and Say sequence, and how can a program be written to generate the next number in this sequence?
  • Q2. What is the SQL query to perform a join on two tables and calculate the aggregate sum using the product ID?
  • Q3. What is the process for writing a Bash script to read and parse a CSV file and print the last character of each line?
Round 2 - Coding Test 

Platform: Coderbyte Test. The process is similar to the technical round, except that in the last bash script question, instead of printing the last character, print the third last character of each line.

Round 3 - Technical 

(5 Questions)

  • Q1. Can you tell me about yourself?
  • Q2. What are the principles of Continuous Integration and Continuous Deployment (CI/CD)?
  • Q3. What version control tools do you use, and can you explain how you utilize them?
  • Q4. What is the SQL query to join two tables and use aggregate functions such as SUM and AVG with GROUP BY?
  • Q5. What is the Bash command to suppress all output and errors?
Round 4 - HR 

(3 Questions)

  • Q1. Can you tell me about yourself and your family?
  • Q2. Are you comfortable with the possibility of relocating for the position?
  • Q3. Would it be acceptable to work shift timings from 6:30 AM to 3:30 PM considering that the client is based in New Zealand?

Interview Preparation Tips

Interview preparation tips for other job seekers - You can renegotiate your salary after reviewing the offer letter you received.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - Technical 

(7 Questions)

  • Q1. Basic Javascript questions were asked like Hoisting, Event Loop, Closure.
  • Q2. What are semantic tags? << HTML based question
  • Ans. 

    Semantic tags in HTML are specific tags that provide meaning to the content they enclose.

    • Semantic tags help search engines and screen readers understand the structure of a webpage.

    • Examples of semantic tags include <header>, <footer>, <nav>, <article>, <section>, <aside>, <main>, <figure>, <figcaption>.

    • Using semantic tags improves SEO and accessibility of a website.

  • Answered by AI
  • Q3. What is currying in js?
  • Ans. 

    Currying is a technique in functional programming where a function with multiple arguments is transformed into a sequence of nested functions, each taking a single argument.

    • Currying helps in creating reusable functions and partial application.

    • It allows you to create new functions by fixing some parameters of an existing function.

    • Example: const add = (a) => (b) => a + b; add(2)(3) will return 5.

  • Answered by AI
  • Q4. What is the difference between Map and Filter?
  • Ans. 

    Map is used to transform each element of an array, while Filter is used to select elements based on a condition.

    • Map returns a new array with the same length as the original array, but with each element transformed based on a provided function.

    • Filter returns a new array with only the elements that pass a provided condition function.

    • Example for Map: [1, 2, 3].map(num => num * 2) will result in [2, 4, 6].

    • Example for Fi...

  • Answered by AI
  • Q5. What is the difference between Map and ForEach?
  • Ans. 

    Map creates a new array with the results of calling a provided function on every element, while forEach executes a provided function once for each array element.

    • Map returns a new array with the same length as the original array, while forEach does not return anything.

    • Map does not mutate the original array, while forEach can mutate the original array.

    • Map is more suitable for transforming data and creating a new array, w...

  • Answered by AI
  • Q6. What is the difference between Authentication and Authorization?
  • Ans. 

    Authentication verifies the identity of a user, while authorization determines the user's access rights.

    • Authentication confirms the user's identity through credentials like username and password.

    • Authorization determines what actions the authenticated user is allowed to perform.

    • Authentication precedes authorization in the security process.

    • Example: Logging into a website (authentication) and then accessing specific pages

  • Answered by AI
  • Q7. What is the difference between Local storage and Session storage?
  • Ans. 

    Local storage persists even after the browser is closed, while session storage is cleared when the browser is closed.

    • Local storage has no expiration date, while session storage expires when the browser is closed.

    • Local storage stores data with no limit, while session storage has a limit of around 5MB.

    • Local storage data is available across all windows/tabs for that domain, while session storage data is only available wit...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. This was the Final round, it lasted for around 30 mins and the interviewer gave me a coding question to build a Countdown Timer app.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for Live coding round that's the important one.
Also prepare the questions based on HTML, CSS
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - HR 

(3 Questions)

  • Q1. Could you provide a description of yourself and an overview of your career accomplishments?
  • Q2. What are your reasons for wanting to leave your current company?
  • Q3. What are your salary expectations?
Round 2 - Technical 

(2 Questions)

  • Q1. Interviewer will describe the scenario and discuss the UX terminologies?
  • Q2. Whiteboarding conducted
Round 3 - Technical 

(1 Question)

  • Q1. Tech questions and UX related questions were asked
Round 4 - One-on-one 

(1 Question)

  • Q1. Manager Round was conducted
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Dec 2024.

Round 1 - Technical 

(6 Questions)

  • Q1. Implement a custom stack that allows fetching the minimum element in constant time, O(1).
  • Ans. 

    Custom stack with constant time access to minimum element

    • Use two stacks - one to store elements and another to store minimum values

    • When pushing an element, compare with top of min stack and push the smaller value

    • When popping an element, pop from both stacks

    • Access minimum element in O(1) time by peeking at top of min stack

  • Answered by AI
  • Q2. How can one create an immutable class named Employee with fields for name and hobbies defined as List?
  • Ans. 

    To create an immutable class named Employee with fields for name and hobbies defined as List<String>, use private final fields and return new instances in getters.

    • Use private final fields for name and hobbies in the Employee class

    • Provide a constructor to initialize the fields

    • Return new instances or unmodifiable lists in the getters to ensure immutability

  • Answered by AI
  • Q3. What changes are required in the Employee class to use it as a key for a HashMap?
  • Ans. 

    Add hashCode() and equals() methods to Employee class.

    • Override hashCode() method to generate a unique hash code for each Employee object.

    • Override equals() method to compare Employee objects based on their attributes.

    • Ensure that the attributes used in hashCode() and equals() methods are immutable.

    • Example: Add id, name, and department attributes to Employee class and override hashCode() and equals() methods based on thes

  • Answered by AI
  • Q4. What is the implementation of the singleton design pattern?
  • Ans. 

    Singleton design pattern ensures a class has only one instance and provides a global point of access to it.

    • Create a private static instance of the class within the class itself.

    • Provide a public static method to access the instance, creating it if necessary.

    • Ensure the constructor of the class is private to prevent instantiation from outside the class.

    • Use lazy initialization to create the instance only when needed.

    • Thread...

  • Answered by AI
  • Q5. Different ways to create a thread
  • Ans. 

    Ways to create a thread in Java include extending the Thread class, implementing the Runnable interface, and using Java 8's lambda expressions.

    • Extend the Thread class and override the run() method

    • Implement the Runnable interface and pass it to a Thread object

    • Use Java 8's lambda expressions with the Executor framework

  • Answered by AI
  • Q6. What are the SOLID principles in software design, and can you provide examples for each?
  • Ans. 

    SOLID principles are a set of five design principles in object-oriented programming to make software more maintainable, flexible, and scalable.

    • Single Responsibility Principle (SRP) - A class should have only one reason to change. Example: A class that handles user authentication should not also handle database operations.

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

  • Answered by AI
Round 2 - Technical 

(5 Questions)

  • Q1. What is the concept of Object-Oriented Programming (OOP) and can you provide an example?
  • Ans. 

    OOP is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOP focuses on creating objects that interact with each other to solve a problem.

    • Encapsulation is a key concept in OOP, where data is kept within an object and only accessible through its methods.

    • Inheritance allows objects to inherit attributes and methods from parent classes.

    • Po...

  • Answered by AI
  • Q2. How do threads communicate with each other in Java?
  • Ans. 

    Threads communicate in Java through shared memory or message passing.

    • Threads can communicate through shared variables in memory.

    • Threads can communicate through synchronized methods or blocks.

    • Threads can communicate through wait(), notify(), and notifyAll() methods.

    • Threads can communicate through message passing using classes like BlockingQueue or ExecutorService.

  • Answered by AI
  • Q3. Write a program to reverse a linked list.
  • Ans. 

    Program to reverse a linked list

    • Create a new linked list to store the reversed elements

    • Traverse the original linked list and insert each node at the beginning of the new list

    • Update the head of the new list as the last node of the original list

  • Answered by AI
  • Q4. What is the difference between string literals and the string pool?
  • Ans. 

    String literals are constant strings defined in code, while the string pool is a memory area where unique string objects are stored.

    • String literals are created using double quotes, while string pool objects are created using the 'new' keyword.

    • String literals are stored in the string pool to conserve memory and improve performance.

    • String literals are automatically interned by the JVM, while string pool objects need to b

  • Answered by AI
  • Q5. What is the program to print the 90-degree rotated view of a 2D array?
  • Ans. 

    Program to print the 90-degree rotated view of a 2D array.

    • Iterate through each column in reverse order and print the corresponding row elements.

    • Repeat this process for all columns to get the rotated view of the 2D array.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Concentrate on the fundamental aspects of Java and Spring Boot.
Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Technical 

(3 Questions)

  • Q1. Round1 was based upon SAP EWM E2E Configuration process details based upon different business scenarios at the production Plant. It was taken by SCM SME of the company
  • Q2. Round 2 was also based upon Customer discussion based on their Good movement among 18 warehouses and 2 Plants.
  • Q3. Not applicable.
Round 2 - Assignment 

Based on the past assignments and questions on same platforms.

Round 3 - HR 

(2 Questions)

  • Q1. Past organization details, Salary discussion.
  • Q2. Past organization SPOC details, project, reporting manger details.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I was interviewed in Jan 2025.

Round 1 - Group Discussion 

First group discussion round and after that there will be Aptitude test . Very poor company they don't have PC's for the candidates to give test .They will say you go home and give test .

Round 2 - Technical 

(5 Questions)

  • Q1. What is stack and Queue?
  • Q2. Difference between Error and Exception?
  • Q3. Write a Program to reverse the String?
  • Q4. Testing Question What is defect ?
  • Q5. Explain OOPS ?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What are the key topics related to Generative AI, specifically focusing on Retrieval-Augmented Generation (RAG) and Large Language Models (LLM)?
  • Q2. What is your understanding of the existing project and the technology stacks used?
Round 2 - Technical 

(3 Questions)

  • Q1. What has been your contribution to existing work and the technologies used in that context?
  • Q2. ML, DL, Gen AI implementation and flow
  • Q3. Python Coding logic and semantics
Round 3 - One-on-one 

(2 Questions)

  • Q1. What are the existing work challenges you face, and what solutions have you implemented to address them?
  • Q2. What is your understanding of Generative AI and Natural Language Processing (NLP), and can you provide examples of their use cases?

Interview Preparation Tips

Interview preparation tips for other job seekers - Genuinely communicate your skills and contributions.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(5 Questions)

  • Q1. HTML, CSS fundamentals
  • Q2. Javascript event loop and array methods
  • Q3. Javascript coding for operation on object array
  • Q4. React benefits and Redux implementations
  • Q5. How to create slice and combine reducers
Round 2 - Behavioral 

(2 Questions)

  • Q1. Questions based on projects, role, responsibilities and initiative at work place
  • Q2. How to create and optimize a react application
Round 3 - HR 

(1 Question)

  • Q1. Day to day activity of workplace and salary negotiation
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Group Discussion 

Difference between soft skills and hard skills

Round 2 - Technical 

(2 Questions)

  • Q1. What is manual testing
  • Q2. What is defect life cycleif
Round 3 - Technical 

(2 Questions)

  • Q1. What is the main thing should have for a test engineer
  • Q2. What's your opinion on testing
Round 4 - HR 

(2 Questions)

  • Q1. Are you ok with rotational shifts?
  • Q2. Are you ok with the work location?

Global Technologies Interview FAQs

How many rounds are there in Global Technologies interview?
Global Technologies interview process usually has 3 rounds. The most common rounds in the Global Technologies interview process are Resume Shortlist, Aptitude Test and Coding Test.
How to prepare for Global Technologies 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 Global Technologies. The most common topics and skills that interviewers at Global Technologies expect are Javascript, Angularjs, Python, UI and Full Stack.

Tell us how to improve this page.

Global Technologies Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
Cyient Interview Questions
3.7
 • 282 Interviews
CitiusTech Interview Questions
3.4
 • 268 Interviews
View all

Global Technologies Reviews and Ratings

based on 28 reviews

3.9/5

Rating in categories

3.8

Skill development

3.3

Work-life balance

3.3

Salary

4.2

Job security

3.7

Company culture

3.5

Promotions

3.8

Work satisfaction

Explore 28 Reviews and Ratings
Softwaretest Engineer
87 salaries
unlock blur

₹2.4 L/yr - ₹6.2 L/yr

Design Engineer
18 salaries
unlock blur

₹1.6 L/yr - ₹3.2 L/yr

Procurement Engineer
16 salaries
unlock blur

₹2.5 L/yr - ₹3.5 L/yr

Software Engineer
7 salaries
unlock blur

₹2.2 L/yr - ₹4 L/yr

Project Engineer
6 salaries
unlock blur

₹3 L/yr - ₹4.8 L/yr

Explore more salaries
Compare Global Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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