by interviewspreparation.com

Interview questions

Common coding 

Part 1

What is 

Parameter ?

public void SaveData(string data) {}

A variable used to pass information to a function 

'Data' is parameter

What is

OOPs ?

Object-Oriented Programming

a programming paradigm based on objects, which are instances of classes, encapsulating data and behavior. 

public class Bank {} public bank = new bank();

What is 

Function Overloading ?

Function overloading is defining multiple functions with the same name but different parameters in the same scope.

public void Profile()

public void Profile(string name)

public void Profile(int age)

Do check

Beginners levels

Coding questions

At

interviewspreparation.com

Thank You