Answer: Well, In my Opinion it would Be D! because these day people stick together with the internet!. If she adopt her Online business then she would be able to earn profits and also she can serve the people! Slowly people will get to know her business! That will be good for her!
<h3>
I hope this works! :)</h3>
Answer:
import java.util.Scanner;
public class LargestSmallest {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.print("Enter 10 integers: ");
int num = in.nextInt();
int i = 1;
int min = num, max = num;
while (i < 10) {
num = in.nextInt();
if (num > max) max = num;
if (num < min) min = num;
i++;
}
System.out.println("Largest number: " + max);
System.out.println("Smallest number: " + min);
}
}
Explanation:
A Java application that inputs a series of 10 integers and determines and prints the largest and smallest integer is written above.
<span>The correct answer is letter C. evaporation in the area will decrease. When humans remove vegetation from an area, the water cycle is MOST directly affected on the evaporation side. The evaporation in that area will decrease because there'll be no more plants that will hasten the evaporation process. This will create an abnormality in the water cycle.</span>
Answer:
The correct option for the given question is option(B) i.e dot operator
Explanation:
Structure are collection of different datatypes member element .
Let us consider the example of structure
Struct test
{
int age ;
char name[45];
};
Here test is an "structure" which member is age of "integer" type and name of "String" type.if we have to access the member of structure,firstly we create structure variable name then after that we use dot operator which is also known as member access operator that access the members of structure.
struct test op;// structure variable name
op.age=12; // access the member age
For example
Following is the code in c language :
#include <stdio.h> // header file
struct test // structure declaration
{
int age ;
char name[45];
};
int main() // main function
{
struct test op;// structure variable name
op.age=12; // access the member age
printf("%d",op.age);
return 0;
}
Output:12
so correct answer is "dot operator"