Answer this question without running pin again. Assume that the 100,000 element integer array that you allocated starts at address 0x50000000 in memory, the size of an integer is 4 bytes and the D-cache is initially empty. As you read the integers in the array one-by-one, starting at index 0, how many D-cache misses will you see for reading the first 40 integers when the cache block size is:

Answers

Answer 1
Answer:

Answer:

adaddsad

Explanation:


Related Questions

No Browsing History While using the browser on your tablet, you realize that it is not keeping a history of websites you have visited. Why might this be happening, and what is the first step you will take to correct this problem? Phishing Scam You just received an email message from someone requesting personal identification information. Believing the message was legitimate, you provided the requested information to the original sender. You now realize, however, that you might have fallen victim to a phishing scam. What are your next steps? Suspicious File Attachment You receive an email message that appears to be from someone you know. When you try to open the attachment, nothing happens. You attempt to open the attachment two more times without any success. Several minutes later your computer is running slower and you are having trouble running apps. What might be wrong? Antivirus Software Outdated After starting your computer and signing in to the operating system, a message is displayed stating that your virus definitions are out of date and need to be updated. What are your next steps? Laptop's Physical Security You plan to start taking your laptop to school so that you can record notes in class. You want to make sure, however, that your computer is safe if you ever step away from it for a brief period of time. What steps can you take to ensure the physical security of your laptop?
6 things you should consider when planning a PowerPoint Presentation.
What is the largest safety threat to the ISS?Will give brainlest :)
The users, groups, logins, and roles that have access to a server are called ________________. a. ids b. permissions c. principals d. securables
Which is true of diagnosing and troubleshooting? Diagnosing attempts to identify the source of a problem, while troubleshooting looks for the nature of the problem. Diagnosing is used to fix problems with hardware, while troubleshooting is used to fix problems in program code. Diagnosing looks for the nature of the problem, while troubleshooting attempts to identify the source of the problem. Diagnosing is used to fix problems in program code, while troubleshooting is used to fix problems with hardware.

Which of the following statements is NOT true regarding the Security Configuration and Analysis (SCA) tool?a. It evaluates the current security state of computers in accordance with Microsoft security recommendations.
b. It allows an administrator to analyze a computer and compare its configuration settings with a baseline.
c. It can apply a baseline to force current computer settings to match the settings defined in the baseline.
d. It uses security templates to store the settings that make up baselines.

Answers

Answer: a. It evaluates the current security state of computers in accordance with Microsoft security recommendations

Explanation:

The Security Configuration and Analysis tool allows the configuration of local computers through the application of the settings in a security template to the local policy.

This allows an administrator to analyze a computer and compare its configuration settings with a baseline. The Security Configuration and Analysis (SCA) tool also uses security templates to store the settings that make up baselines.

Therefore, based on the options given, the correct option is A as the SCA tool doesn't evaluate the current security state of computers in accordance with Microsoft security recommendations.

A ____ statement is a a control flow statement that repeatedly executes a statement or a series of statements while the value of a specific condition is truthy or until the value of a specific condition becomes truthy.a. decision-making

b. fork

c. break

d. loop

Answers

The answer would be loop.

Answer:

Option D is correct.

Explanation:

A Loop statment is a control flow statement that repeatedly executes a statement or a series of statements while the value of a specific condition is truthy or until the value of a specific condition becomes truthy.

In C++, write a program that asks the user to input an integer and then calls a function namedmultiplicationTable(), which displays the results of multiplying the integer by each
of the numbers 2 through 10.

Answers

Answer:

//Program in C++.

// header

#include <bits/stdc++.h>

using namespace std;

// function to multiply number with 2-10

void multiplicationTable(int num)

{

   cout<<"Number when multiplied with 2-10:"<<endl;

   for(int a=2;a<=10;a++)

   {

   // multiply number with 2-10

      cout << num << " * " << a << " = " << num*a << endl;

   }

}

// driver function

int main()

{

// variable

   int num;

   cout<<"Enter a number:";

   // read number from user

   cin>>num;

   // call the function

   multiplicationTable(num);

return 0;

}

Explanation:

Read a number from user and assign it to variable "num".Call the function  multiplicationTable() with parameter "num".In this function, multiply number  with each from 2 to 10 and print the value.

Output:

Enter a number:5                                                                                                          

Number when multiplied with 2-10:                                                                                          

5 * 2 = 10                                                                                                                

5 * 3 = 15                                                                                                                

5 * 4 = 20                                                                                                                

5 * 5 = 25                                                                                                                

5 * 6 = 30                                                                                                                

5 * 7 = 35                                                                                                                

5 * 8 = 40                                                                                                                

5 * 9 = 45                                                                                                                

5 * 10 = 50

Select the correct answer.At which stage of art criticism do you sum up your evaluations?

A description

B. judgment

C. interpretation

D. analysis

Reset

Next

Answers

Answer: B. judgment

Explanation: To critique a work of art, there are a 4 steps method:

Description: describe everything you see in the work: name of the artist, the title, what you observe, what media he/she used, the year it was created;

Analysis: describe how the artist uses the elements of art (line, shape, color, texture, space) and the principlesofdesign (balance, movement, pattern, emphasis, contrast);

Interpretation: try to explain what is the meaning of the art, why the artist created it, what was he/she's idea for it, based on the 2 previous steps;

JudgmentorEvaluate: make an opinion of why the art is worth it based on the other steps and give reasons for liking or disliking, its importance or the way it make you feel;

After going through each step, your evaluation or opinion will be expressed in the 4th step: Judgment.

3
5. (a) Identify some key internet search engines

Answers

Answer:

google, bing,yahoo,aol

Explanation:

Google
Bing
MSN
Yahoo
DuckDuckGo
Thank You!

Consider the following class definition.public class Tester
{
privtae int num1;
private int num2;
/missing constructor /
}
The following statement appears in a method in a class other than Tester. It is intended t o create a new Tester object t with its attributes set to 10 and 20.
Tester t = new Tester(10,20);

Which can be used to replace / missing constructor / so that the object t is correctly created?

Answers

Answer:

Explanation:

The following constructor needs to be added to the code so that the object called t can be created correctly...

public Tester(int arg1, int arg2) {

    num1 = arg1;

    num2 = arg2;

}

This basic constructor will allow the object to be created correctly and will take the two arguments passed to the object and apply them to the private int variables in the class. The question does not state what exactly the Tester constructor is supposed to accomplish so this is the basic format of what it needs to do for the object to be created correctly.

Other Questions