Answer:
B) Nuclear Technology
Explanation:
Nuclear technology involves atomic nuclei reactions which are used to generate energy. The product of nuclear reactions has huge advantages in Medicine, Agriculture, power generation, Water Desalination etc. However This technology can be misused to produce nuclear bombs (atomic bombs) Which are very dangerous weapons of mass destruction.
Since nuclear reactions involve chain (continous) reactions, they effective damage of detonating a nuclear bomb is huge.
A sole proprietorship, because she will work alone from home a franchise
There are different kinds of program. In the program evaluation and review technique (PERT), a delay in a critical path will cause the entire project to fall behind.
<h3>What is program evaluation and review technique?</h3>
Program Evaluation Review Technique (PERT) is known to be a statistical tool that is often used in project management.
It is said to be created so as to help analyze and represent the tasks that is used in completing a said project. If any task along a critical path is said to fall behind a specific schedule, the entire project have to be delayed.
learn more about program evaluation from
brainly.com/question/13171394
Answer:
The affiliation of the writer is that She is on the staff at the Center for Food Safety (CFS).
Explanation:
CFS stands for the Center for Food Safety which is the national non-profitable public environmental and interest advocacy organization that is working for protect the human health and environment by the curbing use of the harmful food productions technologies and by the promoting an organic and other form of the sustainable agriculture.
This is a java program with a class called Sum1.
Explanation:
While loop is used to add 10 number.
import java.util.Scanner;
public class Sum 1
{
public static void main(String args[])
{
int number, count, sum = 0;
Scanner s = new Scanner(System.in);
System.out.print("Enter the number:");
number = s.nextInt();
while(number > 0)
{
count = number % 10;
sum = sum + n;
number = number / 10;
}
System.out.println("Sum of Digits:"+sum);
}
}