what is the advantage in software?
what is the difference between the software developer and
Engineer
Answer / sunil.gaded
in realtime senario by using the software,it will reduces
the working time of the user,it will gives correct answer
to the user, high accuracy,
| Is This Answer Correct ? | 1 Yes | 1 No |
What is pure oop?
What are the 3 pillars of oop?
What is the difference between declaration and definition?
INSTANCE FIELDS DECLARED private ARE ACCESSIBLE BY THE METHODS ONLY.CAN WE CHANGE THE private FIELD OF AN OBJECT IN A METHOD OF SOME OTHER OBJECT OF THE SAME CLASS?
What is encapsulation?
Where is pseudocode used?
Write a java applet that computes and displays the squares of values between 25 and 1 inclusive and displays them in a TextArea box
#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 wrong with the programme?? #include<iostream.h> template <class first> class dd { first i; public: void set(); void print(); }; void dd< first>:: set() { cin>>i; } void dd< first>::print() { cout<<"\n"<<i; } void main() { dd <char>g; g.set(); g.print(); }
Is oop better than procedural?
IN PROGRAMING LANGAUGE A C++ IS PURELY OBJECT ORIENTED OR NOT?
What is the use of oops?