Answer:
class OddNumber
{
public static void main(String args[])
{
int n = 1000; //Store 1000 in Variable n typed integer
System.out.print("Odd Numbers from 1 to 1000 are:"); // Print headline of output window
for (int i = 1; i <= n; i++) //For loop to go through each number till end
{
if (i % 2 != 0) //check if number is even or odd.Not divisible by 2 without reminder means it is odd number
{
System.out.print(i + " "); //print odd numbers
}
}
}
}
Answer:
A) work study program
Explanation:
Because you need experience and scholarships don't always pay, so this is the best choice.
Selecting the page and pressing the backspace key
If you use your computer primarily for telnet into a remote computer, a person will not have a large long distance telephone bill.
<h3>What is telnet used for?</h3>
Telnet is known to be a kind of a network protocol that is said to be used to virtually look into a computer and to give a two-way, working hand in hand and text-based communication channel that exist between two machines.
Note that, If you use your computer primarily for telnet into a remote computer, a person will not have a large long distance telephone bill because it does not apply in any way.
Learn more about telnet from
brainly.com/question/23640188
#SPJ1