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

      Rafael

      Essa empresa é sua?

      Sobre
      Avaliações
      Remuneração e benefícios
      Vagas
      Entrevistas
      Entrevistas
      Buscas relacionadas: Avaliações da empresa Rafael | Vagas da empresa Rafael | Salários da empresa Rafael | Benefícios da empresa Rafael
      Entrevistas da empresa RafaelEntrevistas do cargo de Software Developer da empresa RafaelEntrevista da empresa Rafael


      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.

      Entrevista para Software Developer

      22 de mai. de 2026
      Candidato(a) sigiloso(a) à entrevista
      Nenhuma oferta
      Experiência positiva
      Entrevista com nível médio de dificuldade

      Candidatura

      Fiz uma entrevista na empresa Rafael.

      Entrevista

      An AI assisted home assignment and a short technical interview discussing the solution + general questions about the interpreter vs compilation, classes, SRP and such. No leetcode or coding questions during the interview.

      Perguntas de entrevista [1]

      Pergunta 1

      To explain my solution briefly, design and implementation.
      Responder à pergunta

      Outras avaliações de entrevista de vagas de Software Developer da empresa Rafael

      Entrevista para Software Engineer

      13 de jan. de 2026
      Candidato(a) sigiloso(a) à entrevista
      Misgav
      Nenhuma oferta
      Experiência positiva
      Entrevista com nível médio de dificuldade

      Candidatura

      Candidatei-me por indicação de um funcionário. Fui entrevistado pela Rafael (Misgav) em jan. de 2026

      Entrevista

      First a phone call, then professional interview, then hr one. At the phone call we did the first impression, the the asked a algorithm questions and leercode one. Then a logical question.

      Perguntas de entrevista [1]

      Pergunta 1

      Tell me about yourself, why did you chose it?
      Responder à pergunta

      Entrevista para Software Engineer

      5 de jan. de 2025
      Candidato(a) sigiloso(a) à entrevista
      Karmi'el
      Nenhuma oferta
      Experiência neutra
      Entrevista difícil

      Candidatura

      Candidatei-me por meio de recrutador(a). O processo levou 1 dia. Fui entrevistado pela Rafael (Karmi'el) em jan. de 2025

      Entrevista

      1. I sent my resume to the HR through Linkedin. 2. A few weeks later a got a call for the HR that I was found suitable for a software / hardware (for testing equipment) engineer role. 3. I was called by the team leader and we scheduled a on site interview

      Perguntas de entrevista [1]

      Pergunta 1

      You are given a 16-bit BMP image represented by an array of pixel values, where most of the image is black, but there is a white rectangle somewhere within the black pixels. The pixel values for the black pixels are between 700 and 750, and the white pixels (which form a rectangle) have pixel values between 920 and 980, reflecting varying lighting conditions. How can you differentiate between the black and white pixels with certainty? Given the image's width, height, and array of pixel values, write a function to return the coordinates of the rectangle's corners (top-left and bottom-right). Solution: Step 1: Determine a Threshold for Differentiating Black and White Since the black pixels fall within a known range (700-750) and the white pixels are within a higher range (920-980), we can calculate a threshold to reliably differentiate between black and white pixels. Median Approach: To find a robust threshold, we calculate the median of the known black and white pixel values. Black pixel range: [700, 750] White pixel range: [920, 980] The median of this range will give us a value that divides the two groups: Median = 750 (This is our threshold). Step 2: Identify the White Pixels (Rectangle) Iterate through the pixel array, checking if each pixel value exceeds the threshold (750 in this case). For each white pixel: Calculate its 𝑥 , 𝑦 x,y coordinates in the image. Track the bounds of the white rectangle using the min and max values for both x and y coordinates. Step 3: Return the Rectangle's Corners After processing all white pixels, the bounds (minX, maxX, minY, maxY) will represent the top-left and bottom-right corners of the white rectangle. public static int[] findRectangleCorners(int width, int height, int[] pixels) { int minX = Integer.MAX_VALUE, maxX = -1, minY = Integer.MAX_VALUE, maxY = -1; // Calculate the threshold for white pixels (750 as median) int threshold = 750; // Iterate through all pixels to find the white ones for (int i = 0; i < pixels.length; i++) { if (pixels[i] > threshold) { // White pixel int x = i % width; int y = i / width; // Update the rectangle bounds minX = Math.min(minX, x); maxX = Math.max(maxX, x); minY = Math.min(minY, y); maxY = Math.max(maxY, y); } } // Return the coordinates of the top-left and bottom-right corners return new int[] {minX, minY, maxX, maxY}; }
      1 resposta

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

      avatar
      KBR
      3.8★Remuneração e benefícios

      Buscas de vagas

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