which is platform independent device used in computers
Answers were Sorted based on User's Feedback
Answer / arun mavi 8800849839
the platform used by in the computer is main memory which is
the combination of CPU (central processing unit) and
ALU(arthmatical logical unit). and main memory
| Is This Answer Correct ? | 2 Yes | 5 No |
Answer / arun mavi 8800849839
the platform used by in the computer is main memory which is
the combination of CPU (central processing unit) and
ALU(arthmatical logical unit). and main memory
| Is This Answer Correct ? | 2 Yes | 6 No |
What is an orthogonal base class?
difference between overloading and overridding
What is abstract class in oops?
What is polymorphism? Explain with an example.
what is difference between c++ language and java language
advantage and disadvantage in c++>>oops and what are the questions ask for interview in c++>>oops. could you tell me or reply me
What is a class in oop?
What is object and class in oops?
Write a program in c++ to read two floating point numbers and find their sum and average.
Explain the concepts involved in Object Oriented programming.
function overridind means and simple program
#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