A computer with a frequency 2 GHZ and its average cycle per instruction is 2. what is the MIPS of the computer?

Answers

Answer 1
Answer:

Answer:

The correct answer is 1000 MIPS.

Explanation:

Using the rule of three you can solve the needed cycles to complete 1.000.000 instructions.

  • 1 instruction -> 2 cycles
  • 1.000.000 instructions -> x cycles.

1.000.000 instructions multiplied by 2 cycles, divided by 1 instruction is equal to 2.000.000 cycles to complete 1.000.000 instructions.

To find the MIPS you have to divide the frequency by the cycles needed to complete 1.000.000 instructions.

MIPS = 2GHZ / 2.000.000 cycles = 1000 MIPS.


Related Questions

A web page that allows interaction from the user​
Write a program that can be used to assign seats for a commercial airplane. The airplane has 13 rows, with six seats in each row. Rows 1 and 2 are first class, rows 3 through 7 are business class, and rows 8 through 13 are economy class. Your program must prompt the user to enter the following information: a. Ticket type (first class, business class, or economy class)b. Desired seatSo far the code I have is ... now can I go about finishing to retreive the user input ? (This is for C++)#include #include using namespace std;int main(){ int r, c; char seat_resvr; char tic_type; char availability[13][6], reserved[2]; int row_num, col_num; char seats; cout << "A program that lets you choose your seating arrangement on an airplane"; cout << endl; char A[13][6]; for (int r = 0; r < 13; r++) { for (int c = 0; c < 6; c++) A[r][c] = '*'; } /*int row, seat; cin >> row >> seat; A[row - 1][seat - 1] = 'X';*/ cout << " A B C D E F" << endl; for (int r = 0; r < 13; r++) { cout << "Row" << setw(3) << r + 1 << " "; for (int c = 0; c < 6; c++) cout << A[r][c] << ' '; cout << endl; } cout << endl << "* -- available seat" << endl << "X -- occupied seat" << endl << endl << "Rows 1 and 2 are for first class passengers." << endl << "Rows 3 through 7 are for business class passengers." << endl << "Rows 8 through 13 are for economy class passengers." << endl; cout << "To reserve a seat enter Y/y (Yes), N/n(No):" << endl; cin >> seat_resvr; reserved[2] = 'X'; return 0;}
One advantage of the Second generation of programming language is that it is machine dependent. True or False
_ is the adherence to a personal code of principles.EthicsMoralityIntegrityHonestySection B
Which type of error occurred in the following lines of code? >>> print(9 / 0)Traceback (most recent call last): File " ", line 1, in 9/0ZeroDivisionError: division by zeroAnswer choices:reserved word errorlogical errorexceptionsyntax error

How many thermal performance control modes are there in Alienware Area 51m to support different user scenarios?

Answers

It should be noted that the number of thermal performance mode is 5.

From the complete information, it should be noted that there are five thermal performance control modes are there in Alienware Area 51m to support different user scenarios.

The modes are:

  • Full speed mode.
  • Performance mode.
  • Balanced mode.
  • Quiet mode.
  • Cool mode.

In conclusion, the correct option is 5

Learn more about modes on:

brainly.com/question/25604446

Answer:

3

Explanation:

The Dell Alienware Personal Computers refers to a range of PC's which are known for their strength, durability and most commonly their graphical performance. Th ecomputwrs are built to handle very high and intensive graphic demanding programs including gaming. The Alienware area 51m is a laptop which has been loaded with the capability and performance of a high graphic demanding desktop computers boasting massive memory size and greater graphic for better game play and high graphic demanding programs.

The laptop features an improved thermal and performance capability to handle the effect of different graphic demanding programs. Therfore, the laptop has 3 different thermal a d performance system modes which altenrtes depending on graphic demands in other to handle intensive demands.

Edhisive 3.5 code practice

Answers

Answer:

x = int(input("What grade are you in? "))

if (x == 9):

   print ("Freshman")

elif (x == 10):

   print("Sophomore")

elif (x == 11):

   print ("Junior")

elif (x == 12):

   print("Senior")

else:

   print ("Not in High School")

Explanation:

What is copyright and what are your thoughts on it?

Answers

It’s a type of property marking that gives an owner the right to copy creative pieces/work. I think that it makes life easier

Answer:

Copyright is a type of intellectual property that gives its owner the exclusive right to make copies of a creative work.

Explanation:

What information is required for a complete citation of a website source?A: the title, volume number, and page numbers
B: the responsible person or organization and the website URL
C: the responsible person or organization, date accessed, and URL
D: the responsible person or organization and the date accessed

Answers

Answer:

C: the responsible person or organization, date accessed, and URL

Explanation:

How to solve the problem in the man middle attack?

Answers

Answer and Explanation :

A man middle attack is the attack which takes place when there is a communication between the two system. This mostly happen whenever there is online communication between two systems it may be anything as email chatting etc.

It is very difficult to protect from a man middle attack but there is a technology

known as PKI technology which is used for protection from man middle attack

#Imagine you're writing a program to check if a person is #available at a certain time.

#

#To do this, you want to write a function called

#check_availability. check_availability will have two

#parameters: a list of instances of the Meeting class, and

#proposed_time, a particular date and time.

#

#check_availability should return True (meaning the person

#is available) if there are no instances of Meeting that

#conflict with the proposed_time. In other words, it should

#return False if proposed_time is between the start_time and

#end_time for any meeting in the list of meetings.

#

#The Meeting class is defined below. It has two attributes:

#start_time and end_time. start_time is an instance of the

#datetime class showing when the meeting starts, and

#end_time is an instance of the datetime class indicating

#when the meeting ends.

#

#Hint: Instances of the datetime have at least six

#attributes: year, month, day, hour, minute, and second.

#

#Hint 2: Comparison operators work with instances of the

#datetime class. time_1 < time_2 will be True if time_1 is

#earlier than time_2, and False otherwise.

#

#You should not assume that the list is sorted.

#Here is our definition of the Meeting class:

from datetime import datetime

class Meeting:

def __init__(self, start_time, end_time):

self.start_time = start_time

self.end_time = end_time

#Write your function here!



#Below are some lines of code that will test your function.

#You can change the value of the variable(s) to test your

#function with different inputs.

#

#If your function works correctly, this will originally

#print: True, then False

meetings = [Meeting(datetime(2018, 8, 1, 9, 0, 0), datetime(2018, 8, 1, 11, 0, 0)),

Meeting(datetime(2018, 8, 1, 15, 0, 0), datetime(2018, 8, 1, 16, 0, 0)),

Meeting(datetime(2018, 8, 2, 9, 0, 0), datetime(2018, 8, 2, 10, 0, 0))]

print(check_availability(meetings, datetime(2018, 8, 1, 12, 0, 0)))

print(check_availability(meetings, datetime(2018, 8, 1, 10, 0, 0)))

Answers

Answer:

i hope the program below will help you!

Explanation: