I applied online. I interviewed at Teranet (Toronto, ON) in May 2024
Interview
it was a quick process:
first interview is a behavioral interview with HR
second and last interview is a culture fit interview and a technical interview explaining your previous work, and experience with their tech stack
Interview questions [1]
Question 1
What is the difference between method overloading and overriding
I applied through an employee referral. I interviewed at Teranet
Interview
There will be 3 rounds of interviews.
There will be questions based on the projects you worked on.
some questions from C#, oops, Javascript, SQL, design pattern,
There will be 3 rounds of interviews.
There will be questions based on the projects you worked on.
some questions from C#, oops, Javascript, SQL, design pattern,
There will be 3 rounds of interviews.
There will be questions based on the projects you worked on.
some questions from C#, oops, Javascript, SQL, design pattern,
Interview questions [1]
Question 1
Can multiple catch blocks be executed?
No, Multiple catch blocks of similar type can't be executed. Once the proper catch code executed, the control is transferred to the finally block, and then the code that follows the finally block gets executed.
What is the difference between public, static, and void?
Public declared variables or methods are accessible anywhere in the application. Static declared variables or methods are globally accessible without creating an instance of the class. Static member are by default not globally accessible it depends upon the type of access modified used. The compiler stores the address of the method as the entry point and uses this information to begin execution before any objects are created. And Void is a type modifier that states that the method or variable does not return any value.
What is an object?