Ir para o conteúdoIr para a pasta
  • Vagas
  • Empresas
  • Salários
  • Para empresas

      Avance em sua carreira

      Descubra qual pode ser seu salário, conquiste a vaga dos seus sonhos e compartilhe insights de qualidade de vida com sigilo.

      employer cover photo
      employer logo
      employer logo

      Amadeus

      Empresa engajada

      Sobre
      Avaliações
      Remuneração e benefícios
      Vagas
      Entrevistas
      Entrevistas
      Buscas relacionadas: Avaliações da empresa Amadeus | Vagas da empresa Amadeus | Salários da empresa Amadeus | Benefícios da empresa Amadeus
      Entrevistas da empresa AmadeusEntrevistas do cargo de Software Development Engineer da empresa AmadeusEntrevista da empresa Amadeus


      Glassdoor

      • Sobre
      • Prêmios
      • Blog
      • Fale conosco

      Empresas

      • Conta gratuita de empresa
      • Área da empresa
      • Blog para empresas

      Informações

      • Ajuda
      • Regras da Comunidade
      • Termos de Uso
      • Privacidade e opções de anúncios
      • Não venda nem compartilhe minhas informações
      • Ferramenta de consentimento de uso de cookies

      Trabalhe conosco

      • Anunciantes
      • Carreiras
      Baixe o aplicativo:

      • Busque por:
      • Empresas
      • Vagas
      • Localizações

      Copyright © 2008-2026. Glassdoor LLC. “Glassdoor”, “Worklife Pro”, “Bowls” e o logotipo do Glassdoor são marcas comerciais pertencentes à Glassdoor LLC.

      Empresas seguidas

      Fique por dentro de todas as oportunidades e dicas internas seguindo as empresas de seus sonhos.

      Entrevista para Software Development Engineer

      18 de jul. de 2013
      Candidato(a) sigiloso(a) à entrevista
      Londres, Inglaterra
      Nenhuma oferta
      Experiência negativa
      Entrevista difícil

      Candidatura

      Candidatei-me por meio de uma agência de recrutamento. Fiz uma entrevista na empresa Amadeus (Londres, Inglaterra).

      Entrevista

      Got interviewed for a development position in C++, not from Amadeus directly but from a secondary company. The first interview was held on the phone, then details were sent to my email. I had to sustain a thought test in less than 30 minutes for advancing in the process, but didn't get a minimum score -- annoying that they don't tell that right away... See below some stock questions...

      Perguntas de entrevista [5]

      Pergunta 1

      1. How to achieve automatic type conversion from type X to type Y? a. X can define the member function operator Y() b. a) or b) can be used c. Y can define the constructor Y(const X&) d. none of the above 2. class Coordinate{ int x; int y; public: Coordinate(int a=0, int b=0) { x=a; y=b; }; }; What are the values for the following object: Coordinate point(10); a. x=10,y=0 b. x=0,y=10 c. x=10,y=10 d. x=0,y=0 3. What type of argument can the following function take : Void foo(); a. any number or type of arguments b. a character c. an integer d. no an integer argument of any type 4. Consider the following function declarations in a header file: void doit(char *, int); int doit(char *) ; float doit(float, float) ; Which of the following declarations cannot follow in the same header: a. void doit(int, char *); b. int doit(int) ; c. float doit(char *) ; d. int doit(int, int) ;
      3 respostas

      Pergunta 2

      5. What is the output of the snippet below? // suitable #includes class A { public: void name() const { std::cout << "A::name" << std::endl;} virtual ~A() {} }; class B : public virtual A { public: void name() const { std::cout << "B::name" << std::endl;} }; int main(int, char *[]) { const A *x = new B; x->name(); return 0; } a. A::name b. B::name c. A::name B::name d. none of the above 6. For some class Data, what does the following code snippet do? Data *p = new Data[10]; delete p; a. destructs all 10 elements in the array pointed at by p, and releases all the memory b. destructs just the element pointed at by p, and releases all the memory c. it compiles, but the run-time behaviour is not well defined d. it fails to compile 7. Which of the following code snippets correctly implements a user-defined assignment operator declared as follows: Data& operator=(const Data &that) a. { if (this != &that) { ... copy data ... } return this; } b. { if (*this != that) { ... copy data ... } return *this; } c. { if (this != that) { ... copy data ... } return this; } d. { if (this != &that) { ... copy data ... } return *this; } 8. What will be the output of the following: unsigned int bmf = 48; cout << (bmf == 38) ?15 : 10); a. 15 b. 10 c. 1 d. 0
      1 resposta

      Pergunta 3

      9. Consider the following program #include <iostream.h> class Base{ protected: int a; public: void seta(int x) { a = x;}; void printa(void) {cout << a; }; }; class SecondClass : public Base { public: int b; }; void main (void) { Secondclass tmp; tmp.seta(12); tmp.printa(); } Which of the following is true? a. SecondClass.a is public b. SecondClass.a is private c. SecondClass.a is protected d. SecondClass.a is not accessible 10. Which of the following should be made private to prevent an object from being copied? a. copy constructor b. assignment operator c. both of the above d. both of the above and also the default constructor 11. Members of a class declared as protected are: a. accessible only by the compiler b. accessible only by the members of its own class c. accessible only by the members of its own class and classes inherited from it d. accessible by anything in the same scope as the class 12. Given the following code fragment, what output would be generated? int i; for (int i = 0; i < 4; ++ i); std::cout << i << std::endl; a. 0 b. 3 c. 4 d. undefined
      1 resposta

      Pergunta 4

      13. What is the result of executing the code fragment below? // suitable #includes class Text { public: Text(const std::string &text) : data(new char[text.size() + 1000]) { std::copy(text.begin(), text.end(), data); } ~Text() { delete [] data; } void print() const { std::cout << data << std::endl; } private: char *data; }; int main(int, char *[]) { Text outer("hello"); { const Text inner("world"); outer = inner; } outer.print(); return 0; } a. prints "hello" b. prints "world", but there is a buffer overflow in the constructor c. prints "world", no problems anywhere d. none of the above 14. For some class Value, which of the following fragments is the preferred way of writing the declaration of the equality operator? a. extern bool operator==(const Value &lhs, const Value &rhs); b. class Value { public: bool operator==(const Value &other); }; c. class Value { public: bool operator==(const Value *other); }; d. class Value { public: bool operator==(const Value &other) const; }; 15. Consider the following line of code: C c1 = c2; What method is called ? a. Assignment operator b. Copy constructor c. Both d. None of the above 16. Consider the following code: struct A { int i; }; class B { int j; } a. A::i is publicly accessible b. B:i is publicly accessible c. both the above are true d. Neither the above are true
      1 resposta

      Pergunta 5

      17. The following line appears in the header file of class Node: friend class Queue; What does it give ? a. an instance of Queue the ability to construct a Node object b. an instance of Node the ability to construct a Queue object c. Queue member functions unrestricted access to private members of Node d. Node member functions unrestricted access to private members of Queue 18. Consider the following program #include <iostream.h> int main(void) { int p[2] = {2,4}; (*p)++ ; cout << "Output : " << p[0] << endl; return 0; } What will be the output? a. output = 2 b. output = 3 c. output = 4 d. The program won't compile due to syntax error 19. Consider the following program int symmetricTrans(int x, const char c); float symmetricTrans(const char x, float f) ; Which of the following correctly declares and initialises function pointers the overloaded function: a. void *fp1 = symmetricTrans(int, const, char); void *fp2 = symmetricTrans(const char, float) ; b. void *fp1 = &symmetricTrans ; void *fp2 = &symmetricTrans ; c. int (*fp1)(int, const char) = &symmetricTrans ; float (*fp2)(const char, float) = &symmetricTrans ; d. int (*fp1) = &symmetricTrans(int, const char) ; float (*fp2) = &symmetricTrans(const char, float) ; 20. Can you name the special functions a C++ compiler creates implicitly on a class? a. the default constructor and default destructor b. the default constructor, copy constructor and assignment operator c. the default constructor, copy constructor and destructor d. all of the above
      1 resposta
      20

      Outras avaliações de entrevista de vagas de Software Development Engineer da empresa Amadeus

      Entrevista para Software Development Engineer

      31 de mar. de 2026
      Funcionário(a) sigiloso(a)
      Bengaluru
      Oferta aceita
      Experiência positiva
      Entrevista fácil

      Candidatura

      Fiz uma entrevista na empresa Amadeus (Bengaluru).

      Entrevista

      First round was a coding OA, then I gave a quantitative aptitude test, then I attended an interview where they asked two coding questions and a lot of behavioural questions, this was an on campus process.

      Perguntas de entrevista [1]

      Pergunta 1

      How to reverse a doubly linked list
      Responder à pergunta
      2

      Entrevista para Software Development Engineer

      5 de out. de 2025
      Funcionário(a) sigiloso(a)
      Oferta aceita
      Experiência positiva
      Entrevista com nível médio de dificuldade

      Candidatura

      Fiz uma entrevista na empresa Amadeus.

      Entrevista

      It was good with 3 round of interview. Solid questions of c++ and technical aspect. Questions was about critical thinking and details of c++. My prior experience was not mentioned at all.

      Perguntas de entrevista [1]

      Pergunta 1

      C++ Polytmorphism and some debugging
      Responder à pergunta

      Entrevista para Software Development Engineer

      1 de set. de 2024
      Candidato(a) sigiloso(a) à entrevista
      Vellore
      Nenhuma oferta
      Experiência neutra
      Entrevista com nível médio de dificuldade

      Candidatura

      Candidatei-me por meio de uma faculdade ou universidade. O processo levou 2 dias. Fui entrevistado pela Amadeus (Vellore) em ago. de 2024

      Entrevista

      The process was an on-campus recruitment drive for freshers. It has 2 online rounds, the 1st was a technical MCQ and DSA round. It has around 35 technical MCQs from various topics like Java, DBMS, OS, CN, Cloud, Ruby, R, Swift, Golang and 2 DSA easy questions. The next online round was based on a shortlist from the above round and had only English aptitudes like passages, grammar and synonyms, antonym and a section of maths (mostly data interpretation). The final was an HR plus technical interview and questions were based on the resume and core topics with a discussion and problem-solving of a few easy to medium-level DSA questions. Make sure to solve some puzzles from GFG as they also asked for puzzles and only selected applicants who could solve them.

      Perguntas de entrevista [1]

      Pergunta 1

      Which sorting algorithm is the fastest in term of TC ?
      Responder à pergunta

      Buscas de vagas

      Comece a buscar vagas para receber atualizações e recomendações personalizadas.