Upload Button Icon Add office photos
Engaged Employer

i

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

Eloelo Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Eloelo IOS Developer Interview Questions and Answers

Updated 4 Oct 2024

Eloelo IOS Developer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Websocket to chat
  • Ans. 

    WebSockets enable real-time communication for chat applications, allowing instant message delivery between clients and servers.

    • WebSocket is a protocol providing full-duplex communication channels over a single TCP connection.

    • To implement WebSocket in an iOS app, use the URLSessionWebSocketTask class for managing connections.

    • Example: Establish a connection using let webSocketTask = URLSession.shared.webSocketTask(with: ...

  • Answered by AI
  • Q2. Design live streaming
  • Ans. 

    Designing live streaming for an IOS app

    • Use a reliable streaming service like Wowza or AWS Elemental

    • Implement real-time video encoding and decoding

    • Ensure low latency for live interactions

    • Include features like chat, reactions, and notifications

    • Optimize for different network conditions and device capabilities

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Eloelo?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview in Dec 2016.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself tell me about your internship My interview was unstructured(i.e based on your reply interviewer was asking Questions)

Interview Preparation Tips

Round: Test
Experience: Questions were very difficult and solving one Question gets you shortlisted for interview
I don't remember the Questions
Duration: 1 hour 30 minutes
Total Questions: 2

Skills: Internship Work, Inter Person Communication Skills
College Name: IIT Roorkee

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
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Mar 2023. There were 4 interview rounds.

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 - Aptitude Test 

A Google Form-based Aptitude Test with Basic Questions

Round 3 - Technical 

(1 Question)

  • Q1. Asked Basic Time Complexity and DSA Questions like Time Complexity Of quick sort use of stack Data Structure etc
Round 4 - Coding Test 

It was the final round asked to do a medium-level coding Question to convert a number such as 244 to word i.e Two Hundred and Forty four

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Assignment 

It was an assignment where we were instructed to create a screen that fetches data from the backend and renders it with the functionality of bookmarking.

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

I applied via Referral and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Machine Coding of Google Calendar

Round 2 - Coding Test 

Machine Coding of MP3 Player

Round 3 - One-on-one 

(1 Question)

  • Q1. Find Duplicates problem
  • Ans. 

    Find duplicates in an array of strings

    • Iterate through the array and store each element in a hash set

    • If an element is already in the hash set, it is a duplicate

    • Return a list of all duplicates found

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Why Simpl? and compensation
  • Ans. 

    Simpl offers a collaborative and innovative work environment with competitive compensation.

    • Simpl values teamwork and creativity in software development

    • Competitive compensation package offered to attract top talent

    • Opportunities for growth and learning through challenging projects

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was good , 2 questions are there to code.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Cs fundamental, Projects, coding.
  • Q2. A simple coding question of string using map
  • Ans. 

    Using a map to manipulate strings can simplify tasks like counting characters or finding duplicates efficiently.

    • Use a HashMap to count occurrences of each character in a string. Example: 'hello' -> {'h': 1, 'e': 1, 'l': 2, 'o': 1}.

    • To find duplicates, iterate through the map and collect characters with a count greater than 1. Example: 'banana' -> ['a', 'n'].

    • Maps can also be used to store transformations, like mapp...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. What is React router. what does it do.
  • Ans. 

    React Router is a popular routing library for React applications.

    • React Router is used for handling navigation in React applications.

    • It allows defining multiple routes in the application and rendering different components based on the URL.

    • React Router provides components like BrowserRouter, Route, Switch, and Link for routing.

    • Example: will render the About component when the URL...

  • Answered by AI
  • Q2. Questions based on react basics.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be patience you will do it easily.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Assignment 

A simple Google form assignment to shortlist candidates

Round 2 - Technical 

(2 Questions)

  • Q1. ML related questions
  • Q2. Find duplicates in array
  • Ans. 

    Use a hash set to find duplicates in an array of strings.

    • Create a hash set to store unique elements.

    • Iterate through the array and check if each element is already in the hash set.

    • If it is, then it is a duplicate.

    • Example: ['apple', 'banana', 'apple', 'orange'] should return 'apple' as a duplicate.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Eazy process

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2022. 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 - Coding Test 

3 Coding question medium level

Round 3 - Technical 

(1 Question)

  • Q1. Asked 3 coding queston and some basis CS questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interview

Interview Questionnaire 

1 Question

  • Q1. What certifications should a software developer have?
  • Ans. 

    Certifications are not mandatory for software developers, but can add value to their resume.

    • Certifications in programming languages like Java, Python, C++

    • Certifications in software development methodologies like Agile, Scrum

    • Certifications in cloud computing platforms like AWS, Azure

    • Certifications in security like CISSP, CEH

    • Certifications in project management like PMP

    • Certifications in mobile app development like Androi...

  • Answered by AI

I applied via Campus Placement and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What is the polymorphism?
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • Polymorphism allows objects to be treated as if they are of multiple types.

    • It enables code to be written that can work with objects of different classes in a uniform way.

    • Polymorphism can be achieved through method overloading or method overriding.

    • Example: A shape class can have multiple subclasses like circle, square, triangle, etc. and all can be treated a...

  • Answered by AI
  • Q2. What is inheritance?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows for code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class, and can also add new properties and method...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - online process in the test of the question

Eloelo Interview FAQs

How many rounds are there in Eloelo IOS Developer interview?
Eloelo interview process usually has 1 rounds. The most common rounds in the Eloelo interview process are Technical.
How to prepare for Eloelo IOS Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Eloelo. The most common topics and skills that interviewers at Eloelo expect are Design Patterns, Objective C, ORM, Swift and iOS.
What are the top questions asked in Eloelo IOS Developer interview?

Some of the top questions asked at the Eloelo IOS Developer interview -

  1. Design live stream...read more
  2. Websocket to c...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Interview Questions from Similar Companies

AmbitionBox Interview Questions
4.8
 • 150 Interviews
Cogoport Interview Questions
3.1
 • 54 Interviews
Treebo Hotels Interview Questions
3.2
 • 25 Interviews
KrazyBee Interview Questions
3.7
 • 17 Interviews
Simpl Interview Questions
2.8
 • 17 Interviews
Lokal App Interview Questions
3.7
 • 16 Interviews
EazyDiner Interview Questions
3.0
 • 15 Interviews
TripFactory Interview Questions
2.2
 • 15 Interviews
Cashkaro.com Interview Questions
3.6
 • 14 Interviews
View all
Product Designer
9 salaries
unlock blur

₹7.8 L/yr - ₹20 L/yr

QA Engineer
5 salaries
unlock blur

₹5 L/yr - ₹7 L/yr

Senior Product Manager
4 salaries
unlock blur

₹43 L/yr - ₹55 L/yr

SDE-2
4 salaries
unlock blur

₹21 L/yr - ₹25 L/yr

Senior Devops Engineer
4 salaries
unlock blur

₹18 L/yr - ₹40 L/yr

Explore more salaries
Compare Eloelo with

Cogoport

3.1
Compare

KrazyBee

3.7
Compare

Treebo Hotels

3.2
Compare

Woodenstreet.com

3.1
Compare
write
Share an Interview