Ir para o conteúdoIr para a pasta
  • Vagas
  • Empresas
  • Salários
  • Para empresas

      Avance em sua carreira

      Descubra qual pode ser seu salário, conquiste a vaga dos seus sonhos e compartilhe insights de qualidade de vida com sigilo.

      employer cover photo
      employer logo
      employer logo

      GlobalLogic

      Parte da empresa Hitachi

      Empresa engajada

      Sobre
      Avaliações
      Remuneração e benefícios
      Vagas
      Entrevistas
      Entrevistas
      Buscas relacionadas: Avaliações da empresa GlobalLogic | Vagas da empresa GlobalLogic | Salários da empresa GlobalLogic | Benefícios da empresa GlobalLogic
      Entrevistas da empresa GlobalLogicEntrevistas do cargo de Technical Lead da empresa GlobalLogicEntrevista da empresa GlobalLogic


      Glassdoor

      • Sobre
      • Prêmios
      • Blog
      • Fale conosco

      Empresas

      • Conta gratuita de empresa
      • Área da empresa
      • Blog para empresas

      Informações

      • Ajuda
      • Regras da Comunidade
      • Termos de Uso
      • Privacidade e opções de anúncios
      • Não venda nem compartilhe minhas informações
      • Ferramenta de consentimento de uso de cookies

      Trabalhe conosco

      • Anunciantes
      • Carreiras
      Baixe o aplicativo:

      • Busque por:
      • Empresas
      • Vagas
      • Localizações

      Copyright © 2008-2026. Glassdoor LLC. “Glassdoor”, “Worklife Pro”, “Bowls” e o logotipo do Glassdoor são marcas comerciais pertencentes à Glassdoor LLC.

      Empresas seguidas

      Fique por dentro de todas as oportunidades e dicas internas seguindo as empresas de seus sonhos.

      Buscas de vagas

      Comece a buscar vagas para receber atualizações e recomendações personalizadas.

      Entrevista para Technical Lead

      11 de nov. de 2020
      Candidato(a) sigiloso(a) à entrevista
      Bengaluru
      Nenhuma oferta
      Experiência negativa
      Entrevista com nível médio de dificuldade

      Candidatura

      Candidatei-me online. O processo levou 1 dia. Fui entrevistado pela GlobalLogic (Bengaluru) em nov. de 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?

      Perguntas de entrevista [2]

      Pergunta 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 à pergunta

      Pergunta 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 à pergunta
      5

      Outras avaliações de entrevista de vagas de Technical Lead da empresa GlobalLogic

      Entrevista para Technical Lead

      14 de ago. de 2023
      Candidato(a) sigiloso(a) à entrevista
      Noida
      Nenhuma oferta
      Experiência negativa
      Entrevista com nível médio de dificuldade

      Candidatura

      Candidatei-me por meio de recrutador(a). O processo levou 4 semanas. Fui entrevistado pela GlobalLogic (Noida) em ago. de 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.

      Perguntas de entrevista [1]

      Pergunta 1

      Core Java, Spring Framework, Rest endpoints
      Responder à pergunta
      2

      Entrevista para Technical Lead

      24 de fev. de 2022
      Candidato(a) sigiloso(a) à entrevista
      Gurgaon, Haryana
      Nenhuma oferta
      Experiência negativa
      Entrevista com nível médio de dificuldade

      Candidatura

      Candidatei-me online. O processo levou 4 semanas. Fui entrevistado pela GlobalLogic (Gurgaon, Haryana) em jan. de 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 para Technical Lead

      3 de nov. de 2021
      Candidato(a) sigiloso(a) à entrevista
      Noida
      Nenhuma oferta
      Experiência negativa
      Entrevista com nível médio de dificuldade

      Candidatura

      Candidatei-me online. O processo levou 1 dia. Fui entrevistado pela GlobalLogic (Noida) em out. de 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.

      Perguntas de entrevista [1]

      Pergunta 1

      Core java, spring boot and microservices.
      Responder à pergunta
      3

      As melhores empresas na categoria “Remuneração e benefícios” perto de você

      avatar
      EPAM Systems
      3.6★Remuneração e benefícios
      avatar
      IBM
      3.6★Remuneração e benefícios
      avatar
      Hewlett Packard Enterprise | HPE
      3.6★Remuneração e benefícios
      avatar
      Visa Inc.
      3.9★Remuneração e benefícios