There are number of components in the computer system, few of them are having low data demands, few of them have high data demands and few have very high data demands in order to carry out communication between components of computer system. Suppose you are assigned a task to design bus/buses to fulfill the requirements
internal/external/user communication properly. Discuss with proper justification

Answers

Answer 1

We can deduce here that it is crucial to take into account the data demands of each component when constructing a bus or buses to satisfy the needs of internal, external, and user communication in a computer system. This will help to ensure that the buses can manage the necessary quantity of data transfer.

What is a computer system?

A computer system is made up of a mix of software and hardware parts that cooperate to carry out various computing activities.

The central processing unit (CPU), memory, storage devices, input/output devices (such as the keyboard, mouse, and monitor), and other peripherals are examples of physical elements that make up a computer system's hardware components.

The operating system (OS), application software, and system utilities are among the software components that allow the computer to carry out particular activities.

Learn more about computer system on https://brainly.com/question/21474169

#SPJ1


Related Questions

Define a haskell function sum my nested that takes a list of mynested values and it returns the sum of all parameter values of myitem and myarray values. Since the parameter of myarray is a list of mynested values, it should recursively add all parameter values in that list. The function should return the overall sum as an int value

Answers

The program of haskell function will be:

sumMyNested :: [MyNested] -> Int

sumMyNested [] = 0

sumMyNested (MyItem x:xs) = x + sumMyNested xs

sumMyNested (MyArray x:xs) = sum (map sumMyNested x) + sumMyNested xs

What is haskell function?

Haskell is a purely programming language of functional. This means that Haskell functions act more like mathematical functions. A function performs an operation on the input parameters and returns the result. Functions do not change the state of the system. In this section, we will introduce Haskell functions using examples from the code snippet below. The Haskell concept is based on pure functions and immutable data.

To learn more about haskell function

https://brainly.com/question/15055291

#SPJ4

the three-level memory hierarchy refers to? a. main memory, disk storage, and removable storage b. registers, cache memory, and main memory c. cache memory, main memory, and disk storage d. main memory, dvd, and usb sticks

Answers

The three-level memory hierarchy refers to cache memory, main memory, and disk storage.

Cache memory is the smallest, fastest, and most expensive memory and is used to store recently used information. Main memory is larger and slower than cache memory and is used to store information that is currently being used. Disk storage is the largest and slowest type of memory and is used to store information that is not frequently used.

The three-level memory hierarchy is the basic structure of computer memory and is composed of three levels of memory. Cache memory is the smallest, fastest, and most expensive type of memory, and is used to store recently used information.

Learn more about three-level memory hierarchy:

https://brainly.com/question/14207493

#SPJ4

evaluating how well various computers will handle an organization's workload by running a representative set of real jobs on the different machines is called

Answers

Answer:

Benchmarking.

Explanation:

true/false. can you use data analysis and charting when discussing qualitative research results

Answers

Answer: false

Explanation:

True. While data analysis and charting are most commonly associated with quantitative research, they can also be used when discussing qualitative research results.

Qualitative research often involves the analysis of non-numeric data such as words, images, or observations. In this context, data analysis may involve identifying patterns and themes within the data, categorizing information into specific codes, and developing conceptual frameworks to explain relationships between different elements of the data.

Charting or visual representations of the data can also be helpful in conveying complex information to others and can be used to highlight key findings or illustrate connections between different aspects of the data.

Learn more about connections here:

https://brainly.com/question/29977388

#SPJ11

how many episodes in scenes from a marriage on hbo

Answers

Answer:

但是英國人讓它看起來像一個條形圖,我會在那裡變得更聰明一點

Use the ______ element to create a generic area or section on a web page that is physically separated from others

Answers

Use the div element to create a generic area or section on a web page that is physically separated from others.

In the field of computers, div can be described as a special container that is used in order to make a specific generic area or a particular section on a web page.

The 'div' element stands for division as this element causes a division to be made on the webpage. The div tags are used for multiple purposes such as web layouts.

It is due to the div element that content can be grouped in a webpage that makes it look more attractive and reliable. Without the div element, data will not be understood properly on a webpage and might be misunderstood by the reader.

To learn more about a webpage, click here:

https://brainly.com/question/14552969

#SPJ4

Write a method that takes a RegularPolygon as a parameter, sets its number of sides to a random integer between 10 and 20 inclusive, and sets its side length to a random decimal number greater than or equal to 5 and less than 12. Use Math.random() to generate random numbers.


This method must be called randomize() and it must take an RegularPolygon parameter.


Could someone help me out here thanks! C:

Answers

Answer:

public static void randomize(RegularPolygon r){

   int side = (int)((20-10) * Math.random()) + 10;

   int length = (int)((12-5)  * Math.random()) + 5;

   // assuming the regularpolygon class has setSide and setLength methods.

   r.set.Side(side);

   r.setLength(length);

}

Explanation:

The randomize method is used to access and change the state of the RegularPolygon class attributes sides and length. The method accepts the class as an argument and assigns a random number of sides and length to the polygon object.

1.
gear ratio:
gear ratio
2.
input:
input
3.
inverse:
inverse
4.
mechanism:
mechanism
5.
output:
output
6.
simple gear train:
simple gear train
7.
torque:
torque
Column B
a.a combination of two or more gears used to transmit motion between two rotating shafts or between a shaft and a slide
b.information fed into a system
c.the information produced by a computer or a system
d.the ratio of the speed of the driving member of a gear train to that of the driven member
e.opposite in position, direction, order, or effect
f.twisting force
g.the part of a machine which contains two or more pieces arranged so that the motion of one compels the motion of the others PLZ HELP WILL GIVE BRAINLIST

1.gear ratio:gear ratio2.input:input3.inverse:inverse4.mechanism:mechanism5.output:output6.simple gear

Answers

Answer:

1- D

2-B

3- E

4- G

5-C

6-A

7-F

Explanation:

I am not completely sure if this is right but I think most answers are right

Why did many societies feel it necessary to adopt some level of government involvement in market economies?

Answers

They believed that in order to deliver public goods, some level of government intervention in market economies was required.

How do you define market?

The market was defined as the total population of buyers and sellers in the area or region under review. This issue could include Earth as well as a slew of other countries, areas, states, and cities. The forces of supply and demand in the market determine the value, expense, and cost of the items sold.

What is market and its type?

The place where two or more parties exchange goods, services, and information is called the market. A market should ideally be a location where at least two people can conduct commerce.

To know more about market visit:

https://brainly.com/question/14176679

#SPJ1

Given a sorted list of integers, output the middle integer. assume the number of integers is always odd.
ex: if the input is:
2 3 4 8 11 -1
(a negative indicates the end), the output is:
4
the maximum number of inputs for any test case should not exceed 9. if exceeded, output "too many inputs".
hint: first read the data into a vector. then, based on the number of items, find the middle item.
#include
#include // must include vector library to use vectors
using namespace std;
int main() {
/* type your code here. */
return 0;
}

Answers

integer userInput

integer i

integer mid

integer array(20) number

userInput = 1

for i = 0; userInput >= 0; i = i + 1

  if number[i] > -1

     userInput = Get next input

     number[i] = userInput

i = i - 1

mid = i / 2

if i > 9

  Put "Too many inputs" to output

elseif i % 2 == 0

  Put number[mid - 1] to output

else

  Put number[mid] to output

How does the brain influence your emotions, thoughts, and values?

Answers

Amygdala. Each hemisphere of the brain has an amygdala, a small, almond-shaped structure. The amygdalae, which are a part of the limbic system, control emotion and memory and are linked to the brain's reward system, stress, and the "fight or flight" reaction when someone senses a threat.

What are the effects of the brain?Serotonin and dopamine, two neurotransmitters, are used as chemical messengers to carry messages throughout the network. When brain areas get these signals, we recognize things and circumstances, give them emotional values to direct our behavior, and make split-second risk/reward judgments.Amygdala. The amygdala is a small, almond-shaped structure found in each hemisphere of the brain. The limbic systems' amygdalae control emotion and memory and are linked to the brain's reward system, stress, and the "fight or flight" response when someone perceives a threat.Researchers have demonstrated that a variety of brain regions are involved in processing emotions using MRI cameras. Processing an emotion takes happen in a number of different locations.

To learn more about Amygdala, refer to:

https://brainly.com/question/24171355

#SPJ1

Which keyword should Mark use for variable declaration in JavaScript?

Answers

VAR is the keyword he should use

A version of which sort algorithm is used in the sort method in the java arrays class?

Answers

The sort method in the Java Arrays class uses a version of the quicksort algorithm to sort elements in an array. QuickSort is an efficient sorting algorithm that follows the divide-and-conquer approach.



Here's a step-by-step explanation of how the quicksort algorithm works:

1. Choose a pivot element from the array. The pivot can be any element, but it's commonly selected as the last element in the array.
2. Partition the array into two subarrays: one with elements smaller than the pivot and another with elements greater than the pivot.
3. Recursively apply steps 1 and 2 to the subarrays until they contain only one element.
4. Concatenate the sorted subarrays to obtain the final sorted array.

The Java Arrays class implements a variation of the quicksort algorithm called Dual-Pivot Quicksort. This variation uses two pivots instead of one, resulting in improved performance for certain types of data.

Dual-Pivot Quicksort works similarly to the traditional quicksort algorithm but with two pivot elements. It partitions the array into three sections based on the values of the pivots: elements smaller than the smaller pivot, elements between the two pivots, and elements greater than the larger pivot. It then recursively sorts these sections until the entire array is sorted.

In summary, the sort method in the Java Arrays class uses a version of the quicksort algorithm, specifically the Dual-Pivot Quicksort variation, to efficiently sort elements in an array.

Learn more about Java Arrays here:-

https://brainly.com/question/17353323

#SPJ11

I need to reverse a inputted word using for loops with range 0 to the input word and increment 1.
How to get the letter at the index of lp and add that to the reversed word, so that it produces letters instead of numbers?

I need to reverse a inputted word using for loops with range 0 to the input word and increment 1.How

Answers

fruit_name = input("What is your favorite fruit: ")

fruit_len = len(fruit_name)

fruit_len = int(fruit_len)

reversed_word = ""

lower = 0

upper = fruit_len

inc = 1

for lp in range(lower, upper, inc):

   reversed_word = (fruit_name[lp] + reversed_word)

   reversed_word = str(reversed_word)

print(fruit_name + " backwards is " + reversed_word)

I just changed the str(lp) to fruit_name[lp]. This takes lp as the index of fruit_name and gets the letter at that index. We then add that letter to the existing reversed_word. I think this is what you're looking for.

1).
What is a resume?
A collection of all your professional and artistic works.
A letter which explains why you want a particular job.
A 1-2 page document that demonstrates why you are qualified for a job by summarizing your
skills, education, and experience.
A 5-10 page document that details your professional and educational history in great detail.

Answers

Answer:

option 1

Explanation:

its not a job application cause your not appling for a job, a resume is a list of all the things you have done that would be beneficial to a job. for example, previous jobs, skills you have, hobby that pertain to a job you want, education and other professional things.

Hope this helps:)

Which tasks can be completed using the Chart Tools Design tab? Check all that apply.
add a title to a chart
change the way a chart looks
change the position of the chart
add a chart to a Word document
change the type of an existing chart

Answers

Answer:

add a title to a chart

change the way a chart looks

change the type of an existing chart

Explanation:

In Microsoft Excel, a chart tool design tab is used to design and customize the look, feel and properties of charts in order to meet the taste of a user. Charts are used generally to visually or graphically represent the data in an excel worksheet.

The tasks which can be completed using the Chart Tools Design tab are;

1. Add a title to a chart.

2. Change the way a chart looks.

3. Change the type of an existing chart.

The tasks which can be completed using the Chart Tools Design tab are:

Add a title to a chart  Change the way a chart looks  Change the type of an existing chart

Based on the knowledge of computer spreadsheets, there are various tasks which can be used to complete the Chart Tools Design tab.

These tasks includes:

Add a title to a chart  Change the way a chart looks  Change the type of an existing chart

Read more about design tab here:

https://brainly.com/question/10053553

Which of the following presents an integrated set of guidance, programs, and processes that enables the whole community to meet the National Preparedness Goal.
National Preparedness System

Answers

The National Preparedness System presents an integrated set of guidance, programs, and processes that enables the whole community to meet the National Preparedness Goal. The National Preparedness System is designed to help the whole community prepare for and respond to disasters, emergencies, and other types of incidents.

It is made up of five elements: Prevention, Protection, Mitigation, Response, and Recovery.Prevention refers to actions that are taken to avoid, deter, or stop a hazard from occurring. Protection refers to measures that are taken to safeguard people, property, and infrastructure from damage caused by hazards.

Mitigation refers to actions that are taken to reduce or eliminate the impact of a hazard.Response refers to actions that are taken during or immediately after a hazard event to save lives, protect property and infrastructure, and meet basic human needs. Recovery refers to actions that are taken to return the community to a pre-disaster state or condition.The National Preparedness System provides guidance on how to develop and implement emergency plans, conduct risk assessments, and train and exercise emergency responders.

It also provides guidance on how to coordinate with other organizations and stakeholders, and how to communicate with the public during an emergency. Overall, the National Preparedness System helps the whole community work together to prepare for and respond to emergencies and disasters.

To know more about stakeholders visit :

https://brainly.com/question/30241824

#SPJ11

How might a company gain followers on Twitter?

Answers

By sending persuasive / informable and interesting posts to gain followers.

Which of the following IS NOT a way that functions make code more readable?
A. O Function names can describe what the function is completing
B.
Functions break code into smaller, separate parts
C.
Each function contains one command
D.
Functions shorten code by reusing code that has already been written

Answers

Answer:

C

Explanation:

Functions can contain any number of commands.

What are some useful applications of video games?

Answers

Answer:

Steam, Origin, Uplay and epic games

Explanation:

my baby's always dancin' and it wouldn't be a bad thing

But I don't get no loving and that's no lie

We spent the night in Frisco at every kinda disco

From that night I kissed our love goodbye


Don't blame it on the sunshine

Don't blame it on the moonlight

Don't blame it on the good times

Blame it on the boogie


Don't blame it on the sunshine

Don't blame it on the moonlight

Don't blame it on the good times

Blame it on the boogie


That nasty boogie bugs me, but somehow how it has drugged me

Spellbound rhythm gets me on my feet

I've changed my life completely, I've seen the lightning leave me

And my baby just can't take her eyes off me


Don't blame it on the sunshine

Don't blame it on the moonlight

Don't blame it on the good times

Blame it on the boogie


Don't you blame it on the sunshine

Don't blame it on the moonlight

Don't blame it on the good times

Blame it on the boogie, woo


I just can't, I just can't

I just can't control my feet

I just can't, I just can't

I just can't control my feet

I just can't, I just can't

I just can't control my feet

I just can't, I just can't

I just can't control my feet


Sunshine

Don't blame it on the moonlight

Don't blame it on the good times

Blame it on the boogie


Don't blame it on the sunshine

Don't blame it on the moonlight

Don't on the good times

Blame it on the boogie


This magic music grooves me, that dirty rhythm fools me

The Devil's gotten to me through this dance

I'm full of funky fever, a fire burns inside me

Boogie's got me in a super trance


Don't blame it on the sunshine

Don't blame it on the moonlight

Don't blame it on the good times

Blame it on the boogie


Don't you blame it sunshine

Don't blame it on the moonlight

Don't blame it on the good times

Blame it on the boogie


Aow!

Sunshine

Hoo!

Moonlight

Yeah

Good times

Mmm!

Boogie

You just gotta sunshine

Yeah

Moonlight

Good times

Good times

Boogie


Don't you blame it sunshine

You just gotta moonlight

You just wanna good times

Yeah, oh boogie

Blame it on yourself


(Sunshine)

Ain't nobody's fault

(Moonlight)

But yours and that boogie

(Good times)

All night long

(Boogie)

Can't stop that boogie


(Sunshine)

Ain't nobody's fault

(Moonlight)

But yours and that boogie

(Good times)

Dancin' all night long

(Boogie)

Blame it on yourself


(Sunshine)

Ain't nobody's fault

(Moonlight)

But yours and that boogie, boogie, boogie

Answers

Answer: This isn't even a question.

Explanation: I have no idea how to answer these song lyrics.

i really need help on this

i really need help on this

Answers

A privacy setting guide that would fit the above description is:

Ensure that cookie settings are restricted to zero or only necessary cookiesEnable AD block on the browserDisable "Push Metadata"Disable collection of Usage DataDisable share live location Use strong passwordsUse Two-Factor Authentication (Don't use SMS)Remove personal details such as contact, birth etc from public access etc.

What is a privacy settings guide?

Many websites and apps include privacy options that allow you to limit who may view your profile and what information visitors can see.

Privacy Guide, developed by Go. ogle's Safety Engineering Center (GSEC), is a step-by-step guided tour of some current privacy and security features in Chrome — so you can make and manage the correct choices for you in one place.

You can utilize privacy settings to indicate whether or not you agree to the collection, usage, and dissemination of your personal information.

That is why it is critical to choose and establish privacy settings on all social media accounts, internet services, devices, and browsers that you are comfortable with.

Learn more about privacy settings:
https://brainly.com/question/13650049
#SPJ1

**Please use IDLE to write in python**Write a recursive Python function (computePower(base, power)) that takes in a base integer and its power (positive integer including 0), and returns the number to its power (base ^ power).Your solution should be a complete function definition with appropriate syntax and indentation. Your solution must also use recursion and not use the exponential operator (**).Note: you should use whitespace characters for indentation since tabs may not work in Gradescope's answer box.

Answers

Python is a high-level, interpreted programming language used for a variety of tasks including web development, data analysis, artificial intelligence, and automation, known for its readability and ease of use.

Sure, here's an example recursive Python function that computes the power of a given base integer:
```
def computePower(base, power):
   if power == 0:
       return 1
   else:
       return base * computePower(base, power - 1)
```\
In this function, we check if the power is equal to zero. If it is, we return 1, since any number to the power of 0 is equal to 1. Otherwise, we recursively call the function, passing in the base and the power minus 1. This continues until the power reaches 0, at which point the function returns 1 and the recursion unwinds.
To test this function, you can call it with different values of base and power, like so:
print(computePower(2, 3))  # Output: 8
print(computePower(10, 0))  # Output: 1
print(computePower(5, 2))  # Output: 25
```
I hope this helps! Let me know if you have any further questions.

To know more about Python visit:

https://brainly.com/question/30427047

#SPJ11

why does a wooden spoon not get hot when used in stirring hot liquids​

Answers

Answer:

Explanation:

A wooden spoon does not get hot when used in stirring hot liquids​ is because its an insulator.

Persuasion is when Someone speaks to crowd about love
○True
○False​

Answers

false i think is the answer

which computer belongs to the first generation?​

Answers

ENIAC (Electronic Numerical Integrator and Calculator .)

How can you view a mapped drive?

Answers

Answer:

To check the path of a network drive using File Explorer, click on 'This PC' on the left panel in Explorer. Then double-click the mapped drive under 'Network Locations'. The path of the mapped network drive can be seen at the top.

Explanation:

50 POINTS PLEASE HELP........Technical Writing and Software Licenses
use the technical writing skills that you learned about in the unit to identify and explain in your own words the four different types of software licensing. Discuss how the type of licensing that a software product has might help determine your choice of what software to use for a given project.

50 POINTS PLEASE HELP........Technical Writing and Software Licensesuse the technical writing skills

Answers

Answer:

FOSS software licenses – give rights to the customer that include modification and reuse of the software code, providing the actual source code with the software product(s). This open-source type of licensing affords the user authority to modify the software functions and freedom to inspect the software code.

Proprietary software licenses – provide no such authority for code modification or reuse and normally provide software with operational code only, and no source code. A proprietary software license often includes terms that prohibit “reverse engineering” of the object code with the intention of obtaining source code by the licensee.

In both cases, the software license will most often specify limitations of liability from use of the software product, any mutual responsibilities such as support, and any warranties or disclaimer of warranty.

Where software is not covered by any license, it is normally categorized as:

Public domain software – freely available for use and not copyright protected

Private unlicensed software – such as business applications that still falls under copyright protection

Open source and proprietary software licensing may also specify additional restrictions and terms:

Transfer of ownership to the buyer or retention of ownership by the seller

Any authorization for copying, selling, or distributing the software

Definition of whether the license constitutes purchase or leasing of the software

Explanation:

why is it that arrays passed to a method can be mutated by the method, but primitive data like int and double cannot be mutated by a method?

Answers

Arrays passed to a method can be mutated by the method, but primitive data like int and double cannot be mutated by a method because they are immutable.

Mutable objects, such as arrays, can be changed by methods, whereas immutable objects cannot. When an array is passed to a method, a reference to the array is passed, not a copy of the array. This means that any changes made to the array within the method will be reflected in the original array.

Primitive data types, on the other hand, are immutable. This means that once a primitive value is created, it cannot be changed. When a primitive data type is passed to a method, a copy of the value is passed, not a reference to the value. This means that any changes made to the value within the method will not affect the original value.

You can learn more about Arrays at: brainly.com/question/30726504

#SPJ11

click on the _____button to move the selected text in the centre of the page (justify /centre)​

Answers

Answer:

centre

Explanation:

Other Questions
who is considered to be a paraphilic serial killer? 1. How do businesses and not-for-profit organizations help create our standard of living? What do the the headmistress's gestures and expressions tel you about her motivation for changing the girls name? The line 3x+5y = 10 is dilated by a scale factor of 3. What is the equation of the dialted line Single Choice (3.Oscore) 15. What gets printed? for (i=1; i what is the cause lf employers desperation to hire employees ascovid seems ti be dying down. please list references What does the word abhors most likely mean, as it is used in this sentence? Jason abhors foot ball; he would prefer to watch any other sport, even one he does not understand, rather than watch football.A. Is fascinated by B. Plays C.Hates D. Is bored with an electrical hazard is defined as a dangerous condition such that contact or ? can result in electric shock, arc flash burn, thermal burn, or ? . Write the equation of the circle centered at ( 7 , 3 ) that passes through ( 15 , 15 ) . Language does not need to refer to something specific or physical, but rather to ideas, values and beliefs. This is related to the characteristic of language called: Hi, what is the answer to 4 7 62 3 Starting at -12m a person walks in the negative direction for 15 m then turns around and walks 45m in the positive direction. Where is his final position? What was his overall displacement? How much distance did he travel? Which measure of memory retention is the most useful for assessing the strength of an implicit memory? Given f(x) = ax b, what is f-1(x)? An example of thermal conductor isA. PlasticB. NitrogenC. IodineD. Mercury 4 Find the total surface area of the prism.5 in.11 in.-----6 in.111- How can an organism maximize their kcal intake and minimize their energy output? Applying Main IdeasMost colonial artists such as Robert Feke were portrait painters becausea.art exhibits consisted primarily of portraits of European kings and queens.b.that was the art colonists were most interested in buying.c.regional landscapes were not popular outside the area they portrayed.d.portraits were the most popular art form in Europe.Please select the best answer from the choices providedABCD Type the correct answer in the box. Spell all words correctly. Peter is software designer working at a big software company. He just found out that he has been shifted to their downtown branch. Peter is upset because his manager did not consult him over this move. What kind of environment is prevalent in Peters company? The managers at Peters company have an environment 8cos(345)-8cos(75)I would like a detailed step by step explanation please and thank you