Explanation:
1. it has resulted into the manufacturing of vehicles , trains etc
2. 9through computer technology satellites have been invented to boost education through the use of Internet
3. it has improved agriculture by manufacturing machinery such as tractors, ploughs etc
Answer:
// code to read grade
#include <stdio.h>
// main function
int main(void) {
// if grade is character
char grade;
// if grade is numeric then we can use int or double
// int grade;
// double grade;
printf("Enter your grade:");
// read grade from user
scanf("%c",&grade);
// print grade
printf("your grade is:%c",grade);
return 0;
}
Explanation:
To read a value, scanf() function is used from stdio.h.Read a grade from user and assign it to variable "grade".
Output:
Enter your grade:A
your grade is:A
// code to read die volt
#include <stdio.h>
// main function
int main(void) {
// variable
double die_volt;
printf("Enter die volt:");
// read die volt from user
scanf("%lf",&die_volt);
// print die volt
printf("Entered die volt is:%0.2lf",die_volt);
return 0;
}
Explanation:
Read the die volt from user and assign it to variable "die_volt" with the help
of scanf() function.
Output:
Enter die volt:220
Entered die volt is:220.00
Answer:
b. organizing
Explanation:
In the organising stage of a program life cycle involves such activities as forming a team, allocating resources, preparing project documentation, and ensuring good communication.
The organising stage can also comprise of the following activities;
1) To properly Organise and prepare a project.
2) Typically it involves conducting research and making use of its results to design a prototype or service for testing.
3) Here there is also nees to prepare and implement a schedule
4) Identifying the targets within the project
5) Distributing the tasks and resources to the team
6) Adjusting the members of the project team as needed
Answer:
B. Crashing is not possible unless there are multiple critical tasks.
Answer:
LCD panel
Explanation:
Regularly these wireless cards tend to be attached to the LCD panel because the wireless cards have a Wi-Fi antenna to get a better signal.
Regularly the wireless card has two cables, those cables go between the hinges until arrives at the display panel (LCD panel).
There are wireless cards that are connected by the USB port, this is so useful because there are some cards welded in the motherboard.