Answer:
Science and technology is the major key of life cycle.
Explanation:
Any five misused of science and technology are:-
•Guns and weapons to clash.
•Phishing sites
•Scamming online or on online shopping.
•Misusing social media and our phones.
•Crazy addictive online games.
Basic understanding of code language such as Java, C++, Swift (iOS) etc. without knowledge of these, you’ll be lost trust me. Study up on these in your spare time. They do teach this stuff in college, but being ahead of the game is always good. No pun intended kek ;D
A large multi user program
Answer:
#include <stdio.h> // header file inclusion
int main() // main function declaration
{
int number,product=0; // variable declaration
while(product<100) // while loop
{
scanf("%d",&number); // input a number
product= number*10; // multiply the number by product
printf("%d\n",product); // print the value of product
}
return 0; // return statement
}
Output:
- If the user enter 10 then the loop terminates for the first time and the output is 100.
- If the user enter 5,10 then the loop executes in 2 times and the output is 50 and 100.
Explanation:
- Firstly there is an inclusion of header file which understands the meaning of printf() and scanf() function.
- Then there is the main() function definition
- Then we declare a two-variable (number and product) of integer type.
- Then we define a while loop and check the condition that product value is less than 100 or not.
- Then we take input and multiply by 10.
- Then we assign the value in the product and print the product value.