I applied online. The process took 1 week. I interviewed at Avrioc Technologies in Nov 2024
Interview
Interview process goes like this:
- Receive call from HR to discuss last salary, why leaving previous company, notice period, a bit about company
- 1st 1-hour technical round (had 2 iOS Devs)
- A take-home assignment
- Follow up call on the submitted assignment
- Offer is sent to email
Interview questions [12]
Question 1
In your current role what are the challenges you faced and how did you solve it?
Given an input array [1,2,3,4,5], output should be [5, 4, 1, 2, 3] if count is 2.
func (array: [Int], count: Int)
After you are done with the solution, the interviewer will ask about the time complexity of it. And will ask you if you can improve it to lessen the complexity
Asked a word 'Keychain Container' but actually interviewer was asking about:
KeyedDecodingContainer
https://developer.apple.com › documentation › swift › ke...
What is output of following:
struct Singleton {
static let shared = Singleton()
var value = 5
}
var singletonObj = Singleton.shared
singletonObj.value = 44