Why Sainsbury’s
Lead Ios Developer Interview Questions
1,612 lead ios developer interview questions shared by candidates
HR interview was general questions about team work and expectation from the new job. Coding challenge: write an application that fetches reviews from given endpoint for a given tour with pagination. Optional - to sort by date or by rating.
How to draw S shape progress indicator. Just like Microwave knobs on increase or decrease it's value is changing.
design patterns in ios programming
No question. They set up a call for the first technical interview but they didn’t attend the call nor provided any feedback about the process.
How do you perform under pressure?
Sample Questions with Detailed Answers What is the difference between weak, strong, and unowned references in Swift? Strong references keep a strong hold on the object and increase its reference count. Weak references do not increase the reference count and are set to nil when the referenced object is deallocated, preventing retain cycles. Unowned references do not increase the reference count but are not set to nil when the object is deallocated, which can lead to crashes if not handled properly. How do you handle memory leaks in an iOS application? Use Instruments' Leaks tool to identify memory leaks. Ensure proper use of weak and unowned references to prevent retain cycles. Avoid creating strong reference cycles in closures by using capture lists. Regularly check for and resolve strong reference cycles in the codebase. Can you explain the difference between tableView(_:cellForRowAt:) and collectionView(_:cellForItemAt:)? tableView(_:cellForRowAt:) is used in UITableView to configure and return a cell for a given row at a specified index path. collectionView(_:cellForItemAt:) is used in UICollectionView to configure and return a cell for a given item at a specified index path. UITableView is for single-column, vertically scrolling content, while UICollectionView supports multiple columns and horizontal or vertical scrolling. Describe a situation where you optimized the performance of an iOS application. In a previous project, the app experienced lag during heavy data processing. I optimized the performance by offloading data processing tasks to a background thread using GCD. Additionally, I implemented lazy loading for images and data caching to reduce the load on the main thread, resulting in a smoother user experience. Preparing for the Interview Review Core Concepts: Brush up on Swift, Objective-C, iOS frameworks, and design patterns. Practice Coding: Use platforms like LeetCode, HackerRank, and CodeSignal to practice coding problems. Study System Design: Understand common design patterns and architectures in iOS development. Mock Interviews: Conduct mock interviews to practice your problem-solving and communication skills. Project Review: Be ready to discuss your past projects in detail, highlighting your contributions and the impact.
The usage of a very specific Apple technology (can't remember specifically, but it was an NS class.. so study those well)
Which part in Mac or iOS do you think, that needs improvement? Why?
few bit wise manipulation questions
Viewing 1491 - 1500 interview questions