Write pseudo code for a method that gets a random number "x" and print all the numbers between 0 and x in a random order: Example for x = 7 => 61532740
Junior C Net Developer Interview Questions
12 junior c net developer interview questions shared by candidates
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?
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;
you have 3 presorted very large arrays. Find the first common element amongst them. No duplicates in each of the array.
How to answer my low GPA
What are the differences between value type and reference type?
Describe a data sturcture that you can do: Get[x] by key in O(1), Set(x,y) by key in O(1), and setAll(y) by O(1) The setAll does not must really put the value at all the places, its just need to be seen like this(when you do get, you need to get the correct value)
What are your greatest strenghts? (from the 3rd part in the interview process)
Basic OOPS questions, Programming questions
Viewing 1 - 10 interview questions