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

      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

      Wireless Generation, Inc.

      ¿Esta es tu empresa?

      Información
      Evaluaciones
      Pago y prestaciones
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Evaluaciones de Wireless Generation, Inc. | Empleos en Wireless Generation, Inc. | Sueldos en Wireless Generation, Inc. | Prestaciones en Wireless Generation, Inc.
      Entrevistas en Wireless Generation, Inc.Entrevistas para el cargo de Software Developer en Wireless Generation, Inc.Entrevista en Wireless Generation, Inc.


      Glassdoor

      • Acerca de
      • Premios
      • Blog
      • Contacto

      Empleadores

      • Cuenta de empleador gratuita
      • Centro de empleador

      Información

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

      Trabaja con nosotros

      • Anunciantes
      • Oportunidades laborales
      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 desde adentro.

      Búsquedas de empleo

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

      Entrevista para Software Developer

      4 de mar de 2011
      Candidato de entrevista anónimo
      New York, NY
      Sin ofertas
      Experiencia neutra
      Entrevista promedio

      Solicitud

      Me postulé a través de una facultad o universidad. El proceso tomó 3 días. Acudí a una entrevista en Wireless Generation, Inc. (New York, NY) en mar 2011

      Entrevista

      I applied it thru compus career website. I got a call from HR a few days later. One general HR interview about 10min, after that the technical interview was given after 3 days. The technical interview consists of three question. 1. Basic Data structure and Java question (comparing HashMap, List, and Set; difference between passing by value and reference) 2. Algorithm question (given two lists of arrays, check whether the first string can be generated by characters in the second string) 3. Class design (spellchecker) and how would you divide the jobs to several developer?

      Preguntas de entrevista [3]

      Pregunta 1

      1. Basic Data structure and Java question (comparing HashMap, List, and Set; difference between passing by value and reference)
      Responder pregunta

      Pregunta 2

      2. Algorithm question (given two lists of arrays, check whether the first string can be generated by characters in the second string)
      2 respuestas

      Pregunta 3

      3. Class design (spellchecker) and how would you divide the jobs to several developer?
      Responder pregunta
      1

      Otras evaluaciones sobre las entrevistas para el cargo de Software Developer en Wireless Generation, Inc.

      Entrevista para Software Engineer

      23 de may de 2013
      Candidato de entrevista anónimo
      Sin ofertas
      Experiencia neutra
      Entrevista promedio

      Solicitud

      Me postulé a través de un reclutador. El proceso tomó 2 semanas. Acudí a una entrevista en Wireless Generation, Inc. en abr 2013

      Entrevista

      step1: 30 minutes tech interview on call step2: 1 task sent by email

      Preguntas de entrevista [1]

      Pregunta 1

      the offline task lets you write some script to implement some function, it took me over 5 hours to solve it.
      Responder pregunta

      Entrevista para Software Engineer

      12 de abr de 2012
      Candidato de entrevista anónimo
      New York, NY
      Sin ofertas
      Experiencia negativa
      Entrevista difícil

      Solicitud

      Me postulé a través de un reclutador. El proceso tomó 2 semanas. Acudí a una entrevista en Wireless Generation, Inc. (New York, NY) en dic 2011

      Entrevista

      Interview process with WiGen included one round of phone interview and later I was called for a 1-1 onsite interview. Prepare strong on algo/problem solving also on design patterns. I got called by recruiter for this, the interviews are mostly technical and problem solving.

      Preguntas de entrevista [2]

      Pregunta 1

      Telephonic interview was easy, 1. difference between list, array and set 2. problem solving intersecting sets ex: {4, 5 }, { 2, 3}, {6, 9} => {2,5}, {6,9} 3. design a web based spell checker.
      Responder pregunta

      Pregunta 2

      Onsite interview was set for late in the afternoon... First interview was on design concept... was asked to design a text based game. Initial idea was to design a basic game but later when things started to roll it became interesting (had to use design concepts and MVC patterns). The second interview the tough, I was asked to write algo (proper java/C++ code) to identify move pattern for a chess board game. This was a bit tricky, and to writing a code on a white board is not an easy task.
      Responder pregunta

      Entrevista para Software Engineer

      4 de ene de 2012
      Candidato de entrevista anónimo
      Durham, NC
      Sin ofertas
      Experiencia negativa
      Entrevista difícil

      Solicitud

      Me postulé en línea. El proceso tomó 3 semanas. Acudí a una entrevista en Wireless Generation, Inc. (Durham, NC) en nov 2011

      Entrevista

      I applied online. They got back to me quickly and were very interested in my background. First, I had a quick phone screen with the HR guy. We talked about technologies I've used and what I'm looking for in a job. It was not difficult at all. Then, I had a technical phone interview with an experienced software architect. During the first half of the call, he asked some basic software engineering questions (e.g. "What's the difference between an interface and an abstract class?"). During the second half, we got onto collabedit.com and shared an interactive session. He asked me to write a method that accepts two character arrays and determine whether the first could be recreated using only the characters in the second. I solved the problem by putting both arrays into hashmaps (with the character as the key and the number of occurrences of that character as the value), then checking the number occurrences of the first hashmap against the second. Finally, I had an in-person interview at their Durham office. They sat me in a little meeting room (that could hold maybe 5 people max). I met with four people, for one hour each. Each person would ask me some questions about my background, some technical questions, and one big problem for which they wanted me to write stuff on the a white board. The big problems I encountered were: -Write a method that accepts a list of integer pairs. The method should compare the integer pairs and combine/delete pairs that intersect/comprise other pairs on the number line(for instance (1,4) and (2,5) could be reduced to (1,5); (1,4) and (1,3) could be reduced to (1,4); (1,4) and (6,8) couldn't be reduced). The method should return this list of integer pairs. This problem took me a while to solve. It was important to sort the list first. -Design the class structure and explain the general methodology of software that would guide museum-goers on an audio tour. The museum-goers enter a customized list of which exhibits they want to see and the software figures out the best path for them to take. Also design a file format so that the museum can tell the software the layout of the museum (I did a simple XML format that gave each room a name and described which rooms connected to each other). - Write a method that accepts a list of integers and returns each number as a percentage of the largest number. This wasn't too difficult, though it did bring to light some questions about efficiency. Again, it was a big help to sort the list first. - (The fourth interviewer didn't have a big question.) I thought I did pretty well on the interview. It seemed more like a stress test than anything else. Though the HR guy told me that they usually only take 48 hours to make a decision, a week had gone by and I'd heard nothing. I called and emailed the HR guy, but I couldn't get a response from him. It took him almost 4 weeks to finally get back to me and tell me that they weren't interested in hiring me. Then I got a check in the mail for a third of my interview costs (hotel room and mileage). I tried to ask for the rest, but again couldn't get ahold of anyone. Wireless Generation was pretty professional up until the end there. They seemed like a cool company, but now that I know how they deal with people they aren't interested in anymore, I'm glad I have nothing to do with them.

      Preguntas de entrevista [3]

      Pregunta 1

      Write a method that accepts a list of integer pairs. The method should compare the integer pairs and combine/delete pairs that intersect/comprise other pairs on the number line(for instance (1,4) and (2,5) could be reduced to (1,5); (1,4) and (1,3) could be reduced to (1,4); (1,4) and (6,8) couldn't be reduced). The method should return this list of integer pairs.
      1 respuesta

      Pregunta 2

      Design the class structure and explain the general methodology of software that would guide museum-goers on an audio tour. The museum-goers enter a customized list of which exhibits they want to see and the software figures out the best path for them to take. Also design a file format so that the museum can tell the software the layout of the museum.
      1 respuesta

      Pregunta 3

      Write a method that accepts a list of integers and returns each number as a percentage of the largest number. This wasn't too difficult, though it did bring to light some questions about efficiency.
      1 respuesta
      3

      Las mejores empresas en cuanto a "Remuneración y prestaciones" cerca de ti

      avatar
      Huawei Technologies
      3.6★Remuneración y prestaciones
      avatar
      Ericsson
      3.6★Remuneración y prestaciones
      avatar
      Nokia
      3.5★Remuneración y prestaciones
      avatar
      Bharti Airtel
      3.7★Remuneración y prestaciones