*Design/Pre-Construction
*Construction
*Maintenance/Opreations
A transistor and A capacitor
<h3>
What are transistors and capacitors?</h3>
- Transistors are semiconductor devices used to amplify or switch electronic signals.
- Inductors are passive electrical devices in electrical circuits for their property of inductance.
- While a capacitor opposes changes in voltage, an inductor opposes changes in current.
To learn more about it, refer
to https://brainly.in/question/413163
#SPJ4
The answer to the given picture is - Microsoft word's spell checker only recognizes very common words. Microsoft word has it's own dictionary which will be compared to the texts on your document. If they see an unfamiliar word they will underline it with red. Anyways you can add your own words and names to the custom dictionary.
The OS (Operating System) is stored in the ROM on a smartphone. Correct answer: C
ROM stands for Read Only Memory. It is a computer memory that does not require power to store it's data (non-volitile). It's the Internal Memory where the OS is stored. It is partitioned into two parts, one for the OS and the rest for apps to use.
Answer:
- bool isDivisibleBy(int n, int d){
-
- if(n % d == 0){
- return true;
- }
- else{
- return false;
- }
- }
Explanation:
To check if n is divisible by d, we can use modulus operator such as %. If n % d equal to 0, this means n is divisible by d. Modulus operator is to calculate the remainder obtained from a division. If a number is divisible by another number, the remainder will be 0.
By making use of this concept we can create if and else statement to check if n % d is equal to 0, return true (divisible) else return false (not divisible).