Answer:
13
Explanation:
int numA = 4;
whilie (numA < 12){
numA += 3;
}
System.out.print(numA);
numA numA < 12
4 true <em>⇒ numA increases by 3, loop continues </em>
7 true <em>⇒ numA increases by 3, loop continues </em>
10 true<em> ⇒ numA increases by 3, loop continues</em>
13 false <em>⇒ loop stops, program them prints out value of numA </em>
Answer:
An operating system is installed on a disk drive. An operating system is software and a disk drive is a storage medium. To put it very simply, a disk drive is what an operating system (or other data) is stored on.
Explanation:
g00gled it
Answer:
Down/down is the correct answer.
Explanation:
The down/down is the status of the interface when the speed of the ethernet mismatches that is configuration between the Cisco routers. Generally, it is the way of saying by the Cisco is "the connection" or the following ports are available for the connection but do not have one of them then, check their systems or the cables connection.
Answer:
The purpose of the domain name is for credibility and location purposes.
Explanation:
For example.
nz.gov means that the domain owner is the government on New Zealend
Answer:
Explanation:
#include <stdio.h>
int main(void)
{
int num, rem;
printf("Enter a number: ");
scanf("%d", &num);
printf("Roman numerals: ");
while(num != 0)
{
if (num >= 1000) // 1000 - m
{
printf("m");
num -= 1000;
}
else if (num >= 900) // 900 - cm
{
printf("cm");
num -= 900;
}
else if (num >= 500) // 500 - d
{
printf("d");
num -= 500;
}
else if (num >= 400) // 400 - cd
{
printf("cd");
num -= 400;
}
else if (num >= 100) // 100 - c
{
printf("c");
num -= 100;
}
else if (num >= 90) // 90 - xc
{
printf("xc");
num -= 90;
}
else if (num >= 50) // 50 - l
{
printf("l");
num -= 50;
}
else if (num >= 40) // 40 - xl
{
printf("xl");
num -= 40;
}
else if (num >= 10) // 10 - x
{
printf("x");
num -= 10;
}
else if (num >= 9) // 9 - ix
{
printf("ix");
num -= 9;
}
else if (num >= 5) // 5 - v
{
printf("v");
num -= 5;
}
else if (num >= 4) // 4 - iv
{
printf("iv");
num -= 4;
}
else if (num >= 1) // 1 - i
{
printf("i");
num -= 1;
}
}
return 0;
}