Answer:
b
Explanation:
Tactical. Perhaps she needs yo keep in touch with the board of directors in order to make an strategic planning.
Answer:
Some of the qualities of the installed memory which HWiNFO can reveal are:
- Date of manufacture
- Memory type
- Speed of memory
Explanation:
HWiNFO is an open-source systems information app/tool which Windows users can utilize as they best wish. It helps to detect information about the make-up of computers especially hardware.
If you used HWiNFO to diagnose the memory, the following information will be called up:
- the total size of the memory and its current performance settings
- the size of each module, its manufacturer, and model
- Date of manufacture
- Memory type
- Speed of memory
- supported burst lengths and module timings,
- write recovery time etc.
Cheers
// making the class
class Counter {
int counter;
int limit;
// Constructor
Counter(int a, int b){
counter = a;
limit = b;
}
// static function to increment
static increment(){
if(counter<limit)
nCounter+=1;
}
// Decrement function
void decrement(){
if(counter>0)
nCounter-=1;
}
int getValue(){
return counter;
}
static int nCounter;
int getNCounters(){
return nCounter;
}
};
// Initializa the static
int Counter::nCounter = 0;