a function that gets an array with unique numbers and a number , and returns 2 indexes of numbers that which are equal to the sum of the number obtained
Junior C Developer Interview Questions
172 junior c developer interview questions shared by candidates
What is the difference between new and malloc?
They asked C++ OOP questions. More exactly: they showed C++ snippets and asked me what it is returning for some inputs.
What classes have you used? What technology do you use to read from database?
1. Is that ok with you to pursue in office setting for whole starter time - 3 months? 2. Is that ok with you to meet with the hiring manager in person in office in Pyrzyce as the next step of recruitment?
Tell me something about yourself.
If you want to keep a running average, and values are updated every second, how would you store the information?
If you had a clone of yourself, how would you excel better than your clone?
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;
How would I implement malloc and free for 3 constant buffer sizes, that will provide O(1) runtime for both functions?
Viewing 21 - 30 interview questions