Click here to Skip to main content
15,867,835 members
Everything / Interviews

Interviews

interviews

Great Reads

by John M. Dlugosz
Here is the real answer to the FizzBuzz interview question
by Gaurav_Chhatbar
Object oriented implementation of basic language processing / parsing leveraging LINQ / PRISM / UnityContainer.
by musicm122
CodeProject So this is a question that a friend asked me in an email. I though it was worth sharing.Hey, how are you? I hope everything is going well for you. Im writing for advice or suggestions. I started taking classes for programming.
by iSahilSharma
This article is the second part of the series “Abstract Class & Interface: Two Villains of Every Interview” and explains the important key points of Interface.

Latest Articles

by Shivprasad koirala
60 plus most asked ASP.NET MVC Core interview questions with answers
by John M. Dlugosz
Here is the real answer to the FizzBuzz interview question
by Ehsan Sajjad
In this post, we will see the shadowing concept with respect to C# with a simple example.

All Articles

Sort by Score

Interviews 

13 Jun 2015 by Afzaal Ahmad Zeeshan
Learning interfaces in .NET framework is as simple as 1, 2, 3... Interfaces (C# Programming Guide)[^] MSDN is the best solution for Microsoft products development. I always recommend MSDN. Interfaces in C# (For Beginners)[^] CodeProject is my second choice! C# interfaces - What's...
20 May 2018 by John M. Dlugosz
Here is the real answer to the FizzBuzz interview question
19 Jul 2013 by Gaurav_Chhatbar
Object oriented implementation of basic language processing / parsing leveraging LINQ / PRISM / UnityContainer.
14 Jan 2015 by Sergey Alexandrovich Kryukov
A couple of useful hints:First, behave as you already got a job offer and only discuss the detail of your future work. Behave like a new member of a team, not a candidate. May sound silly, but I'm serious. Second, related thing: try to focus on looking at the situation from the standpoint of...
28 Sep 2015 by jakecook
I was asked about this question in interview:Integers in an array are unique and increasingly sorted. Write a function to find an integer from the array who equals to its index. E.g. in the array {-3, -1, 1, 3, 5}, the number 3 equals its index 3.Any ideas?
28 Sep 2015 by Hank Williams
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim numbers = New Integer() {-3, -1, 1, 3, 5} MsgBox(Find_Index_Value_Same_As_Array_Value(numbers)) End Sub Private Function...
28 Sep 2015 by George Swan
int[] numbers = { -3, -1, 1, 3, 5 }; int[] results = numbers.Where((nbr, i) => i == nbr).ToArray(); string message = results.Length == 0 ? "Nothing found" : string.Format("Found {0}. First is at index {1}", results.Length, results[0]); Console.WriteLine(message);
4 Mar 2019 by Member 14170737
Hey guys, I'm a CS student - Class of 2020 - preparing for software engineering + data science interviews. What interview preparation resources should I use to prepare for software engineering & data science interviews? Right now, I use the following: 1) https://exchangetheapp.com/ 2)...
4 Mar 2019 by Gerry Schmitz
About the only thing you can practice is "stand-up". They may ask you to do "something" on a white board with a few people present. So, you may have to give yourself time to think, and then come up with something and talk your way through it. (Or go to the board even if they don't ask.) ...
19 Mar 2014 by musicm122
CodeProject So this is a question that a friend asked me in an email. I though it was worth sharing.Hey, how are you? I hope everything is going well for you. Im writing for advice or suggestions. I started taking classes for programming.
24 Sep 2014 by iSahilSharma
This article is the second part of the series “Abstract Class & Interface: Two Villains of Every Interview” and explains the important key points of Interface.
11 Sep 2014 by iSahilSharma
This article is the first part of the series "Abstract Class & Interface: Two Villains of Every Interview" and explains the important key points of Abstract Class.
11 Oct 2013 by SonuKSingh
Types of constructors available in C#
21 Dec 2016 by Ehsan Sajjad
In this post, we will see the shadowing concept with respect to C# with a simple example.
25 Jul 2021 by Shivprasad koirala
60 plus most asked ASP.NET MVC Core interview questions with answers
13 Jun 2015 by Member 11693170
Hi friends...How to use interfaces in c#.net?Can any one explain the concept of interface in detail?Thanks in advance