The Fibonacci sequence begins with O and then 1 follows. All subsequent values are the sum of the previous two, for example: 0,1,1,2,3, 5, 8, 13. Complete the fibonacci0 method, which has an index. N as parameter and returns the nth value in the sequence. Any negative index values should retum-1 Ex: If the input is 7 the output is fibonacci (7) is 13 Note: Use a for loop and DO NOT Use recursion LAR ACTIVITY 6. 31. 1LAB Fibonacci sequence (EC) 0/10 FibonacciSequence. Java Load default template 2 he has hace sequence public intonaccint) /" Type your code here. 13 public static void main(string) Scanners Scanner(Systein Phone Sequence progresibonaccigence) Int start starts System. Out. Println("Pomacek. Start. ) program. Ibonace(start) 14 1

Answers

Answer 1

Here is the completed Fibonacci method:
public int fibonacci(int n) {
  if (n < 0) {
     return -1; // return -1 for negative index values
  }
  int first = 0;
  int second = 1;
  for (int i = 0; i < n; i++) {
     int temp = second;
     second = first + second;
     first = temp;
  }
  return first; // return the nth value in the sequence
}


In this method, we first check if the index value is negative. If it is, we return -1 as specified in the prompt. Otherwise, we initialize the first and second values of the sequence to 0 and 1 respectively. Then, we use a for loop to iterate through the sequence up to the nth value specified by the index. In each iteration, we calculate the next value in the sequence by adding the previous two values together. Finally, we return the nth value in the sequence, which is the value of the "first" variable at the end of the loop.

Learn more about Fibonacci; https://brainly.com/question/18369914

#SPJ11


Related Questions

PLEASE HELP
Which of the following will result in the answer to 12 divided by 2?
A-print(12/2)
B-print(12*2)
C-print 12/2
D-print 12./.2

Answers

Answer:

Explanation:

B,D are not correct

You are working as a project manager. One of the web developers regularly creates dynamic pages with a half dozen parameters. Another developer regularly complains that this will harm the project’s search rankings. How would you handle this dispute?

Answers

From the planning stage up to the deployment of such initiatives live online, web project managers oversee their creation.They oversee teams that build websites, work with stakeholders to determine the scope of web-based projects, and produce project status report.

What techniques are used to raise search rankings?

If you follow these suggestions, your website will become more search engine optimized and will rank better in search engine results (SEO).Publish Knowledgeable, Useful Content.Update Your Content Frequently.facts about facts.possess a link-worthy website.Use alt tags.Workplace Conflict Resolution Techniques.Talk about it with the other person.Pay more attention to events and behavior than to individuals.Take note of everything.Determine the points of agreement and disagreement.Prioritize the problem areas first.Make a plan to resolve each issue.Put your plan into action and profit from your victory.Project managers are in charge of overseeing the planning, execution, monitoring, control, and closure of projects.They are accountable for the project's overall scope, team and resources, budget, and success or failure at the end of the process.Due to the agility of the Agile methodology, projects are broken into cycles or sprints.This enables development leads to design challenging launches by dividing various project life cycle stages while taking on a significant quantity of additional labor.We can use CSS to change the page's background color each time a user clicks a button.Using JavaScript, we can ask the user for their name, and the website will then dynamically display it.A dynamic list page: This page functions as a menu from which users can access the product pages and presents a list of all your products.It appears as "Collection Name" in your website's Pages section.

        To learn more about search rankings. refer

        https://brainly.com/question/14024902  

         #SPJ1

a. What is MS-Word ? Write its uses.

Answers

Answer:

MS word is Microsoft word and you can use MS Word in daily life and business to create professional-looking documents such as resume, letters, applications, forms, brochures, templates, business cards, calendars, reports, eBooks, and newsletters in speed with high quality.

Explanation:

Answer:

MS-Word is the popular word processor developed by Microsoft corporation, USA which allows us to create documents like notes, letters, memos, reports, etc.

uses of Ms - word are:-it helps us to prepare a document in nepali language.It provides many facilities to format a document .it helps to create documents.it is helpful in inserting tables, pictures and charts in a document .

hope it is helpful to you ☺️

How to fix error: error:0308010c:digital envelope routines::unsupported

Answers

Fix Take away any external gadgets, reinstall the drivers, To fix, use the Windows Update Troubleshooter. Delete any third-party software, Repair, the disk, and Deactivate network adapters.

What does a computer driver do?

A driver is essentially a piece of software that enables communication between an operating system as well as a device.

What do psychologists mean by drivers?

Drivers are signals from our parents that we integrate as dysfunctional problem-solving techniques when we are still young. In order to reestablish our equilibrium when we feel questioned about our fundamental OK-ness, we engage them. However, the consequence might have short-term or long-term negative effects.

To know more about drivers visit:

https://brainly.com/question/29851057

#SPJ1

True/False: the original development goals for unix were twofold: to develop an operating system that would support software development, and to keep its algorithms as simple as possible.

Answers

False. The original development goals for Unix were not twofold but rather threefold:

To provide a convenient and efficient operating system for software development.To allow easy portability of the operating system across different hardware platforms.To keep the design and implementation of the system as simple and elegant as possible.The simplicity and elegance of Unix's design were seen as important goals by its creators, Ken Thompson and Dennis Ritchie. They aimed to create a modular and flexible operating system that could be easily understood, extended, and maintained. This emphasis on simplicity contributed to Unix's success and its influence on subsequent operating systems.



learn more about development  here :


nly.com/question/28011228



#SPJ11

The following program generates an error. Why? const int NUM_ELEMENTS 5; vector userVals(NUM_ELEMENTS); unsigned int i; user Vals. At (0) user Vals. At(1) 7; user Vals. At (2) 4; for (i = 0; i < NUM_ELEMENTS; ++i) cout << userVals. At(i) << endl; 3 a) Variable i is declared as an unsigned integer. B) The for loop tries to access an index that is out of the vector's valid range.

c) The vector user Vals has 5 elements, but only 3 have values assigned. D) The integer NUM_ELEMENTS is declared as a constant

Answers

The program generates an error because of option C: The vector userVals has 5 elements, but only 3 have values assigned. This means that when the for loop tries to access the elements at index 3 and 4, it will generate an error because those elements have not been assigned a value.

To fix this error, you can either assign values to all 5 elements of the vector before the for loop, or you can change the NUM_ELEMENTS constant to 3 so that the for loop only iterates over the elements that have been assigned values.

Here is the corrected program:

```

const int NUM_ELEMENTS = 3;

vector userVals(NUM_ELEMENTS);

unsigned int i;

userVals.at(0) = 5;

userVals.at(1) = 7;

userVals.at(2) = 4;

for (i = 0; i < NUM_ELEMENTS; ++i) {

cout << userVals.at(i) << endl;

}

```

This program will now run without errors and will output the values 5, 7, and 4.

Learn more about programming:

brainly.com/question/26134656

#SPJ11

Which of these statements is true about text superimposed over a photograph on a
slide?
It should never be done.
It should always be done.
It should have high color contrast.
O It should have low color contrast.

Answers

Answer:

It should have high color contrast.

Can anyone please help me on these two questions it would really help xxx

Can anyone please help me on these two questions it would really help xxx

Answers

Answer: No one can interpret or hack it.

Explanation:

Because there is nothing to hack.

take it from someone who hack their teachers laptop as a dare. It was so easy.

3. What is an event in JavaScript? (1 point)
OA characteristic of an object
An action taken by an object
O An element of a web page
O An action taken by the user

Answers

An  event in JavaScript is see as option A: A characteristic of an object

What is the JavaScript?

A JavaScript event is known to be one that refers to an occurrence triggered by the user or the browser, for instance, pressing a button, hovering over an object, or submitting a form.

Therefore, based on the above, a particular object in the DOM serves as its representation and can be coded to activate certain actions or functions upon its occurrence. Thus, the accurate response is "An activity initiated by the user".

Learn more about JavaScript from

https://brainly.com/question/16698901

#SPJ1

Who is known as the father of computer ?

Answers

Charles Babbage: "The Father of Computing" The calculating engines of English mathematician Charles Babbage (1791-1871) are among the most celebrated icons in the prehistory of computing.

help please! I don’t know how to do this :’).

help please! I dont know how to do this :).

Answers

That is the base code right there though.

Absolute cell adressing

Answers

When copying a formula from one cell to another in Excel, an absolute reference is a cell reference where the column and row coordinates remain constant.

What is excel?

Users of Microsoft Excel may format, arrange, and compute data in a spreadsheet.

Data analysts and other users can make information easier to view as data is added or changed by organising data using software like Excel.

Cell references come in two flavours: absolute and relative. When copied and filled into other cells, relative and absolute references behave in different ways.

A formula's relative references are altered when it is copied to another cell. Contrarily, regardless of where they are duplicated, absolute references hold true.

When a specific cell reference needs to be constant, an absolute cell reference can be used. Formulas, charts, functions, and other instructions frequently use references to cells in their syntax.

Thus, this can be concluded regarding absolute cell addressing.

For more details regarding absolute cell addressing, visit:

https://brainly.com/question/30443246

#SPJ1

How did tribes profit most from cattle drives that passed through their land?
A.
by successfully collecting taxes from every drover who used their lands
B.
by buying cattle from ranchers to keep for themselves
C.
by selling cattle that would be taken to Texas ranches
D.
by leasing grazing land to ranchers and drovers from Texas

Answers

The way that the tribes profit most from cattle drives that passed through their land is option D. By leasing grazing land to ranchers and drovers from Texas.

How did Native Americans gain from the long cattle drives?

When Oklahoma became a state in 1907, the reservation system there was essentially abolished. In Indian Territory, cattle were and are the dominant economic driver.

Tolls on moving livestock, exporting their own animals, and leasing their territory for grazing were all sources of income for the tribes.

There were several cattle drives between 1867 and 1893. Cattle drives were conducted to supply the demand for beef in the east and to provide the cattlemen with a means of livelihood after the Civil War when the great cities in the northeast lacked livestock.

Lastly, Abolishing Cattle Drives: Soon after the Civil War, it began, and after the railroads reached Texas, it came to an end.

Learn more about cattle drives from

https://brainly.com/question/16118067
#SPJ1

Jenny is preparing a presentation on the health statistics of the 10 most populated countries. She wants to apply a blinking effect to the names
of the countries, and a motion effect between the exit and entry of every slide. Which options should she use?
Jenny should use the
option to apply a special blinking effect to the names of the countries and the
v option to
apply a motion effect between the exit and entry of every slide.

Jenny is preparing a presentation on the health statistics of the 10 most populated countries. She wants

Answers

Answer:

The answer can be defined as follows:

Explanation:

Whenever you need to blink a piece of text in a Powerpoint presentation, then you would need to click the Motion option and key. Upon choosing such a choice, a collection of design, transitions keep popping up. Press more then click mostly on cel animation for Color burst. Your text should wink one other type.  

We need to pick the Transition tab for both the movement effect between both the exit and the entry within each slide. They could choose one of the transition slide accessible.

Answer:

1. ANIMATION

2.TRANSITION

Explanation:

just took the test :)

At a transmitting device, the data-encapsulation method works like this:

Answers

Data encapsulation is a process used in computer networking to wrap data in a particular format or protocol, so it can be transmitted over the network.

A transmitting device, the data encapsulation process typically involves the following steps:

Application Layer:

The data is generated by the application layer of the OSI model, such as a web browser, email client, or any other application.

Presentation Layer:

The presentation layer of the OSI model prepares the data for transmission.

This may involve data compression, encryption, or other data formatting techniques.

Session Layer:

The session layer establishes a connection between the transmitting and receiving devices, enabling them to communicate with each other.

Transport Layer:

The transport layer of the OSI model breaks the data into smaller packets or segments, adds sequence numbers and error-checking information, and ensures that the data is transmitted reliably.

Network Layer:

The network layer adds the source and destination IP addresses to the packet, and routes the packet through the network.

Data Link Layer:

The data link layer of the OSI model adds MAC addresses to the packet, and divides the packet into frames.

Physical Layer:

The physical layer converts the frames into a stream of bits and transmits them over the network medium, such as copper wires, fiber optic cables, or wireless signals.

The data has been encapsulated and transmitted, it is received by the destination device and undergoes a similar process of de-encapsulation, where each layer removes its own header and trailers, and passes the data up to the next layer, until it reaches the application layer at the receiving device.

For similar questions on Encapsulation

https://brainly.com/question/29036367

#SPJ11

What is contained in the trailer of a data-link frame?

Answers

Answer:

Trailer: It contains the error detection and error correction bits. It is also called a Frame Check Sequence (FCS).

Explanation:

In the context of data-link frames, the trailer is the final part of the frame structure. It typically contains two important components:

Frame Check Sequence (FCS): The FCS is a field in the trailer that is used for error detection. It is a checksum or a cyclic redundancy check (CRC) value calculated based on the contents of the entire frame, including the header, data, and sometimes the trailer itself.

End Delimiter: The end delimiter is a specific bit pattern or sequence of bits that marks the end of the frame. It helps the receiving device recognize the end of the frame and differentiate it from subsequent frames.

Thus, the trailer, along with the header and data, forms a complete data-link frame. It is used for reliable transmission of data across a network by incorporating error detection mechanisms and frame boundaries.

For more details regarding data-link frames, visit:

https://brainly.com/question/31497826

#SPJ6

If I bought mine craft p.e. for 7.99 and hook my Micro soft account up, will i get java edition

Answers

no, they are two diff things

Go to the Adela Condos worksheet. Michael wants to analyze the rentals of each suite in the Adela Condos. Create a chart illustrating this information as follows: Insert a 2-D Pie chart based on the data in the ranges A15:A19 and N15:N19. Use Adela Condos 2019 Revenue as the chart title. Resize and reposition the 2-D pie chart so that the upper-left corneçuis located within cell A22 and the lower-right corner is located within chil G39.

Answers

The purpose of creating the 2-D Pie chart is to visually analyze the revenue distribution of each suite in the Adela Condos, providing insights into rental performance and aiding in decision-making and strategic planning.

What is the purpose of creating a 2-D Pie chart based on the Adela Condos rental data?

The given instructions suggest creating a chart to analyze the rentals of each suite in the Adela Condos. Specifically, a 2-D Pie chart is to be inserted based on the data in the ranges A15:A19 and N15:N19.

The chart is titled "Adela Condos 2019 Revenue." To complete this task, you will need to resize and reposition the 2-D pie chart. The upper-left corner of the chart should be within cell A22, and the lower-right corner should be within cell G39.

By following these instructions, you can visually represent the revenue distribution of the Adela Condos rentals in 2019. The 2-D Pie chart will provide a clear representation of the proportions and relative contributions of each suite to the overall revenue.

This chart will be a useful tool for Michael to analyze and understand the revenue patterns within the Adela Condos, allowing for better decision-making and strategic planning based on rental performance.

Learn more about Pie chart

brainly.com/question/9979761

#SPJ11

Which of the following is the best way to determine the correct workplace for a new designer?

(A) Job fairs

(B) Interships

(C) College classes

(D) Graduate school

Answers

Answer:

b

Explanation:

Kerry is debugging a program. She identifies a line of code to begin execution and a line of code to end execution so that she is only running part of the computer program. Which is she using?
a.variable inspections
b.breakpoints
c.stepping functions
d.line-by-line search

Answers

Answer:

I think it's B on Edge, breakpoints

Explanation:

Answer:

B

Explanation:

How many bits strings of length 12 contain (8 pts)? a. exactly three 1s? b. at most three 1s? c. at least three 1s? d. an equal number of 0s and 1s?

Answers

1. Exactly three 1 s?

\($$\left(\begin{array}{c}12 \\3\end{array}\right)=220$$\)

2. At most three\($1 \mathrm{~s}$\) ?

\($$\left(\begin{array}{c}12 \\0\end{array}\right)+\left(\begin{array}{c}12 \\1\end{array}\right)+\left(\begin{array}{c}12 \\2\end{array}\right)+\left(\begin{array}{c}12 \\3\end{array}\right)=1+12+66+220=299 \text {. }$$\)

3. At least three 1 s?

Take a shortcut by using the previous answer:\($2^{12}-66-12-1=4017$\)

4. An equal number of\($0 \mathrm{~s}$\) and \($1 \mathrm{~s}$\) ?

\($$\left(\begin{array}{c}12 \\6\end{array}\right)=924$$\)

What is strings ?

The C programming language includes a set of functions executing operations on strings in its standard library. Different operations, such as copying, concatenation, tokenization, and searching are supported.

In C programming, a string exists as a sequence of characters terminated with a null character \0. For example char c[] = "c string"; When the compiler discovers a sequence of characters enclosed in the double quotation marks, it appends a null character \0 at the end by default. The C language does not have a distinctive "String" data type, the way some other languages such as C++ and Java do. Instead, C stores strings of characters as arrays of chars, completed by a null byte.

1. Exactly three 1 s?

\($$\left(\begin{array}{c}12 \\3\end{array}\right)=220$$\)

2. At most three\($1 \mathrm{~s}$\) ?

\($$\left(\begin{array}{c}12 \\0\end{array}\right)+\left(\begin{array}{c}12 \\1\end{array}\right)+\left(\begin{array}{c}12 \\2\end{array}\right)+\left(\begin{array}{c}12 \\3\end{array}\right)=1+12+66+220=299 \text {. }$$\)

3. At least three 1 s?

Take a shortcut by using the previous answer:\($2^{12}-66-12-1=4017$\)

4. An equal number of\($0 \mathrm{~s}$\) and \($1 \mathrm{~s}$\) ?

\($$\left(\begin{array}{c}12 \\6\end{array}\right)=924$$\)

To learn more about strings refer to:

https://brainly.com/question/27251062

#SPJ4

which format is best for photos?
JPEG
DOC
GIF
Wav

Answers

JPEG from the ones you listed because it would have best quality for images and the most universal compatibility throughout devices. WAV is for audio, GIF is a small animated image which you often use on social media. DOC is for documents as the name suggests.
JPEG, it is the only image file format. DOC is for documents, GIF is for animated images (or sometimes videos without audio), and Wav is sound files.

I need help ASAP
(What is done when Python compiles your program?)
It is converted into octal numbers.
It is converted into bytemap.
It is converted into hexadecimal.
It is converted into bytecode.

Answers

Answer:

It is converted into bytecode.

The answer would be letter d.bytecode

What does a driver do?

Answers

A driver is a piece of software that allows things such as a keyboard, mouse, hard drive, etc. connect to a computer. Normally found on the manufactures website, you can update drivers with advanced and modern technology. Or, if a device is really old you can download a driver to allow that device to connect to a PC.

45 points pls help


_______ refers to achieving synchronization of similar elements in a design.

45 points pls help_______ refers to achieving synchronization of similar elements in a design.

Answers

Harmony

Explanation:

Harmony is the unity of all the visual elements in a composition. It is often achieved through the use of repetition and simplicity. A principle of design that refers to a way of combining elements in involved ways to achieve intricate and complex relationships.

hope it helps you...

Design a 4-to-16-line decoder with enable using five 2-to-4-line decoder.

Answers

a 4-to-16-line decoder with enable can be constructed by combining five 2-to-4-line decoders. This cascading arrangement allows for the decoding of binary inputs into a corresponding output signal, controlled by the enable line. The circuit diagram illustrates the configuration of this decoder setup.

A 4-to-16-line decoder with enable can be created using five 2-to-4-line decoders. A 2-to-4-line decoder is a combinational circuit that transforms a binary input into a signal on one of four output lines.

The output lines are active when the input line corresponds to the binary code that is equivalent to the output line number. The enable line of the 4-to-16-line decoder is used to control the output signal. When the enable line is high, the output signal is produced, and when it is low, the output signal is not produced.

A 4-to-16-line decoder can be created by taking five 2-to-4-line decoders and cascading them as shown below:

Begin by using four of the 2-to-4-line decoders to create an 8-to-16-line decoder. This is done by cascading the outputs of two 2-to-4-line decoders to create one of the four outputs of the 8-to-16-line decoder.Use the fifth 2-to-4-line decoder to decode the two most significant bits (MSBs) of the binary input to determine which of the four outputs of the 8-to-16-line decoder is active.Finally, use an AND gate to combine the output of the fifth 2-to-4-line decoder with the enable line to control the output signal.

The circuit diagram of the 4-to-16-line decoder with enable using five 2-to-4-line decoders is shown below: Figure: 4-to-16-line decoder with enable using five 2-to-4-line decoders

Learn more about line decoder: brainly.com/question/29491706

#SPJ11

What does

mean in computer science

Answers

Answer:

i think the answer is a character or characters that determine the action that is to be performed or considered.

Explanation:

hope this helps

Which of the following candidates would most likely be hired as a graphic artist?
o a visual design artist with seven years of experience in advertising
a multimedia artist with five years of experience in multimedia design
O a recent college graduate with a degree in multimedia design
O a recent college graduate with a degree in film design

Answers

Answer:

a multimedia artist with five years of experience in multimedia design

Explanation:

Complete this program, prompting the user to to enter two positive numbers a and b so that a is less than b. 2. . TwoNumbers. Java 1 import java. Util. Scanner; 2 3 public class TwoNumbers 4 { 5 public static void main(String[] args) 6 { 7 Scanner in = new Scanner(System. In); 8 9. // Keep prompting the user until the input is correct 10 11 System. Out. Println( 12 "Enter two positive integers, the first smaller than the second. "); 13 System. Out. Print ("First: "); 14 int a = in. NextInt(); 15 System. Out. Print("Second: "); 16 int b = in. NextInt(); 17 18 // Only print this when the input is correct 19 20 System. Out. Println("You entered " + a + } and " + b); 21 }

22 }

Answers

The answer is - 22 }

What is program
Programming is the process of creating instructions for a computer to execute. It involves writing code using a programming language, such as Java, C++ or Python, which the computer can understand and use to perform tasks. A programmer designs, tests and debugs the code to make sure it will work correctly, and then deploys it. Programming is the foundation of modern computing and the basis for many applications that people use on a daily basis, from web browsers to video games. It is a creative and technically challenging activity that requires problem-solving and critical thinking.

To know more about program
https://brainly.com/question/11023419
#SPJ4

What are congruent triangle

Answers

Answer:

When two triangles are congruent they will have exactly the same three sides and exactly the same three angles. The equal sides and angles may not be in the same position (if there is a turn or a flip), but they are there.

Other Questions
a negative correlation coefficient means group of answer choices there is a direct relationship. as one variable increases, the other also increases or becomes larger. as one variable tends to increase or become larger, the other decreases or becomes smaller. nothing, a mistake has been made. there is no relationship between two variables. 2 Poverty Traps [ 30 points] For this question, please read the paper "Why do People Stay Poor?" by Clare Balboni, Oriana Bandiera, Robin Burgess, Maitreesh Ghatak, and Anton Heil. You need to take a detailed look at the introduction and the figures and tables in the paper. The paper studies an NGO program that transfers large assets (cows) to the poorest women in villages located in the poorest districts of Bangladesh. The structural model of occupational choice is beyond the scope of the course so you don't need to worry about it. 1. Panel A of Figure 1 plots the distribution of assets in treated and control villages before implementing the program. The authors claim that as this distribution is bimodal, it suggests there is evidence of poverty traps. Based on the discussion in class about the existence of poverty traps, why would this be the case? Hint: Panel B of Figure 3 provides a similar example of the S-shaped capacity curve. [5 points] 2. Panel B of Figure 1 shows the distribution of assets immediately after receiving the transfers of cows. The authors claim that this allows them to study poverty traps as some households move out of the low steady-state. Based on the lecture and the transition of assets over time, why would this be the case? Hint: under a poverty trap, why some households would be able to move to the high mode of the distribution of assets in the long run if their new level of assets is above a specific threshold? [5 points] 3. The authors estimate the relationship between assets in 2011 and assets immediately after the transfer in 2017 using a non-parametric regression in Figure 4. (a) What is the dashed, green line in Figure 4? Why does it matter to find evidence of a poverty trap? [2 points] (b) Explain in words what is a non-parametric regression. [2 points] (c) What can you infer about the functional form of the transition of assets between 2007 and 2011? [2 points] (d) What is the slope of the transition equation of assets at 2.333 ? Why would this be evidence of poverty traps? [2 points] 4. For the estimation in Figure 4, the authors only use the villages where households receive the transfers. Why it might be problematic to use this variation to estimate the transition equation? Hint: Think about the non-parametric estimation between calories and household expenditure in Deaton and Dreze. [5 points] 5. Figure 6 compares the change in productive assets between 2007 and 2011 for households below and above the threshold. The left panel presents the difference in treated villages. The right panel presents the estimates in control villages. In this latter case, the x-axis is what would have been the level of assets in case these households had received the transfer. (a) Why does the comparison across treatment and control villages solve some of the concerns in question 4 ? [3 points] (b) What happens to the change in assets when households cross the threshold in treated villages? what happens in control villages? [2 points] (c) Is this supportive evidence of poverty traps? why? the two subatomic particles in the nucleus of the atom are the ________ and the _______ which are collectively called _____ because they are in the nucleus of the atom A freshly brewed cup of coffee has temperature 95C in a 20Croom. When its temperature is 77C, it is cooling at a rate of 1Cper minute. After how many minutes does this occur? (Round yourans which statement best summarizes the origins of world war II?answers: A) Popular outrage following World War I and made worse by the Great Depression empowered authoritarian leaders around the world to become more aggressive.B) The rise of the Soviet Union and the threat of international communism led countries to build up huge militaries to defend themselves from Soviet Aggression.C) The end of appeasement policies resulted in growing tensions between European and Asian powers that disagreed about foreign policy issues.D) Economic growth following the Great Depression fueled nationalist movements that disrupted traditional alliances and created heated rivalries in Europe and Asia.(History isn't my best subject lol) WEL!At what rate per cent per annum will $400 yield an interest of $78 in 1/2years?Your answer Which of the following is NOT true of revolutions?Revolutions have had successes and failures.Only short term factors cause revolutionary activity.Revolutions usually take place when reforms have failed.Revolutionaries are driven by ideology, such as nationalism or communism. PLEASE SOMEONE HELP IM TIMED What is 3.71 as a fraction? it is difficult to press the football in water why? Draw the Lewis structure for PCl6- and then answer the questions that follow. Do not include overall ion charges or formal charges in your drawing. What is the electron-pair geometry for P in PCl6- ? c What is the the shape (molecular geometry) of PCl6-? Clark's Landscaping bills customers subject to terms 3 / 10, n / 50. Required:(b) If his bank charges 15 percent interest, should the customer borrow from the bank so that he can take advantage of the discount? Explain your recommendation. What age should you be allowed to vote? most of the associations between personality type and disease can be attributed to How large will Canada's GDP be 25 years from now? The answer depends on what the rate of growth in GDP will be over that 25-year period. A mathematical formula we can use for this calculation is the following: GDP= GDP (1+9) where GDP is the level of GDP in the year 2043, GDPous is the level of GDP in the year 2018, and g is the rate of growth in GDP Assume that GDP in 2018 is $1,000 million and assume that the value of g is 0.035 (3.5 percent per year). What will be the value of GDP in 2043? O $2,855 million O $2,666 million O $2,525 million. O $2,363 million Now suppose that the value of g is 0.040 (4.0 percent per year). What will be the value of GDP in 2043 given this slightly larger rate of growth? $2,666 million $2,525 million O$2,855 million O $2.363 million tabla performers learn how to play their instrument by learning drum stroke names referred to as can anybody please please help me with a essay?3rd Short Paper AssignmentSpace and time are ontologically peculiar entities. On the one hand, they seem to be at the forefront of our experience. On the other hand, they seem to be merely relations between objects. Thus, the ontological status of space and time is a controversial issue that philosophers have been grappling with for centuries.Empiricists claim that all of our knowledge begins with experience. They emphasize the limited role of reason in our everyday lives. Thus, feelings and instincts take over and philosophical doubts seem prevalent.If you were an empiricist, then how would you go about explaining space and time? I would like you to adopt this position of empiricism and provide an account of space and time itself. Please refrain from using any outside material here. I would like original thoughts about this issue. Although this topic has been discussed in many of the (hard) sciences, I would like you to provide a philosophical position. Justin buys a bag of cookies that contains 7 chocolate chip cookies, 9 peanut butter cookies, 8 sugarcookies and 8 oatmeal cookies. What is the probability that Justin randomly selects a peanut buttercookie from the bag, eats it, then randomly selects an oatmeal cookie? Express you answer as areduced fraction. Dona found that she had 7 almonds left over after filling a number of bags with 25 almonds each. She let b represent the number of bags and wrote an expression to represent the total number of almonds. She found that b = 20 and then substituted to find the total number of almonds.Which statements should be part of Donas solution? Check all that apply. Is this a function? WHAT IS THE ACTUAL SALES