Software C Interview Questions

5,472 software c interview questions shared by candidates

Sistema de API para múltiplos pontos de vendas com redirecionamento assíncrono para pontos separados dentro da cozinha de cada restaurante com documentação, testes unitários sendo multiplataforma e qualidade à nível de produção
avatar

Desenvolvedor C#

Interviewed at Capgemini

4.2
Mar 26, 2021

Sistema de API para múltiplos pontos de vendas com redirecionamento assíncrono para pontos separados dentro da cozinha de cada restaurante com documentação, testes unitários sendo multiplataforma e qualidade à nível de produção

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;

Inline vs macros Volatile Keyword in c/c++ Preprocessor Macros References vs pointers Static vs Global variable Multithreading vs Multiprocessing vs Multitasking How process or thread communicate Academic Project Overview in Detail  Class size Static size in class Pass by reference and Value Virtual function Linux - GCC compiler , how to compile Multiple file compilation using GCC
avatar

Trainee Software Engineer - C/C++

Interviewed at CapMatrix Technologies

2.9
Aug 11, 2017

Inline vs macros Volatile Keyword in c/c++ Preprocessor Macros References vs pointers Static vs Global variable Multithreading vs Multiprocessing vs Multitasking How process or thread communicate Academic Project Overview in Detail  Class size Static size in class Pass by reference and Value Virtual function Linux - GCC compiler , how to compile Multiple file compilation using GCC

Viewing 941 - 950 interview questions

Glassdoor has 5,472 interview questions and reports from Software c interviews. Prepare for your interview. Get hired. Love your job.