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

      Intuit

      Employeur impliqué

      À propos
      Avis
      Salaires et avantages
      Emplois
      Entretiens
      Entretiens
      Recherches associées: Avis sur Intuit | Offres d’emploi chez Intuit | Salaires chez Intuit | Avantages sociaux chez Intuit
      Entretiens chez IntuitEntretiens d’embauche pour Cloud Software Engineer chez IntuitEntretien chez Intuit


      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.

      Meilleures entreprises pour « Rémunération et avantages » près de chez vous

      avatar
      Yardi Systems
      3.8★Rémunération et avantages
      avatar
      Epic
      4.0★Rémunération et avantages
      avatar
      Software AG
      4.0★Rémunération et avantages
      avatar
      AVEVA
      3.8★Rémunération et avantages

      Entretien pour Cloud Software Engineer

      30 janv. 2018
      Candidat à l'entretien anonyme
      Aucune offre
      Expérience neutre
      Entretien moyen

      Candidature

      J'ai postulé via une agence de recrutement. Le processus a pris 1 semaine. J'ai passé un entretien chez Intuit en janv. 2018

      Entretien

      Applied through KForce for a contractual position.Interview was done by Developmental manager and an Engineer. They were looking for very strong Java,RDBMS and AWS Skills as the project I was moving to was more on Data Analytics and Data migration.

      Questions d'entretien [3]

      Question 1

      1) Asked to write my own rest services with Spring boot and was asked to write a JUnit for that.
      1 réponse

      Question 2

      2) Write "group by" operation in Java. Assume there is a CSV file called "emp_dept.txt" The file has two columns "employee_id" and "dept_id" separated by comma Write equivalent of following query select dept_id, count(*) from table1 where dept_id != 3 group by dept_id having count(*) > 50 order by count(*) desc First was asked to explain about the query and then implement it in Java without any ORM/JPA
      Répondre à cette question

      Question 3

      2) Consider the program below a) public class ProgramGenerator {             public static class Expression {                         private int lhs;                                                 public int getLhs() {return lhs;}                         public int setLhs(int lhs) {this.lhs = lhs;}                                                 private int rhs;                         public int getRhs() {return rhs;}                         public int setRhs(int rhs) {this.rhs = rhs;}                                                 private String operator;                         public String getOperator() {return operator;}                         public String setOperator(String operator) {this.operator = operator;}                                     }               public static void generateProgram(ProgramGenerator.Expression expression) {                         System.out.println("public class ConstructedProgram {");                         System.out.println("public static void main(String[] args) {");                         System.out.print("System.out.println(");                         System.out.print(expression.getLhs());                         System.out.print(expression.getLhs()==7?"-":expression.getOperator());                         System.out.print(expression.getLhs()==7?expression.getRhs()*2 :expression.getRhs());                         System.out.println(");");                         System.out.println("}\n}");             }   ... }   What is the output of the following code snippet:             ProgramGenerator.Expression expression = new ProgramGenerator.Expression();             expression.setLhs(7);             expression.setRhs(5);             expression.setOperator("+");             ProgramGenerator.generateProgram(expression) b )Modify the class ProgramGenerator so that if LHS is 7, then the expression is changed in such a manner that the operator is inverted (i.e., + becomes - and - becomes +) and the RHS is multiplied by two. So, in the above example; the output of ConstructedProgram will be -3.
      Répondre à cette question