What is class in oop with example?
What is constructor overloading in oop?
What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?
IS IT NECESSARY TO INITIALIZE VARIABLE? WHAT IF THE INSTANCE VARIABLE IS DECLARED final ? IS IT NECESSARY TO INITIALIZE THE final VARIABLE AT THE TIME OF THEIR DECLARATION?
WILL I GET A guaranteed JOB AFTER DOING bsc()IT) and GNIIT from an NIIT CENTRE??
21 Answers Biocon, MIT, NIIT,
What is Virtual Keyword?
Why do we use class in oops?
What is polymorphism what are the different types of polymorphism?
What is multilevel inheritance?
WHAT'S THE OOPS BASIC OOPS CONCEPTS IN DOTNET
Write a macro for swapping integers
write a program using c++ to implement single contiguous memory mangement techniques.display the content of the main memory after yhe allocation of jobs and percentage of the wastage of the main memory
#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