Answer:A
Explanation: J pegs are easily saved and accessed anywhere and show good quality
Remember not to use tools that are rusty and damaged in any way.
Answer:
// you are doing calculations.
Explanation:
Here we add the single line comment i.e you are doing calculations by // forward slash. If you are making a comment more then the single line its better to use /* comments statements */.
For example:
/* print welcome on screen
print in nextline */
Following are the program in c++ language.
#include<iostream> // header file
using namespace std; // namespace
int main() // main method
{
int a=9,b=89; // variable declaration
// you are doing calculations.
int c=a+b;
cout<<c; // display c
return 0;
}
Output:98
Answer:
Characteristics is the correct answer to the given question .
Explanation:
The main objective of object is for accessing the member of class .When we have to access the member of class we can create the object of that class The object is is identified by there characteristics.The characteristics describe the behavior and state of a class.
- With the help of class and object we can implement the real world concept .
- The object is the run time entity of a class where as the class is physical entity .
- Without the object we can not implemented the object oriented programming.
- All the other option are not correct for the object because they are not described the identification of object .