Answers

Answer 1

Answer:

Moore’s law states that processor speeds, or overall processing power for computers will double every two years.

Explanation:

Moore’s law is more than an observation than a law which was originated in 1970. The observation is about the number of transistors that is present in any system or an integrated system that will be doubled every couple of years. The real-world application of Moore's law can be seen during computing your business taxes, piloting a spaceship, or changing the television station, etc.

Related Questions

Using pseudo code, Natural language and flow chart design an algorithm for quadratic formula

Answers

Answer:

sol 1,2 = (-b +- sqrt(b^2 -4ac))/2a

And rest is as in the image attached. I have added a flow chart.

Explanation:

Please check the attachment.

The technology Herman Hollerith created in the 1880s began the modern-day data processing function in computers.
What was the name of this technology?
transistor
punched-card machine
microprocessor
resistor

Answers

Answer:

Punch Card Machine

Explanation:

The punch cards or the punched cards are also termed as the Hollerith cards or we also know them as the IBM cards. And they happen to be the paper cards where holes can be punched with the help of the hands or with the help of the machine for representing the computer instructions or data. And these were used on quite a large scale for inputting the data when we talk of the early computers. And this technology was developed by the Herman Hollerith.

write a c program that reads marks of ten students calculate percentage and deviations percentage of each student using array

Answers

Answer:

a

Explanation:

Final answer:

This detailed response describes how to write a C program to read the marks of ten students, calculate their percentage, and compute the deviation percentage for each student using arrays. An example code snippet is provided to illustrate the implementation.

Explanation:

To write a C program that reads the marks of ten students calculates the percentage, and then computes the deviation percentage for each student, we first need to understand the basics of arrays in C. An array is a collection of elements of the same type placed in contiguous memory locations. In this case, we use an array to store the marks of the ten students.

First, we will calculate the percentage of each student's marks out of the total possible marks. Secondly, we will compute the deviation percentage, which involves finding the average marks of the students, then calculating the difference between each student's marks and the average marks, and finally expressing this difference as a percentage of the average.

Example Code

#include
int main() {
   int marks[10];
   float sum = 0, avg, deviation;
   for(int i = 0; i < 10; i++) {
       printf("Enter marks for student %d: ", i+1);
       scanf("%d", &marks[i]);
       sum += marks[i];
   }
   avg = sum / 10;
   printf("Average marks: %.2f\n", avg);
   for(int i = 0; i < 10; i++) {
       deviation = ((float)marks[i] - avg) / avg * 100;
       printf("Deviation Percentage for student %d: %.2f%%\n", i+1, deviation);
   }
   return 0;
}

This program reads the marks of ten students, calculates the average marks, and then calculates the deviation percentage of each student's marks from the average. It illustrates the use of arrays, loops, and basic arithmetic operations in C programming for handling calculations and output formatting.

Read the scenario below and then answer the
question to the right.

The manager of a small engineering company is
setting up a spreadsheet to help track cash flow
for each month. The spreadsheet will track
incoming payments from clients. It will also track
outgoing payments for rent utilities employee
salaries, and insurance.

What is the best way to set up the spreadsheet?

A. List each expense in a row. List each income
source in a column.

B. List each expense and income source in a
separate column List each month in a row.

C. List each month in a column. List each
expense in a row.

D. List each expense in a column. List each
month in a row

Answers

Answer:

B. List each expense and income source in a separate column List each month in a row.

Explanation:

The manager is making the spreadsheet for helping track the cash flow. The spreadsheet will be keeping track of the outgoing and incoming payments from the clients. And it is also going to track the outgoing payments like rent and the whole cashflow. And for that, the Manager should mention the expense and the income source in a separate column and list all the months in a row. And hence, the B. is the correct option.

Answer:

B

Explanation:

The best way to set up the spreadsheet is to list each expense and income source in a separate column. List each month in a row.

Which of the following is one of the options available on the Columns menu on the
Layout tab?
Choose the answer.
a)Three
b)Two
c)Left
d)all of the above

Answers

Answer:

d)all of the above

Explanation:

The options available on the column menu on the layout tab are one, two, three left and right. Hence, all of the above options are the options available on the column menu on the layout tab. You can check this by going inside the layout tab, and clicking on the column option. Once you will do this, you will see all of the above-mentioned options showing there. Hence, d. all of the above is the correct choice for this question.

Financial institutions are monitored through which of the following?
A. Federal Reserve System
B. National Banking Union Administration
C. Federal Deposit Insurance Corporation
D National Financial Institution Agency

Answers

Answer:

federal reserve system

Financial institutions are monitored through Federal Deposit Insurance Corporation.

Option C is the correct answer.

We have,

The Federal Deposit Insurance Corporation (FDIC) is responsible for monitoring and regulating financial institutions in the United States.

It is an independent agency of the federal government that aims to maintain stability and public confidence in the banking system.

The FDIC oversees banks and savings associations, ensures their compliance with relevant laws and regulations, and provides deposit insurance to protect depositors' funds.

The FDIC conducts regular examinations of financial institutions to assess their financial health, risk management practices, and adherence to consumer protection laws.

These examinations evaluate the institution's capital adequacy, asset quality, management practices, earnings, and liquidity.

Thus,

Financial institutions are monitored through Federal Deposit Insurance Corporation.

Learn more about financial institutions here:

https://brainly.com/question/29641948

#SPJ6

Your credit card debit to limit ratio has a huge impact on your FICO score (30%). It should always be kept below 15%. If your card has a limit of $3,000 and your credit card debit has reached it, what payment will you need too apply to your balance to pay it down to 15%?

Answers

Answer:

The payment that you will need to apply to your balance to pay it down to 15% is $2,550.

Explanation:

To determine the payment that you will need to apply to your balance to pay it down to 15%, the first step is to calculate the credit card balance in which your debit to limit ratio is 15% using:

Debit to limit ratio= credit card balance / total credit card limit

You have to isolate the credit card balance:

Credit card balance= Debit to limit ratio*total credit card limit

Credit card balance= 15%*$3,000

Credit card balance= $450

Now that you have the credit card balance in which your debit to limit ratio is 15%, you have to subtract this amount from the credit card limit to find the payment that you will have to make:

$3,000-$450= $2,550

how do i create an advanced search using the search criteria in the range K2:S3 and the inventory data where the results will be displayed in the search results (starting in cell K10).

Answers

Final answer:

To perform an advanced search in Excel, use the Advanced Filter feature, inputting your inventory data as the list range, the criteria in K2:S3, and output the results starting at cell K10.

Explanation:

To create an advanced search using the search criteria in the range K2:S3 and show the results in the search results area starting in cell K10, you can use Excel's Advanced Filter function. Follow these steps:

First, ensure your data in the inventory has headers, and the criteria range K2:S3 is set up with the same headers.

Go to the Data tab on the Excel ribbon and choose 'Advanced' under the Sort & Filter group.

In the Advanced Filter dialogue box, select 'Copy to another location'.

For 'List range', select your inventory data. For 'Criteria range', select K2:S3. For 'Copy to', select cell K10, where you want to display the results.

Click OK, and Excel will filter the data according to your criteria and display the results in K10 and below.

This method allows you to accurately filter and extract specific data from a larger dataset based on multiple conditions.

Final answer:

To create an advanced search using Excel VLOOKUP function.

Explanation:

To create an advanced search using the search criteria in the range K2:S3 and the inventory data, you can use the Excel VLOOKUP function. Here's how:

In cell K10, enter the following formula: =VLOOKUP(K2,$K$2:$S$3,2,FALSE). This formula will search for the value in cell K2 in the range K2:S3 and return the corresponding value from the second column of that range.

Drag the formula down to fill the cells below K10. The formula will adjust automatically to display the search results for each value in the range K2:S3.

By using this method, you can create an advanced search in Excel.

Guess the output #includes<stdio•h>
int main()
{
print("Hello");
break;
printf("world");
return 0;

}


A. Hello
B. World
C. Compile error
D. Hello world​

Answers

Hello. Is the one I work do.

Answer:

Hello Colors

Explanation:

In the code snippet, what is the “win” part called in programming?
if (playerGreen > 444) {
setScreen ("win");
}
A. Function
B. Parameter
C. Variable
D. onBoardEvent

Answers

I think the answer is B: parameter

how do you fix your zsnes emulator from lagging it’s lagging on My laptop

Answers

To fix your zsnes emulator from lagging use another emulator, like Snes9X or BSnes.

Explanation:

The reason why this lag is here is because of how the backgrounds work. First off, the PC, has a variety of stuff running in the background that could soak up CPU time and slow down the emulator just enough to cause the sync issues. The PC's running a new version of SNES9x, which is more processor intensive. The sync on the monitor versus the TV might be slightly different. NTSC TVs have a refresh rate of 59.94 frames per second, whereas your PC monitor might be exactly 60 frames per second. If the emulator is compensating for the difference, that could cause the difference. As for the controller, I would suggest making sure no other programs on your PC have that slight input lag. Some controller drivers have a lot of processing involved in them that can cause that sort of issue, and I wouldn't be surprised if the Xbox simply handles the inputs faster since it's designed as a gaming rig. It's also possible that the newest version of SNES9x is slightly slower on the controller input.

Identify the type of conflict in each situation.
Mark sees his close friend Tom
cheat during a class test and
wonders whether he should
keep the information to
himself or confront Tom about it
Kyle goes on a ski trip alone, only
to be caught in a heavy snowstorm
and become stranded in the
middle of nowhere.
Sarah wants to give up studying
law and follow her dreams of
becoming a musician, but her
family disapproves of this idea.
Kate and Jade have always competed
to be the most popular student
in school. With prom coming up, the
problems between the two increase.
Lizzy finds a wonderful outfit for her
friend's birthday party, but she
realizes that it costs much more
than her budget. She's tom
between buying it and looking
for something else.
Internal Conflict
External Conflict

Answers

first off, good for Tom, he found Brainly. And now the answers (in order)

1. internal

2. internal

3. external

4. external

5. internal

1. Internal conflict 2.  Internal conflict 3. External conflict 4. External conflict 5.  Internal conflict

What is internal and external conflict?

Internal conflict is when a person struggles with their own opposing desires or beliefs.

External conflict sets an individual against something or someone which is not in their control.

1. Mark sees his close friend cheating. The situation must be confronted or kept secret is his inner struggle.

Thus. its an internal conflict.

2. Kyle goes on a ski trip alone and stucks in heavy storm. Now she is afraid of what she will tell her loved ones and how she will face if she get caught.

Thus, its an internal conflict.

3. Sarah wants to pursue her dream of becoming musician. She has to make everyone agree to favor her but she is getting opposed. This struggle is with her parents.

Thus,  its an external conflict.

4. Kate and Jade are competitors. The competition is increasing between the two.

Thus,  its an external conflict.

5. Lizzy denies to buy her wonderful outfit due to high cost. She wants it but can't afford.

Thus,  its an internal conflict.

Learn more about internal and external conflict.

https://brainly.com/question/27377458

#SPJ2

Will web browser cannot open any web page what should will do first

Answers

Answer:

The solution to this question is given below in the explanation section.

Explanation:

If a web page is not open in a web browser, the first step that will be performing is to check if the internet is connected or not. Because we need to connect to the internet to access any web page. For this, you need to see the wifi or LAN icon and see the status of the connection. If this step is shown the internet is connected. Then diagnose the problem in the browser click on "Running Windows Network Diagnostics".

The diagnosis will get started in your browser, the solution will be suggested by this step if the problem exist. Mostly these problems are internet disconnectivity, router shutdown, browser issues, and internet connection and DNS issues.

when troubleshooting a computer hardware problem , which tool might help​

Answers

Answer:

Some softwares by microsoft or windows maybe :)

Explanation:

Round Robin Algorithm

Using the following table as your starting point for each algorithm RR with a time quantum of 5

Job
A
B
C
D
E

Arrival time:
0
0
0
0
0

Time burst:
15
2
14
10
1

Answers

Answer:

Please check the attachment.

Explanation:

avg turnaround time = (38+7+42+33+18)/5= 27.6

avg waiting timee = (33+5+28+23+17)/5= 21.2

And its D, A C in Gantt chart at last and exit time are 33, 38 and 42 mentioned as last three in Gantt chart.

research about the various models of intel processors from the last decade focusing on their speed and cost​

Answers

The Intel announced the eighth- generation chips will offer up to 40 percent speed boost  over the previous generation.

Explanation:

The most popular Intel processors are the core i3, i5, and i7 product lines. The core i3 is entry level and core i7 processors are the powerful hyper-threaded quad-core options.

The CPU does good job in understanding and completing single tasks. A clock speed of 3.5 GHz to 4.0 GHz is considered a good clock speeding for gaming. It is useful for having good single thread performance.

Intel's prior series of 8086,80186, 80386 and 80486 microprocessors, the first P5 based microprocessor released as original Intel Pentium.

Please select the word from the list that best fits the definition

Debate

A. Analyze
B. Evaluate
C. Question
D. Reflect

Answers

Answer:

Debate means

Explanation:

Question, usually in debating people question, your judgement.

So, C.

Answer:

it's c - question

Explanation:

1) Moore's law refers to:

Answers

Answer:

Moore's law refers to: the pace at Central Processing Units (CPU) improves this rule.

Explanation:

It also predicts that CPU will double about every 2 years dynamic, random access.

Match the description to its correct game design principle.

1. clarity

2. consistency

3. engagement

4. simplicity

5. utility

A. use features that retain the interest of 
the intended player audience in the game



B. know the kind of fun the game must 
create in the intended player audience



C. add minimum features that 
meet the goal of the game



D. use one type of approach 
in the game



E. provide flexibility for 
future modifications​

Answers

Answer:

The answers are explained below.

Explanation:

Clarity refers to know the kind of fun the game must create in the intended player audience.

Consistency is explained in letter D: use one type of approach in the game.

Engagement matches letter A: use features that retain the interest of the intended player audience in the game.

Simplicity is to add minimum features that meet the goal of the game.

Utility refers to provide flexibility for future modifications.

Which of the following is an example of real-time processing?

A file used to update several student tuition payments
An executive using tools for forecasting future student enrollment
An immediate change in a student's schedule
Several personnel accessing the registration system

Answers

An immediate change in a student's schedule

Explanation:

Real-time processing:

In simple, Real-time processing means, as and when the data comes, it will processed and the output will be sent immediately.

Example: ATMs, traffic system on road, etc.

Batch processing:

Rather in Batch processing, more number of inputs or "bulk inputs" will enter the system and there will be time for processing. The output will be sent later.

Option A: the term "several student payment" says that it is batch

Option B: Forecasting future student enrollment: The output can be given later. Hence it is batch processing.

Option C: Immediate change implies that it is real-time processing

Option D: The word "several personnel accessing" implies that it is batch processing.

what are three common reasons that might make you revise the focus of your research

Answers

the commons reason make you focus on the research

Ansel Adams education and special training

Answers

Answer:

Ansel Adams was dismissed sadly from various schools where he studied because of his bad behavior. And hence he got special training that was being given to him by various private tutors as well as his family members since he was 12 years of age. And in 1916, while on a Yosemite National Park trip, he started working on Photography as well, and he will always be remembered for the work he did in Photography.

Explanation:

Please check the answer section.

What statement best characterizes the standard structure of creating game design documents?

There is no standard way of creating a game design document.
There are a number of formats for creating game design documents, but one must be chosen.
There is a standard way of creating a game design document, but changes can be made.
There is a strict standard way for creating game design documents.

Answers

Final answer:

While there's no strict standard for creating game design documents, it's vital to have a structured design process to organize decision-making and cover all important aspects.

Explanation:

The structure for creating game design documents (GDD) can vary widely, as there is no single, strict standard for their creation. While there are several formats and templates that can be used as a starting point, the specific structure of a GDD often reflects the unique requirements of the game being developed and the preferences of the design team. It is essential, though, that a GDD includes a systematic and structured design process, which can help organize decision-making, ensure that all important aspects are considered, and provide documentation for the development process. Tailoring the GDD to the specific needs of the project is crucial, as this allows for flexibility in making necessary adjustments or additions throughout the game development journey.

What client specifications relate to typography, logos, and color schemes specific to the client's organization?

___________ guidelines are a comprehensive set of references related to typography, color schemes, logo design, and page design specific to each organization and its culture.

Answers

Answer:

Branding

Explanation:

Branding guidelines are a comprehensive set of specifications related to typography, color schemes, logo placement, page layout, and others aspects of design unique to an organization and its culture.

Which statement describes what happens if multiple users make changes simultaneously to a presentation when

coauthoring?

©

O

O

Only the primary coauthor's changes are retained to avoid conflicts.

A record of the initial change is kept in the case of conflicts.

A record is kept of all edits that are made so conflicts can be resolved.

It is the last change that will be retained in the case of conflicts.

Answers

Answer:

A record is kept of all edits that are made so conflicts can be resolved.

Explanation:

If only primary coauthor's changes were retained, what will be the meaning of keeping multiple authors only board? However, other authors' changes cannot be finalized without the approval of the primary author. Though the record of all the edits can be kept, each edit is important and must be taken into account while finalizing the final document. And this way we can resolve the conflicts. Hence, the third option is the correct option, for this question.

Answer:C

Explanation:

what is an attribute that describes an object's characteristic?

Answers

Answer:

Type of the object.

Explanation:

In a non-formatted/standard template, if the number 25 is converted to text format, the
alignment becomes
_. (right, left, center)

Answers

The alignment of the text will be "left" by default

Explanation:

In Excel or spreadsheet, if any number is entered, it will automatically be aligned to right because right alignment is preferable for the numbers.In case of any alignment is mentioned in the cell in prior to entering text or if the type of data is changed after or before entering the text, then the text is aligned accordingly.According to the given scenario, a number "25" is entered and it is converted to text. So a text format will preserve the alignment as entered. By default it will be "left" aligned.

the advantage of purchasing a dual Ethernet 10/100 Mbps NIC for your PC is that your PC can now?​

Answers

A dual Ethernet 10/100 Mbps NIC for your PC is that your PC is now compatible with both LAN speeds.

Explanation:

A 10/100 Ethernet port transmits 10 and 100 Mbps, while the maximum speed of a 10/100/1000 "Gigabit" port is 1 Gbps. Ethernet uses the highest common speed between sending and receiving devices. Ethernets above one gigabit are separate and do not mix with 10/100/1000 components.10GBase-T networks can span up to 100 meters. Enterprises use 10 Gigabit Ethernet switches to provide Layer 2 networking for very high-speed network applications – mostly in the data center or server room. 10/100 Mbps NIC is a good choice for flexibilty. Also, plan to use a PCI bus slot.The NIC should have both half duplex as well as full duplex capacity.By modifying the NIC properties through the operating system your PC will also work faster compared to before.

1. Joe works at Dion's Pizza for $9.35 an hour. When he works over time his pay jumps up
to $14.03 an hour. Last week, Joe worked 45 hours.
a. What is Joe's gross pay for last week?
b. What would be Joe's Social Security deduction? (remember SS tax is 6.2%)
c. What would b Joe's Medicare Tax deduction? (remember Medicare tax is 1.45%
d. Joe's other deductions are: federal tax $61.62, state tax $21.03, city tax $6.01.
What are Joe's total deductions for this pay period?
e. What is Joe's net pay for this pay period?

Answers

Answer:

a. Maximum hours allowed per hour= 40

                      extra hours worked = 5

                        Joe's Gross Pay = 40 x 9.35 + 5 x 14.03

                                                     =$444.15s

b. SS Tax = 6.2%

                  Social security deduction= 6.2 % of Gross Pay

                                                             = (6.2 *444.15)/100

                                                             =$27.5373s

c. Medicare tax =1.45% of Gross Pay

                          = (1.45 x 444.15)/100

                          = $6.440175s

d. Federal Tax = $61.62 State Tax = $21.03 city Tax= $6.01

              Total deduction for this period= SS Tax +Medicare Tax + Federal Tax + State Tax + City Tax

             =   27.5373+6.440175 +  61.62 + 21.03 + 6.01

             =  $122.637475s

e. Joe's net pay for this pay period = 444.15 - 122.637475

               =$321.512525s

Explanation:

Please check the answer section.

Sharing a workbook enables multiple users to access the workbook. What are the benefits of using a shared workbook?

Answers

Shared workbooks enable multiple users to access and edit a document simultaneously, track changes with colour-coded edits, and view revision history. They improve efficiency, promote transparency, and foster collaborative learning.

The benefits of using a shared workbook in applications like Microsoft Excel or Goo-gle Docs are significant for collaborative work. Shared workbooks allow multiple users to access the workbook simultaneously, contributing to a more efficient team workflow. This feature enhances productivity as team members can work on different parts of the workbook at the same time, leading to quicker completion of tasks.

Another key advantage is the ability to track changes made by different users. This is often highlighted and colour-coded to indicate who made specific edits. Additionally, a revision history is maintained, making it easy to review past versions and understand the progression of the document. This sharing is invaluable for ensuring transparency and accountability within a team.

Lastly, sharing facilitates better communication among team members and can lead to innovative solutions by combining diverse contributions. The process allows for pooling of expertise and knowledge which can result in a more thorough and accurate final product. Working together in a shared workbook can also increase learning opportunities through peer collaboration.

Other Questions
When one pair of electrons is shared between two atoms, a ______ bond is formed. Which of these was not a result of cell phones?A. Faster communicationsB. The invention of textingc. The World Wide WebD. Improved personal safety Write me some pseudocode for one pass of the Selection Sort algorithm through random values stored in an Unordered-List, or Linked-List, of values (rather than a standard "Python" List). How would you implement a swap using a Linked-List? What is the minimum number of variables required? why did belgium join world war 1 Atherosclerosis is characterized by the buildup of arterial plaque. When plaque first begins to form A steel mill raises the price of steel by 7% which results in a 20% reduction in the quantity of steel demanded. The demand curve facing the firm is ? 2 PointsWhat is a hominid?O A. Any ancestor of humansO B. Any bipedal animalO C. Any species formed by evolutionO D. Any bipedal primateSUBMIT Muscle cells in your arm are not able to conduct nerve impulses. It is the job of neurons to conduct nerve impulses. This is an example of: 6Create two sets of data with the following characteristics. Each data set has 5 values.The mean of set 1 is greater than the mean of set 2.The MAD of set 1 is less than the MAD of set 2. The painting Guernica by Pablo Picasso shows ___ without fluid friction, all objects accelerate at? What is 23 x 3/5?? I dont get it at all please help!! The nurse is discussing acne vulgaris with a group of adolescents. The teenagers make the following statements regarding the topic. Which statement is the most accurate regarding acne vulgaris?a) "Sometimes I get acne when I use my sister's makeup."b) "There is a new immunization that you can get to keep from having acne."c) "My mom says I have acne because I eat too much chocolate."d) "My next door neighbor told me that acne was caused by a fungus." two major pieces of information can be determined from analyzing a karyotype of an unborn child Verse-chorus form:a. is rarely used in popular music, since it is almost exclusively identified with classical music styles b. is one of the most popular musical forms in many culturesc. is a cyclic form used in Balinese gamelan musicd. is especially prominent in BaMbuti elephant hunting songs In the text, the author describes how Europeans brought Africans to America to work on crops. Why do you think this was a strong motivation for slavery? What power did this provide Europeans? How did they allow this power to further corrupt them? The is From Africa to America Each payment covers the interest expense plus reduces principal. Consider a 4 year loan with annual payments. The interest rate is 8%, and the principal amount is $4969. What is the annual payment? (in dollars) The president of a college has been told that when they raised their tuition by 15 percent the previous year, total revenue from tuition remained unchanged. Assuming the change in revenue is due to the change in tuition only, the president could conclude that demand for that college, over that tuition range, must be: Convert 7.50 grams of glucose C6H12O6 to moles Many students tend to develop illnesses in the days before final exams. A psychologist who notes that students become stressed as well during this time may attempt to claim that the reason for the increase in student illness is that __________. stress causes college students to make bad decisions during stressful times research has found that stress may improve immune functioning college students naturally become ill easier than other individuals research has found that stress can suppress immune functioning