Answer:
Following are the program in C++ language :
#include <iostream> // header file
using namespace std; // using namespace
int main() // main method
{
int amount,total=0; // two int variable declaration
cout<<" enter amount:";
cin>>amount; // read input amount first time
total=total+amount; // first calculation
cout<<" enter amount:";
cin>>amount; //read input amount second time
total=total+amount;// second calculation
cout<<" enter amount:";
cin>>amount;// read input amount third time
total=total+amount;// third calculation
cout<<"total:"<<total; // display total
return 0;
}
Output:
enter amount:12
enter amount:12
enter amount:12
total:36
Explanation:
Following are the explanation of program which is mention above
- Declared the two variable total and amount of int type .
- Initialize the variable total to "0".
- Read the 3 input in "amount" variable in one by one by using cin function and adding their value to the "total "variable .
- Finally display the total.
Answer:
Characteristics of RAM or ROM memory
Explanation:
RAM (Random Access Memory).
• It is a read (R) and write (W) memory (R/W)
• Types of RAM - SDR SDRAM, RDRAM, DDR SDRAM. The difference is the speed in sending data.
• It is used for the operating system, programs and most of the software.
• Recommendations of at least 8 GB of RAM for PC and At least 2 GB of RAM for a mobile.
ROM (Read Only Memory)
• Store instructions and data permanently
• it's read only
• Type of non-volatile memory
• Save data and system information, settings and programs
• Types of ROM - Mask ROM, PROM, EPROM and EEPROM.
- A PC must have at least 256 GB.
Answer:
The answer is D. Use multiple record types, page layouts, and profiles
Explanation:
Universal container sales reps can modify fields on an opportunity until it is closed. Only the sales operations team can modify the post close follow up date and post close followup comments fields. How to make this happen
A. Use field-level security on page layouts to restrict editing fields
B. Use field-level security to mark fields as read=only on the sales profile
C. use record types with field sets and restrict editing fields using field-level security
D. Use multiple record types, page layouts, and profiles
Capitalized and properly spelled