C Net Software Developer Interview Questions

176 c net software developer interview questions shared by candidates

Easy question: Read in a string of words separated by spaces in which some words are quoted and output the words 1 line at a time with quotes if applicable. Something like that. This question which was last and I didn't have time to manually enter every character into the HackerEarth "IDE" before the test timed out. I wasn't sure if I could jump back and forth between questions on HackerEarth platform and didn't want to risk it at the time but wish I would have jumped to this question first before the first coding question which was physics type of problem solving exercise not sure why since I'm not a physicists and this was a Health Care HSA applications related software engineering role. My opinion, HackerEarth s*cks and so does any company hiring this way and even if on a whiteboard if asking questions like the physics related one for line of business applications.
avatar

C#/.NET Enterprise Software Engineer

Interviewed at HealthEquity Inc.

3.2
Dec 4, 2018

Easy question: Read in a string of words separated by spaces in which some words are quoted and output the words 1 line at a time with quotes if applicable. Something like that. This question which was last and I didn't have time to manually enter every character into the HackerEarth "IDE" before the test timed out. I wasn't sure if I could jump back and forth between questions on HackerEarth platform and didn't want to risk it at the time but wish I would have jumped to this question first before the first coding question which was physics type of problem solving exercise not sure why since I'm not a physicists and this was a Health Care HSA applications related software engineering role. My opinion, HackerEarth s*cks and so does any company hiring this way and even if on a whiteboard if asking questions like the physics related one for line of business applications.

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;

Viewing 21 - 30 interview questions

Glassdoor has 176 interview questions and reports from C net software developer interviews. Prepare for your interview. Get hired. Love your job.