Answer:
The three fundamental principles underlying the use of mnemonics are imagination, association, and location.
Explanation:
Hi!
Our computers will have system software and application software. Application software would be something like a game or just any general purpose app you've downloaded.
Hopefully, this helps! =)
Answer:
Answer is Mobile commerce
The area that holds all the startup instructions the computer needs to start is the ROM, or read-only memory.
Answer:
Name.
Explanation:
The constructor in the class must have the same name as the class.Constructors are used to initialize the object when created.There are basically three types of constructors which are as following:-
- Default Constructor.
- Parameterized Constructor.
- Copy Constructor.
Default Constructor:-This constructor is already present in the class when the class is defined.It does not have any arguments.
Parameterized Constructor:-As the name suggests this constructor have parameters that are used to initialize the object.
Copy Constructor:-This constructor is called whenever an object is copying the values of other object.For example:-
There is already an object present with name obj1.
class obj2=obj1;