Ace - AI Tutor
Ask Our Educators
Textbooks
My Library
Flashcards
Scribe - AI Notes
Notes & Exams
Download App
rodrigo carmona

rodrigo c.

Divider

Questions asked

BEST MATCH

What is the equilibrium exchange rate yen per dollar (how many yen do you get for a dollar)?

View Answer
divider
BEST MATCH

The area of one face of a cube with side length s is s^2. Because a cube has 6 sides, the surface area of a cube is: 6s^2. Evaluate that expression for s = 9/10. Use proper formatting, such as commas, where appropriate.

View Answer
divider
BEST MATCH

2) int x,y; Suppose that is input is 14 45 34 23 10 5 -999 Show what is output by the following segment of code. Stack.initializestack(); Stack.push(5); Cin>>x; While (x != -999) { if (x % 2 == 0) { } else if (!stack.fullstack()) stack.push(x); cout<<"x = "<<x<<endl; cin>>x; } cout<<"Stack Elements: "; while (!stack.isemptystack()) { stack.pop(y); cout<<" "<<y; } cout<<endl;

View Answer
divider
BEST MATCH

We can differentiate the high voltage terminals of a transformer from the low voltage terminals by looking at the size of the transformer insulators or bushings (a) True (b) False

View Answer
divider
BEST MATCH

4. The conditions which restrict the motion of the system are called A. Generalized coordinates B. Degree of freedom C. Constraints D. None

View Answer
divider
BEST MATCH

I am to write a program in MIPS assembly language that implements the bubble sort algorithm to sort a variable-sized array of signed 32-bit integers (words) that are read from the console. A "special value" 9999 will be used to signify the end of the input sequence, but this value is not to be considered part of the input dataset. *What will be valid: - any value greater than 9999 that is entered prior to 9999 is considered as a valid input. - Zero and negative values are also valid. - Empty input sets are also valid. The program must ask the user if he/she wants to put in more values after the first sequence of inputs. If yes, the sort algorithm must be repeated just for new inputs. I must use the following algorithm (shown in Java-like syntax): n = 0; read in; while in != 9999 { vals[n] = in; n++; read in; } for (i = 0; i < n - 1; i++) { for (j = 0; j < n - 1; j++) { if (vals[j] > vals[j + 1]) { // swap temp = vals[j]; vals[j] = vals[j + 1]; vals[j + 1] = temp; } } } for (i = 0; i < n; i++) { print vals[i] } // ask user if he wants to sort another sequence. Also, I am to use the following line to set up memory to hold the input: .data vals: .space 4000 The program must compile, be able to respond to different input cases correctly, correctly use a sorted list, correctly use a reverse sorted list, work correctly when interacting with integers greater than 10000, work correctly when interacting with negative numbers, work correctly when interacting with combinations of negative and positive integers, the termination character 9999 should not be part of the output in any of the above cases, and the program asks for more inputs. Also, if you could explain what is going on in each step through the use of comments, I would be extremely grateful.

View Answer
divider
BEST MATCH

The height of a kicked football can be represented by the polynomial $ -16t^2 + 47t + 3 = 0 $, where $t$ is the time in seconds. Find the time in seconds of when the football hits the ground.

View Answer
divider
BEST MATCH

How many distinguishable permutations are possible with all the letters of the word STATISTICS?

View Answer
divider
BEST MATCH

The number of computer chips produced by a machine is given n = 6(5<sup>t</sup>) + (5<sup>t+1</sup>) with the condition t being the operating time, in hours, that machine. Determine the time taken by the machine to produce 7125 pieces of computer chips.

View Answer
divider
BEST MATCH

Triangle ABC is graphed. 1. The intersection of the altitudes of triangle ABC is located at ( ). Write any coordinate that isn't a whole number as an improper fraction or decimal rounded to tenths. 2. Identify the perpendicular bisectors, and the point of intersection of all 3 perpendicular bisectors. The point ( ) is the point of intersection. Use whole numbers and/or decimals to input your answer.

View Answer
divider