Answer: Resolution or DPI, deliverables, and file types are important technical and visual demands to consider when planning a project.
Explanation: Keep in mind whether or not the project will be published in print or on the Web.
Answer:
CPI = 0.94
Explanation:
The formula for execution time is given below:
Execution time = clock cycles * cycle time
As Execution time = 750 s
clock cycle time = 0.333 ns = 0.333 * 10^-9
so putting these values in the above formula, we get
750 = clock cycles * ( 0.333 * 10^-9 )
clock cycles = 750 / ( 0.333 * 10^-9 )
clock cycles = 2.25 * 10^12
As the results of the spec cpu2006 bzip2 benchmark running on an amd barcelona has an instruction count = 2.389 * 10^12
and the formula for clock cycles is:
clock cycles = number of instructions * CPI
CPI = clock cycles / number of instructions
CPI = 2.25 * 10^12 / 2.389 * 10^12
CPI = 0.94
Answer is
productivity
Sometimes called the office or personal productivity software,
productivity software is dedicated to producing databases, spreadsheets,
charts, graphs, documents, graphs, digital video and worksheets. Reason behind
the name productivity is due to the fact that it increases productivity in
office work.
Answer:
I am doing it with python.
Explanation:
nums = '9 -8 -7 -6 -5 -4 -2 0 1 5 9 6 7 4'
myfile = open('data.txt', 'w')
myfile.write(nums)
myfile.close()
myfile = open('data.txt', 'r')
num1 = (myfile.read())
num1 = num1.split()
print(num1)
print(type(num1))
for x in num1:
x = int(x)
if x < 0:
minus = open('dataminus.txt', 'a')
minus.write(str(x) + ' ')
minus.close()
elif x>= 0:
plus = open('dataplus.txt', 'a')
plus.write(str(x)+' ')
plus.close()