Passa al contenutoPassa al piè di pagina
  • Lavori
  • Aziende
  • Stipendi
  • Per le aziende

      Migliora la tua carriera

      Scopri le tue potenzialità di guadagno, trova lavori da sogno e condividi approfondimenti su lavoro e vita privata in forma anonima.

      employer cover photo
      employer logo
      employer logo

      Order

      Questa è la tua azienda?

      Circa
      Recensioni
      Stipendi e benefit
      Lavori
      Colloqui
      Colloqui
      Ricerche correlate: Recensioni su Order | Offerte di lavoro di Order | Stipendi di Order | Benefit di Order
      Colloqui di OrderColloqui per Senior Software Engineer presso OrderColloquio di Order


      Glassdoor

      • Chi siamo
      • Contattaci

      Aziende

      • Account Business gratuito
      • Spazio per le aziende
      • Blog per le aziende

      Informazioni

      • Aiuto
      • Linee guida
      • Condizioni d'uso
      • Privacy e scelte pubblicitarie
      • Non vendere né condividere le mie informazioni
      • Strumento per l'accettazione dei cookie

      Lavora con noi

      • Inserzionisti
      • Carriere
      Scarica l'app

      • Cerca:
      • Aziende
      • Lavori
      • Località

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls" e il relativo logo sono marchi registrati di Glassdoor LLC.

      Aziende seguite

      Non lasciarti sfuggire opportunità e informazioni privilegiate seguendo le aziende dove vorresti lavorare.

      Ricerche di lavoro

      Ricevi suggerimenti e aggiornamenti personalizzati avviando le tue ricerche.

      Le migliori aziende per "stipendio e benefit" vicino a te

      avatar
      AnyVan
      4.0★Stipendio e benefit

      Colloquio per Senior Software Engineer

      17 ott 2023
      Candidato anonimo a colloquio
      Offerta rifiutata
      Esperienza negativa
      Colloquio facile

      Candidatura

      Ho sostenuto un colloquio presso Order

      Colloquio

      The company's interview process starts with a phone screening, followed by a take-home assignment, and then an onsite visit. They appear to prioritize interviewing a large volume of engineers, initially not displaying high selectivity in their approach.

      Domande di colloquio [1]

      Domanda 1

      Review this: class DocumentController < ApplicationController before_action :authenticate def index if /[0-9]+/.match?(params[:q]) render json: Document.find params[:q] elsif /^[A-Za-z]+/.match?(params[:q]) render json: Document.where("name LIKE #{patams[:q]}") else render json: Document.all end end def show org_id = params[:org] id = params[:id] doc = Document.find_by organization_id: org_id, id: id end def create doc = Document.build params[:document] if doc.save params[:attachments].each do |attachment_params| begin url = GcsUploadService.upload_attachments!(doc.id, attachment_params) unless url.blank? Attachment.create attachment_params.merge({url: url}) end rescue Exception => e render json: { errors: e }, status: :no_acceptable end end render json: doc else render json: { errors: doc.errors }, status: :not_acceptable end end def update doc = Document.includes(:attachments).find params[:document][:id] if params[:document].key?(:attachments) params[:document][:attachments].each do |attachment| unless doc.attachments.pluck(:id).includes?(attachment.id) attachment.destroy end end end render json: doc.update(params[:document]) end def destroy doc = Document.find params[:id] doc.attachments.each do |a| a.delete end head :no_content, status: :success end end
      Rispondi alla domanda
      1