I’m sorry I do not speak that
If you wanted to remove all the occurrences of bulky and replace them with the word strong. You would use replace all.
Answer:
"Operating system" is the right response.
Explanation:
- The key program collection on something like a computer device that maintains it interacts mostly with underlying hardware of that system is considered as an Operating system.
- Even without the need for an OS, every consumer isn't able to access either equipment, monitor as well as portable phone or devices.
#include <iostream> using namespace std; int isPrimeNumber(int); int main() { bool isPrime; for(int n = 2; n < 100; n++) { // isPrime will be true for prime numbers isPrime = isPrimeNumber(n); if(isPrime == true) cout<<n<<" "; } return 0; } // Function that checks whether n is prime or not int isPrimeNumber(int n) { bool isPrime = true; for(int i = 2; i <= n/2; i++) { if (n%i == 0) { isPrime = false; break; } } return isPrime; }