If a computer in a network accesses resources that are shared by other computers it is called a
Which packages contain the JDBC classes
Which of following statements about objects in “C#” is correct
What would be the output for the following set of code static void Main(string[] args) { String obj = "hello"; String obj1 = "world"; String obj2 = obj; Console.WriteLine (obj.Equals(obj2) + " " + obj2.CompareTo(obj) ); Console.ReadLine(); }
What will be the output of given set of code static void main(string[] args) { int i; int res = fun (out i); console.writeline(res); console.readline(); } static int fun(out int i) { int s = 1; i = 7; for (int j = 1; j <= i; j++ ) s = s * j; return s; }
A vessel of capacity 90 litres is fully filled with pure milk. Nine litres of milk is removed from the vessel and replaced with water. Nine litres of the solution thus formed is removed and replaced with water. Find the quantity of pure milk in the final milk solution
“A mechanism that binds together code and data in manipulates, and keeps both safe from outside interference and misuse.In short it isolates a particular code and data from all other codes and data. A well-defined interface controls the access to that particular code and data.”
Can the method add() be overloaded in the following ways in C#?public int add() { }public float add(){ }