Skip to main content

Interview Questions for experienced professionals: Part 1


This article is for those who are prepaing for any technical job interview. Different organisation have different interview process and here I am sharing the interview of one of the consulting firms.

Interview was categorised into multiple sections to understand T shaped skills. T shaped skills accesses a candidate on core expertise(depth of understanding) and other technical skills(breadth of concepts).  I have catagorised the interview into sections which includes, Algorithms, SQL Server, Innovative Ideas, Technical Knowledge and so on.

You may check your knowledge as well. Try it once.


Algorithms

Q: How to swap the values of two integers with using additional memory? 

Ans: 

public static void SwapInt()
{
int a = 25;
int b = 35;
a = a + b;
b = a - b;
a = a - b;
Console.WriteLine("a=> " + a + " b=> " + b);
}


Q: How to find duplicate in an array? Please not there is only one duplicate value.

Ans: 

Alternative 1

public static void DuplicateInt()
{
int[] intarr = {1, 2, 3, 4, 2, 5, 6};
for(int i=0 ;i<intarr.Length-1;i++)
{
for(int j=intarr.Length-1;j>i;j--)
{
if(intarr[i]==intarr[j])
{
Console.WriteLine("Duplicate is " + intarr[i]);
break;
}
}
}
}


Alternative 2

public static void DuplicateInt()
{
int[] intarr = {1, 2, 3, 4, 2, 5, 5};
Array.Sort(intarr);

for(int i=0 ;i<intarr.Length-1;i++)
{
if(intarr[i]==intarr[i+1])
{
Console.WriteLine("Duplicate is " + intarr[i]);
break;
}
}
}
}


Q: How to reverse the string without using additional memory?

Ans: I could think of this way which is using additional memory. Please share if you have logic which would do the reversal of string without using additional memory.

public static string StringReverse(string str)
{
char[] ca = str.ToCharArray(0,str.Length);
Array.Reverse(ca);
return new string(ca);
}


Q: Push all zero elements in the last of the array.

Ans:

public static void ZeroBack()
{
int[] intarr = {1, 2, 0, 3, 4, 0, 2, 5, 0, 6};
Array.Sort(intarr);
Array.Reverse(intarr);
}


SQL Server

Problem Statement: There are two tables 1. Bank_Account_Customer 2. Customer

Bank_Account_Customer
bank_account_id
account_name
balance_amount


Customer
customer_id
customer_name
bank_account_id

Find all customers who have balance_amount>5000.


Solution:

Select c.customer_name, c.customer_id from Bank_Account_Customer b, Customer c where b.bank_account_id = c.bank_account_id && b.balance_amount > 5000;

The above can be done using Joins as well.


Innovative Ideas

Problem Statement:   Design a vending machine with new approach, keeping Covid in mind.

Solution: We may use Scan code where an user can scan the code of vending machine and make the payment online there itself. As payment will be done, instruction will be sent to vending machine to dispense the item. 


Problem Statement: Design elevator solution with new approach, keeping Covid in mind. 

Solution: We may use voice recognition feature, one can speak on which floor he/she would like to go and that floor number will be highlighted.

There can be N different ways to solve above problems. I have shared what came to my mind that moment of time.


Technical Knowledge

Question: What is difference between Abstract class and Interface and share the scenerios when should we use what?

Answer: 

  • Abstract class can have implementation as well, however Interfaces only have signatures. 
  • Multiple inhertance can't be achieved using Abstract class, however we can inherit multiple interfaces.
  • We can use any access modifier in Abstract class but in interfaces everything is public.

When we have the requirement of a class which contains some common methods and properties whose implementation is different for different classes, we should use abstract class.


Question: What happens when we concatenate string using + sign? What is efficient way to do it?

Answer: String is immutable in .Net which means everytime you use string class method, no matter name is same or different, a new string object is created in memory. More string operations means more memory consumption. 

StringBuilder class provides the way to deal with memory efficiently. If string operations are common in your code, use it. It is not recommended to use when string operations are few.


Next round was on Agile methodology, NFRs(Non functional requirements), DevOps, Root cause analysis approach. Interesting question were asked and discussion was quite impactful. 


Comments

Popular posts from this blog

Create chatbot in 20 minutes using RASA

This blog will help you create a working chatbot with in 20 minutes. For creating chatbot we need following libraries to be installed- >> Python3 >> Pip3 >> Rasa Lets start installing all libraries & dependencies which are need for creating chatbot. Note: I have used MAC, therefore sharing commands related to it. You can install it on Windows, Linux or any other operating system using respective commands. 1. Install Python3 > brew install python3 > python --version #make sure you have python3 installed 2. Install Pip3 > curl -O https://bootstrap.pypa.io/get-pip.py > sudo python3 get-pip.py If you get issue related to Frameoworks while installing pip, follow below steps -  > cd /usr/local/lib > mkdir Frameworks > sudo chown -R $(whoami) $(brew --prefix)/* Once installed check pip3 version > pip3 --version After python3 and pip3 is succeffully installed, proceed to next steps. 3. Install Rasa > pip

Could not load file or assembly 'Microsoft.Web.Infrastructure'

Could not load file or assembly 'Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified. What 'Micorosoft.Web.Infrastructure' does? This dll lets HTTP modules register at run time. Solution to above problem: Copy 'Micorosoft.Web.Infrastructure' dll in bin folder of your project and this problem should be resolved. If you have .Net framework installed on machine, this dll should be present on it. You can search for this dll and copy it in your active project folder.   Alternatively,  you can install this dll using nuget package manager PM> Install-Package Microsoft.Web.Infrastructure -Version 1.0.0 Happy coding!!

AJAX Progrraming

Ajax , shorthand for Asynchronous JavaScript and XML , is a web development technique for creating interactive web applications. The intent is to make web pages feel more responsive by exchanging small amounts of data with the server behind the scenes, so that the entire web page does not have to be reloaded each time the user requests a change. This is meant to increase the web page's interactivity, speed, and usability. The Ajax technique uses a combination of: XHTML (or HTML) and CSS, for marking up and styling information. The DOM accessed with a client-side scripting language, especially JavaScript and JScript, to dynamically display and interact with the information presented. The XMLHttpRequest object is used to exchange data asynchronously with the web server. In some Ajax frameworks and in certain situations, an IFrame object is used instead of the XMLHttpRequest object to exchange data with the web server, and in other implementations, dynamically added tags may be used.