class Program { static void Main(string[] args) { B obj = new B(); Console.ReadKey(); } } abstract class A { public A() { Console.WriteLine("This is the A class"); //calc(); } public abstract void calc(); } class B : A { public B() { Console.WriteLine("This is the B class"); } public override void calc() { Console.WriteLine("This is the abstract methode"); } } Questions: 1. What will be printed on the console? 2. what will be printed to the console if we remove this "//" before the calc() in the contractor of class A;
Junior C Developer Interview Questions
186 junior c developer interview questions shared by candidates
How would I implement malloc and free for 3 constant buffer sizes, that will provide O(1) runtime for both functions?
The interview consisted of just a technical C++ with the bonus of having 3D algebra and graphics-related questions. The overall impression of the test was that it was very difficult unless one has certain knowledge about the aforementioned subjects.
Where have you heard from us?
Tell me about your bachelor thesis.
Q: Programming related. How would you solve this problem (array sorting)
Describe a difficult situation you faced in your previous job and how did you handled it
- What is Unit testing? - How would you remove duplicate code
you have 3 presorted very large arrays. Find the first common element amongst them. No duplicates in each of the array.
-Which game engine do you prefer and why?, -What data structures do you know and like to work with? -Name 3 data structures, -Explain the difference between Stack and Heap, -What does the Singleton Pattern do?, -How does the online mode work in the Unreal Engine, etc.
Viewing 31 - 40 interview questions