Write a loop that fills an array int values[10] with ten random numbers between 1 and 100. Write code for two nested loops that fill values with ten different random numbers between 1 and 100.

Answers

Answer 1

Answer:

#include <iostream>

#include <cstdlib>

using namespace std;

int main() {

   int[] array = new int[10];

   int index = 0;

   while(index < array.size()){

           int number = (rand() % 100) + 1;

           for (int i = 0; i < 1; i++) {

               array[index] = number;

               cout<< "Position "<< index << "of the array = "<< number << endl;

               ++index;

           }

     }

}

Explanation:

The while loop in the source code loops over a set of code ten times, The for loop only loops once to add the generated random number between 1 and 100 to the array of size 10. At the end of the for loop, the index location and the item of the array is printed out on the screen. The random number is generated from the 'rand()' function of the C++ standard library.


Related Questions

. Linux servers are typically stored in a locked server closet to prevent physical access by unauthorized persons. Describe why these physical restrictions are warranted

Answers

Answer:

Following are the solution to this question:

Explanation:

Physical Access to Linux Servers:

Unauthorized staff is denied access to windows server due to various reasonable factors which might damage databases and then all database depends.

Linux distributions handle their servers but it is almost important that they will be protected or hackproof to safeguards their organizations' networks.

Guess if an unwanted staff has access to the server, he/she can be using the device by just placing a simple USB or dragging the information of the database to study it even further. Here that the results stay throughout the possession of even an unauthorized person, whom no organization wants to confront.

Its attacker may also damage that server by installing a virus or any virus mostly on the server. User security can allow unauthorized staff to go on a search and retrieve the database to disc inside the database.

Warranted physical limitations:

All such physical constraints are assured because the company cannot manage a minor error in physical security.

Because conflicts with both the physical limitation will damage its database so much but leave all loopholes free to that same protection of attackers and operators.

Its physical safety guarantee should be maintained by routine server room checks and ensure that every step of safety is undertaken and results are achieved.

What is Gpu in simple terms ​

Answers

Graphic processing unit !!?????!!??!??!?!!?!!?

Answer: Graphics processing unit (GPU)

Explanation: It is a specialized electronic circuit designed to rapidly manipulate and alter memory to accelerate the creation of images in a frame buffer intended for output to a display device. GPUs are used in embedded systems, mobile phones, personal computers, workstations, and game consoles.

A ____________ monitor measures the usage of a cloud-based IT resource by a given cloud consumer for billing purposes.

Answers

Answer:

pay-per-use monitor

Explanation:

The pay-per-use monitor mechanism can be described as a measurement of cloud-based IT resource usage which are in line with already defined pricing parameters and which can generate usage logs which are used for the calculations of accumulated fees calculations and are also used for billing purposes. This service uses models that are subscription based and also consumption based.

Which of the following is true about file formats?

A. Open file formats may be either free or proprietary.

B. Open file formats are always free.

C. Free file formats may be either open or closed.

D. Proprietary files are always closed.

Answers

Answer:

A

Explanation:

The answer is A mate, if you need any help let me know please

A file extension is also known as the file format. The correct option is A, Open file formats may be either free or proprietary.

What is a file format?

A file extension, often known as a file format, is the structure of a file in terms of how the data within the file is arranged on a computer. A file name extension frequently indicates a certain file format as part of a file's name (suffix).

Open formats are also known as free file formats if they are not burdened by any copyrights, patents, trademarks, or other limitations (for example, if they are in the public domain), allowing anybody to use them for any purpose at no monetary cost.

Hence, the correct option is A, Open file formats may be either free or proprietary.

Learn more about File Format:

https://brainly.com/question/21435636

#SPJ2

What property must be set on a menu item to have the user activate that option by pressing Ctrl C on the keyboard

Answers

Answer:

ShortcutKeys

Explanation:

ShortcutKeys is a term used in computing to describe a combination of two or more keys to perform specific actions in a faster way.

Some shortcut keys have been programmed on the operating system of the computer, while a user can also create some through scripting coding.

For example, Ctrl + B is for Bold, while Ctrl + A is for select all.

Hence, to have the user activate the SHORTCUT option by pressing Ctrl C on the keyboard, a SHORTCUTKEYS property must be set on a menu item

In programming languages, ____ is used as a mnemonic representation for the program instruction’s memory address.

Answers

Answer:

Assembly language

Explanation:

Assembly language writes instructions in human letters. Every machine language instruction has a corresponding assembly language instruction that means exactly the same thing. Assembly language uses a symbolic form of a program which are capable of:

- readable by human beings (+/-)

- constants, addresses, and names of symbolic instructions

- arithmetic during assembly - calculations of addresses, constants

- synthetic instructions (not supported by our assembler)

- expansion of macroinstructions (not supported by our

assembler)

- assembly instructions (pseudo-instructions)

• memory allocation

• memory initialization

• conditional assembly (not supported by our assembler)

Use the set A = { a, b, c ,d } to answer the following questions.

What is the cardinality of A?

What is the power set of ℘(A)?

What is the cardinality of the power set?

What is the power set of A = { }

Answers

Answer:

What is the cardinality of A? 4

What is the power set of ℘(A)?

P(A) = {Ф, {a}, {b}, {c}, {d}, {a,b}, {a,c}, {a,d}, {b,c}, {b,d}, {c,d}, {a,b,c}, {a,b,d}, {b,c,d}, {a,c,d},{a,b,c,d}}

What is the cardinality of the power set? 16

What is the power set of A = { }? => {{ }} or {Ф

Explanation:

Given set is:

A = {a,b,c,d}

What is the cardinality of A?

The cardinality of set is the number of elements in the set

Since, set A has four members the cardinality is 4.

i.e.

n(A) = 4

What is the power set of ℘(A)?

The power set of a set consists of all the subsets of a set.

So the power set of A will consist of all subsets of A.

The power set is:

P(A) = {Ф, {a}, {b}, {c}, {d}, {a,b}, {a,c}, {a,d}, {b,c}, {b,d}, {c,d}, {a,b,c}, {a,b,d}, {b,c,d}, {a,c,d},{a,b,c,d}}

What is the cardinality of the power set?

The number of subsets of a set is the cardinality of power set.

As A is 4 members,

Cardinality of Power set of A = 2^4 = 16

What is the power set of A = { }

As A is an empty set, its power set will have only one element (Ф) as member

P(A) = {{ }} or {Ф}

Hence,

What is the cardinality of A? 4

What is the power set of ℘(A)? P(A) = {Ф, {a}, {b}, {c}, {d}, {a,b}, {a,c}, {a,d}, {b,c}, {b,d}, {c,d}, {a,b,c}, {a,b,d}, {b,c,d}, {a,c,d},{a,b,c,d}}

What is the cardinality of the power set? 16

What is the power set of A = { }? => {{ }} or {Ф

Given two integer arrays, largerArray with 4 elements, and smallerArray with 3 elements. What is the result after this code executes?for = 0; i < 45 ++) { LargerArray) = smallerArray(); A. All of the elements of secondArray will get copied to firstArray. B. Error: The two arrays are not the same size. C. All the elements of firstArray will get copied to secondArray D. Some of the elements of firstArray will get copied to secondArray,

Answers

Answer:

A. All of the elements of secondArray will get copied to firstArray.

Explanation:

The correct iteration code is:

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

largerArray[i] = smallerArray[i];

}

From the question, we understand that the largerArray has a size of 4 elements while the smallerArray has a size of 3 elements

Take for instance largerArray is {1,2,3,4} and smallerArray is {5,6,7}

Next, we analyze the loop

1. for(i =0; i<4;++i) {  --->This iterates from index 0 to index 3

2. largerArray[i] = smallerArray[i]; ---- > This assigns the elements of the smallerArray to largerArray.

However, it should be noted that the smallerArray has a maximum index of 2 while the largerArray has a maximum index of 3

The content of largerArray after the iteration will be:

largerArray = {5,6,7,5}

This is so because,

When i = 0

largerArray[0] = smallerArray[0] = 5

When i = 1

largerArray[1] = smallerArray[1] = 6

When i = 2

largerArray[2] = smallerArray[2] = 7

When i = 3

largerArray[3] = smallerArray[0] = 5

Notice that the last iteration refers to smallerArray[0]; this is so because index 3 do not exist in smallerArray. Hence, the index will be returned to the first index of the smallerArray

Taking largerArray as the firstArray and smallerArray as the secondArray.

We can conclude that option A answers the question because all elements in smallerArray is copied to firstArray

Write a loop that sets each vector element to the sum of itself and the next element, except for the last element which stays the same. Be careful not to index beyond the last element. Ex:Initial scores: 10, 20, 30, 40Scores after the loop: 30, 50, 70, 40The first element is 30 or 10 + 20, the second element is 50 or 20 + 30, and the third element is 70 or 30 + 40. The last element remains the same. Sample program:#include #include using namespace std;int main() { const int SCORES_SIZE = 4; vector bonusScores(SCORES_SIZE); int i = 0; bonusScores.at(0) = 10; bonusScores.at(1) = 20; bonusScores.at(2) = 30; bonusScores.at(3) = 40; for (i = 0; i < SCORES_SIZE; ++i) { cout << bonusScores.at(i) << " "; } cout << endl; return 0;}

Answers

Answer:

Add the following lines of code to the already existing code segment

for (i = 0; i < SCORES_SIZE-1; ++i) {

       bonusScores.at(i) = bonusScores.at(i) + bonusScores.at(i+1);

 }

Explanation:

To do the task in the question, we have to iterate through the vector from the first element i.e. element at index 0 to the second to the last element; i.e. element at last index - 1

We then add each element in this iteration with the next.

This iterates through the vector from 0 to SCORES_SIZE - 1

for (i = 0; i < SCORES_SIZE-1; ++i) {

This adds each vector element with the next

       bonusScores.at(i) = bonusScores.at(i) + bonusScores.at(i+1);

 }

The above should be added before

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

       cout << bonusScores.at(i) << " ";

}

Also, I've made other modifications to the program.

Proper import of header filesProper declaration of vector bonusScores

See attachment for complete source code

Categorize the options as belonging to the File menu or View menu,

File Menu

View Menu

Web Layout

Print

Zoom

Navigator

Page Preview

Print Layout

Full Screen

Where do I drag them too ? File menu and view menu

Answers

Answer:

The answer is below

Explanation:

In a Microsoft Office (Microsoft Word) on a Desktop or Laptop computer. The following functions or submenus are under the categorization of these main menus on the Microsoft Word window page:

For FILE MENU, We have the following:

1. Print Layout

2. Full Screen

3. Page Preview

For the VIEW MENU, we have the following:

1. Zoom

2. Print Layout

3. Web Layout

4. Navigator

Answer:

File Menu > Print, Page Preview

View Menu, Full Screen, Navigator, Print Layout, Zoom, Web Layout

Explanation:

HELP ASAP WITHIN 5 MINUTES

Answers

Answer:

A,B, and C

Explanation:

Start making better decisions with the world's leading survey platform. Already have an account? Log in for faster support.

Answers

Answer: ummmm is that a question?!?

Explanation:

Answer:

Mark brainliest please

Using a third-party package of your choice, write a program that reads the contents of a csv file and saves it to an Excel file. The program should take two arguments. The name of the input file and the name of the output file.

Answers

Answer:

import pandas as pd

df = pd.read_csv("file_csv")

df.to_excel("file.xlsx", sheet_name = "name_of_sheet")

# or use: with df.ExcelWriter("file.xlsx", mode='a') as file,

#df.to_excel(file, sheet_name= "sheet name")

Explanation:

This python source code uses the pandas package to read csv (comma separated values) file and converts it to an excel file (xlsx) using the read_csv and ExcelWriter methods respectively.


A suggestion for improving the user
experience for the app navigation, has the
following severity:

Answers

Answer:

Following are the solution to the given question:

Explanation:

One of the most critical components found currently in IT existence is the user interface. Approximately 90 % of people are mobile and electronic equipment dependent.

Thus, software production was the idea that's happening. Thus, a better customer interface is required to boost output in application development. They have to think of it and create an app with consumers or the performance.

Write a public static method named evens that takes in 1 argument int a, and returns a String containing all positive even numbers with each separated by a comma from O up to that number inclusive if it is also even
Remember if the argument is odd not to include it in the output
Remember there should be no trailing comma after the values
If the argument a is negative return a String that says "NONE!
(Do not print the String)
Example evens(5) String returned by method. 0.2.4
Example evens(8) String returned by method. 0.2.4,6,8
Example evens (9) String returned by method 0.246,8
Example evens(-5), String returned by method: NONE
Example evens(O) String retumed by method 0
Example evens(1) String returned by method 0

Answers

public class JavaApplication48 {

   public static String evens(int a){

       String txt = "";

       if (a < 0){

           return "NONE!";

       }

       else if(a%2 == 1){

           a -= 1;

       }

       for (int i = 0; i <= a; i+=2){

           if (i < a){

               txt += i+",";

                       }

           else{

               txt += i;

           }

       }

       return txt;

   }

   public static void main(String[] args) {

       System.out.println(evens(1));

   }

   

}

I hope this helps!

The public static method named evens that takes in 1 argument int a, and returns a String containing all positive even numbers with each separated by a comma is in explanation part.

What is programming?

The process of creating a set of instructions that tells a computer how to perform a task is known as programming.

Here's a possible implementation in Java:

public static String evens(int a) {

   if (a < 0) {

       return "NONE!";

   }

   StringBuilder result = new StringBuilder();

   for (int i = 0; i <= a; i += 2) {

       if (i > 0) {

           result.append(",");

       }

       result.append(i);

   }

   return result.toString();

}

Thus, this method first checks if the argument is negative, and if so, returns the String "NONE!".

For more details regarding programming, visit:

https://brainly.com/question/11023419

#SPJ2

Need help with 4.7 lesson practice

Answers

Answer: Question 1 is A  Question 2 is C

Explanation:

Write code that swaps the first and last elements in a list called my_list. Assume that the list has already been created and contains at least one element.

Answers

my_lst = ([1,2,3,4,5,6])

h = my_lst[0]

my_lst[0] = my_lst[-1]

my_lst[-1] = h

print(my_lst)

The code that swaps the first and last elements in a list called my_list is as follows:

my_list = ["break", 14, 15, "john", "black"]

my_list[0], my_list[-1] = my_list[-1], my_list[0]

print(my_list)

Code explanation:

The code is written in python.

The first code, we declared a variable named my_list. This variable is a list. The list have values of different data type.The second line we have to swap the first value in the list with the last value in the list.Finally, we print our new swapped list .

learn more on python list here: https://brainly.com/question/26104476

) Printers today have many features that include improved quality, photo printing capabilities, digital camera connectivity, built-in flash memory card readers, wireless connectivity, and faster speed. Suppose you are in the market for a new personal printer. Make a list of the most important features needed to meet your needs, and then research printers to identify the best printer for your needs. Be sure to consider both the price of the printer and the price of consumables (such as paper and ink/toner) in your evaluation process. (3 marks)

Answers

Explanation:

Some of the most important features needed in a printer are:

fast printing speedsupport wireless connectivitysupport colored/uncolored printinginclude improved text quality,improved photo printing capabilities

Based on market prices available on the Amazon website, a printer with the above capabilities start at a price range of at least $80.

Java: Programming Question: Reverse OrderWrite a program that reads ten integers into an array; define another array to save those ten numbers in the reverse order. Display the original array and new array. Then define two separate methods to compute the maximum number and minimum number of the array.Sample Run:Please enter 10 numbers: 1 3 5 8 2 -7 6 100 34 20The new array is: 20 34 100 6 -7 2 8 5 3 1The maximum is: 100The minimum is: -7Bonus: Determine how many numbers are above or equal to the average and how many numbers are below the average.

Answers

import java.util.Scanner;

import java.util.Arrays;

public class JavaApplication47 {

   public static void main(String[] args) {

       Scanner scan = new Scanner(System.in);

       System.out.print("Please enter 10 numbers: ");

       String [] nums = scan.nextLine().split(" ");

       int newNums[] = new int [nums.length];

       int w = 0, total = 0, above = 0, below = 0;

       for (int i=(nums.length-1); i>=0;i--){

           newNums[w] = Integer.parseInt(nums[i]);

           w++;

       }

       System.out.println("The old array is: "+Arrays.toString(nums));

       System.out.println("The new array is: "+Arrays.toString(newNums));

       Arrays.sort(newNums);

       System.out.println("The maximum is: "+newNums[9] + "\nThe minimum is: "+newNums[0]);

       for (int i : newNums ){

           total += i;

       }

       total = total / 10;

       for (int i : newNums){

           if (i >= total){

               above += 1;

           }

           else{

               below += 1;

           }

       }

       System.out.println("There are "+above+" numbers above or equal to the average.");

       System.out.println("There are "+below+" numbers below the average.");

   }

   

}

I hope this helps!

Need help with 4.7 lesson practice

Answers

Answer:

1.a

2.sorry cant read it that wekk

3.c

Explanation:

Write a program to output the following quote by Edsger W. Dijkstra:

"Computer Science is no more about computers
than astronomy is about telescopes"
- Edsger W. Dijkstra
Hint: Remember that the escape characters \n and \" can be used to create new lines and quotation marks in your code.

Answers

In python 3.8:

print("\"Computer Science is no more about \ncomputers\nthan astronomy is about telescopes\"\n-Edsger W. Dijkstra")

I hope this helps!

Claire wants to be a digital media coordinator. What requirements does she need to fulfill in order to pursue this career?

To be a digital media coordinator, Claire needs a bachelor’s degree in _______ digital media, or a related field. She also needs to have knowledge of _______ and emerging digital technologies.

1st blank:
psychology
public relations
finance

2nd blank:
computer programming
computer coding
search engine optimization

Answers

Answer:

1. Public Relations

2. Search Engine Optimization

Explanation:

Given that a public relations degree holder can work in various capacities such as Advertising, Media, Event, and Sale promotion position. Hence Claire needs a bachelor’s degree in PUBLIC RELATIONS.

Similarly, given that the knowledge of Search Engine Optimization is crucial in Digital media coordination, as it helps to drive and gain web or online traffic both in quality and quantity.

Hence, Claire also needs to know about Search Engine Optimization.

hai ima guurl andd here r the lyricss to mah favorite song
All I need is a little love in my life
All I need is a little love in the dark
A little but I'm hoping it might kick start
Me and my broken heart
I need a little loving tonight
Hold me so I'm not falling apart
A little but I'm hoping it might kick start
Me and my broken heart
Yeah
Shotgun, aimed at my heart, you got one
Tear me apart in this song
How do we call this love
I tried, to run away but your eyes
Tell me to stay oh why
Why do we call this love
It seems like we've been losing control
So bad it don't mean I'm not alone
When I say
All I need is a little love in my life
All I need is a little love in the dark
A little but I'm hoping it might kick start
Me and my broken heart
I need a little loving tonight
Hold me so I'm not falling apart
A little but I'm hoping it might kick start
Me and my broken heart
Maybe some part of you just hates me
You pick me up and play me
How do we call this love
One time tell me you need me tonight
To make it easy, you lie
And say it's all for love
It seems like we've been losing control
So bad it don't mean I'm not alone
When I say
All I need is a little love in my life
All I need is a little love in the dark
A little but I'm hoping it might kick start
Me and my broken heart
I need a little loving tonight
Hold me so I'm not falling apart
A little but I'm hoping it might kick start
Me and my broken heart
Me and my broken heart
Me and my broken
Yeah, yeah, yeah
It's just me
It's just me
It's just me
Me and my broken heart
All I need is a little love in my life
All I need is a little love in the dark
A little but I'm hoping it might kick start
Me and my broken heart
I need a little loving tonight
Hold me so I'm not falling apart
A little but I'm hoping it might kick start
Me and my broken heart

Answers

Answer:wow that’s a lot of lyrics but intersting

Explanation:

Answer:

that's a cool song

Explanation:

have a great day:)

Given a type Money that is a structured type with two int fields, dollars and cents. Assume that an array named monthlySales with 12 elements, each of type Money has been declared and initialized. Assume that a Money variable yearlySales has also been declared. Write the necessary code that traverses the monthlySales array and adds it all up and stores the resulting total in yearlySales. Be sure make sure that yearlySales ends up with a valid value, i.e. a value of cents that is less than 100.

Answers

Answer:

Attached below is the code

Explanation:

using namespace std;

struct Money

{

int dollars;

int cents;

};

int main()

{

struct Money monthlySales[12];

struct Money yearlySales = { 0,0};

for(inti=0; i<12; i++)

{

monthlySales[i].dollars = 0.0;

monthlySales[i].cents = 0.0;

}

for(int i=0; i<12; i++)

{

yearlySales.dollars = yearlySales.dollars + monthlySales[i].dollars;

yearlySales.cents = yearlySales.cents +monthlySales[i].cents;

}

return 0;

}

Which tab should be selected to add a hyperlink within a cell? Home tab Review tab Insert tab Formula tab

Answers

Answer:

On the Insert tab

Explanation:

You would select the tab that you want the Hyperlink to be inselect the Insert tabThere you will see a panel that says link press the down arrow than you will see a section that says link again there again you will press the down arrow which will show a option of document you want to add if your looking to add a link form a web browser than at the bottom of the list you will see Insert LinkFrom there you will see a box pops up there you can upload a file from your computer or PCOnce the box pops up you will enter the web browser page address in the box that says addressFrom there press okay then your hyperlink will be in the cell you wantIf you don't know where or what a web browser address is than on the top of the web browser where you would insert what you are searching all you have to do is press it and it will automatically highlight the text than copy and paste the text by holding Ctrl + C to copy and holding Ctrl + V to paste

Answer:

insert tab

Explanation:

edge 2020

plsss help me
give two examples of problems that can occur when sytems do not work properly​

Answers

Answer:

Explanation:

1. There can be a run out of something ex. The water cycle we could run out of water if evaporation stops happening

2. Something wont happen ex. In a shoe factory if no one is boxing the shoes the shoes don’t get boxed.

Hope this helps

What is the name of the setting that creates a Green Dashed line and allows you to set angular locks when activation

Answers

Answer:

Polar Tracking

Explanation:

Polar Tracking a term or function in AUTOCAD that is used to identify a point closest to a predetermined angle and define a distance along that angle. This helps creates a line (which is a green dashed line). Thereby enabling a user to set angular locks when or during activation.

Hence, in this case, the correct answer to the question is POLAR TRACKING

A user invokes an app that writes a file. The app displays a progress bar that shows how much of the file has been written. Just as the progress bar reaches 50%, the battery fails and the device crashes. When the user reboots the device, he or she discovers that less than 20% of the file has actually been written. Explain why the app reported writing 50%. Frame your answer in terms of the design of I/O device drivers.

Answers

Answer:

The app reported writing 50% before the battery fails is because while writing, the data is been saved in the secondary memory via a buffer and not directly to the primary memory ( RAM ) and its returned from the secondary memory via the buffer to the primary memory

Explanation:

The app reported writing 50% before the battery fails is because while writing, the data is been saved in the secondary memory via a buffer and not directly to the primary memory ( RAM ) and its returned from the secondary memory via the buffer to the primary memory

What the app displays as a progress bar is from the Buffer, this is because as the developer was designing the app he wanted the data entry to be very fast  hence he had to send the file through a buffer with the aid of a workstation he designed. so if the secondary storage is slow in returning the data  back to the primary memory as fast as it entered the secondary memory via the Buffer, Then the percentage of the file that would be displayed as written when the system reboots will be less than what the app displayed before the reboot i.e. 20% < 50%

What was the name of first computer?

Answers

The ENIAC (Electronic Numerical Integrator and Computer) was the first electronic programmable computer built in the U.S. Although the ENIAC was similar to the Colossus, it was much faster, more flexible, and it was Turing-complete.

The _________ operator returns the distance in bytes, of a label from the beginning of its enclosing segment, added to the segment register.a) TYPEb) SIZEOFc) OFFSETd) LENGTHOFe) PTR

Answers

Answer:

C. Offset.

Explanation:

An offset operator can be defined as an integer that typically illustrates or represents the distance in bytes, ranging from the beginning of an object to the given point (segment) of the same object within the same data structure or array. Also, the distance in an offset operator is only valid when all the elements present in the object are having the same size, which is mainly measured in bytes.

Hence, the offset operator returns the distance in bytes, of a label from the beginning of its enclosing segment, added to the segment register.

For instance, assuming the object Z is an array of characters or data structure containing the following elements "efghij" the fifth element containing the character "i" is said to have an offset of four (4) from the beginning (start) of Z.

Other Questions
Which sentence uses a verb in the active voice?A Noah is known throughout our neighborhood as a kind, helpful young man.BThe dark night was flush with rain and lit by occasional bursts of lightningCIf problems are causing you to worry, your fears will soon be eased.DJennifer locked the front door and took the dog for a walk. Anita guessed that there were 180 pieces of candy in a jar, they were actually 220 pieces of candy in the jar what was Anita's approximate percent error Knowledge Check 01 An unfavorable variance of $5,000 in cost of goods sold is determined by comparing the actual results (10,000 units) and the flexible budget (10,000 units). What type of variance is described?a. Activity variance b. Spending variance c. Revenue variance How safe is Wind Energy? Use in your own words. figure Ais reflected across the line to create figure A How did the Missouri Compromise keep the Union stable?It kept the balance between slave and free states.It allowed an advantage to the free states. It capped the number of free and slave states. It allowed an advantage to the slave states. The sum of three numbers is 67. The third number is 2 times the first. The first number is 5 more than the second. What are the numbers? 5.State the number of significant digits in each measurement andexpress the value in scientific notation.a. 110 mf. 20.40 m/sb. 0.2Cg0.71 nsc. 0.090 11 kgh. 0.06 kgd. 52.5 X 10 - 37040 m600.0 Ne. How do you know whether an ecuation is an identity? How many solutions does an identity have? ExplainChoose the correct answer belowO, A. An equation is an identity w it can be rewitten as an equation of the form"variable = ruumiker, such as x=5 or y=3. Such an equation has an infinitenumber of solutions because a variable can be any numberOB. An equation is an idersity it can be rewritten as an equation of the form "variable = number," such as x=5 or y=3. Such an equation has only one solution,and the solution is called the identity of the variableOC. An equation is an identity #it can be rewritten as 0-0. Such an equation has only one solution, 0, and that is the identity of the variableOD. An equation is an identity if it can be rewritten as 0 =0. Such an equation has an infinite number of solutions because it reduces to a true statementregardless of the value of the variable What Supreme Court case upheld segregation? Dred ScottPlessy v. Ferguson 14th Amendment to the U.S. Constitution Leo Frank What is an advantage of asexual reproduction?A. Creates genetic diversity. B. Occurs quickly. C. Produces a small number of offspring, D. Produces identical offspring.Answer that is correct and with explanation gets brainliest! can someone help me , with math thanks ONLY ANSWER IF U KOW THE ANSWERPoe is the master at creating a scary and suspenseful mood in his stories. Can you find two different parts in the story where Poe is specifically creating this type of mood? ( The Cask of Amontillado) Which statement summarizes a belief of the Republican Party?A. There should be higher taxes and more public services.B. State and federal elections should be held more frequently.C. The U.S. House of Representatives is more important than the Senate.D. There should be lower taxes and less reliance on public services. If I saved up $10 every 2 weeks, how much would I have saved in a year? Please help, thank you! Lances team made 16 out of the 25 free-throws they attempted. What percent of the free-throws did the team make? Someone please help me!!!! An old home is abandoned and the lawn is no longer cut. Eventually, small shrubs overgrow, then trees take over what was once a lawn. Eventually, a forest surrounds the no longer visible home. What type of succession is this describing? who is 24th president of the united state of america? Oak trees have the ability to make their own food. Their cells contain structuresthat capture energy from the sun. What are these structures? *