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
Learn more
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();
Learn more
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)
Learn more
Do check
Beginners levels
Coding questions
At
interviewspreparation.com
Thank You
Learn more