Upload Button Icon Add office photos

Filter interviews by

TridhyaTech IOS Developer Interview Questions and Answers

Updated 4 Jul 2024

TridhyaTech IOS Developer Interview Experiences

Interview questions from similar companies

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

(2 Questions)

  • Q1. Basic ios development questions
  • Q2. Core data or any other data base

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview went really well but still rejected.

IOS Developer Interview Questions & Answers

NeoSOFT user image Tejaswini Kadam

posted on 7 Jun 2024

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

I applied via Company Website and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. GCD, Operation queue, struct vs class, some small logical coding ,
Round 2 - Technical 

(1 Question)

  • Q1. GCD, operation queue, URL Session tasks, ref type , value tyep,
Round 3 - HR 

(1 Question)

  • Q1. Basic and discussion about Job offer

IOS Developer Interview Questions & Answers

CGI Group user image Asha Treesa Kurian

posted on 10 Apr 2024

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

(1 Question)

  • Q1. Based on the position
Round 2 - HR 

(1 Question)

  • Q1. About previous experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company to work with
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Difference betweenClass And Struct
  • Ans. 

    Classes are reference types, while structs are value types in Swift.

    • Classes are reference types, meaning they point to the same memory location when assigned to a new variable.

    • Structs are value types, meaning they create a new copy when assigned to a new variable.

    • Classes support inheritance, while structs do not.

    • Classes can have deinitializers, while structs cannot.

    • Classes can be typecasted, while structs cannot.

  • Answered by AI
  • Q2. Static Key work
Round 2 - Coding Test 

Find the index of the first occurrence in string

Round 3 - HR 

(2 Questions)

  • Q1. Salary Expectation
  • Q2. Any leave plans in next six months
  • Ans. 

    Yes, I have planned a vacation in the next six months.

    • I have scheduled a week-long trip to Europe in September.

    • I also plan to take a few days off around Christmas to visit family.

    • I have informed my team in advance and ensured that my work will not be affected.

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Basics to advance level of questions
  • Q2. What is the difference between swift & objective c?
  • Ans. 

    Swift is a modern programming language while Objective-C is an older language used for iOS development.

    • Swift is easier to read and write than Objective-C.

    • Swift is faster than Objective-C.

    • Objective-C is still used in legacy codebases.

    • Swift has a simpler syntax and is more concise.

    • Swift has better memory management than Objective-C.

  • Answered by AI
  • Q3. Features of swift 5
  • Ans. 

    Swift 5 introduces ABI stability, new language features, and improved performance.

    • ABI stability ensures compatibility between future Swift versions

    • Raw strings allow for easier handling of regular expressions and multi-line strings

    • Dynamic callable types enable objects to be called like functions

    • Improved performance with faster build times and reduced app size

    • New Result type for handling errors and success cases

    • Property ...

  • Answered by AI
  • Q4. About latest project

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a good formal interview overall

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic interview on question like aptitude, javascript, typescript and react-native question

Round 2 - Technical 

(5 Questions)

  • Q1. Basic javascript question in second round
  • Q2. What is function currying
  • Ans. 

    Function currying is a technique in functional programming where a function with multiple arguments is transformed into a sequence of nested functions, each taking a single argument.

    • Currying allows you to partially apply a function by fixing a number of arguments, which creates a new function.

    • It helps in creating reusable functions and improves code readability.

    • Example: const add = (a) => (b) => a + b; const add5 = add

  • Answered by AI
  • Q3. What is IIEF where we can use it
  • Ans. 

    IIFE stands for Immediately Invoked Function Expression, used for creating a function that is executed immediately after it is defined.

    • IIFE is used to create a private scope for variables to avoid polluting the global scope.

    • It is commonly used in React Native development to encapsulate code and prevent naming conflicts.

    • Example: (function() { console.log('IIFE executed'); })();

  • Answered by AI
  • Q4. Deeply they ask me closure related question how it's working
  • Q5. How call call stack and event loop is working
  • Ans. 

    Call stack is used to keep track of function calls, while event loop manages asynchronous operations in JavaScript.

    • Call stack is a data structure that keeps track of function calls in a program.

    • When a function is called, it is added to the top of the call stack. When the function completes, it is removed from the stack.

    • Event loop is responsible for managing asynchronous operations in JavaScript, ensuring that they are ...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Project related discussion only

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi Nagarow hiring team,

My first round of interview is going and in second round they ask me more technical and deep technical questions that was also very good.

In third round of interview the interviewer ask me only project related question. I try to explain that but he did't give me to chance to say some think. From one question to second, Second of third. Main point is if only interviewer ask question and interviewee say something and you again ask question how i explain me though on it.

If my application build on salesForce he told me to why it's build in salesforce. Why it's not develop in node or/and other database. My client decided that i know it also develop in node or other database. But i can't suggestion my client after 4 years of development .
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain MVVM and its pros/cons
  • Ans. 

    MVVM is a design pattern that separates the UI, business logic, and data layers in an iOS application.

    • Model: Represents the data and business logic of the application.

    • View: Represents the UI components of the application.

    • ViewModel: Acts as a mediator between the Model and View, handling the presentation logic and data binding.

    • Pros: Separation of concerns, easier to maintain and test, promotes reusability.

    • Cons: Increase...

  • Answered by AI
  • Q2. Multithreading in swift
  • Ans. 

    Multithreading in Swift allows for concurrent execution of tasks to improve performance and responsiveness.

    • Use Grand Central Dispatch (GCD) for managing concurrent tasks

    • Avoid blocking the main thread to prevent UI freezes

    • Consider using Operation and OperationQueue for more complex task management

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Basics of Android
Round 2 - Technical 

(1 Question)

  • Q1. Technical implementation
Round 3 - HR 

(1 Question)

  • Q1. Company fit culture test
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic ios development questions
  • Q2. Core data or any other data base

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview went really well but still rejected.

TridhyaTech Interview FAQs

How many rounds are there in TridhyaTech IOS Developer interview?
TridhyaTech interview process usually has 2 rounds. The most common rounds in the TridhyaTech interview process are Technical and HR.
What are the top questions asked in TridhyaTech IOS Developer interview?

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

  1. All saray and company policies discuss...read more
  2. All about ios - swift and objectiv...read more

Tell us how to improve this page.

TridhyaTech IOS Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Software Engineer
17 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Associate Software Engineer
16 salaries
unlock blur

₹3.6 L/yr - ₹6 L/yr

Team Lead
13 salaries
unlock blur

₹6 L/yr - ₹13.2 L/yr

Senior Software Engineer
9 salaries
unlock blur

₹6.1 L/yr - ₹15 L/yr

Software Developer
6 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

Explore more salaries
Compare TridhyaTech with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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