Can static class have constructor?
No Answer is Posted For this Question
Be the First to Post Answer
How to create a comment page in C #??
What does the keyword "static" mean?
WAP to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)
What are virtual functions?
What is virtual constructors/destructors?
what is runtime polymorphism? For the 5 marks.
#include <iostream> using namespace std; int main() { int a = 2; int c[5][5]; for (int x=0;x<5;x++) { for (int y=0;y<5;y++) { c[x][y] = x*y; } } cout << c[a][c[1][4]]; }
What is encapsulation in oop?
pointers are support in C#? if yes then how to use it?
8 Answers Softvision Solution,
What is ambiguity in inheritance?
1. Wrie a function which returns the most frequent number in a list of integers. Handle the case of more than one number which meets this criterion. public static int[] GetFrequency(int[] list)
If a=5, b=6, c=7, b+=a%c*2. What is the final value of b?