I applied online. I interviewed at Stenn Technologies (Moscow, Moskva) in Dec 2022
Interview
It was a technical interview . There were 3 interviewers : hr manager , product owner and team leader. The interview took nearly one hour of ru language talk.They were asking me about my experience for decency within 3 minutes. After that, we were going to code practice. It was 2 exercises one about boxing/unboxing question and another about linq . Only the product owner was speaking or it was the developer…
Interview questions [1]
Question 1
What will be printed on the console ? What will be on stack , what will be on heap for code like this: void Main() { int x=5; object o=x; x++; Console.Writeline(o) } void Main() { object o=5; o++; object j=o; j=10; Console.Writeline(o) }