The following code segment displays ___________

```
v1 = 15.0;
v2 = 0.5;

if (v1 > 10.0)
printf("ten ");
else if (v1 > 14.0)
printf("fourteen ");
if (v2 * v1 > 7.0)
printf("seven ");
if (v1 - v2 > 9.0)
printf("nine ");
printf("\n");
```

ten seven nine

Computer Science & Information Technology

You might also like to view...

How can you use ssh to find out who is logged in on a remote system?

What will be an ideal response?

Computer Science & Information Technology

It is helpful to use a desk-check table when desk-checking an algorithm.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology