int x = 7, y = 4, z;
float z1,z2,z3;
// x/y is 1.75 but integer by
integer division gives an integer, thus x = 7/4 = 1
// assigned to z1 and converted to
float , thus z1 = 1.00
z1 = x/y;
// x/y is 1.75 but integer by
integer division gives an integer, thus x = 7/4 = 1
// which is then converted to float
and assigned to z2
// thus z2= 1.00
z2 = (float)(x/y);
// (float)x = 7.00, divided by y
=4 , result is assigned to z3
z3 = (float)x/y;
// x/y is 1.75 but integer by
integer division gives an integer, thus x = 7/4 = 1
// assigned to z
z = x/y;
System.out.printf("z=%d z1=%5.2f
z2=%5.2f z3=%5.2f \n",z,z1,z2,z3);
/*
output:
z=1 z1= 1.00 z2= 1.00 z3= 1.75
*/
Write the output of the following segment of code and explain your results. int x=7, y=4,...
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;...
1. What is the output of the following code segment? int array[] = { 8, 6, 9, 7, 6, 4, 4, 5, 8, 10 }; System.out.println( "Index Value" ); for ( int i = 0; i < array.length; i++ ) System.out.printf( "%d %d\n", i, array[ i ] ); 2. What is the output of the following code segment? char sentence[] = {'H', 'o', 'w', ' ', 'a', 'r', 'e', ' ', 'y', 'o', 'u' }; String output = "The sentence...
Given the following code segment, int x = 20; int y = 7; what is the data type of the value of the expression (x % y) ? (3 points) Question 1 options: 1) int 2) double 3) numeric 4) Error: possible loss of precision 5) Unable to be determined Question 2 (3 points) Given the following code segment, double x = 42.3; double y = 11.7; what is the data type of the value of the expression (x %...
int i = 4; int x = 6; float z; z = x / i; printf("z=%5.2f", z) ; output in C programming?
Can someone explain these three questions for me? Thanks.
Answers are provided
Use the code segment below for problems 6-7 int x = 1; int y - 0 int z 1: if(! (x && y) ) x 0; İf ( ! (x 11 y) ) y+= (x + y) % 2 == 0 ? 1 : 0; printf ("Total #1 : %d\n", x + y + z); printf ("Total #2: %d\n", !x + !y + !2); 6. Which of the...
What does the following code output? int x = 7, y = 10; X -= 30; y *= 5; X += 32; y /= 4; cout << "y = " « y << " and x = " << x << "; " << endl; X -= 10; y /= 5; cout << "x = " << x < " and y = " << y « ";" << endl;
7. Write the following code segment in MARIE's assembly language (If-Else): If x < Y Then X = Y - X; Y = Y + 1; Else X = Y; Y = 0; Endif;
What is the output from the following code segment? Output from PRINTLINE 1: public static void Main(){ int x = 38; int y = 45; int z = DoIt(ref x, ref y); PRINTLINE(x + “ “ + y + “ “ + z); // PRINTLINE 1 } static int DoIt(ref int a, ref int b) { a /= 8; b /= 7; PRINTLINE(a + “ “ + b); // PRINTLINE 2 return (a + b);...
what is the output of the following code segment?
C++
g. int arr[3][4]; for (int i = 0; i < 3; i++) for (int j = 0; j < 4; j++) arr[i][j] =i*4 + j; for (int i = 0; i < 3; i++) for (int j = 0; j < 4; j++) cout << arr[i][j] << " "; h. int next(int & x) { x= x + 1; return (x + 1); int main() { int y = 10;...
given the following declarations int x; float y = 99.5; write a C++ code that will cast y to an int and store the result in x.