what do you know about the company?
Ingeniero De Software C Interview Questions
3,497 ingeniero de software c interview questions shared by candidates
He asked me questions on my final year project. then he moved on to questions related to maths like vector, cartesian geometry, etc. Then at last he asked me to write a program in C++
Asked me to implement a single function of a data structure, with some restrictions.
Project details.
The test was to complete the 'assign' method of the interval_map. Googling it shows the complete test description and several answers (Most failed ones)
they ask you to make new data structure in C++ but their example so simple and not enough exploration from the quest ( or it wasn't enough for me ) and there is no useful test case
implement malloc and free such that free knows the size of the allocation
some simple questions on data structures and algo (see answer)
You have written you were cleaning in McDonalds.
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;
Viewing 541 - 550 interview questions