Skip to contentSkip to footer
  • Community
  • Jobs
  • Companies
  • Salaries
  • For Employers
      Notifications

      Loading...

      Elevate your career

      Discover your earning potential, land dream jobs, and share work-life insights anonymously.

      employer cover photo
      employer logo
      employer logo

      GlobalLogic

      Part of Hitachi

      Engaged Employer

      About
      Reviews
      Pay & benefits
      Jobs
      Interviews
      Interviews
      Related searches: GlobalLogic reviews | GlobalLogic jobs | GlobalLogic salaries | GlobalLogic benefits
      GlobalLogic interviewsGlobalLogic Technical Lead interviewsGlobalLogic interview


      Glassdoor

      • About / Press
      • Awards
      • Blog
      • Research
      • Contact Us
      • Guides

      Employers

      • Free Employer Account
      • Employer Center
      • Employers Blog

      Information

      • Help
      • Guidelines
      • Terms of Use
      • Privacy & Ad Choices
      • Do Not Sell Or Share My Information
      • Cookie Consent Tool
      • Security

      Work With Us

      • Advertisers
      • Careers
      Download the App

      • Browse by:
      • Companies
      • Jobs
      • Locations
      • Communities
      • Recent Posts

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls," and logo are proprietary trademarks of Glassdoor LLC.

      Company Bowl sample

      Want the inside scoop on your own company?

      Check out your Company Bowl for anonymous work chats.

      Bowls

      Get actionable career advice tailored to you by joining more bowls.

      Followed companies

      Stay ahead in opportunities and insider tips by following your dream companies.

      Job searches

      Get personalized job recommendations and updates by starting your searches.

      Technical Lead Interview

      Nov 11, 2020
      Anonymous Interview Candidate
      Bengaluru
      No offer
      Negative experience
      Average interview

      Application

      I applied online. The process took 1 day. I interviewed at GlobalLogic (Bengaluru) in Nov 2020

      Interview

      very bad; I was asked a one to one coding question. I wrote the right code but was rejected. I came back home and tested. This was working perfectly. I wrote to HR. I asked point out where I am wrong in the code. Is this the kind of professionalism you are showing?

      Interview questions [2]

      Question 1

      This was my mail to some employees of Global Logic sapna.n@globallogic.com(HR), delhi.eswaran@globallogic.com(interviewer), bhanu.p.singh@globallogic.com, ranjita.mandal@globallogic.com, niranjan.devarapalli@globallogic.com I do not think there is any point writing this mail to HR unless it goes to the technical person who took my interview. I think all my answers were correct. Then why should I be rejected. I talked to HR . She told me she may arrange a next interview for me if possible. Why the hell should I attend the next interview with Global logic. What there is no value for my time and money. You bring cartoons to take interviews. I can as well expect that next time I give another interview and be rejected for no reason. You are doing politics or what. If I come to work in Global Logic, what is the guarantee that I may not be thrown out of my job without any reason. I can not work with such stupid companies. If my profile does not match your skills, could you not know that before taking my interview? Why you wasted my time and money. If you ask me for A,B,C- I will write code for A,B,C. Why do you expect E? If you expect E, you have to tell me before writing code. I am giving you the problem statement that was given to me and the answer that I gave. If you have any shame left, then find out my fault you shameless creature doing politics here. ------------------------------------------------------------------------------------------------------------------------------------------------------------------- Problem statement- grep "keyword" -k n means when this statement runs, the matching "keyword" must be picked up and n lines before and after that should be displayed. Example- "AA";"BB";"CC";"Dd";"E E";"Ff";"G G" From this - grep "Dd" -k 2 should return "BB";"CC";"Dd";"E E";"F F" 1 more condition, if there are insufficient strings at the beginning or end, it should return whatever possible like in - grep "AA" -k 2 - should return- "AA";"BB";"CC" for ease of programming use integers instead of strings. There are 3 vectors of integers vector<int> input_string1={2,3,4,5,1,6,7,8,9}; vector<int> input_string2 = {1,2,3,4,5,6,7,8,9}; vector<int> input_string3 = {2,3,4,5,6,7,8,9,1}; int key = 1; int k = 2; 3 conditions-> grep(key,input_string1,k); grep(key,input_string2,k); grep(key,input_string3,k); ------------------------------------------------------------------------------------------------------------------
      Answer question

      Question 2

      code-> #include <stdio.h> using namespace std; #include<vector> void grep(int key, vector<int> input_string, int k) { int before, after, current, size; size = input_string.size(); before = after = current = 0; boolean flag = false; for(int i = 0; i< size; i++) { if( input_string[i] == key ) { flag = true; } current = i; if( current >= k ) { before = current - k; } if( ( size - current - 1 ) > k ) { after = current + k ; } else { after = current + ( size - current - 1); } if( !flag ) continue; else break; } for(int i = before; i <= after; i++) { print<< input_string[i] << "-"; } cout<<endl; } int main() { int key = 1; int k =2; vector<int> input_string1 = {2,3,4,5,1,6,7,8,9}; vector<int> input_string2 = {1,2,3,4,5,6,7,8,9}; vector<int> input_string3 = {2,3,4,5,6,7,8,9,1}; print<<"grep("<<key<<",input_string1,"<<k<<");"<<end l; grep(key, input_string1, k); print<<"grep("<<key<<",input_string2,"<<k<<");"<<end l; grep(key, input_string2, k); print<<"grep("<<key<<",input_string3,"<<k<<");"<<end l; grep(key, input_string3, k); k = 4; print<<"grep("<<key<<",input_string1,"<<k<<");"<<end l; grep(key, input_string1, k); print<<"grep("<<key<<",input_string2,"<<k<<");"<<end l; grep(key, input_string2, k); print<<"grep("<<key<<",input_string3,"<<k<<");"<<end l; grep(key, input_string3, k); k = 0; print<<"grep("<<key<<",input_string1,"<<k<<");"<<end l; grep(key, input_string1, k); print<<"grep("<<key<<",input_string2,"<<k<<");"<<end l; grep(key, input_string2, k); print<<"grep("<<key<<",input_string3,"<<k<<");"<<end l; grep(key, input_string3, k); k = 100; print<<"grep("<<key<<",input_string1,"<<k<<");"<<end l; grep(key, input_string1, k); print<<"grep("<<key<<",input_string2,"<<k<<");"<<end l; grep(key, input_string2, k); print<<"grep("<<key<<",input_string3,"<<k<<");"<<end l; grep(key, input_string3, k); } --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
      Answer question
      5

      Other Technical Lead Interview Reviews for GlobalLogic

      Technical Lead Interview

      Aug 14, 2023
      Anonymous Interview Candidate
      Noida
      No offer
      Negative experience
      Average interview

      Application

      I applied through a recruiter. The process took 4 weeks. I interviewed at GlobalLogic (Noida) in Aug 2023

      Interview

      The complete interview process here is waste of time and energy. First 2 rounds were technical and both were cleared. Then they scheduled managerial round and it was also cleared. Recruiter then processed my profile and asked for the necessary documents to release the offer letter. But few days passed and no update on offer was provided. Despite of repeated follow-ups from my side, they didn't respond and lately said they are not getting the final approval. After few weeks, recruiter again called me up to schedule the additional client round for some other project. The entire process took almost 1 month and because of their assurance on offer letter, I declined few offers that time and hugely impacted my joining date. They showed a complete unprofessionalism towards the company and the candidate. When they are not clear about requirement, they should not waste the candidate's time.

      Interview questions [1]

      Question 1

      Core Java, Spring Framework, Rest endpoints
      Answer question
      2

      Technical Lead Interview

      Feb 24, 2022
      Anonymous Interview Candidate
      Gurgaon, Haryana
      No offer
      Negative experience
      Average interview

      Application

      I applied online. The process took 4 weeks. I interviewed at GlobalLogic (Gurgaon, Haryana) in Jan 2022

      Interview

      I applied online. The process took 1 month. There were 2 rounds of technical interview followed by managerial round and HR round. In technical round there were general questions about the project and some advance java questions. In Managerial round, he brief me about the roles and responsibilities they are expecting and details about the project. He asked me about notice period, expected salary and other details as well. On the same day I got a mail that I have been selected and I have to share all the documents like salary slip and last appraisal letter. Then after 2 days, i got a call for HR interview in which HR asked about notice period, current salary and expected salary. Then she start negotiating on expected salary. After negotiation we agreed on particular salary to which she said she will forward the request for approval. After waiting for 1 week, I call the HR to get the status update. She started ignoring my call. After sending multiple emails also which she did not answer, when I call with another number she picked the call and told me that we are trying for the approval and we have meeting for the same. Again i try to call her after 2-3 days but she ignored the call and email again. Then i receive a mail from Global logic after 2 weeks of HR interview. "Unfortunately we wont be able to proceed further at this time as due to some changes in client requirement this position went on hold and so your candidature. " Very bad experience. It was such a waste of time. If you don't have budget according to the expected salary please don't go for further process.

      Technical Lead Interview

      Nov 3, 2021
      Anonymous Interview Candidate
      Noida
      No offer
      Negative experience
      Average interview

      Application

      I applied online. The process took 1 day. I interviewed at GlobalLogic (Noida) in Oct 2021

      Interview

      I cleared all the rounds and conveyed my expectation before the interview . After interview HR convinced me for negotiation . I was about to get offer letter in a week but they didn't provide and said we have budget issue. I don't understand why they went ahead with all the discussions when they don't have budget . It shows such an unprofessional behaviour from the company HR. Please clear all the things if you are planning to appear in the interview.

      Interview questions [1]

      Question 1

      Core java, spring boot and microservices.
      Answer question
      3