Upload Button Icon Add office photos

Filter interviews by

Jeppesen Software Engineer Interview Questions and Answers

Updated 29 Jun 2024

Jeppesen Software Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Describe experiences in java/j2ee technologies
  • Ans. 

    Experienced in developing Java/J2EE applications with Spring framework and Hibernate ORM.

    • Developed RESTful web services using Spring Boot for efficient communication between client and server.

    • Utilized Hibernate ORM for database interaction, ensuring data integrity and security.

    • Worked on implementing security features like authentication and authorization using Spring Security.

    • Used JSP and Servlets for dynamic web page ...

  • Answered by AI
  • Q2. Explain MVC framework
  • Ans. 

    MVC is a software design pattern that separates an application into three main components: Model, View, and Controller.

    • Model represents the data and business logic of the application

    • View is responsible for displaying the data to the user

    • Controller acts as an intermediary between Model and View, handling user input and updating the Model accordingly

  • Answered by AI
  • Q3. Explain anything developed new.
  • Ans. 

    Developed a new mobile application for tracking daily water intake.

    • Designed user-friendly interface for inputting water consumption

    • Implemented reminder notifications to encourage regular hydration

    • Integrated with health tracking apps to provide comprehensive wellness data

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Not Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

A test that covers all fundamental topics, including networking, object-oriented programming (OOP), and data structures and algorithms (DSA).

Round 2 - Technical 

(2 Questions)

  • Q1. Write code for quick sort
  • Q2. Puzzle
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

The first round was an aptitude test, question ranging from medium to difficult .The marking scheme included -1,+1 for each incorrect and correct answer it was quite challenging . Additionally there were multiple-choice questions based on C++ output , which followed same marking scheme. Question were easy and most of the students were filtered out in this orund

Round 2 - Technical 

(2 Questions)

  • Q1. Basic oops concepts and code to implement them.
  • Q2. Explain your projects, what technology, dataset you used ,challenges you faced.

Interview Preparation Tips

Topics to prepare for LG Soft India Software Engineer interview:
  • apitude
  • C++
Interview preparation tips for other job seekers - Please take aptitude seriously and prepare it thoroughly
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the smart pointers?
  • Ans. 

    Smart pointers are objects that store a pointer to dynamically allocated memory and provide automatic memory management.

    • Smart pointers help prevent memory leaks by automatically releasing memory when the pointer is no longer needed.

    • Examples include unique_ptr, shared_ptr, and weak_ptr in C++.

    • unique_ptr is used for exclusive ownership, shared_ptr for shared ownership, and weak_ptr to break circular references.

  • Answered by AI
  • Q2. What is the lamda function?
  • Ans. 

    A lambda function is a small anonymous function defined in a single line of code without a name.

    • Lambda functions are often used in programming languages that support functional programming.

    • They are commonly used for short, simple operations that do not require a named function.

    • Lambda functions can take any number of arguments but can only have one expression.

    • Example: lambda x: x*2 defines a lambda function that doubles

  • Answered by AI
Round 2 - Behavioral 

(2 Questions)

  • Q1. What is threading?
  • Ans. 

    Threading is a way for a program to split itself into multiple simultaneous tasks.

    • Threading allows for parallel execution of tasks within a program.

    • Each thread has its own stack and runs independently of other threads.

    • Threads can communicate with each other and share resources.

    • Example: A web server handling multiple client requests concurrently using threads.

  • Answered by AI
  • Q2. What is lamda function?
  • Ans. 

    Lambda function is an anonymous function in programming that can have multiple parameters and can be used as an argument to other functions.

    • Lambda functions are also known as anonymous functions because they do not have a name.

    • They are often used for short, one-time tasks that do not require a separate function definition.

    • Lambda functions can take multiple parameters and return a single value.

    • Example: lambda x, y: x + ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

MCQ(objective ) question... computer based exam about computer skills

Round 2 - Group Discussion 

They will give one concept and conduct debate candidates will speak argue advantage and disadvantage about that concept

Round 3 - Technical 

(1 Question)

  • Q1. Face to face technical round. They will ask what's html and what's python advantages of python ect....
  • Ans. Hyper text markup language, it will used for creating website and designing website
  • Answered Anonymously
Round 4 - HR 

(4 Questions)

  • Q1. Finally Hr round...face to face interview
  • Q2. Why we would hiring u
  • Q3. Why are you selecting this job
  • Q4. What you expect about your salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Id any freshers attend this interview please don't ask more questions about skills... Bcz the graduation didn't built their skills.... experience will build their skill and knowledge
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Apti quest normal maths english

Round 2 - Coding Test 

Medium leetchode question

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Frequency of character
  • Ans. 

    The question is asking about how often each character appears in a given string.

    • Iterate through the string and count the frequency of each character using a hashmap.

    • Return the hashmap with characters as keys and their frequencies as values.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic and advanced concepts
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Oct 2022.

Round 1 - Coding Test 

It was open coding contest called Ode 2 Code organised on hackerearth. Top 100 students got interview calls

Round 2 - One-on-one 

(3 Questions)

  • Q1. This was a 1:1 online technical interview.
  • Q2. Basic question on web development, regarding projects in resume. 1 problem solving question and DSA basics
  • Q3. I was asked to explain merge sort
  • Ans. 

    Merge sort is a divide and conquer algorithm that divides the input array into two halves, sorts each half, and then merges the sorted halves.

    • Divide the array into two halves

    • Recursively sort each half

    • Merge the sorted halves back together

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Xiaomi Software Engineer interview:
  • Web Development
  • Data Structures
  • Algorithms
  • Computer science
Interview preparation tips for other job seekers - Don't join this company. It has terrible work culture

Skills evaluated in this interview

I applied via campus placement at Indian Institute of Technology (IIT), Kanpur and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic C related questions, and computer architecture and operating systems

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to be good with C language, dig deep and try to prepare way ahead like before 1 week is minimal.

Jeppesen Interview FAQs

How many rounds are there in Jeppesen Software Engineer interview?
Jeppesen interview process usually has 1 rounds. The most common rounds in the Jeppesen interview process are One-on-one Round.
What are the top questions asked in Jeppesen Software Engineer interview?

Some of the top questions asked at the Jeppesen Software Engineer interview -

  1. Describe experiences in java/j2ee technolog...read more
  2. Explain anything developed n...read more
  3. Explain MVC framew...read more

Tell us how to improve this page.

Jeppesen Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Compare Jeppesen with

Vivo

4.1
Compare

Reliance Digital

4.1
Compare

Nokia

4.1
Compare

Yazaki

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview