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

      GREE International Entertainment

      ¿Esta es tu empresa?

      Información
      Opiniones
      Sueldos y beneficios
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Opiniones sobre GREE International Entertainment | Ofertas de empleos en GREE International Entertainment | Sueldos en GREE International Entertainment | Beneficios en GREE International Entertainment
      Entrevistas de GREE International EntertainmentEntrevistas para el puesto de Mobile Software Engineer en GREE International EntertainmentEntrevista de GREE International Entertainment


      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.

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

      avatar
      John Wick Presents
      3.8★Remuneración y beneficios

      Entrevista de Mobile Software Engineer

      31 oct 2012
      Candidato de entrevista anónimo
      San Francisco, CA

      Otras opiniones sobre las entrevistas para el puesto de Mobile Software Engineer en GREE International Entertainment

      Entrevista de Mobile Developer

      9 mar 2013
      Candidato de entrevista anónimo
      Sin oferta

      Solicitud

      Acudí a una entrevista en GREE International Entertainment

      Entrevista

      Had a technical phone interview which was pretty straight forward. Basic OO questions. Some data structures and basic big O analysis. The on-site was more tough. Asked to design an app from the ground up. Missed many basic data structure concepts because I was nervous. Wasn't my best interview performance.

      Preguntas de entrevista [1]

      Pregunta 1

      Different ways to implement smart pointers. Wasn't difficult, but unexpected and caught off-guard.
      Responder pregunta
      Sin oferta
      Experiencia positiva
      Entrevista difícil

      Solicitud

      Solicité el puesto a través de un captador. El proceso duró 1 semana. Acudí a una entrevista en GREE International Entertainment (San Francisco, CA) en oct 2012

      Entrevista

      I did an afternoon's worth of interviews at Gree for a software engineering position. I spoke with three potential co-workers plus the recruiter. Usually in interviewing situations, the H.R. person is the most dry and by-the-book discussion out of all while the teammates closest to me as a candidate are the most engaging; but in the Gree interviewing case, the recruiter person was the most animated, forthcoming and refreshingly candid person out of the group (she seems to be well aware that the company has been thoroughly bashed by employees on Glassdoor, which she attributed to trouble getting the acquired companies integrated culturally). The team members I spoke with, on the other hand, were as boring as a box of rocks and didn't make me feel like I'd be inspired to do my best as an engineer. The hiring manager was friendly enough, but had impressively black circles under his eyes (i.e. which I took to be a sign of not getting nearly enough sleep?). The office environment I saw was a building floor full of long tables, people sitting at their stations. While I've worked in this environment before and it works well for some engineers, for myself I'd prefer either an individual office (e.g. what one might find at Adobe or Google) or a cubicle with higher walls so I can concentrate on the task at hand. By the time this review gets posted, Gree will be back at in China Basin (near the ballpark). So I'm not 100% certain what the office environment there will be like, but overall Gree just didn't seem like the best or happiest place for me to hang my hat. If my find my interview report & details (and transcribed interview questions) helpful, please let me know by voting on the "Helpful?" link below.

      Preguntas de entrevista [4]

      Pregunta 1

      Given a linked list that looks like this: Node * head; class Node { Node * next; } create a "reverse()" function that lives *within* the Node class that reverses the order of the linked list.
      1 respuesta

      Pregunta 2

      Write code to detect if a string is a palindrome (i.e. a sentence that may be read the same way in either direction).
      1 respuesta

      Pregunta 3

      Here's an Objective C category extension. What's wrong with this code? @interface UIImage (RemoteImage) { NSURL * url; UIImage * image; } - (id) initWIthURL: (NSURL *) _url; @end @implementation UIImage (RemoteImage) - (id) initWithURL: (NSURL *)_url { self = [super init]; if( self != nil ) { url = _url; NSURLResponse * response = [NSURLResponse new]; NSURLRequest * request = [[NSURLRequest alloc] initWithURL: url]; NSData * data = [NSURLConnection sendSynchronousRequest: request returningResponse: response error: nil]; image = [UIImage imageWithData: data]; return image; } return self; } - (void) dealloc { [super dealloc]; [url release]; [image release]; } @end
      1 respuesta

      Pregunta 4

      Here's some broken code, describe what's wrong with it: NSMutableArray * objects; // .... fills out objects with ReadyForDeletionObject objects for (uint i=0; i<[objects count]; i++) { ReadyForDeletionObject * object = [objects objectAtIndex: i]; if (object.shouldBeRemoved) { [objects removeObjectAtIndex: i]; } }
      1 respuesta
      10