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

      autarc

      Is this your company?

      About
      Reviews
      Pay & benefits
      Jobs
      Interviews
      Interviews
      Related searches: autarc reviews | autarc jobs | autarc salaries | autarc benefits
      autarc interviewsautarc Software Lead interviewsautarc 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.

      Top companies for "Compensation and Benefits" near you

      avatar
      Amazon
      3.7★Compensation & Benefits
      avatar
      Deloitte
      3.5★Compensation & Benefits
      avatar
      IBM
      3.6★Compensation & Benefits
      avatar
      Google
      4.5★Compensation & Benefits

      Software Lead Interview

      Sep 17, 2025
      Anonymous Interview Candidate
      Berlin
      Declined offer
      Negative experience
      Average interview

      Application

      I applied through a recruiter. The process took 1 week. I interviewed at autarc (Berlin) in Sep 2025

      Interview

      They gave me a 2-hour take-home to build a Next.js + Tailwind comment system with CRUD, nesting, persistence in IndexedDB (not localStorage), and optional cross-tab sync via BroadcastChannel. In short: display, add, delete, support replies, and keep it stored across refresh. The challenge itself was trivial. It boils down to representing comments as a tree, and the key design decision is whether to model them as a nested tree structure or as a flat list with parent references. I chose the latter, which is the industry best practice used by Reddit, Hacker News, GitHub Discussions, and many others, precisely because it makes CRUD operations simpler and more performant. Despite this, Autarc did not invite me to an interview or even provide proper feedback on my solution. Instead, they dismissed me with a vague remark about "database design," which I can only assume referred to the data structure choice. Since that was the entire point of the exercise, their response shows a lack of understanding of their own testing criteria. If a company cannot recognize that the flat list model is the pragmatic and scalable way to approach this problem, then it suggests they are inept in evaluating technical trade-offs. My impression from the interviews also matched this: bright people, but lacking pragmatism, too quick to fall in love with reinventing the wheel, and too eager to chase shiny projects with fancy tech rather than building things that actually work.

      Interview questions [1]

      Question 1

      Build a simple comment system in react with Tailwind CSS for styling and IndexedDB for persistence (not localStorage). The app should: Display a list of comments Add new comments via a text input Delete comments Support nested replies (comment on comments) Persist comments so they survive refresh/restart Bonus: Implement cross-tab synchronization using the BroadcastChannel API so changes appear across open tabs without refreshing Data model: Each comment has id, text, optional parentId, createdAt, and updatedAt. Goal: Deliver a clean, functional, and maintainable implementation within ~2 hours.
      Answer question