Upload Button Icon Add office photos

Filter interviews by

ChatWise Interview Questions and Answers

Updated 5 Nov 2024

ChatWise Interview Experiences

Popular Designations

3 interviews found

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

I applied via Approached by Company and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What are delegates, notification center in iOS?
  • Ans. 

    Delegates and notification center are key components in iOS development for communication between objects and broadcasting events.

    • Delegates are used for one-to-one communication between objects, allowing one object to act on behalf of another.

    • Notification center is used for broadcasting events to multiple objects, allowing for loosely coupled communication.

    • Delegates are commonly used in UITableView and UICollectionView...

  • Answered by AI
  • Q2. Weak vs strong references?
  • Ans. 

    Weak references do not keep a strong hold on an object, allowing it to be deallocated if no strong references exist.

    • Weak references are used to avoid retain cycles in iOS development.

    • Strong references keep a strong hold on an object, preventing it from being deallocated as long as the strong reference exists.

    • Weak references are declared as 'weak var' or 'weak let', while strong references are the default in Swift.

    • Examp...

  • Answered by AI
  • Q3. Caching techniques

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics and have practical experience in building apps. Key is to have made multiple small apps.

Skills evaluated in this interview

IOS Developer Interview Questions asked at other Companies

Q1. 1 - MVC PATTERN 2- CLOUSERS & it's type 3- Google SDK like Google maps 3- How u manage the constraints of any label , stick at every corner & center of view controller, when getting data from json.
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Struct vs Classes
  • Ans. 

    Structs are value types, classes are reference types in Swift.

    • Structs are passed by value, classes are passed by reference.

    • Structs are copied when assigned to a new variable, classes are not.

    • Structs do not support inheritance, classes do.

  • Answered by AI
  • Q2. Singleton design pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep learning

Skills evaluated in this interview

IOS Developer Interview Questions asked at other Companies

Q1. 1 - MVC PATTERN 2- CLOUSERS & it's type 3- Google SDK like Google maps 3- How u manage the constraints of any label , stick at every corner & center of view controller, when getting data from json.
View answer (1)

HR Executive Interview Questions & Answers

user image Anonymous

posted on 5 Apr 2024

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

I applied via Referral and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. General introduction and questions related to past experience, education and goals

HR Executive Interview Questions asked at other Companies

Q1. What do you know about Labor Law
View answer (6)

Interview questions from similar companies

I applied via Company Website and was interviewed in Jul 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. All basics of swift. Enums optionals closures protocols etc
  • Q2. Best feature you like of swift
  • Q3. App live all steps
  • Q4. Certificates information

Interview Preparation Tips

Interview preparation tips for other job seekers - They will ask you everything about swift

I applied via Naukri.com and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Swift Basics
  • Q2. IOS Concepts
  • Q3. Design patterns
  • Q4. Architectural patterns
  • Q5. Multi threading and concurrecy

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics are very important for Interview , if you miss multiple questions it might leads to negative feedback. so , prepare full basic concepts with examples
Also communication is important for some campanies.

I applied via Recruitment Consulltant and was interviewed before Feb 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is optional, difference between struct and class?
  • Ans. 

    Optional is a type in Swift that can hold a value or be nil. Struct and class are both used to define custom data types.

    • Optional is denoted by a question mark (?) and is used to handle nil values.

    • Structs are value types and are passed by value, while classes are reference types and are passed by reference.

    • Structs have a default memberwise initializer, while classes do not.

    • Classes can inherit from other classes, while s...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study the basics, and the interview depends on client requirement.

Skills evaluated in this interview

I applied via Company Website

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 - Resume Shortlist 

(2 Questions)

  • Q1. I interned here in my second-year summer. I got selected on the basis of resume shortlisting.
  • Q2. There was no technical round

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare a good and impressive resume and also prepare dsa.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is closure? Life cycle of escaping closure?
  • Ans. 

    A closure is a self-contained block of code that can be passed around and used in your code. An escaping closure is a closure that is called after the function it was passed to has returned.

    • Closure is a block of code that can be passed around and used in your code.

    • Escaping closure is called after the function it was passed to has returned.

    • Example: Using a completion handler in a network request to handle the response a

  • Answered by AI
  • Q2. What is multi threading?
  • Ans. 

    Multi threading is the ability of a CPU to execute multiple threads concurrently, allowing for improved performance and responsiveness in applications.

    • Allows for parallel execution of tasks, improving performance

    • Enables applications to remain responsive while performing intensive tasks

    • Can lead to synchronization issues if not managed properly

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Capgemini IOS Developer interview:
  • Closure
  • IOS
  • Design Patterns
  • Multithreading
Interview preparation tips for other job seekers - Prepare well of closure concepts, Multi threading, classes/structures, data structures, Design Patterns questions

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

Find second greatest number from an array of duplicate items.

Interview Preparation Tips

Interview preparation tips for other job seekers - Remove duplicate -> Sort the array -> 2nd greatest will be arr[arr.count - 2]

Interview Questionnaire 

2 Questions

  • Q1. Struct vs Class
  • Ans. 

    Struct is value type while Class is reference type in Swift. Structs are passed by value while Classes are passed by reference.

    • Structs are ideal for small data types like coordinates, colors, etc.

    • Classes are ideal for larger data types like view controllers, network managers, etc.

    • Structs are immutable by default while Classes are mutable.

    • Structs cannot inherit from other types while Classes can.

    • Structs are stack alloca

  • Answered by AI
  • Q2. MultiThreading Related Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong basic knowledge required

Skills evaluated in this interview

ChatWise Interview FAQs

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

Some of the top questions asked at the ChatWise interview -

  1. What are delegates, notification center in i...read more
  2. Weak vs strong referenc...read more
  3. Struct vs Clas...read more

Tell us how to improve this page.

ChatWise Interview Process

based on 3 interviews

Interview experience

4.7
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.6k Interviews
Accenture Interview Questions
3.8
 • 8.3k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5.1k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.9k Interviews
Genpact Interview Questions
3.8
 • 3.2k Interviews
View all

ChatWise Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

3.0

Salary

1.0

Job security

5.0

Company culture

3.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Compare ChatWise with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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