Me postulé en línea. Acudí a una entrevista en First Due en dic 2023
Entrevista
Tech interview process consists of a coding round followed by a next round which is technical interview lasting for 1 hour. This was an online interview on Microsoft Teams. Interviewer was good and very respectful and asked all the relevant questions for the job title.
Given an array,
[['a' => 1], ['b' => 2], ['c' => 3]].
Print the key of the value 3 without using any loops or recursion. We need to only use array functions for this.
So, the output for this should be "c".