how much electricity is in the human brain? ​

Answers

Answer 1

Answer:

On average, at any given moment, your brain's electricity is outputting roughly 0.085 Watts of power.

Explanation:

Answer 2

Answer:

roughly 0.085 Watts of power.

Explanation:


Related Questions

how do we calculate binary numbers??​

Answers

take the number then divide it by 2 keep dividing the number by 2 untill you get 0 then write the remainders in reverse order

example

we will find the number 12

divide 12 by 2 we get 6 with a remainder of 0

now we divide 6 by 2 we get 3 with a reminder of 0

next we divide 3 by 2 we get 1.5 with a remainder of 1

because we got 1.5 we round down so 1

next we divide 1 by 2 and get -0.5 with a remainder of

1

so the answer is

1100

hope this helps scav

Information censorship is used to____. (4 options)
1. Promote Authorization Government
2. Polarize the Public
3. Create Confusion
4. Promote Independent Media

Answers

Information censorship is used to control the flow of information and restrict access to certain content.

While the specific motives and methods behind information censorship can vary, it generally serves to exert authority and influence over the dissemination of information within a society.

Option 1: Promote Authorization Government - This option suggests that information censorship is used to support authoritarian or autocratic regimes by controlling the narrative and limiting dissenting viewpoints. Censorship can be employed as a means of consolidating power and suppressing opposition.

Option 2: Polarize the Public - Censorship can be used to manipulate public opinion by selectively suppressing or amplifying certain information, thereby influencing people's perspectives and potentially creating divisions within society.

Option 3: Create Confusion - Censorship can contribute to confusion by limiting access to accurate and reliable information. This can lead to a lack of transparency, misinformation, and the distortion of facts, making it challenging for individuals to form informed opinions.

Option 4: Promote Independent Media - This option is not typically associated with information censorship. Rather, independent media thrives in an environment that upholds freedom of speech and opposes censorship.

Overall, options 1, 2, and 3 align more closely with the potential outcomes of information censorship, while option 4 contradicts the nature and purpose of censorship.

For more questions on Information censorship

https://brainly.com/question/29828735

#SPJ8

Question 1 of 10 Which two scenarios are most likely to be the result of algorithmic bias? A. A person is rejected for a loan because they don't have enough money in their bank accounts. B. Algorithms that screen patients for heart problems automatically adjust points for risk based on race. C. The résumé of a female candidate who is qualified for a job is scored lower than the résumés of her male counterparts. D. A student fails a class because they didn't turn in their assignments on time and scored low on tests. ​

Answers

Machine learning bias, also known as algorithm bias or artificial intelligence bias, is a phenomenon that happens when an algorithm generates results that are systematically biased as a result of false assumptions made during the machine learning process.

What is machine learning bias (AI bias)?Artificial intelligence (AI) has several subfields, including machine learning. Machine learning relies on the caliber, objectivity, and quantity of training data. The adage "garbage in, garbage out" is often used in computer science to convey the idea that the quality of the input determines the quality of the output. Faulty, poor, or incomplete data will lead to inaccurate predictions.Most often, issues brought on by those who create and/or train machine learning systems are the source of bias in this field. These people may develop algorithms that reflect unintentional cognitive biases or actual prejudices. Alternately, the people could introduce biases by training and/or validating the machine learning systems using incomplete, inaccurate, or biased data sets.Stereotyping, bandwagon effect, priming, selective perception, and confirmation bias are examples of cognitive biases that can unintentionally affect algorithms.

To Learn more about Machine learning bias refer to:

https://brainly.com/question/27166721

#SPJ9

Do you think the divide will fade in time. Write your opinion.

Answers

Hello. Your question is incomplete and without context, which makes it impossible for it to be satisfactory and satisfactory. However, I will try to help you in the best possible way.

For you to have an opinion on whether the division may disappear over time, you must analyze the composition of that division and how it was created, based on this analysis, you can reflect on whether the composition of the division in the environment in which it is located is likely to be temporary, or if it is impossible to determine the period of time for which it will remain active.

What is the difference between copy- paste and cut-paste​

Answers

Answer:

Copy/ Paste - In the case of Copy/paste, the text you have copied will appear on both the locations i.e the source from where you copied the text and the target where you have pasted the text.

Cut/paste- In the case of Copy/paste, the text you have copied will appear on only one location i.e the target where you have pasted the text. The text will get deleted from the original position

what's the component of the hardware?​

Answers

Some component of the hardware are central processing unit (CPU), monitor, mouse, keyboard, computer data storage, graphics card, sound card, speakers and motherboard.

I’m sure theirs more but here’s so. Hope this helps!
Computer hardware includes the physical parts of a computer, such as the case, central processing unit (CPU), monitor, mouse, keyboard, computer data storage, graphics card, sound card, speakers and motherboard. By contrast, software is the set of instructions that can be stored and run by hardware.

We would like the set of points given in the following figure into 1D space. The set of points has been
generated using this instruction [X, y = make_moons(n_samples = 100)], where X are the 2D features
and y are the labels(blue or red).
How to do that while keeping separable data point with linear classification? Give the
mathematics and the full algorithm.
How to apply the SVM algorithm on this data without dimension reduction? Give the
mathematics and full algorithm.

Answers

One way to project the 2D data points onto a 1D space while preserving linear separability is through the use of a linear discriminant analysis (LDA) technique. LDA finds the linear combination of the original features that maximizes the separation between the different classes.

What is the mathematics  in SVM algorithm?

The mathematics behind LDA involve finding the eigenvectors of the within-class scatter matrix and the between-class scatter matrix and selecting the eigenvector that corresponds to the largest eigenvalue. The full algorithm for LDA can be outlined as follows:

Compute the mean vectors for each class

Compute the within-class scatter matrix (SW) and the between-class scatter matrix (SB)Compute the eigenvectors and eigenvalues of the matrix (SW⁻¹SB)Select the eigenvector that corresponds to the largest eigenvalue as the linear discriminantProject the original data onto the new 1D space using the linear discriminant

Regarding the SVM algorithm, it can be applied directly to the original 2D data without the need for dimension reduction. The mathematics behind SVM involve finding the hyperplane that maximizes the margin, or the distance between the closest data points of each class, while also ensuring that the data points are correctly classified.

The full algorithm for SVM can be outlined as follows:

Select a kernel function (e.g. linear, polynomial, radial basis function)Train the model by solving the optimization problem that maximizes the marginUse the trained model to classify new data points by finding the hyperplane that separates the different classesIt is important to note that, in case of non-linearly separable data, SVM algorithm uses the kernel trick to map the original data into a higher dimensional space, where the data is linearly separable.

Learn more about algorithm from

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

Assign decoded_tweet with user_tweet, replacing any occurrence of 'TTYL' with 'talk to you later'.Sample output with input: 'Gotta go. I will TTYL.'Gotta go. I will talk to you later.code given:user_tweet = input()decoded_tweet = ''' Your solution goes here '''print(decoded_tweet)

Answers

Answer:

Here is the Python program:

user_tweet = input()

decoded_tweet = user_tweet.replace('TTYL', 'talk to you later')

print(decoded_tweet)

Explanation:

The program works as follows:

Suppose the input is:    'Gotta go. I will TTYL'

This is stored in user_tweet. So

user_tweet = 'Gotta go. I will TTYL'

The statement: user_tweet.replace('TTYL', 'talk to you later')  uses replace() method which is used to replace a specified string i.e. TTYL with another specified string i.e. talk to you later in the string stored in user_tweet.

The first argument of this method replace() is the string or phrase that is to be replaced and the second argument is the string or phrase that is to replace that specified string in first argument.

So this new string is assigned to decoded_tweet, after replacing 'TTYL' with 'talk to you later' in user_tweet.

So the print statement print(decoded_tweet) displays that new string.

Hence the output is:

Gotta go. I will talk to you later.

Assign decoded_tweet with user_tweet, replacing any occurrence of 'TTYL' with 'talk to you later'.Sample


Which of the following is not a library that is included with Windows 7?

Answers

Answer:

(Option c) Programs is not a default library in Windows 7.

In Windows 7 there are 6 default libraries, i.e. Documents, Saved Pictures, Music, Pictures, Camera Roll, and Videos. The program is not there.

Explanation:

According to the information, Program is not a default library that is included with Windows 7.

What is a library in windows?

Libraries are collections of folders and files on your computer gathered together from various locations across your computer and network (where applicable). Libraries are accessible via the Navigation pane in Windows Explorer.

A  library in a windows computer system is a collection of folders and files which are spread across any personal computer or network in multiple locations. In Windows 7, there are 6 default libraries, i.e. Documents,  Saved Pictures, Music, Pictures, Camera Roll,  and Videos.

Therefore, the program is not a default library that is included with Windows 7.

To learn more about Windows libraries, refer to the link:

https://brainly.com/question/3644865

#SPJ1

Your question seems incomplete. The most probable complete question is as follows:

Which of the following is not a library that is included with Windows 7?

DocumentsMusicProgramsVideos

Zuzana is creating a report for her supervisor about the cost savings associated with cloud computing. Which of the following would she NOT include on her report on the cost savings?
a. Reduction in broadband costs
b. Resiliency
c. Scalability
d. Pay-per-use

Answers

In this question, the answer is  "Resiliency".

It is crucial because it gives people the strength to deal with and overcome difficulties.These people lack resilience and can readily overcome dysfunctional techniques of control. Robust people draw on their strengths and processes to solve difficulties and deal with problems.In contrast, scalability increases cost savings with alternatives such as vertical and horizontal scaling. Costs saved also include reducing the cost of broadband and pay peruse.

Therefore, the answer is "Resiliency" because it involves services which is the cost of the money.  

Learn more:

brainly.com/question/9082230

What is the word to tell excel that you want it to do math

Answers

Are you referring to functions? In a cell you can type "=" and it will allow you to enter a formula to insert math equations involving other cell values.

For the recursive method below, list the base case and the recursive statement, then show your work for solving a call to the recur() method using any parameter value 10 or greater.

public static int recur(int n)
{
if(n < 1)
{
return 3;
}
else
{
return recur(n / 5) + 2;
}
}

For the recursive method below, list the base case and the recursive statement, then show your work for

Answers

Answer:

(a): The base case: if(n<1)

(b): The recursive statement: recur(n / 5)

(c): Parameter 10 returns 7

Explanation:

Given

The above code segment

Solving (a): The base case:

The base case is that, which is used to stop the recursion. i.e. when the condition of the base case is true, the function is stopped.

In the given code, the base case is:

if(n<1)

Solving (b): The recursive statement:

The recursive statement is the statement within the function which calls the function.

In the given code, the recursive statement is:

recur(n / 5)

Solving (c): A call to recur() using 10

The base case is first tested

if (n < 1); This is false because 10 > 1

So, the recursive statement is executed

recur(n/5) +2=> recur(10/5)+2 => recur(2)+2

2 is passed to the function, and it returns 2

if (n < 1); This is false because 2 > 1

So, the recursive statement is executed

recur(n/5) +2=> recur(2/5)+2 => recur(0)+2

2 is passed to the function, and it returns 2

if (n < 1); This is true because 0 < 1

This returns 3

So, the following sum is returned

Returned values = 2 + 2 + 3

Returned values = 7

What is the output for this program?

What is the output for this program?

Answers

Answer:

For me when I ran the code it showed me an error so yeah  ?

Which is NOT a component of a 3-point lighting system?

Answers

Answer:

Explanation:

Three-point lighting is a traditional method for illuminating a subject in a scene with light sources from three distinct positions. The three types of lights are key light, fill light, and backlight.

Key light. This is the primary and brightest light source in the three-point lighting setup. It gives a scene its overall exposure. Cinematographers typically position this main light slightly off to the side of the camera and the front of the subject, on a light stand at a 45-degree angle to the camera, which creates shadows on the opposite side of the subject’s face, giving it dimension and depth. The primary light creates the mood of a scene. Depending upon its position and the supplemental lights used in the overall lighting, it can create a high-key image (evenly, softly lit and atmospherically upbeat) or a low-key image (high contrasts, deep shadows, and very moody).

Fill light: Mirroring the key light on the opposite side of the camera, the fill light literally fills in the shadows that the key light creates on a subject, bringing out details in the darkness. Typically, this secondary light is less bright than the key, and cinematographers control the overall feel of their shots based on how much they dim or lighten the fill light. A dim fill light, where the fill ration is high, creates a high-contrast, film-noir type of shadow, while a brighter light with a lower, more balanced ratio gives the subject a more even look. The second light isn’t always a light: it can be a reflector, a bounce card, a wall, or anything that bounces back some light onto the subject to fill in the shadows. Together with the key light, the fill light determines the mood of a scene.

Backlight: The third source in this lighting technique, the backlight (also known as the “rim light” or “hair light”) shines on a subject from behind, completing the light setup. This creates a rim of light or outline around their head that pushes the subject away from the background and gives a sense of depth. Typically, cinematographers position the backlight directly behind the subject or high enough to be out of frame, opposite the key light, and pointing at the back of the subject’s neck.

Consider the following statements: Statement A: In Duplex transmission, either node can transmit while the other node can receive data Statement B: In half-duplex transmission, both the nodes can transmit as well as receive data at the same time. Which of the following is true with respect to the above statements?

a. Both statements A and B are false
b. Statement A is false and statement B is true
c. Both statements A and B are true
d. Statement A is true and statement B is false

Answers

Answer:

d. Statement A is true and Statement B is false

Explanation:

Indeed, when using duplex transmission either node can transmit while the other node can receive data from the network. Also, in half-duplex transmission, both the nodes can transmit as well as receive data.

However, in half-duplex transmission, the nodes cannot transmit and receive data at the same time. Hence, this makes Statement B false, while Statement A is true.

clicker game creating in code.org (PLEASE HELP FAST!!!)

clicker game creating in code.org (PLEASE HELP FAST!!!)

Answers

Use code.org's visual programming tools to create a clicker game by adding buttons, score tracking, and event handlers.

To create a clicker game in code.org, you can use the visual programming tools available.

Follow these steps:

1) Start by designing the game interface.

Add buttons, labels, and any other elements you want to display.

2) Create a variable to track the score or points in your game.

Initialize it to 0.

3) Add an event handler to the button's click event.

When the button is clicked, increment the score variable by a specific amount.

4) Update the score display to reflect the updated score value.

5) Consider adding a timer or level system to make the game more challenging.

6) Add sound effects or animations to enhance the user experience.

7) Test and debug your game to ensure it functions as intended.

8) Share and enjoy your clicker game with others.

For more such questions on Visual programming:

https://brainly.com/question/29362725

#SPJ11

As of 2007, how many concentrated solar power plants did the United States have?

Answers

Answer:

12,718

Explanation:

Hope this helps! Let me know! :)

If you can photoshop please text me i need help for my digital media class 7862381441

Answers

Answer:

I don't know what that is but what type of work you need help with

have a good day :)

Explanation:

How do I charge my ACDC Halo bolt?

Answers

Answer:

To recharge your HALO Bolt, using the provided AC wall adapter cable, plug the AC adapter tip into the charger's charge input DC 20V/0.6A port. Next, connect the AC adapter into a wall outlet. Your HALO Bolt will automatically begin charging. Charge your HALO Bolt for a full eight hours.

Explanation:

PLEASE HELP! ON TIMER!! 5. Brett assigns each client a rating of A, B, or C depending on the number of days an invoice is overdue. Display this information using a nested IF function as follows: a. In cell I6, insert a formula using an IF function to test whether the days overdue (cell G6) are less than 1 and displays a rating of "A" if the condition is true. b. The next condition uses another IF function to test whether the days overdue (cell G6) are less than 30 and displays a rating of "B" if the condition is true. c. Display a rating of "C" if the conditions are false. Whats the cunction?

Answers

Answer:

b.The next condition uses another IF function to test whether the days overdue (cell G6) are less than 30 and displays a rating of "B" if the condition is true.

Hope this helps....

Explanation:

Excel formulas are expressions used to perform computations.

The Excel formula to enter in cell I6 is = IF(G6 < 1, "A",IF(G6 < 30, "B","C"))

From the question, we have the following conditions

Values in cell G6 less than 1 have a rating of AValues in cell G6 less than 30 have a rating of BOtherwise, the rating is C

So, we have the following Excel conditions:

IF G6 < 1, then AIF G6 < 30, then BElse C

Hence, the formula is:

= IF(G6 < 1, "A",IF(G6 < 30, "B","C"))

Read more about Excel formulas at:

brainly.com/question/1285762

lower cabinet is suitable for storing and stocking pots and pans true or false​

Answers

True.
Make sure cabinet is clean enough to put the pots and pans.

PERGUNTA 1
Um pesquisador deve escolher o seu método de pesquisa:
a. Pelas facilidades em realizar a pesquisa.
b. Pelas experiências de outros pesquisadores.
c. Pelas especificidades do objeto de pesquisa.
d. Pelas regras dos manuais de pesquisa.
e. Por aquilo que for determinado pela instituição a qual está vinculado.

Answers

Answer:

c. Pelas especificidades do objeto de pesquisa.

Explanation:

É o que eu acho e quem achar diferente ta errado

**GIVING ALL POINTS** 4.02 Coding With Loops
I NEED THIS TO BE DONE FOR ME AS I DONT UNDERSTAND HOW TO DO IT. THANK YOU

Output: Your goal

You will complete a program that asks a user to guess a number.


Part 1: Review the Code

Review the code and locate the comments with missing lines (# Fill in missing code). Copy and paste the code into the Python IDLE. Use the IDLE to fill in the missing lines of code.


On the surface this program seems simple. Allow the player to keep guessing until he/she finds the secret number. But stop and think for a moment. You need a loop to keep running until the player gets the right answer.


Some things to think about as you write your loop:


The loop will only run if the comparison is true.

(e.g., 1 < 0 would not run as it is false but 5 != 10 would run as it is true)

What variables will you need to compare?

What comparison operator will you need to use?

# Heading (name, date, and short description) feel free to use multiple lines


def main():


# Initialize variables

numGuesses = 0

userGuess = -1

secretNum = 5


name = input("Hello! What is your name?")


# Fill in the missing LOOP here.

# This loop will need run until the player has guessed the secret number.


userGuess = int(input("Guess a number between 1 and 20: "))


numGuesses = numGuesses + 1


if (userGuess < secretNum):

print("You guessed " + str(userGuess) + ". Too low.")


if (userGuess > secretNum):

print("You guessed " + str(userGuess) + ". Too high.")


# Fill in missing PRINT statement here.

# Print a single message telling the player:

# That he/she guessed the secret number

# What the secret number was

# How many guesses it took


main()

Part 2: Test Your Code

Use the Python IDLE to test the program.

Using comments, type a heading that includes your name, today’s date, and a short description.

Run your program to ensure it is working properly. Fix any errors you observe.

Example of expected output: The output below is an example of the output from the Guess the Number game. Your specific results will vary based on the input you enter.


Output


Your guessed 10. Too high.

Your guessed 1. Too low.

Your guessed 3. Too low.

Good job, Jax! You guessed my number (5) in 3 tries!




When you've completed filling in your program code, save your work by selecting 'Save' in the Python IDLE.


When you submit your assignment, you will attach this Python file separately.


Part 3: Post Mortem Review (PMR)

Using complete sentences, respond to all the questions in the PMR chart.


Review Question Response

What was the purpose of your program?

How could your program be useful in the real world?

What is a problem you ran into, and how did you fix it?

Describe one thing you would do differently the next time you write a program.

Answers

Answer:

import random

from time import sleep as sleep

 

def main():

   # Initialize random seed

   random.seed()

 

   # How many guesses the user has currently used

   guesses = 0

   

   # Declare minimum value to generate

   minNumber = 1

 

   # Declare maximum value to generate

   maxNumber = 20

 

   # Declare wait time variable

   EventWaitTime = 10 # (Seconds)

 

   # Incorrect config check

   if (minNumber > maxNumber or maxNumber < minNumber):

       print("Incorrect config values! minNumber is greater than maxNumber or maxNumber is smaller than minNumber!\nDEBUG INFO:\nminNumber = " + str(minNumber) + "\nmaxNumber = " + str(maxNumber) + "\nExiting in " + str(EventWaitTime) + " seconds...")

       sleep(EventWaitTime)

       exit(0)

 

   # Generate Random Number

   secretNumber = random.randint(minNumber, maxNumber)

 

   # Declare user guess variable

   userGuess = None

 

   # Ask for name and get input

   name = str(input("Hello! What is your name?\n"))

 

   # Run this repeatedly until we want to stop (break)

   while (True):

 

       # Prompt user for input then ensure they put in an integer or something that can be interpreted as an integer

       try:

           userGuess = int(input("Guess a number between " + str(minNumber) + " and " + str(maxNumber) + ": "))

       except ValueError:

           print("ERROR: You didn't input a number! Please input a number!")

           continue

 

       # Increment guesses by 1

       guesses += 1

 

       # Check if number is lower, equal too, or higher

       if (userGuess < secretNumber):

           print("You guessed: " + str(userGuess) + ". Too low.\n")

           continue

       elif (userGuess == secretNumber):

           break

       elif (userGuess > secretNumber):

           print("You guessed: " + str(userGuess) + ". Too high.\n")

           continue

   

   # This only runs when we use the 'break' statement to get out of the infinite true loop. So, print congrats, wait 5 seconds, exit.

   print("Congratulations, " + name + "! You beat the game!\nThe number was: " + str(secretNumber) + ".\nYou beat the game in " + str(guesses) + " guesses!\n\nThink you can do better? Re-open the program!\n(Auto-exiting in 5 seconds)")

   sleep(EventWaitTime)

   exit(0)

 

if __name__ == '__main__':

   main()

Explanation:

Answer:

numGuesses = 0

userGuess = -1

secretNum = 4

name = input("Hello! What is your name?")

while userGuess != secretNum:

  userGuess = int(input("Guess a number between 1 and 20: "))

  numGuesses = numGuesses + 1

  if (userGuess < secretNum):

      print(name + " guessed " + str(userGuess) + ". Too low.")

  if (userGuess > secretNum):

      print( name + " guessed " + str(userGuess) + ". Too high.")

  if(userGuess == secretNum):

     print("You guessed " + str(secretNum)+ ". Correct! "+"It took you " + str(numGuesses)+ " guesses. " + str(secretNum) + " was the right answer.")

Explanation:

Review Question Response

What was the purpose of your program?  The purpose of my program is to make a guessing game.  

How could your program be useful in the real world?   This can be useful in the real world for entertainment.

What is a problem you ran into, and how did you fix it?   At first, I could not get the input to work. After this happened though, I switched to str, and it worked perfectly.

Describe one thing you would do differently the next time you write a program.  I want to take it to the next level, like making froggy, tic tac toe, or connect 4

What happens when QuickBooks Online doesn't find a rule that applies to a transaction?

Answers

QuickBooks employs the Uncategorized Income, Uncategorized Expense, or Uncategorized Asset accounts to hold transactions that it is unable to categorize. These accounts cannot be used to establish bank policies.

What is QuickBooks Online?

A cloud-based financial management tool is QuickBooks Online. By assisting you with things like: Creating quotes and invoices, it is intended to reduce the amount of time you spend handling your company's money. monitoring the cash flow and sales.

While QuickBooks Online is a cloud-based accounting program you access online, QuickBooks Desktop is more conventional accounting software that you download and install on your computer.

QuickBooks is an accounting program created by Intuit whose products offer desktop, internet, and cloud-based accounting programs that can process invoices and business payments. The majority of QuickBooks' customers are medium-sized and small enterprises.

Thus, QuickBooks employs the Uncategorized Income.

For more information about QuickBooks Online, click here:

https://brainly.com/question/20734390

#SPJ1

HELP PLEASE ASAP! I don't know what is wrong with my code, it's suppose to output the same given output. C++ program.

#include //Input/Output Library
#include //Srand
#include //Time to set random number seed
#include //Math Library
#include //Format Library
using namespace std;

//User Libraries

//Global Constants, no Global Variables are allowed
//Math/Physics/Conversions/Higher Dimensions - i.e. PI, e, etc...

//Function Prototypes
void init(int [],int);//Initialize the array
void print(int [],int,int);//Print the array
void revrse(int [],int);;//Reverse the array


//Execution Begins Here!
int main(int argc, char** argv) {
//Set the random number seed
srand(static_cast (time(0)));

//Declare Variables
const int SIZE=50;
int test[SIZE];

//Initialize or input i.e. set variable values
init(test,SIZE);

//Display the outputs
print(test,SIZE,10);

//Reverse the Values
revrse(test,SIZE);

//Display the outputs
print(test,SIZE,10);

//Exit stage right or left!
return 0;
}
void init (int test[],const int x) {
for (int i=0; i >test[i];
}
}
void revrse(int test[],int SIZE){//Reverse the array
int test1[SIZE];
for(int i=0; i test1[i] = test[SIZE-i-1];
}
for(int i=0; i test[i]=test1[i];
}
}

void print (int test[] , int SIZE, int perlin) {
for(int i=0; i cout< if(i%perlin==(perlin-1))
cout< }
}

HELP PLEASE ASAP! I don't know what is wrong with my code, it's suppose to output the same given output.
HELP PLEASE ASAP! I don't know what is wrong with my code, it's suppose to output the same given output.

Answers

The code that is written above is one that  lacks the "iomanip" statement for inclusion. Incorporating it is good in using the setw function for arranging the output.

Once you have rectified the print function, make sure to include the statement cout << endl; after completing the loop so that a fresh line is printed after every line of output.

What is the code about?

The loop condition within the init function should be modified to i < x instead of i > test[i]. To start the array elements, the loop needs to iterate starting from 0 and lastly at x-1.

Note that you neglected to return the inverted elements to their initial arrangement in the source test array. To double the data, place test[i] = test1[i]; within the loop.

Learn more about code from

https://brainly.com/question/26134656

#SPJ1

HELP PLEASE ASAP! I don't know what is wrong with my code, it's suppose to output the same given output.
HELP PLEASE ASAP! I don't know what is wrong with my code, it's suppose to output the same given output.

You are writing an algorithm that will multiply two numbers.
Which step is not needed in your algorithm?
O A. Place the numbers in order from largest to smallest.
© B. Show the product of the two numbers.
O C. Multiply the two numbers.
© D. Find the numbers that are to be used in the math
problem. And do anyone have answer keys for this whole course

Answers

I think it’s A I’m not 100% sure tho

simple explanation of how a satellite works

Answers

Answer:

A satellite is basically a self-contained communications system with the ability to receive signals from Earth and to retransmit those signals back with the use of a transponder —an integrated receiver and transmitter of radio signals.

Explanation:

_____ is the operation of setting a variable to a value.

Answers

Answer:

Assignment is the operation of a variable to a value

Before you buy something you want, you should buy ___ ?

Answers

Answer:

The things you need.

Explanation:

People, today, are immersed in a capitalist and consumerist world that is constantly inducing the individual to acquire goods and services, that is, it transforms the individual into a consumer, being the fundamental link for the functioning of consumer societies .

Now, it is necessary that the individual, as a consumer, interprets his own needs and does not get carried away by the constant and overwhelming advertisements that companies launch on the market. In this way, he can cover his basic needs and then consume products that do not have that primary need.

Answer:

a microwave

Explanation:

what time is it? I NEED TO KNOW
Brainliest for first answer

Answers

Answer:

4:29

Explanation:

Answer:

4:30

Explanation:

Other Questions
in 1997, two south korean manufacturers of semiconductors, lg semicon and hyundai electronics, were accused of selling dynamic random access memory chips (drams) in the u.s. market at below their costs of production. it was alleged that the firms were trying to unload their excess production in the united states. this is an example of: According to sociologists, the smallest group that we can be a member of is called a:________ Protecting company data from hackers is a continuous process. This is a continuous process with numerous actions and processes. Anyone who utilizes their skills to obtain unauthorized access to a system or network in order to commit a crime is considered a hacker.1 (a) Identify ONE type of illegal hackers and describe TWO ways how they can violate computer security for personal gain or malicious intent.1 (b) Name who is the most famous hacker in the world and what he/she has done before. I request some help please Expand each binomial.(2 a+16) the nurse administers an evening medication to the client in the morning. the medication did go to the correct client. what is the nurse's best course of action at this time? multiple choice please help :)At John and Jay's Delicious Cookies test kitchen, engineers want to use materials to make the fastest cooling sheets for cookies after the cookies come out of the oven. The engineers are studying each material's thermalconductivity, or how easily a material can transfer thermal energy in the form of heat. Thermal conductivity ismeasured in Wim-K.Based on the information in the table,Thermal Conductivityof Different Materialswhich material should the engineers use tomake the cooling sheets?A. copperB. bronzeC. ironD. tungsten Consider a perfectly competitive market that is in the long run equilibrium. There is now a fall in the market demand. Illustrate and explain what will happen in the market and for a firm in both Each side of a square painting is 6 feet long. A frame shop charges $2.21 per foot for a metal frame. How much would it cost to buy a frame for the painting? barney and betty got divorced in 2018. in the divorce decree, betty agreed to pay barney $46,600 per year for five years (or until barney's death or remarriage) and $13,600 per year until their daughter, pebbles, turns 19 years old. what amount (if any) is included in barney's gross income in 2022? How has this course helped you develop your mindset to be smarter and even faster on the fireground without taking unnecessary risks that might affect the well-being of members of your community and crew on its municipal website, the city of tulsa states that the rate it charges per ccf of residential water is . how do the residential water rates of other u.s. public utilities compare to tulsa's rate? the file residentialwater contains the rate per ccf of residential water for randomly selected u.s. cities. click on the datafile logo to reference the data. Jan takes her three children and two neighbors children to a matinee.all of the children are under age 13. If necessary to design a new experiment, which of the following best explains why researchers could use measurements of intracellular lactate levels (ILL) in cancer cells to assess efficacy of cancer drugs?a) High ILL would indicate that glycolysis is significantly inhibited.b) Low ILL would indicate that glycolysis is significantly inhibited.c) High ILL would indicate that the pentose phosphate pathway is significantly inhibited.d) Low ILL would indicate that the pentose phosphate pathway is significantly inhibited. For the given functions, find the domains and ranges of f, g, and f+g, and find f.g. f(x) = 4x + 7 , g(x)= 1x-3 Galena's specific gravity is 7.5, that of quartz 2.65, and that of liquid mercury 13.6. Given equal-sized samples (volumes) of galena and quartz, which will feel heavier? Choose one: A. galena B. The same volume of water will feel heavier than both of them. C. They will feel about equal. D. quartz the substance (ch3ch2)2nh is considered to be:ma. a neutral compoundb. a weak basec. a weak acidd. a strong basee. a strong acid Find a degree 3 polynomial whose coefficient of x equal to 1. The zeros of this polynomial are 1.-4i, and 4. Simplify your answer so that it has only real numbers as coefficients. Your answer is The emphasis and themes of deuteronomy have the most similarity with what religious revival? a titration for the determination of chloride ion on 90 ml of water required 19.34 ml of 0.10 m agno3 to reach the endpoint (using k2cro4 as an indicator). what is the molarity of chloride ion in this water sample? enter your answer to three places after the decimal.