Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Ixigo.com Team. If you also belong to the team, you can get access from here

Ixigo.com Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Ixigo.com IOS Developer Interview Questions and Answers

Updated 4 Dec 2024

Ixigo.com IOS Developer Interview Experiences

1 interview found

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

(1 Question)

  • Q1. Around asynchronous programming specifically in ios, design patterns, memory management?

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Ixigo.com?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Discussion about Hashmaps.
  • Q2. How to make Spring Applications?
  • Ans. 

    Spring applications can be made using Spring Boot, which simplifies the setup and configuration process.

    • Use Spring Initializr to create a new Spring Boot project

    • Add dependencies in the pom.xml file for required Spring modules

    • Create Java classes with annotations like @Controller, @Service, @Repository, etc.

    • Define application properties in application.properties or application.yml file

    • Run the application using the main m...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Discussion about Goals.
  • Q2. Discussed points from Resume

Skills evaluated in this interview

IOS Developer Interview Questions Asked at Other Companies

asked in Movius Corp
Q1. What will be the output of the following Swift code: \n\nstruct s ... read more
Q2. 1 - MVC PATTERN 2- CLOUSERS & it's type 3- Google SDK like Go ... read more
asked in Movius Corp
Q3. What is the difference between the Liskov Substitution Principle ... read more
asked in Movius Corp
Q4. What is the time complexity for finding the longest common prefix ... read more
asked in Cognizant
Q5. What is optional, difference between struct and class?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

1.30
Basic profit/loss,percentages questions

Round 2 - Technical 

(4 Questions)

  • Q1. 1 hr Asked about closures, hoisting, map, hash
  • Q2. Closures and scopes
  • Q3. Dsa 2 sum problem
  • Ans. 

    The Two Sum problem involves finding two numbers in an array that add up to a specific target sum.

    • Given an array of integers and a target sum, identify two numbers that sum to the target.

    • Example: For array [2, 7, 11, 15] and target 9, the answer is indices 0 and 1 (2 + 7 = 9).

    • Use a hash map to store numbers and their indices for efficient lookup.

    • Time complexity is O(n) with a single pass through the array.

  • Answered by AI
  • Q4. Projects and basicjs
Round 3 - HR 

(1 Question)

  • Q1. Basic related to location, timings
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Mar 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

In aptitude test, team will ask you questions which will based on mathematical reasoning, genral knowledge, family relation and so on.
You can prepare yourself from Google or YouTube also.
All the best.

Round 3 - Group Discussion 

They will give you one topic and you have to put your point of view

Interview Preparation Tips

Topics to prepare for Travclan Technology India Associate interview:
  • Online Marketing
  • Marketing Management
  • Communication Skills
  • Team Leading
  • Business Development
Interview preparation tips for other job seekers - Be confident, don't talk out of the syllabus.
Don't be nervous, you can so it
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Basic dsa, output based questions

Round 3 - Technical 

(1 Question)

  • Q1. Discussion around projects and tech stack
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basic javascript questions.

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jan 2024.

Round 1 - Aptitude Test 

General aptitude, SQL, and basic coding exercises.

Round 2 - Coding Test 

Coding according to our current roles.

Round 3 - Technical 

(1 Question)

  • Q1. General questions according to our role.
Are these interview questions helpful?

I applied via Recruitment Consulltant and was interviewed in Aug 2021. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

English

Round 3 - Assignment 

English writing skills

Round 4 - One-on-one 

(1 Question)

  • Q1. Introduction about self
  • Ans. 

    I am a dedicated professional with a passion for problem-solving and a strong background in project management and teamwork.

    • Background: I hold a degree in Business Administration from XYZ University.

    • Experience: I have 3 years of experience in project management at ABC Corp, where I led a team to successfully complete multiple projects.

    • Skills: Proficient in tools like Microsoft Project and Asana, which I used to streaml...

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Why are you looking for a change?

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through your resume and your previous experience.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Apt questions and some Java related questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Difference between Abstract and Interface class in Java
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while Interface class can only have abstract methods.

    • Abstract class can have constructors, member variables, and methods with implementation.

    • Interface class can only have abstract methods and constants.

    • A class can implement multiple interfaces but can only extend one abstract class.

    • Example: Abstract class - Animal with abstract method 'eat', Interface clas...

  • Answered by AI
  • Q2. Difference between Intent and Intent filter
  • Ans. 

    Intent is used to communicate between components within an application or between different applications, while Intent filter is used to declare the capabilities of a component.

    • Intent is used to start activities, services, and broadcast receivers, while Intent filter is used to specify the types of intents that a component can respond to.

    • Intent is explicit or implicit, while Intent filter is used to filter the intents ...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Basic android question
  • Q2. Have some knowledge about. MVVM, Launch mode, REST API etc

Ixigo.com Interview FAQs

How many rounds are there in Ixigo.com IOS Developer interview?
Ixigo.com interview process usually has 1 rounds. The most common rounds in the Ixigo.com interview process are Technical.

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Software Engineer
48 salaries
unlock blur

₹7 L/yr - ₹19 L/yr

Software Developer
38 salaries
unlock blur

₹8.5 L/yr - ₹25 L/yr

Product Manager
17 salaries
unlock blur

₹14.5 L/yr - ₹43 L/yr

Senior Software Engineer
14 salaries
unlock blur

₹20.5 L/yr - ₹38 L/yr

Software Engineer2
14 salaries
unlock blur

₹13.4 L/yr - ₹21 L/yr

Explore more salaries
Compare Ixigo.com with

American Express Global Business Travel

4.3
Compare

BLS International Services

3.8
Compare

Rao Consultants

4.0
Compare

ATPI

3.9
Compare
write
Share an Interview