Aller au contenuAller au pied de page
  • Emplois
  • Entreprises
  • Salaires
  • Pour les employeurs

      Boostez votre carrière

      Découvrez votre salaire potentiel, décrochez des emplois de rêve et partagez vos témoignages de manière anonyme.

      employer cover photo
      employer logo
      employer logo

      FCamara

      Employeur impliqué

      À propos
      Avis
      Salaires et avantages
      Emplois
      Entretiens
      Entretiens
      Recherches associées: Avis sur FCamara | Offres d’emploi chez FCamara | Salaires chez FCamara | Avantages sociaux chez FCamara
      Entretiens chez FCamaraEntretiens d’embauche pour Software Engineer chez FCamaraEntretien chez FCamara


      Glassdoor

      • À propos
      • Récompenses
      • Blog
      • Nous contacter
      • Guides

      Employeurs

      • Compte employeur gratuit
      • Centre employeur
      • Blog pour les employeurs

      Informations

      • Aide
      • Règles de la communauté
      • Conditions d'utilisation
      • Confidentialité et choix publicitaires
      • Ne pas vendre ni partager mes informations
      • Outil de consentement aux cookies

      Travailler avec nous

      • Annonceurs
      • Carrières
      Télécharger l'application

      • Parcourir par :
      • Entreprises
      • Emplois
      • Lieux

      Copyright © 2008-2026. Glassdoor LLC. « Glassdoor », son logo, « Worklife Pro » et « Bowls » sont des marques déposées de Glassdoor LLC.

      Entreprises suivies

      Tenez-vous au courant des dernières opportunités et profitez de conseils d’initiés en suivant les entreprises de vos rêves.

      Recherche d’emplois

      Obtenez des recommandations et des mises à jour personnalisées en démarrant vos recherches.

      Entretien pour Software Engineer

      1 févr. 2026
      Candidat à l'entretien anonyme
      Aucune offre
      Expérience négative

      Autres retours d’entretien d’embauche pour un poste comme Software Engineer chez FCamara

      Entretien pour Software Engineer

      20 juin 2024
      Employé (anonyme)
      São Paulo,
      Entretien moyen

      Candidature

      J'ai postulé en ligne. J'ai passé un entretien chez FCamara en janv. 2026

      Entretien

      Processo MUITO ruim, baseado em IA, feedback nulo. Parece até vaga falsa. Me pergunto até como seria no dia dia e como gostariam de serem vistos no mercado. Basicamente te faz perder tempo

      Questions d'entretien [1]

      Question 1

      Explique o funcionamento do event-loop do Node
      Répondre à cette question
      1
      Offre acceptée
      Expérience positive
      Entretien moyen

      Candidature

      J'ai postulé en ligne. Le processus a pris 2 semaines. J'ai passé un entretien chez FCamara (São Paulo, ) en déc. 2021

      Entretien

      Questões de média dificuldade em Python. Fazendo uma boa parte do conteúdo do Leet Code, creio que seja simples passar. Com ênfase em listas e dicionários, comprehension e parsing. Abaixo listei uma questão do leet code parecida com uma das questões que me foram perguntadas.

      Questions d'entretien [1]

      Question 1

      Given an integer array nums and an integer val, remove all occurrences of val in nums in-place. The order of the elements may be changed. Then return the number of elements in nums which are not equal to val. Consider the number of elements in nums which are not equal to val be k, to get accepted, you need to do the following things: Change the array nums such that the first k elements of nums contain the elements which are not equal to val. The remaining elements of nums are not important as well as the size of nums. Return k. Custom Judge: The judge will test your solution with the following code: int[] nums = [...]; // Input array int val = ...; // Value to remove int[] expectedNums = [...]; // The expected answer with correct length. // It is sorted with no values equaling val. int k = removeElement(nums, val); // Calls your implementation assert k == expectedNums.length; sort(nums, 0, k); // Sort the first k elements of nums for (int i = 0; i < actualLength; i++) { assert nums[i] == expectedNums[i]; } If all assertions pass, then your solution will be accepted. Example 1: Input: nums = [3,2,2,3], val = 3 Output: 2, nums = [2,2,_,_] Explanation: Your function should return k = 2, with the first two elements of nums being 2. It does not matter what you leave beyond the returned k (hence they are underscores). Example 2: Input: nums = [0,1,2,2,3,0,4,2], val = 2 Output: 5, nums = [0,1,4,0,3,_,_,_] Explanation: Your function should return k = 5, with the first five elements of nums containing 0, 0, 1, 3, and 4. Note that the five elements can be returned in any order. It does not matter what you leave beyond the returned k (hence they are underscores). Constraints: 0 <= nums.length <= 100 0 <= nums[i] <= 50 0 <= val <= 100
      Répondre à cette question