which feature are not hold visual basic of oop?
No Answer is Posted For this Question
Be the First to Post Answer
What is multilevel inheritance?
#include <iostream> using namespace std; int main() { int a = 3; 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][2]; }
what is the use of mutable key word
What does no cap mean?
How is polymorphism achieved?
Why is polymorphism important in oop?
What is multidimensional array?
write a program to enter a string like"sunil is a good boy and seeking for a job" not more than 10 characters including space in one line,rest characters should b in other line.if the next line starts from in between the previous word,then print whole word to next line.
why to use template classes in c++?
what is a ststic variable and stiticfunction briefly explain with exmple and in which case we use
why in java first invoke public static void main(String args[]) method????Why not public static void method1(String args[])??
When you define a integer it gets stored in which data structure?(Stack or a heap)