Aller au contenuAller au pied de page
  • Emplois
  • Entreprises
  • Salaires
  • Pour les employeurs

      Boostez votre carrière

      Découvrez votre salaire potentiel, décrochez des emplois de rêve et partagez vos témoignages de manière anonyme.

      employer cover photo
      employer logo
      employer logo

      GlobalLogic

      Fait partie de Hitachi

      Employeur impliqué

      À propos
      Avis
      Salaires et avantages
      Emplois
      Entretiens
      Entretiens
      Recherches associées: Avis sur GlobalLogic | Offres d’emploi chez GlobalLogic | Salaires chez GlobalLogic | Avantages sociaux chez GlobalLogic
      Entretiens chez GlobalLogicEntretiens d’embauche pour Technical Lead chez GlobalLogicEntretien chez GlobalLogic


      Glassdoor

      • À propos
      • Récompenses
      • Blog
      • Nous contacter
      • Guides

      Employeurs

      • Compte employeur gratuit
      • Centre employeur
      • Blog pour les employeurs

      Informations

      • Aide
      • Règles de la communauté
      • Conditions d'utilisation
      • Confidentialité et choix publicitaires
      • Ne pas vendre ni partager mes informations
      • Outil de consentement aux cookies

      Travailler avec nous

      • Annonceurs
      • Carrières
      Télécharger l'application

      • Parcourir par :
      • Entreprises
      • Emplois
      • Lieux

      Copyright © 2008-2026. Glassdoor LLC. « Glassdoor », son logo, « Worklife Pro » et « Bowls » sont des marques déposées de Glassdoor LLC.

      Entreprises suivies

      Tenez-vous au courant des dernières opportunités et profitez de conseils d’initiés en suivant les entreprises de vos rêves.

      Recherche d’emplois

      Obtenez des recommandations et des mises à jour personnalisées en démarrant vos recherches.

      Entretien pour Technical Lead

      11 nov. 2020
      Candidat à l'entretien anonyme
      Bengaluru
      Aucune offre
      Expérience négative
      Entretien moyen

      Candidature

      J'ai postulé en ligne. Le processus a pris 1 jour. J'ai passé un entretien chez GlobalLogic (Bengaluru) en nov. 2020

      Entretien

      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?

      Questions d'entretien [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); ------------------------------------------------------------------------------------------------------------------
      Répondre à cette 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); } --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
      Répondre à cette question
      5

      Autres retours d’entretien d’embauche pour un poste comme Technical Lead chez GlobalLogic

      Entretien pour Technical Lead

      14 août 2023
      Candidat à l'entretien anonyme
      Noida
      Aucune offre
      Expérience négative
      Entretien moyen

      Candidature

      J'ai postulé via un recruteur. Le processus a pris 4 semaines. J'ai passé un entretien chez GlobalLogic (Noida) en août 2023

      Entretien

      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.

      Questions d'entretien [1]

      Question 1

      Core Java, Spring Framework, Rest endpoints
      Répondre à cette question
      2

      Entretien pour Technical Lead

      24 févr. 2022
      Candidat à l'entretien anonyme
      Gurgaon, Haryana
      Aucune offre
      Expérience négative
      Entretien moyen

      Candidature

      J'ai postulé en ligne. Le processus a pris 4 semaines. J'ai passé un entretien chez GlobalLogic (Gurgaon, Haryana) en janv. 2022

      Entretien

      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.

      Entretien pour Technical Lead

      3 nov. 2021
      Candidat à l'entretien anonyme
      Noida
      Aucune offre
      Expérience négative
      Entretien moyen

      Candidature

      J'ai postulé en ligne. Le processus a pris 1 jour. J'ai passé un entretien chez GlobalLogic (Noida) en oct. 2021

      Entretien

      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.

      Questions d'entretien [1]

      Question 1

      Core java, spring boot and microservices.
      Répondre à cette question
      3