The fourth choice is correct.
Answer:
AIDS can be caused by having sexual intercourse with an AIDS-infected partner. It can only be spread through the contact of infected blood or fluid from a mother to child during childbirth.
There are many symptoms of AIDS. However, these are the most common symptoms of AIDS:
- Swollen lymph glands
- Most of the white blood cells are produced there.
2. Weight loss
3. Diarrhea
There are many measures that can be put in placed to prevent AIDS.
- To use a condom during sexual intercourse.
- Making sure that needles are not shared with others (e.g. when piercing your ear). The needles may be contaminated by an AIDS-infected user. Use a clean needle.
Answer:
If you have a 100% packet loss, it means that all packets get lost between certain hops on your connection. Which, in turn, renders you unable to reach the destination server
Answer:
Following are the program in the Java Programming Language.
public class Main // declared class
{
public void hopscotch(int x) // function definition
{
int count=0; // variable declaration
for (int j=0; j<x; j++) // iterating over the loop
{
System.out.println(" " + (++count)); // print the value of count
System.out.println((++count) + " " + (++count));
}
System.out.println(" " + (++count));
}
public static void main(String[] args) // main method
{
Main ob=new Main(); // creating object
ob.hopscotch(3); // calling hopscotch method
}
}
<u>Output</u>:
1
2 3
4
5 6
7
8 9
10
Explanation:
Here, we define a class "Main" and inside the class, we define a function "hopscotch()" and pass an integer type argument in its parentheses and inside the function.
- We set an integer variable "count" and assign value to 0.
- Set the for loop which starts from 0 and end at "x" then, print space and value inside the loop, again print value then space then value, then repeat the 1st print space then value.
- Finally, set the main function "main()" and inside the main function, we create the object of the class "ob" then, call the function " hopscotch()" through the object and pass the value 3 in its parentheses.