I applied online. I interviewed at Deutsche Bank (Berlin)
Interview
The first stage of the interview was supposed to be a technical interview using Visual Studio. However, during the interview, they sent me a link to an online coding environment. I wasn’t familiar with this platform, and it didn’t have autocompletion, which made coding difficult and added to my stress, especially since I hadn’t had the chance to prepare in advance. There were two interviewers present, each asking questions in turn. As a developer with several years of experience, I felt that this type of coding challenge, with constant questions and a stressful setup, is not ideal for assessing programming skills.
Interview questions [1]
Question 1
// this class contains short information about the candidate
// and will be used throughout the app in all types of operations
public class CandidateInfo {
// must be:
// - immutable
// - convertible ToString()
// must have:
// - string firstname
// - int? age
// - list of skills (strings)
// - refererer
}