Envié una solicitud electrónica. El proceso duró 1 día. Acudí a una entrevista en Codingmart Technologies en jul 2024
Entrevista
In a phone call, my profile data was collected, and I was shortlisted for an interview. Subsequently, the first technical round was scheduled. However, during the technical round, I felt that the offered salary did not align with the expected level of expertise, especially considering the position is for an Android developer. They required coding programs to be written in a subpar editor and focused solely on obtaining the output, without valuing pseudocode or proper problem-solving approaches. Overall, the interview process seemed mismatched with the salary being offered, reflecting poorly on the interview's difficulty level for the position.
Preguntas de entrevista [2]
Pregunta 1
multiple words of the same smallest or largest length in a Given String
example: "CODING IS EASY TO LEARN"
Small: IS, TO
Large: CODING
Problem:
Given a list of integers, find and print the numbers that appear exactly k times in the list.
Example:
For the list [1, 2, 2, 2, 3, 4, 5,4, 1] and k = 4, the output should be 2 because the number 2 appears exactly 4 times in the list.