How have you seen technology transform in your own life? What was the oldest computer or device you remember using? How does this compare to the machines you use today? What was your favorite piece of tech that is no longer popular or in common use? What are some modern benefits you're grateful for? Share your own "history of computing" with your fellow learners!

Answers

Answer 1

I am greatly opportuned to live in a time an era where technology is prevalent and constantly evolving, I have also experience technological changes in my life in the areas of learning because  I browse about questions a lot.

What was the oldest computer or device you remember using?

I can remember using a Nokia 3310 but now I use an iPhone 11 pro max

How does this compare to the machines you use today?

The difference in the Nokia 3310 mobile and my current iPhone 11 pro max goes a long way to describe the evolutionary changes in technology, my iPhone 11 pro max is a smart phone with a lot of feature not present in my old Nokia 3310.

What was your favorite piece of tech that is no longer popular or in common use?

My favourite piece of tech no longer in use today is the typewriter, I like it because of the sound from the key when I am typing, it is more like typing and have fun at the same time.

What are some modern benefits you're grateful for?

I am most grateful for the Internet because it is a repository for knowledge, I learn and collaborate everyday using the Internet.

Learn more how the history of computer:

https://brainly.com/question/485705


Related Questions

If a user chooses option one, the program should display how many days are in the month that they entered. If a user chooses option two, the program should display how many days have passed in the year up to the date that they entered.

Your program must include the three following functions:

leap_year: This function should take the year entered by the user as a parameter. This function should return 1 if a year is a leap year, and 0 if it is not. This information will be used by other functions. What is a Leap Year?Links to an external site.
number_of_days: This function should take the month and year entered by the user as parameters. This function should return how many days are in the given month.Links to an external site.
days_passed: This function should take the day, month, and year entered by the user as parameters. This function should calculate the number of days into the year, and return the value of number of days that have passed. The date the user entered should not be included in the count of how many days have passed.
Hints
Start by defining your variables, using comments. You will need a separate variable for day, month, and year that store numbers input from the user.
Make sure to name your three functions exactly as they are named above, and pass the parameters exactly in the order specified below:
leap_year(y)
number_of_days(m, y)
days_passed(d, m, y)
Once you have a function that calculates whether a year is a leap year, that function should be called within your number_of_days() function. February can have either 28 or 29 days, so your number_of_days() function needs to take into account whether or not it is a leap year.
Once you have a function that calculates the number of days in a given month, that function should be called within your days_passed() function. Different months have different numbers of days, so your days_passed() function needs to take into account what month of the year it is.

Answers

This function should take the year entered by the user as a parameter. This function should return 1 if a year is a leap year, and 0 if it is not. This information will be used by other functions.

What is a Leap Year?

A year occurring once every four years, that has 366 days including Fevruary 29 as an intercalary day.This function should take the month and year entered by the user as parameters.

This function should return how many days are in the given month.Links to an external site. The date the user entered should not be included in the count of how many days have passed.

Therefore,This function should take the year entered by the user as a parameter. This function should return 1 if a year is a leap year, and 0 if it is not. This information will be used by other functions.

Learn more about information on:

https://brainly.com/question/29423159

#SPJ1

Fill in the blank with the correct response.
Fast Ethernet is ______times faster than Ethernet.

Answers

Answer: 100 Mbps

Explanation: Fast Ethernet runs 100 Mbps and Ethernet offers up to 1 Gbps.

Fast Ethernet is 10 times faster than Ethernet.

What is Ethernet?

Metcalfe modified the name to "Ethernet" in 1973. He did this to demonstrate that any computer, not just Alto's, would be supported by the technology he had developed.

He chose the term "Ether" to refer to the physical medium that carries bits to stations, which is a crucial aspect of the system. Fast Ethernet transmission, which is at least 10 times faster than standard Ethernet, helps maintain compatible connections to high-speed servers.

It reduces bandwidth bottlenecks for network systems running multiple IP video cameras and the Internet of Things and supports seamlessly complex networks that simultaneously run a number of bandwidth-hungry software programs.

Therefore, fast Ethernet is 10 times faster than Ethernet.

To learn more about Ethernet, refer to the link:

https://brainly.com/question/13441312

#SPJ2

Enigma(A[0..n-1,0..n-1])
//Input: A matrix A[0..n-1,0..n-1] of real numbers
for i<--0 to n-2
for j<--0 to n-1 do
if A[i,j]=!A[j,i]
return false
return true

Answers

The algorithm efficiently checks whether a given matrix is symmetric by comparing each pair of elements in the upper triangle. Its basic operation is the comparison of two elements. The algorithm runs in O(\(n^2\)) time, with n representing the size of the matrix, making it suitable for symmetric matrix detection.

1. The algorithm computes whether the given matrix A is a symmetric matrix. A matrix is symmetric if the element at row i, column j is equal to the element at row j, column i for all i and j.

The algorithm checks each pair of elements (A[i, j] and A[j, i]) in the upper triangle of the matrix (excluding the main diagonal) and returns false if any pair is not equal.

If all pairs are equal, it returns true, indicating that the matrix is symmetric.

2. The basic operation of this algorithm is the comparison operation (A[i, j] ≠ A[j, i]) to check whether two elements in the matrix are equal. This operation compares the values at A[i, j] and A[j, i] to determine if they are not equal.

3. The basic operation is executed n*(n-1)/2 times. The outer loop iterates from i = 0 to n-2, and the inner loop iterates from j = i + 1 to n - 1. Since the inner loop depends on the value of i, it iterates fewer times in each iteration of the outer loop.

Therefore, the total number of iterations of the inner loop can be calculated as the sum of the integers from 1 to n-1, which is equal to n*(n-1)/2.

4. The efficiency class of this algorithm is O(\(n^2\)) since the number of iterations is proportional to the square of the size of the matrix (\(n^2\)). The algorithm examines each pair of elements in the upper triangle of the matrix, resulting in a complexity that grows quadratically with the input size.

For more such questions algorithm,Click on

https://brainly.com/question/13902805

#SPJ8

The probable question may be:

Enigma(A[0...n - 1, 0..n - 1])

1. Input: A matrix A[0..n - 1, 0..n - 1] of real numbers

2. for i = 0 to n - 2 do

3. for j = i + 1 ton - 1 do

4. if A[i, j] ≠A [j, i] then

5.  return false

6. end

7. end

8. return true

1. What does the algorithm compute?

2. What is its basic operation?

3. How many times is the basic operation executed?

4. What is the efficiency class of this algorithm?

U
Question 5
1 pts
Which of the following Python code segments best matches this Scratch block?
set X
to 0
x > 0
then
change x by 1
se
change
by 10
x = 0
if x > 0:
X = X - 1
else:
X = X + 10

Answers

8wmX si2 jkkajmid di e2 2i2

Michael dropped his tablet on the floor and shattered his screen. He was able to get the screen fixed, but to prevent the screen from breaking again, what should Michael do?

Use an electronic wipe to clean the tablet.
Use a protective case for the tablet.
Use the tablet on a soft surface.
Use one hand when carrying the tablet.please help i would give u 10 points

Answers

Use a protective case for the tablet , cuz the case is hard and rigid and holds the iPad together so it won’t break when it drops again

Answer:

B

Explanation:

got 100

100 points!!!!

You must write 5-7 sentences to receive full credit


What are some of the ways that what are some of the ways mobile technology has changed the web? Describe at least two ways that your life would be different if you only used the web without using mobile devices such as smartphones or tablets.

Answers

Answer:

Mobile technology has changed the web in many ways. It has made the web more accessible and user-friendly, with features such as mobile-optimized websites, responsive design, and mobile apps. It has also enabled people to access the web from anywhere, anytime, allowing them to stay connected and informed. If I only used the web without using mobile devices, I would not be able to access the web while on the go, which would limit my ability to stay connected with family and friends. I would also not be able to access the web when I'm away from home, which would make it more difficult to stay up to date with news and information.

Explanation:

Answer:

Mobile technology has revolutionized the web by making it more accessible and user-friendly. Mobile devices have changed the way people consume and interact with online content, leading to the creation of responsive design and mobile-first web development. If I only used the web without mobile devices, I would miss out on the convenience of being able to access the web on-the-go, as well as the ability to easily complete tasks such as online shopping and banking from anywhere. Additionally, I would miss out on the many apps and tools available exclusively on mobile devices that make my life easier and more efficient.

___________ is a global issue and there is a requirement to find out the interdependencies among the customers and suppliers.

Answers

Answer:

Supply chain disruption is a global issue and there is a requirement to find out the interdependencies among the customers and suppliers.

Explanation:

The context suggests we are discussing some type of challenge involving the relationships between customers, suppliers and a larger supply chain. A "global issue" involving "interdependencies among the customers and suppliers" points to potential supply chain disruption or issues in a supply network.

Since there is a "requirement to find out the interdependencies" between customers and suppliers, this suggests we need to identify and analyze how they are connected and dependent upon each other in order to resolve the broader "global issue." This information could then be used to make changes, build resilience or manage risks in the supply chain.

Hope this helps!

Answer:

Internet is global issues

An argument does not always have to be made in words. A piece of music
can make an argument; however, the argument is usually a(n)
one.
A. unfocused
B. emotional
C. credible
D. logical

Answers

Answer:

B. emotional

Explanation:

An emotional argument. An argument does not always have to be made in words.

The piece of music that can make an argument is usually an emotional argument. Thus option B is correct.

What is an emotional argument?

An emotional argument is an e that is made in words and expresses its deals in terms of feelings and thoughts. The emotional argument is characterized by the manipulation of the recipient's emotions and has an absence of factual evidence.

Find out more information about the argument.

brainly.com/question/3775579

what was original name
whoever answers first gets brainly crown

Answers

Answer:

BackRub

Explanation:

The keyboard is used to select pictures on the computer.
#True# or False#​

Answers

We use the keyboard to type. it's false.

Answer:

False is the answer of your question

hope it is helpful to you

which of the following is not the correct definition of an operating system

A.

it controls all other execution in a computer

B.

interface between hardware and application programs

C.

its a platform for ensuring that other executions has taken place

D.

maintains consistency of data loss during execution

Answers

The correct answer is C. An operating system is not a platform for ensuring that other executions have taken place. An operating system is a software program that manages the hardware and software resources of a computer and provides common services for computer programs. It acts as an interface between the hardware and application programs and controls all other execution in a computer. It also maintains consistency of data during execution.

Write a static method middleValue that takes three int parameters, and returns a int . It should return the middle value of the three parameters (sometimes called the median value). You may assume that all three parameters are different values (there are no duplicates).

Answers

We use if-else structure to check the each possible scenario and return the median accordingly in the middleValue() method. The main is also provided so that you can test the method.

Comments are used to explain the each line.

You may see the output in the attachment.

public class Main

{

public static void main(String[] args) {

   

    //call the method for different scenarios

    System.out.println(middleValue(1, 2, 3));

    System.out.println(middleValue(1, 3, 2));

    System.out.println(middleValue(2, 1, 3));

    System.out.println(middleValue(2, 3, 1));

    System.out.println(middleValue(3, 1, 2));

    System.out.println(middleValue(3, 2, 1));

 

}

       //method that takes three int and returns an int

public static int middleValue(int n1, int n2, int n3) {

    //set the median as n1

    int median = n1;

   

    //check the situation where the n1 is the highest

    //if n2 is greater than n2 -> n1 > n2 > n3

    //if not -> n1 > n3 > n2

    if(n1 > n2 && n1 > n3){

        if(n2 > n3)

            median = n2;

        else

            median = n3;

    }

   

    //check the situation where the n2 is the highest

    //if n3 is greater than n1 -> n2 > n3 > n1

    //if not -> n2 > n1 > n3

    //note that we set the median as n1 by default, that is why there is no else part

    else if(n2 > n1 && n2 > n3){

        if(n3 > n1)

            median = n3;

    }

   

    //otherwise, n3 is the highest

    //if n2 is greater than n1 -> n3 > n2 > n1

    //if not -> n3 > n1 > n2

    //note that we set the median as n1 by default, that is why there is no else part

    else{

        if(n2 > n1)

            median = n2;

    }

   

    return median;

}

}

You may see another if-else question at:

https://brainly.com/question/13428325

Write a static method middleValue that takes three int parameters, and returns a int . It should return

vSphere Client is used to install and operate the guest OS. true or false

Answers

Answer:

True

Explanation:

A guest Operating System (OS) is a secondary OS to the main installed OS which is the host Operating System (OS). Guest OS can either be a part of a partition or a Virtual Machine (VM). This guest OS is used as a substitute to the host OS.

vSphere Web Client can be installed by using a CD-ROM, DVD or ISO image which has the installation image to make a Virtual Machine (VM) functional.

Translate the following C program to Pep/9 assembly language.
#include
int myAge;
void putNext(int age) {
int nextYr;
nextYr = age + 1;
printf("Age: %d\n", age);
printf("Age next year: %d\n", nextYr);
}
int main () {
scanf("%d", &myAge);
putNext(myAge);
putNext(64);
return 0;
}

Answers

In this exercise we have to use the knowledge of computational language in C code to write a code that Translate the following C program to Pep/9 assembly language.

Writting the code:

In C code:

#include <stdio.h>

int myAge;

void putNext(int age) {

int nextYr;

nextYr = age + 1;

printf("Age: %d\n", age);

printf("Age next year: %d\n", nextYr);

}

int main () {

scanf("%d", &myAge);

putNext(myAge);

putNext(64);

return 0;

}

In Pep 9 CODE-

myAge:

.zero 4

.LC0:

.string "Age: %d\n"

.LC1:

.string "Age next year: %d\n"

_Z7putNexti:

pushq %rbp

movq %rsp, %rbp

subq $32, %rsp

movl %edi, -20(%rbp)

movl -20(%rbp), %eax

addl $1, %eax

movl %eax, -4(%rbp)

movl -20(%rbp), %eax

movl %eax, %esi

movl $.LC0, %edi

movl $0, %eax

call printf

movl -4(%rbp), %eax

movl %eax, %esi

movl $.LC1, %edi

movl $0, %eax

call printf

nop

leave

ret

.LC2:

.string "%d"

main:

pushq %rbp

movq %rsp, %rbp

movl $myAge, %esi

movl $.LC2, %edi

movl $0, %eax

call scanf

movl myAge(%rip), %eax

movl %eax, %edi

call _Z7putNexti

movl $64, %edi

call _Z7putNexti

movl $0, %eax

popq %rbp

ret

See more about C code at  brainly.com/question/18502436

#SPJ1

Translate the following C program to Pep/9 assembly language.#include int myAge;void putNext(int age)

How would QuickBooks Online alert you of a discrepancy in the beginning balance when reconciling your clients’ accounts?

Answers

An alert would have to be made by  QuickBooks Online of the discrepancy that is occuring.

How does Quickbook alert work?

QuickBooks alerts are a feature within the QuickBooks accounting software that allows users to set up notifications for various events or situations that require attention. These alerts can be sent via email or within the QuickBooks software itself.

To set up a QuickBooks alert, follow these steps:

Open QuickBooks and navigate to the "Edit" menu.

Click on "Preferences" and select "Reminders" from the left-hand menu.

Check the box next to the type of alert you wish to receive (e.g. overdue invoices, upcoming bills, low inventory).

Read more on quickbook here"

https://brainly.com/question/24441347

#SPJ1

PLEASE HELP ASAP

Select the sentence that suggests people can save information you think you have deleted from social media.

Question 1 options:

You've been building your online reputation since your first post


But you can't always control who see what you post


Every photo, video, tweet, like and comment can be screenshotted by your friends (or ).

Answers

every photo, vid, tweet... (c)

odify the guessing-game program so that the user thinks of a number that the computer must guess.

The computer must make no more than the minimum number of guesses, and it must prevent the user from cheating by entering misleading hints.
Use I'm out of guesses, and you cheated and Hooray, I've got it in X tries as your final output.

Answers

The guessing-game program that the user thinks of a number that the computer must guess is illustrated below.

How to illustrate the program?

The appropriate program for the guessing game will be:

import random

import math

smaller = int(input("Enter the smaller number: "))

larger = int(input("Enter the larger number: "))

count = 0

print()

while True:

   count += 1

   myNumber = (smaller + larger) // 2

   print('%d %d' % (smaller, larger))

   print('Your number is %d' % myNumber)

   choice = input('Enter =, <, or >: ')

   if choice == '=':

       print("Hooray, I've got it in %d tries" % count)

       break

   elif smaller == larger:

       print("I'm out of guesses, and you cheated")

       break

   elif choice == '<':

       larger = myNumber - 1

   else:

       smaller = myNumber + 1

Learn more about programs on:

https://brainly.com/question/16397886

#SPJ1

Which of the following choices is not an example of a posible career in information technology

Answers

Compared to the remaining streams Networking systems is not an example of possible career in Information technology stream.

What is Information Technology?

Information Technology (IT) is the use of  computers, storage, networks and other physical devices, infrastructure and processes to create, process, store, protect and exchange all forms of electronic data .

IT is generally used in the context of business operations rather than technology used for personal or recreational purposes.

Commercial use of IT includes both information technology and telecommunications

What is Networking systems?

Networking, also known as computer networking, is the transfer and exchange of  data between nodes on a common information system medium.

To know more Networking systems visit:

https://brainly.com/question/27148473

#SPJ1

Select the true statement about HTML. HTML is a language that is used to create Web pages. HTML tags tell a web browser when to run HTTP sequences. HTML supports the delivery of Web pages through HTTP. HTML is used to distribute websites.

Answers

Answer: HTML is a language that is used to create Web pages.

Explanation:

HTML (Hypertext Markup Language) simply refers to the code which is used for the structuring of a web page and its content. e.g the content can be structured by using images, in data tables or within a set of paragraphs.

Therefore, the correct statement about HTML is that HTML is a language that is used to create Web pages.

Answer:

HTML is a language that is used to create Web pages

Explanation:

HTML is not running applications,  for example, Microsoft, its uses C++.

HTML runs only things not cool, only can make it VERY cool when used by other languages.

Which of the following occupations is least likely to involve use of a computing device on a day-to-day basis?

Janitorial duties
Cashier in a bank
Journalist
Records clerk in a hospital

Answers

Answer:

Janitorial duties

Explanation:

Explain the main concept of Artificial Neural networks (ANN) as a set of layers that starts with an input layer that has sensors and the output layer that gives the predicted result (predictions) with hidden layers in between based on the ANN architecture and its specific type of application Knowledge One Individual Practical Assignment

Answers

Artificial Neural networks is a computational tool that is made up of a let of processing elements that takes in inputs and deliver outputs using a predefined activation codes.

What are the layers in an artificial neural network?

There are 3 Artificial olfactory sense and recognition system that are found in ANN.  It is made up of:

An input layer.An Hidden layer.An Output layer.

Note that these layers above help to tell more about the Artificial Neural networks (ANN).

Learn more about  Artificial Neural networks (ANN) from

https://brainly.com/question/25653113

Which of the following is true about credit cards? A You can't use a credit card at most stores. If you don't pay your balance off in full each month, you'll accrue interest. Credit cards allow you to access money in your checking account. Charging your credit card is the best way to pay for an unexpected expense.​

Answers

The statement that is true about credit cards is: "If you don't pay your balance off in full each month, you'll accrue interest." Option A

What are credit cards?

Credit cards can be used at most stores that accept them, and they don't allow you to access money in your checking account.

This means that if you only pay the minimum amount due on your credit card bill, you'll be charged interest on the remaining balance. This interest can accumulate over time, making it harder to pay off your debt

While charging your credit card can be a way to pay for unexpected expenses, it's important to consider the interest charges and other fees that may apply.

Read more about credit cards at: https://brainly.com/question/26857829

#SPJ1

Write a program that asks the user how many numbers will be entered and then has the user enter those numbers. When this is done, report to the user the position of the first 7 entered and the last 7 entered. By position we mean, for example, that if the first 7 is the 2nd number entered then its position would be 2.

Answers

Answer:

The program written in Python 3 is as follows;

The program does not make use of comments; however, see explanation section for detailed line by line explanation of the program

num = int(input("Number of Inputs: "))

mylist = []

userinput = int(input("Enter a digit: "))

i = 1

while i < num:

     mylist.append(userinput)

     userinput = int(input("Enter a digit: "))

     i += 1

   

try:

     first7 = mylist.index(7)+1

     print('The first position of 7 is ',first7)

     last7 = num - 1 - mylist[::-1].index(7)

     print('The last position of 7 is ',last7)

except:

     print('7 is not on the list')

Explanation:

This line prompts user for the number of inputs

num = int(input("Number of Inputs: "))

This line declares an empty list

mylist = []

This line inputs the first number into the empty list

userinput = int(input("Enter a digit: "))

The italicized lines represent an iteration that allows user to input the numbers into the empty list.

i = 1

while i < num:

     mylist.append(userinput)

     userinput = int(input("Enter a digit: "))

     i += 1

The try-except is used to check the presence of 7 in the list

try:

This checks the first occurrence of 7

     first7 = mylist.index(7)+1

This prints the first occurrence of 7

     print('The first position of 7 is ',first7)

This checks the last occurrence of 7

     last7 = num - 1 - mylist[::-1].index(7)

This prints the last occurrence of 7

     print('The last position of 7 is ',last7)

The following is executed if there's no occurrence of 7

except:

     print('7 is not on the list')

See Attachments for sample runs

Write a program that asks the user how many numbers will be entered and then has the user enter those
Write a program that asks the user how many numbers will be entered and then has the user enter those

Read and Answer the Question.


After several years of driving long-haul trucks, Joe Blanka

founded his own trucking company, Blanka Transport Inc.

(BTI), which specialized in less-than-truckload shipments in the

midwestern part of the United States. Joe developed a successful

method for scheduling BTI’s runs that met or exceeded the

delivery expectations of its customers. As a result, BTI shipments were growing at a rate between 15 and 20 percent per

year. The growth, however, was not evenly distributed across

BTI’s territory. On some routes, capacity was overloaded in one

direction and underloaded in the other.

Joe noticed that the imbalance problem was not stable

across time. In some months, capacity was short in one direction, and in other months, it was short in another direction. He

thought that one way of solving the problem would be through

marketing, by offering incentives to customers whose shipments

would improve load balance. Another approach to the problem

was to analyze and restructure the route–equipment combinations. He also thought that it might be possible to warehouse

some less-urgent shipments for short periods in order to help

the balance.

Joe’s son, the first member of the Blanka family to attend

college, was a senior in engineering school. He had just completed a course in project management, and after briefly describing some of the basic concepts to his father, he suggested that a

process improvement project might be a good way to deal with

the balance problem. He thought that the Marketing Manager

and the Route Manager could serve as project co-managers. He

also felt that some of the older, more experienced drivers might

be helpful. The objective of the project would be to decrease the

size of the route imbalances by 75 percent in 1 year.


Questions: Is this a proper approach to the problem? Is this a “project”; if

so, what are the three triple constraints? What, if any, helpful

suggestions would you make to Joe?

Answers

Yes, the process improvement project suggested by Joe's son is a proper approach to address the balance problem in the trucking company. It can help decrease the route imbalances by 75 percent in one year.

What are the constraints?

The three triple constraints in this project would be scope (reducing route imbalances), time (1 year), and resources (including the Marketing Manager, Route Manager, and experienced drivers).

Some helpful suggestions for Joe would be to consider implementing a combination of marketing incentives, route restructuring, and short-term warehousing to achieve better load balance.

Additionally, he should ensure effective communication and collaboration between the project co-managers and team members to maximize the project's success.

Read more about project development here:

https://brainly.com/question/27995740

#SPJ1

how can the various templates that are available for new word documents to be accessed?
A opening up an instance of word
B pressing CTRL+N with word open
C clicking file to enter backstage view
D all of the above​

Answers

Answer:

ITS D ALL OF THE ABOVE.

Explanation:

HOPE THIS HELPS?

The various templates that are available for new word documents can be accessed by opening up an instance of word, pressing CTRL+N with word open and clicking file to enter backstage view. The correct option is D.

What is template?

Pre-made designs and documents that can be customized are referred to as design templates.

Templates are frequently designed to meet specific standards or specifications in order to be consistent across users and mediums.

A template is a document format that you can use to create your own. The templates available for new Word documents can be accessed by clicking File and then New.

Here you will find all of the templates available for use as well as the option to search for templates online that can be downloaded.

To access the various templates available for new Word documents, open a new instance of Word, press CTRL+N with Word open, and then click file to enter backstage view.

Thus, the correct option is D.

For more details regarding templates, visit:

https://brainly.com/question/13566912

#SPJ5

What is the third rule to normalize a database?

All primary keys must be based on filtered values.
All fields in the table must be included in the primary key.
Each primary key must be based on multiple fields in the table.
Each nonkey field must relate to the entire single-field primary key.

Answer is 4
Each nonkey field must relate to the entire single-field primary key

Answers

Answer:

4th option as u told

oook

it is used to connect the different data and flow of action from one symbol to another what is that​

Answers

Since u said "symbols" I'm assuming Ur talking about flowcharts.

If that's wut Ur talking about, u use arrows to denote the flow of control and data and also the sequence.

If Ur talking about processor architecture ( which I assume Ur not) the answer is buses

Choose the company that is responsible for each innovation.

Answers

Transistor: - John Bardeen, Walter Houser Brattain, and William Shockley

Co-founder of Microsoft -  Bill Gates

Co-founder of Apple - Steve Jobs

Co-developer of the first microprocessor -  Marcian E. Hoff Jr.

How is this so?

The attribution   of the innovations is based on historical records   and widely accepted accounts.

The development of the transistor is   credited to John Bardeen, Walter Houser Brattain, and William Shockley.

Bill Gates is recognized as a co-founder of Microsoft,while Steve Jobs is acknowledged   as a co-founder of Apple. Marcian E. Hoff Jr. is known for his   significant contribution to the development of the first microprocessor.

Learn more about innovation at:

https://brainly.com/question/19969274

#SPJ1

Full Question:

Although part of your question is missing, you might be referring to this full question:

Choose the person responsible for each innovation.

______: Transistor

______: Co-founder of Microsoft

______: Co-founder of Apple

______: co-developer of first microprocessor

What kind of waste does a computer generate?

Will give brainly :3

Answers

Answer:

waste???? a computer??

which of the following is a part of the database requirements step? database deployment logical modeling database implementation all of the above none of the above

Answers

Conceptual modelling is a phase in the database deployment, logical modelling, and implementation processes.

A conceptual model is a representation of an application that the creators hope consumers will comprehend. Users form an image of how the programme functions in their brains by using it and maybe reading its documentation. The model that users create in their thoughts should ideally resemble the one that the creators intended.

A logical data model defines the organisation of data pieces and the connections between them. The information on how the data will be used is independent of the physical database. A template for the utilised data is provided by the logical data model. The logical data model expands on the concepts of conceptual data modelling by incorporating more details.

Learn more about Logical here:

https://brainly.com/question/14617992

#SPJ4

Other Questions
If 23% of "A" is 46 , then find "A" HELP PLS I SUCK AT MATH IF U HELPED U SAVED MY LIFE THANK YOU The buyer for a retail store located in a shopping mall has convinced himself that if he prices small personal fans at $ x apiece, the weekly profit made by the store on sale of the fans will be given by the profit function p ( x ) when i describe someone elses behavior, offer a couple of reasons for that behavior, and ask for clarification; i am engaging in Shirley and Pam, working together, can mow the lawn in 66 hours. Working alone, Pam takes three times as long as Shirley. How long does it take Shirley to mow the lawn alone? An airliner carries 400 passengers and has doors with a height of 78 in. Heights of men are normally distributed with a mean of 69 inches and a standard deviation of 2. 8 in. If a male passenger is randomly selected, find the probability that he can fit through the doorway without bending The ratio of the ions in an ionic compound depends on the charges of the ions. The amount of positive charge must balance the amount of negative charge. For each compound, both the total positive charge and the total negative charge will equal the LCM found in part B. Determine the number of positive ions and the number of negative ions for each ionic compound in the table. Use the ionic charges of each element you found in part A. The number of each ion times the charge on the ion should equal the LCM determined for each cell in part B. [# of ions of an element] x [ion charge] = least common multiple (LCM) Drag each element's chemical symbol to the table to show how many ions are needed to balance the charges. Each symbol will be used more than once. The first row is already completed for you. chlorine (Cl) oxygen (0) nitrogen (N) Lithium (Li) | Li Cl. | Li Li O | Li Li Li N------------------------------------------------------------------Magnesium (Mg) | | |------------------------------------------------------------------Aluminum (Al) | | | A small tribe that lives near the artic circle has a strong bond with white foxes. The tribe doesnt interact with the foxes but in many of their drawings, stories, and songs the fox is a central figure. The fox seems to represent strength and intelligence. This is an example of Thunder from a bolt of lightning travels 110 mile in 12 second. At this rate, how many miles can it travel in one second? __ mile in one second What is 3.50 if it rose by 4000% The DNA must be equally distributed to each new cell to be identical to the parent cell. What needs to happen first, inorder for the DNA to be the same in the new cells? midori is sure her children will all graduate from college, earn six-figure incomes, and live a happy life with zero problems. she is demonstrating optimism. A day order is entered to buy 500 LMN at 24.35. By the close of the trading day the firm has been able to purchase 100 shares at 24.25 and 200 shares at 24.35. If the remainder of the order is unfilled, what is the outcome 1+1+90+1000+=YOu will get 70 points PLZ HURRYHow long should an electronic cover letter be?a. Approximately 50 wordsb. Approximately 150 wordsC. Approximately 250 wordsd. Approximately 350 wordsPlease select the best answer from the choices provided Business ethics and governance are crucial aspects for everyday life of accountants. Required: Provide a business report based on the above statement by identifying and evaluating of how can consider the ethical and good governance issues in running the business including the responsibilities and accountabilities of accountants in a wider context. In this report, you must include executive summary, introduction, main body, recommendations, and conclusions. In your demonstration of this part an expectation is that you shall use authentic academic and professional references. Harvard style reference must be used for both in-text referencing and reference list. The expected length of this part is 1,500 word1. Use the language of financial accounting and financial reporting 2. Explain the purpose, content, format and practical applications of the following financial statements, the profit and loss Statement, the balance Sheet, the statement of cash flows, and the relationship between these financial statements 5. Apply the accounting cycle and the business process of accounting information systems and their ethical implications 6. Use financial information to support management decision making for solving both programmed and non-programmed business problems 7. Apply the principle of double entry system efficiently What is the answer? I need helpNO LINKS!! HELPPPPP PLEASEE IM STUCK ON THIS Where do hyperbolic comets originate?A. the Oort cloudB. the asteroid beltC. the Kuiper beltD. interstellar space At Jim's Hats, there are 6 baseball caps and 54 other hats. What percentage of the hats are baseball caps?