Prepare me a program for the animation of train
No Answer is Posted For this Question
Be the First to Post Answer
What is class and object in oops?
how to swap to variables without using thrid variable in java?
can you explain how to use JavaBean in Project
They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?
What are constructors in oop?
polymorphism means?
Have you ever interfaced with a database?
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; a.x = 22; int c = a.x; int *b = new int; cout << c; return 0; } option: No output 0 22 -(11) Will not compile
diff between Virtual mathod and abstract method?
What is difference between abstraction and encapsulation?
what is a class
What is late bound function call and early bound function call? Differentiate.