Ir al contenidoIr al pie de página
  • Empleos
  • Empresas
  • Sueldos
  • Para empresas

      Impulsa tu carrera profesional

      Averigua cuánto podrías ganar, encuentra el empleo perfecto y comparte información sobre tu vida laboral y personal de forma anónima.

      employer cover photo
      employer logo
      employer logo

      GlobalLogic

      Parte de Hitachi

      Empresa activa

      Información
      Opiniones
      Sueldos y beneficios
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Opiniones sobre GlobalLogic | Ofertas de empleos en GlobalLogic | Sueldos en GlobalLogic | Beneficios en GlobalLogic
      Entrevistas de GlobalLogicEntrevistas para el puesto de Technical Lead en GlobalLogicEntrevista de GlobalLogic


      Glassdoor

      • Acerca de
      • Premios
      • Blog
      • Contacto

      Empresas

      • Cuenta gratuita de empresa
      • Centro de empresas

      Información

      • Ayuda
      • Normas
      • Condiciones de uso
      • Privacidad y opciones de anuncios
      • No vender ni compartir mi información
      • Herramienta de consentimiento de cookies

      Trabaja con nosotros

      • Anunciantes
      • Empleo
      Descargar aplicación

      • Buscar por:
      • Empresas
      • Empleos
      • Ubicaciones

      Copyright © 2008-2026. Glassdoor LLC. «Glassdoor», «Worklife Pro», «Bowls» y sus logotipos son marcas comerciales registradas de Glassdoor LLC.

      Empresas seguidas

      Sigue a tus empresas favoritas para estar al tanto de las últimas oportunidades y disponer de información de primera mano.

      Búsquedas de empleo

      Recibe recomendaciones y actualizaciones personalizadas al iniciar tu búsqueda.

      Entrevista de Technical Lead

      11 nov 2020
      Candidato de entrevista anónimo
      Bengaluru
      Sin oferta
      Experiencia negativa
      Entrevista normal

      Solicitud

      Envié una solicitud electrónica. El proceso duró 1 día. Acudí a una entrevista en GlobalLogic (Bengaluru) en nov 2020

      Entrevista

      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?

      Preguntas de entrevista [2]

      Pregunta 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); ------------------------------------------------------------------------------------------------------------------
      Responder pregunta

      Pregunta 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); } --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
      Responder pregunta
      5

      Otras opiniones sobre las entrevistas para el puesto de Technical Lead en GlobalLogic

      Entrevista de Technical Lead

      14 ago 2023
      Candidato de entrevista anónimo
      Noida
      Sin oferta
      Experiencia negativa
      Entrevista normal

      Solicitud

      Solicité el puesto a través de un captador. El proceso duró 4 semanas. Acudí a una entrevista en GlobalLogic (Noida) en ago 2023

      Entrevista

      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.

      Preguntas de entrevista [1]

      Pregunta 1

      Core Java, Spring Framework, Rest endpoints
      Responder pregunta
      2

      Entrevista de Technical Lead

      24 feb 2022
      Candidato de entrevista anónimo
      Gurgaon, Haryana
      Sin oferta
      Experiencia negativa
      Entrevista normal

      Solicitud

      Envié una solicitud electrónica. El proceso duró 4 semanas. Acudí a una entrevista en GlobalLogic (Gurgaon, Haryana) en ene 2022

      Entrevista

      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.

      Entrevista de Technical Lead

      3 nov 2021
      Candidato de entrevista anónimo
      Noida
      Sin oferta
      Experiencia negativa
      Entrevista normal

      Solicitud

      Envié una solicitud electrónica. El proceso duró 1 día. Acudí a una entrevista en GlobalLogic (Noida) en oct 2021

      Entrevista

      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.

      Preguntas de entrevista [1]

      Pregunta 1

      Core java, spring boot and microservices.
      Responder pregunta
      3

      Las mejores empresas en cuanto a «Remuneración y beneficios» cerca de ti

      avatar
      Concentrix
      3.6★Remuneración y beneficios
      avatar
      IBM
      3.6★Remuneración y beneficios
      avatar
      Hewlett Packard Enterprise | HPE
      3.6★Remuneración y beneficios
      avatar
      Dell Technologies
      3.5★Remuneración y beneficios