Rewrite the following for-loop as a pre-test while-loop. (6)
for x = 1 to 10
for y = 10 to x
if y MOD 2 = 0 then
display "*"
else
display "#"
endif
display " " ~newline
1. Create an application named Numbers whose main() method holds two integer variables. Assign
values to the variables. Pass both variables to methods named sum () and difference(). Create the
methods sum() and difference(); they compute the sum of and difference between the values of two
arguments, respectively. Each method should perform the appropriate computation and display the
results. Save the application as Numbers.cs
Input two integers in one single line. The first inputted integer must be within 0-9 only.
Using loops, identify if the first inputted integer (0-9) is present in the second inputted integer. If it is found, print "Yes"; otherwise, print "No". Tip: If the number is already found even without reaching the end of the loop, use the break keyword to exit the loop early for a more efficient code.
Write a program that does the following for 15
students:
Reads in 3 marks for each student (you
need to ensure that only valid marks
between 0 and 100 are processed) – your
prompt message to the user should
indicate which number is being requested
(see example image of output)
Calculates and displays the highest mark
for each student.
Finds and displays the highest mark in the class.
(Note: The example output only shows data for 5
students, but your program must work for 15
students).
Write a program which requests a number between
1 and 50 from the user. It must repeatedly ask the
user for a number until a valid number is entered.
After receiving a valid number, the program must
display all the even numbers smaller than that number. (If the user enters 11, the numbers 2, 4, 6,
8, 10 must be displayed).
Write a program, using nested loops, to display the following:
7 6 5 4 3 2 1
7 6 5 4 3 2
7 6 5 4 3
7 6 5 4
7 6 5
7 6
7
Write a program, using nested loops, to display the following:
1
12
123
1234
12345
Write a Java program to read first 3 lines from the file
Write a c++ program to calculate cgpa using classes and objects. And explain each steps
Mention and explain each field of IPv6 header in detail, by taking suitable examples.