Skip to contentSkip to footer
  • Community
  • Jobs
  • Companies
  • Salaries
  • For Employers
      Notifications

      Loading...

      Elevate your career

      Discover your earning potential, land dream jobs, and share work-life insights anonymously.

      employer cover photo
      employer logo
      employer logo

      FCamara

      Engaged Employer

      About
      Reviews
      Pay & benefits
      Jobs
      Interviews
      Interviews
      Related searches: FCamara reviews | FCamara jobs | FCamara salaries | FCamara benefits
      FCamara interviewsFCamara Software Engineer interviewsFCamara interview


      Glassdoor

      • About / Press
      • Awards
      • Blog
      • Research
      • Contact Us
      • Guides

      Employers

      • Free Employer Account
      • Employer Center
      • Employers Blog

      Information

      • Help
      • Guidelines
      • Terms of Use
      • Privacy & Ad Choices
      • Do Not Sell Or Share My Information
      • Cookie Consent Tool
      • Security

      Work With Us

      • Advertisers
      • Careers
      Download the App

      • Browse by:
      • Companies
      • Jobs
      • Locations
      • Communities
      • Recent Posts

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls," and logo are proprietary trademarks of Glassdoor LLC.

      Company Bowl sample

      Want the inside scoop on your own company?

      Check out your Company Bowl for anonymous work chats.

      Bowls

      Get actionable career advice tailored to you by joining more bowls.

      Followed companies

      Stay ahead in opportunities and insider tips by following your dream companies.

      Job searches

      Get personalized job recommendations and updates by starting your searches.

      Software Engineer Interview

      Feb 1, 2026
      Anonymous Interview Candidate
      No offer
      Negative experience
      Average interview

      Application

      I applied online. I interviewed at FCamara in Jan 2026

      Interview

      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

      Interview questions [1]

      Question 1

      Explique o funcionamento do event-loop do Node
      Answer question
      1

      Other Software Engineer Interview Reviews for FCamara

      Software Engineer Interview

      Jun 20, 2024
      Anonymous employee
      São Paulo, São Paulo
      Accepted offer
      Positive experience
      Average interview

      Application

      I applied online. The process took 2 weeks. I interviewed at FCamara (São Paulo, São Paulo) in Dec 2021

      Interview

      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.

      Interview questions [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
      Answer question

      Top companies for "Compensation and Benefits" near you

      avatar
      IBM
      3.6★Compensation & Benefits
      avatar
      Dell Technologies
      3.5★Compensation & Benefits
      avatar
      Concentrix
      3.6★Compensation & Benefits
      avatar
      Hewlett Packard Enterprise | HPE
      3.6★Compensation & Benefits