Junior C Developer Interview Questions

186 junior c developer interview questions shared by candidates

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;
avatar

Junior C# and .NET developer

Interviewed at NiCE

3.9
Jun 6, 2024

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;

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.
avatar

Junior C++ Developer

Interviewed at Gameloft

3.7
Dec 17, 2014

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.

-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.
avatar

Junior Unreal Engine Tools Programmer / C++

Interviewed at Toadman Interactive

4.5
Sep 19, 2023

-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

Glassdoor has 186 interview questions and reports from Junior c developer interviews. Prepare for your interview. Get hired. Love your job.