Hi,
the program is as follows
___________________________________________________________
import java.io.*;
class doubleval
{
public static void main()throws IOException
{
DataInputStream dt=new DataInputStream(System.in);
System.out.println("Enter NUMBER WHOSE DOUBLE U WANT TO PRINT");
int n=Integer.parseInt(dt.readLine());
for(int i=n;i<=100;i=2*i)
{
System.out.println(i);
}
}
}
1. Honeymoon stage
2. Distress and anxiety
3. Adjustment
4. Adaption
5. Re-entry shock
Answer:
Downloadable
Explanation:
Cloud computing can be defined as a type of computing that requires shared computing resources such as cloud storage (data storage), servers, computer power, and software over the internet rather than local servers and hard drives.
Generally, cloud computing offers individuals and businesses a fast, effective and efficient way of providing services.
In Computer science, a downloadable media must first be downloaded in its entirety and saved to a user's computer before it can be played, heard or seen.
For example, for an end user to listen to a song hosted on a particular website, he or she must first of all download the song in its entirety and have saved on a computer system before it can be seen, played and listened to. Also, other downloadable media such as videos, animations, texts, etc., must be downloaded before they can be accessed or used by an end user.
To continue to look at motivational or inspirational quotes to remind them or to remember how far you have come and it is not time to give up!
Answer:
True
Explanation:
Run-time parameters passed to a function allow you to use different values each time the function is called. Let us consider an example:
int add(int a,int b){
return a+b;
}
Now we can execute the same function with different parameters at runtime:
add(3,4) returns 7.
add(1,2) return 3.
add (10,1) return 11.
During each invocation , the formal function parameters are substituted by actual runtime values and the function code is executed.