suppose a cpu has 16 data pins. How many operations will it take to read a 64 bit word.​

Answers

Answer 1
You can address 2^16 words and each word is 8 bit (= 1 byte). Therefore it is 64 KB.

If the word size was 16 bit. The answer would be 128 KB.

Related Questions

Can you help me in this question

Answers

Answer:

count = arry[0];

          for (i = 0; i < n; i++)

          {

              if (count>5);

              {

                  count;

              }

          }

       

       cout << "Total Count of the numbers greater than or equal to 5 : " <<count ;

Explanation:

count = arry[0];

          for (i = 0; i < n; i++)

          {

              if (count>5);

              {

                  count;

              }

          }

       

       cout << "Total Count of the numbers greater than or equal to 5 : " <<count ;

Modify the CountByFives application so that the user enters the value to count by. Start each new line after 10 values have been displayed.
public class CountByAnything
{
// Modify the code below
public static void main (String args[])
{
final int START = 5;
final int STOP = 500;
final int NUMBER_PER_LINE = 50;
for(int i = START; i <= STOP; i += START)
{
System.out.print(i + " ");
if(i % NUMBER_PER_LINE == 0)
System.out.println();
}
}
}

Answers

Answer:

The modified program is as follows:

import java.util.*;

public class CountByAnything{  

public static void main (String args[]){

   Scanner input = new Scanner(System.in);

final int START = 5;

final int STOP = 500;

int countBy; int count = 0;

System.out.print("Count By: ");

countBy = input.nextInt();

final int NUMBER_PER_LINE = 10;

for(int i = START; i <= STOP; i += countBy){

System.out.print(i + " ");

count++;

if(count == NUMBER_PER_LINE){

System.out.println();

count = 0;} } } }

Explanation:

To solve this, we introduce two variables

(1) countBy --> This gets the difference between each value (instead of constant 5, as it is in the program)

(2) count --> This counts the numbers displayed on each line

The explanation is as follows:

final int START = 5;

final int STOP = 500;

This declares countBy and count. count is also initialized to 0

int countBy; int count = 0;

This prompts the user for countBy

System.out.print("Count By: ");

This gets value for countBy

countBy = input.nextInt();

final int NUMBER_PER_LINE = 10;

This iterates through START to STOP with an increment of countBy in between two consecutive values

for(int i = START; i <= STOP; i += countBy){

This prints each number

System.out.print(i + " ");

This counts the numbers on each line

count++;

If the count is 10

if(count == NUMBER_PER_LINE){

This prints a new line

System.out.println();

And then set count to 0

count = 0;}

An analyst created a map and shared it with the organization. The map references two layers: a feature layer that is shared to the Marketing group and a tiled layer that is shared publicly. Who can open the feature layer

Answers

                - - - --  - -  - -   -  - --  -  - -

A feature layer is a collection of related geographic features, such as highways, cities, buildings, plots, and earthquake epicenters. Features may be polygons, lines, or points (areas).

What is feature layer?

The best way to visualize data over basemaps is with feature layers. For feature layers, you can modify the style, transparency, visible range, refresh interval, and label settings, which affect how the layer appears on the map.

You may view, edit, examine, and run queries against features and their properties using a feature layer.

Each kind of feature layer fills a particular purpose and, as a result, functions significantly differently. See Feature layer functionality for a comparison of the functionality offered by each type of feature layer.

To learn more about feature layer, refer to the link:

https://brainly.com/question/29221148

#SPJ5

You are configuring NIC teaming on a server with two network adapters. You chose Switch Independent Mode. You now must choose between the two modes determining if one adapter is left offline or both adapters are functional. You require a mode for the highest throughput. What mode do you choose?

Answers

Answer:

The appropriate answer is "Active/Active mode".

Explanation:

Now just after the customers or clients respond to the traditional standards, the board is comprised the information rapport with the cloud service, which would be considered as Active mode.The car glides primarily somewhere at a specified constantly controlled rate of the conductor. Currently entering the grounding connection boosts the flow of electrons further into the receiver as well as the transmitter.

Thus the above is the correct solution.

Discuss five processes for analyzing a qualitative study

Answers

1. Prepare and organize your data.

Print out your transcripts, gather your notes, documents, or other materials. Mark the source, any demographics you may have collected, or any other information that will help you analyze your data.

2. Review and explore the data.

This will require you to read your data, probably several times, to get a sense of what it contains. You may want to keep notes about your thoughts, ideas, or any questions you have.

3. Create initial codes.

Use highlighters, notes in the margins, sticky pads, concept maps, or anything else that helps you to connect with your data. See the attached document that demonstrates how one might highlight key words and phrases as well as make notes in the margins to categorize the data:

4. Review those codes and revise or combine into themes.

Identify recurring themes, language, opinions, and beliefs.

5. Present themes in a cohesive manner.

Consider your audience, the purpose of the study, and what content should be included to best tell the story of your data.

Hope this helped you!!!

Answer:

Prepare and organize your data. Print out your transcripts, gather your notes, documents, or other materials.

Review and explore the data.

Create initial codes.

Review those codes and revise or combine into themes.

Present themes in a cohesive manner.

What term refers the built-in redundancy of an application's components and the ability of the application to remain operational even if some of its components fail

Answers

Answer:

Fault tolerance.

Explanation:

A software can be defined as a set of executable instructions (codes) or collection of data that is used typically to instruct a computer on how to perform a specific task and solve a particular problem.

Simply stated, it's a computer program or application that comprises of sets of code for performing specific tasks on the system.

Fault tolerance is an ability of the component of a software application or network to recover after any type of failure. Thus, it is the redundancy of an application's components built-in by default and the ability of this software application to remain functional or operational even if some of its components fail or it encounter some code blocks.

Basically, fault tolerance makes it possible for a software application or program to continue with its normal operations or functions regardless of the presence of hardware or system component failure.

Hence, it is an important requirement for any software application that should be incorporated by software developers during the coding stage of the software development life cycle (SDLC).

Write a Prolog predicate makeset(L1, L2) that takes list L1 of integers and removes the repeating elements. The result is returned in list L2. For example, makeset([1,3,4,1,3,9],Set). would return [1,3,4,9].

Answers

Answer and Explanation:

Using Javascript:

We could just use ES6 syntax and quickly get our result with no long coding. ECMA script 2015, the sixth version of javascript programming language has an array method that returns the unique values of an array in a new array.

var allValues = [ 1,3,4,1,3,9 ];

let uniqueValues = [...new Set(allValues)];

console.log(uniqueValues);

This will output only the unique values 1,3,4,9

With the GIS moving into the cloud, developers of enterprise applications based on SAP, Microsoft Office, SharePoint, MicroStrategy, IBM Cognos, and Microsoft Dynamics CRM are not using it to create a wide range of mobile applications.
a. True
b. False

Answers

Answer:

):

Explanation:

Calculate the total capacity of a disk with 2 platters, 10,000 tracks, an average of
400 sectors per track, and 512 bytes per sector?

Answers

Answer:

[tex]Capacity = 2.048GB[/tex]

Explanation:

Given

[tex]Tracks = 10000[/tex]

[tex]Sectors/Track = 400[/tex]

[tex]Bytes/Sector = 512[/tex]

[tex]Platter =2[/tex]

Required

The capacity

First, calculate the number of Byte/Tract

[tex]Byte/Track = Sectors/Track * Bytes/sector[/tex]

[tex]Byte/Track = 400 * 512[/tex]

[tex]Byte/Track= 204800[/tex]

Calculate the number of capacity

[tex]Capacity = Byte/Track * Track[/tex]

[tex]Capacity= 204800 * 10000[/tex]

[tex]Capacity= 2048000000[/tex]  --- bytes

Convert to gigabyte

[tex]Capacity = 2.048GB[/tex]

Notice that the number of platters is not considered because 10000 represents the number of tracks in both platters

Number are stored and transmitted inside a computer in the form of​

Answers

Number are stored and transmitted inside a computer in the form of ASCII code

What is the primary difference between BMPs, JPEGs, and GIFs?

Answers

In simple words,
JPEGs- Images
GIFs- animated images used for messaging

In the properly way to explain,
BMPs- The BMP file format, also known as bitmap image file, device independent bitmap (DIB) file format and bitmap, is a raster graphics image file format used to store bitmap digital images, independently of the display device (such as a graphics adapter), especially on Microsoft Windows and OS/2 operating systems.

Answer:

BMPs are not compressed; JPEGs and GIFs are compressedExplanation:

A TextLineReader is an object that can read a text file one line at a time, parsing each line and turning it into an object of some type. The reason we've implemented it as a class template is so that different TextLineReaders can transform their file into different types of objects; for example, a TextLineReader will return an int from every line, while a TextLineReader will return a Student instead. Because TextLineReader itself can't know how to transform each line from the file into the corresponding result type, a line parser function is provided, which does that transformation (i.e., takes each line's text and returns the appropriate kind of object, or throws an exception if that transformation fails because the format of the line is incorrect).Write the implementation of the TextLineReader class template. You may not change any of the public declarations that were provided, but you can add anything you'd like — including public or private member functions, private member variables, and so on — but you'll need to meet all of the following design requirements.

Answers

no one is going to answer

spreadsheet feature that can be used to arrange data from highest to lowest based on average

Answers

Answer:

RANK.AVG

Explanation:

Required

Arrange data in descending order based on average

The feature to do this is to use the RANK.AVG() function.

By default, the function will return the ranks of the selected data in descending order (i.e. from highest to lowest); though, the sort order can be changed to ascending order.

The syntax is:

=RANK.AVG (number, ref, [order])

Where

number [tex]\to[/tex] The number to use as rank

ref [tex]\to[/tex] The cell range

order [tex]\to[/tex] 0 represents descending order while 1 represents ascending order

describes the use of a replicated fractional factorial to investigate the effect of five factors on the free height of leaf springs used in an automotive application. Write out the alias structure for this design. What is the resolution of this design

Answers

Answer:

the replace of the circumference

Explanation:

QUESTION 2
1 poin
A document contains a list of items that appear in no particular order. Which of the following is the best way to format the list?

Answers

Group of answer choices.

A. Apply numbering to the list.

B. Apply bullets to the list.

C. Apply multilevel numbering to the list.

D. Manually enter a ">" character at the beginning of each item in the list.

Answer:

B. Apply bullets to the list.

Explanation:

Formatting is a feature found in a lot of word processing software applications such as Microsoft Word, Notepad, etc., which is designed to avail end users the ability to apply specific formatting options such as cut, bold, italics, underline, list, etc., to texts based on certain criteria defined by an end user.

Microsoft Word refers to a word processing software application or program developed by Microsoft Inc. to enable its users type, format and save text-based documents.

In Microsoft Word, a list can be formatted using a numbered or bulleted arrangement style. A numbered style (1, 2, 3, 4, etc) is typically used for an ordered list while a bullet is designed to be used for an unordered list.

Hence, the best way to format a document containing a list of items that appear in no particular order is to apply bullets to the list.

For example, a bulleted list of my favorite subjects arranged in no particular order would appear as this;

English languageMathematicsGeographyBiologyChemistryPhysicsComputer technology

The C++ standard library provides code that’s organized into a. folders b. namespaces c. sublibraries d. none of the above

Answers

Answer:

Namespaces ( B )

Explanation:

The codes in the C++ standard library are organized into folders Known as  namespaces .

namespaces are general used to organize various codes into logical groups to avoid name collisions that may occur when there is the presence of multiple libraries in a code base.

) Define a goal for software product quality and an associated metric for that attribute. (b) Explain how you could show that the goal is validatable. (c) Explain how you could show that the goal is verifiable.

Answers

Answer:

Following are the response to the given point:

Explanation:

For point A:

The objective for software development is indeed the testing process to ensure that minimum test of the highest quality product. For some of these goals, QA as well as the evaluation procedure are accountable.

For point B:

Testing experts and QA assessors verify the goal.

For point C:

Testing processes can assess the situation. Whenever the process operates effectively and then all the testing processes have passed correctly and all the development standards were complied with, so we can conclude that the objective was verified.

The range of a finite nonempty set of $n$ real numbers $S$ is defined as the difference between the largest and smallest elements of $S$. For each representation of $S$ given below, describe an algorithm in pseudo code to compute the range. Indicate the time efficiency classes of these algorithms using Big-$O$.

Answers

Answer: Hello your question is poorly written attached below is the well written question

answer:

a) Determine ( compute ) the difference between the max and minimum value. determine the Min and max values using 1.5n comparisons

  time efficiency = θ( n )

b) A(n-1) - A(0)

  time efficiency = θ( 1 )

Explanation:

a) An unsorted array

To find the maximum and minimum values scan the array of elements , then determine ( compute ) the difference between the max and minimum value. to determine the range. Alternatively determine the Min and max values using 1.5n comparisons

Algorithm's time efficiency = θ( n )

b) A sorted array

To determine the range, we will determine the difference between the first and last element i.e. A(n-1) - A(0)

time efficiency = θ( 1 )

Write a Java Program to do the following: Create an LinkedList object and store 5 different Integer objects. Using a ListIterator do the following: Compute sum of all even numbers only.

Answers

Answer:

poop

Explanation:

What is the page table mainly for?

Answers

Answer: See explanation

Explanation:

A page table is used for the tracking and the location of different pages of a task in memory. It helps in showing the mapping of locations between the physical addresses and the virtual addresses.

A page table stores also has the page table entries and this is where the frame numbers are stored as well as the operational status.

Help please! Really need to find this out rn

Answers

I believe it’s the “body” answer, because the term P refers to a paragraph, and paragraph code terms don’t change the entire webpage.

what is theory of knowledge?​

Answers

Theory of knowledge (TOK) plays a special role in the International Baccalaureate® (IB) Diploma Programme (DP), by providing an opportunity for students to reflect on the nature of knowledge, and on how we know what we claim to know.

6 + 7 = 7 + 6 is an example of which property of addition?

Answers

Answer:

commutative

Explanation:

The commutative property states that the numbers on which we operate can be moved or swapped from their position without making any difference to the answer.

Commutative Property of Addition

Implement a program that manages shapes. Implement a class named Shape with a method area() which returns the double value 0.0. Implement three derived classes named Rectangle, Square, and Circle. Declare necessary properties in each including getter and setter function and a constructor that sets the values of these properties. Override the area() function in each by calculating the area using the defined properties in that class.

Answers

Answer:

Explanation:

The following code is written in Python. It creates the parent class Shape and the three subclasses Rectangle, Square, and Circle that extend Shape. Shape has the constructor which is empty and the area method which returns 0.0, while the three subclasses take in the necessary measurements for its constructor. Each subclass also has getter and setter methods for each variable and an overriden area() method which returns the shapes area.

class Shape:

   def __init__(self):

       pass

   def area(self):

       return 0.0

class Square(Shape):

   _length = 0

   _width = 0

   def __init__(self, length, width):

       self._width = width

       self._length = length

   def area(self):

       area = self._length * self._width

       return area

   def get_length(self):

       return self._length

   def get_width(self):

       return self._width

   def set_length(self, length):

       self._length = length

   def set_width(self, width):

       self._width = width

class Rectangle(Shape):

   _length = 0

   _width = 0

   def __init__(self, length, width):

       self._width = width

       self._length = length

   def area(self):

       area = self._length * self._width

       return area

   def get_length(self):

       return self._length

   def get_width(self):

       return self._width

   def set_length(self, length):

       self._length = length

   def set_width(self, width):

       self._width = width

class Circle(Shape):

   _radius = 0

   def __init__(self, radius):

       self._radius = radius

   def area(self):

       area = 2 * 3.14 * self._radius

       return area

   def get_radius(self):

       return self._radius

   def set_radius(self, radius):

       self._radius = radius

quá trình xử lý dữ liệu (OSI) bên máy gởi, nhận có vẽ hình minh họa

Answers

Answer:

haywood is and best president for you me ravi in the a for and have to the a and should you of lost

Explain why an immutable type cannot have a transferFrom method as specified in the Standard interface.

Answers

Answer:

The reason behind the given statement is provided below throughout the explanation portion.

Explanation:

Whenever developers operate in something like a multiprocessing atmosphere or framework, a mutable type seems to be crucial.Immutable type can't, therefore, have transferFrom methods, even if there is no constructor way for determining the further outcomes. At first, a rate is calculated while building mutable structures, thus this can never be changed.

In this exercise we have to explain how it is immutable in a transferform method, like this:

The immutable type cannot have because skilled is no builder way for determining the further outcomes.

First, let's define the  methods we are dealing with:

What is Transferform?

Transfer Form means a standardized form prescribed by the Management Company to be duly filed by the investor to transfer Units and will be stated in this Offering Document. Immutable type can't, accordingly, have transferFrom plans, even though there is no builder habit for deciding the further effects. At first, a rate is deliberate while construction mutable forms, accordingly this can never be transformed.

See more about Transferform at brainly.com/question/14448924

what is SEO and SEM?

Answers

Answer:

SEO stands for “search engine optimization.” In simple terms, it means the process of improving your site to increase its visibility for relevant searches.

SEM, or search engine marketing, is the act of using paid strategies to increase search visibility.

QUESTION 2
1 poin
A document contains a list of items that appear in no particular order. Which of the following is the best way to format the list?

Answers

Answer:

Group of answer choices.

A. Apply numbering to the list.

B. Apply bullets to the list.

C. Apply multilevel numbering to the list.

D. Manually enter a ">" character at the beginning of each item in the list.

Answer:

B. Apply bullets to the list.

Explanation:

Formatting is a feature found in a lot of word processing software applications such as Microsoft Word, Notepad, etc., which is designed to avail end users the ability to apply specific formatting options such as cut, bold, italics, underline, list, etc., to texts based on certain criteria defined by an end user.

Microsoft Word refers to a word processing software application or program developed by Microsoft Inc. to enable its users type, format and save text-based documents.

In Microsoft Word, a list can be formatted using a numbered or bulleted arrangement style. A numbered style (1, 2, 3, 4, etc) is typically used for an ordered list while a bullet is designed to be used for an unordered list.

Hence, the best way to format a document containing a list of items that appear in no particular order is to apply bullets to the list.

For example, a bulleted list of my favorite subjects arranged in no particular order would appear as this;

English language

Mathematics

Geography

Biology

Chemistry

Physics

Computer technology

If a program compiles fine, but it produces an incorrect result, then the program suffers from _______________.

Answers

In my answer I am making an assumption that there is no runtime error, if there is then the error is “a run-time error”.

The answer is the program suffers from a Logic Error

If a program compiles fine, but it produces an incorrect result, then the program suffers from Logic Error.

What is program?

A program has been the set of the instructions that the computer can follow that are written in a programming language. The size of the computer program affects the likelihood that an error may occur. To create an executable that a computer can run, a C program needs to be run through a C compiler. Programs are collections of instructions that a computer follows. Function is an ordered, reusable code unit.

When a program is syntactically sound but has a bug that is only discovered during program execution, it is said to have a runtime error. The Java compiler is unable to catch these errors during compilation; instead, the Java Virtual Machine (JVM) only notices them when the application is running. Runtime problems may occur when a website uses HTML code that is incompatible with a web browser's capabilities.

Therefore, if a program compiles fine, but it terminates abnormally at runtime, then the program suffers a runtime error.

To learn more about program, refer to the link below:

brainly.com/question/11023419

#SPJ2

You've run 200 ft of cable and lost 7dB. What is the loss rate of your cable per 100 ft?

Answers

Answer:Explanation: If 5 dB was lost after 200 ft of cable and 100 ft is half of 200 ft, then the rate of loss should be 2.5 dB per 100 ft.

Explanation:

The loss rate is 3.5 dB per 100 ft.

According to the question, 7 decibels were lost after running 200 ft of cable.

This means that half of 7 decibels will be lost after running 100 ft of cable.

Representing this mathematically, we will have;

200 ft = 7 dB

100 ft = ?

100 ft * 7 dB/ 200 ft

=700 dB/200

= 3.5 dB

In conclusion, 3.5 dB of cable was lost per 100 ft.

Learn more about loss rate here:

https://brainly.com/question/14623935

Other Questions
java Consider the following problem statement. A cookie recipe calls for the following ingredients: 1.5 cups of sugar 1 cup of butter 2.75 cups of flour The recipe produces 48 cookies with this amount of the ingredients. Write a program that asks the user how many cookies he or she wants to make, and then displays the number of cups of each ingredient needed for the specified number of cookies. Format your output nicely that all numbers and decimals align as shown in the example! Limit decimals to four digits. The choices are agree or disagree what does it mean when the pH increases or decreases Which element is the biggest contributor to Climate Change? please translate this word for me makenuweke A spherical light bulb dissipates 100W and is of 5cm diameter. Assume the emissivity is 0.8 and the irradiation is negligible. What is the surface temperature of this spherical light bulb Given the Cos(x) = -2/3, then the Sec(x) = ?What is the answer Question 2 of 10 What is the slope of the line shown below? O A O B. O c. LOG O p. 3 In 2007, Gillette saw an opportunity to capture the market of 500 million Indians who used double edge razors with no protection between the blade and the skin. Gillette sought to make an inexpensive and safe disposable razor. Their first product, The Vector failed because it always clogs. What do you think went wrong 24. Find the volume of the pyramid. Round to the nearest hundredth ifnecessary.Please help What or who gives Congress its powers?A. Article I of the Constitution, which spells out the role of CongressB. Congress, which makes laws and creates its own powersO c. the president, who is in charge of telling Congress what to doOD. the Supreme Court, which has oversight and rules on all laws The most important hardware device for connecting supercomputers over a wide area Need help on this question asap please What is the complete factorization of x^4-17x^2+16? Read the excerpt from Gilgamesh: A New English Version.Enkidu said, "Don't worry, my friend,the dream you had is a favorable one.The eagle that you saw, with a lion's head,stands for Humbaba. Though it dived straight toward youand terrifying flames shot from its mouth,nothing could cause you harm. The young manwho came to your rescue was our lord, Shamash.He will stand beside us when the monster attacks.Whatever happens, we will prevail."Which statement best describes the epic feature used in this excerpt and its effect on the plot?The difficult journey that Gilgamesh must undertake causes him to feel defeated.The vast landscape that Gilgamesh must travel through adds tension to the plot.The intervention of the supernatural gives Gilgamesh hope that he will defeat Humbaba.The narrative voice of the epic poem makes it difficult for the audience to relate to Gilgamesh. Do you need a leader to make a change?? who benefit from your lack of knowledge ? One state leads the country in tart cherry production, producing 79 out of every 100 tart cherries each year.a. What percent of tart cherries are produced in this state?b. What percent of tart cherries are not produced in this state?a. What percent of tart cherries are produced in this state?b. What percent of tart cherries are not produced in this state? a boy throws a ball straight up into the air. it reaches its highest point after 4 seconds.how fast was the ball going when it left the boy's hand What is deposited in the image?!