Question

1. How many times does the message, “Hello” get printed out by the code segment below?...

1. How many times does the message, “Hello” get printed out by the code segment below?

int count = 0;

while (count < 32) {

    printf(“Hello\n”);

    count = count+4;

}

2.

What is the value of sum at the end of the following code segment?

int sum = 0, index;

for (index = 0; index < 5; index++)                

sum += 5;

Group of answer choices

0 0
Add a comment Improve this question Transcribed image text
Answer #1
Question 1:
Number of times does the message, “Hello” get printed out by the code segment below is 8
Answer:
8

Question 2:
The value of sum at the end of the following code segment is 25
Answer:
25
Add a comment
Know the answer?
Add Answer to:
1. How many times does the message, “Hello” get printed out by the code segment below?...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • How many times does the message, “Hello” get printed out by the code segment below? int...

    How many times does the message, “Hello” get printed out by the code segment below? int count = 0; while (count < 41) {     printf(“Hello\n”);     count = count+3; } D Question 2 1 pts How many times does the message, "Hello" get printed out by the code segment below? int count = 0; while (count < 41) printf("Helloln"); count count+3;

  • In the code below,how many times "Hello" is going to be printed if the user enters...

    In the code below,how many times "Hello" is going to be printed if the user enters 15 and 17 respectively? goal = int(input()) for lp in range(0,goal,3): print("Hello")

  • (a)How many times does the code snippet given below display "Hello"? int x = 1; while...

    (a)How many times does the code snippet given below display "Hello"? int x = 1; while (x != 15) {    System.out.println ("Hello");    x++; } (b)What is the output of the following code fragment? int i = 1; int sum = 0; while (i <= 5) {    sum = sum + i;    i++; } System.out.println("The value of sum is " + sum); Quie 2 What is the output of the following snipped code? public class Test {...

  • 3. How many times "hello" is get printed? for(int x=-1; x<=10; x++) { if(x < 5)...

    3. How many times "hello" is get printed? for(int x=-1; x<=10; x++) { if(x < 5) continue; cout<<"hello"<<endl; }* (3 Points) 5 times 11 times Infinite times 6 times

  • 1-Is it possible to run a program without a main() function? Yes No 2- How many...

    1-Is it possible to run a program without a main() function? Yes No 2- How many main() functions can one have in a program? 2 This depends on what compiler you use. As many as you like 1 3- What does the following code fragment leave in x? char a = 'A'; int x = sizeof (a); 1 Depends on what compiler you use. 4 2 4- True or false: In a C program I can have two functions with...

  • 6. How many times does this code print "hello"? Note that execl is a wrapper over...

    6. How many times does this code print "hello"? Note that execl is a wrapper over the execve system call, which executes the echo program. Assume that execl is always successful. int main(int args, char **argv) { int i; for (i=0; i < 3; i++) { exec1("/bin/echo", "echo", "hello", o);

  • 31. The following code segment is syntactically correct:              int number{20};          cout << number <<...

    31. The following code segment is syntactically correct:              int number{20};          cout << number << setbase(16) << " " << number                               << setbase(10) << " " << number                                 << showpos << " " << number << endl;                 T__   F__       32. The following statement wants to determine if ‘count’ is outside the     range of 0 through 100:             if (count < 0 && count > 100)                                             T__   F__ 33. There is...

  • Linux & C code help with creating a child process and kills itself with SIGNAL. I...

    Linux & C code help with creating a child process and kills itself with SIGNAL. I provided most of the code, I need some help to finish. Please provide output screen shot as well. Thank you! A Process creates a child process. Child process will print out "hello 0" "hello 1" ..... 1 line per second. After a certain number of seconds(user input), it kills itself WITH signal mechanism ONLY, don't use exit() on the child. You can use alarm()...

  • Hello, Could you please input validate this code so that the code prints an error message...

    Hello, Could you please input validate this code so that the code prints an error message if the user enters in floating point numbers or characters or ANYTHING but VALID ints? And then could you please post a picture of the output testing it to make sure it works? * Write a method called evenNumbers that accepts a Scanner * reading input from a file with a series of integers, and * report various statistics about the integers to the...

  • 20) What is the output of the following segment of C code: int avg(int n, int*...

    20) What is the output of the following segment of C code: int avg(int n, int* a); int main () {             int array[4]={1,0,6,9};             printf("%d", avg(4, array)+ 1);             system("pause");             return 0; } int avg(int n, int* a) { int i, sum=0; for (i=0;i<n;i++) { sum+=a[i]; } return sum/n; } a) 16 b) 5 c) 4 d) 8 21) What is the output of the following segment of C code: int x = 2; int y = 3;...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT