Question 6 (1 point)
Janelle is creating a model of a bathroom in Blender. She is currently working on the
tile pattern for the walls of the shower. She has decided on a hexagonal shape
surrounded by four squares. Since this pattern will be repeated over the entire
shower wall, which of the following modifiers should she use to create enough
copies of it to populate the entire area?
Boolean
Bevel
Array
Screw

Answers

Answer 1

To create enough copies of the tile pattern to populate the entire area of the shower wall in Blender, Janelle should use the C) Array modifier.

The Array modifier in Blender allows for the creation of multiple copies or instances of an object, arranged in a specified pattern.

It is particularly useful when creating repetitive patterns, as in the case of the tile pattern for the shower walls.

By applying the Array modifier to the initial tile pattern, Janelle can define the number of copies to be made and the desired spacing or offset between them.

She can configure the modifier to create a grid-like arrangement of the tiles, allowing her to cover the entire area of the shower wall seamlessly.

The Array modifier offers flexibility in terms of adjusting the pattern's size, rotation, and other parameters to achieve the desired look.

Additionally, any changes made to the original tile will be automatically propagated to all the instances created by the modifier, streamlining the editing process.

While the other modifiers mentioned—Boolean, Bevel, and Screw—have their own specific uses, they are not suitable for creating multiple copies of a tile pattern.

The Boolean modifier is used for combining or cutting shapes, Bevel for adding rounded edges, and Screw for creating spiral or helix shapes.

For more questions on Array

https://brainly.com/question/29989214

#SPJ8


Related Questions

first box options: Forums, Emails, Chats

second box options: Message boards, Chats, Blogs

third box options: Forums, Blogs, Websites

first box options: Forums, Emails, Chatssecond box options: Message boards, Chats, Blogsthird box options:

Answers

Answer:

the first box is chats, the second box is message, and the third box is websites

Explanation:

The reason the first box is chats is because chats are able to let you receive and send messages. The reason the second box is messages is because when you message someone your having a conversation online. and the reason The third box is Websites is because online you can publish articles or journal entries therefore making the first box chats, the second box message, and the third box website. Hope this helps

When a code block is placed inside this loop, what happens to the code?

A. It repeats until the program stops running.

B. It repeats once and then stops.

C. It repeats a certain number of times and then stops.

D. It repeats as long as a certain condition is true.

Answers

When a code block is placed inside a loop, what happens to the code is that: D. It repeats as long as a certain condition is true.

What is a looping structure?

A looping structure can be defined as a type of function that is designed and developed (written) to instruct a computer to repeat specific statements, especially for a certain number of times based on some certain true condition(s).

The types of looping structure.

In Computer programming, there are different types of looping structure and these include the following:

If/Else StatementIf StatementFor LoopWhile LoopForever loopIndefinite loop

This ultimately implies that, a code block would repeat particular statements for a certain number of times (iterations) based on some certain true condition(s) in the looping structures.

Read more on loop here: brainly.com/question/26130037

#SPJ1

Answer:

C.

It repeats a certain number of times and then stops.

Explanation:

Your professor is advising a new crowd-funding app for women's self-help groups (SHGs) in Latin America on their database architecture. This is the business requirement she has worked on: All campaigns belong to a SHG. An SHG must exist before a campaign is created, and when an SHG is deleted from the database, all its campaigns are deleted. SHGs always belong to a country, and a country must be added to the app before SHGs are added to it. Which of the following is true of the entities defined in the database? Select all that apply.

Question 6 options:

An SHG entity depends on a Campaign entity

A Campaign entity is a depend on the SHG entity

A Country is not dependent on the Campaign entity

An SHG entity is dependent on a Country entity

A Campaign is an Independent entity

Answers

Based on the given information, the following statements are true:

An SHG entity depends on a Country entity.A Campaign entity is dependent on the SHG entity.

What is a country entity?

In the context of database design, a country entity refers to a logical representation of a country within a database system.

It typically stores information related to countries, such as their names, codes, demographics, or any other relevant data.

The country entity serves as a reference point for other entities in the database, such as self-help groups (SHGs) or campaigns, allowing for proper organization and association of data within the system.

Learn more about Entity at:

https://brainly.com/question/29491576

#SPJ1

Question
Which of the following binary numbers (base 2) are multiples of 4? CHOOSE TWO ANSWERS.
11100
1101
10110
10100

Answers

The binary numbers that are multiples of 4 are; 11100 and 10100

Binary to decimal conversion

Let us convert each of the given binary numbers to decimal;

A) 11100 = (1 × 2⁴) + (1 × 2³) + (1 × 2²) + (0 × 2¹) + (0 × 2°) = 16 + 8 + 4 + 0 + 0 = 28

B) 1101 = (1 × 2³) + (1 × 2²) + (0 × 2¹) + (1 × 2°) = 8 + 4 + 0 + 1 = 13

C) 10110 = (1 × 2⁴) + (0 × 2³) + (1 × 2²) + (1 × 2¹) + (0 × 2°) = 16 + 0 + 4 + 2 + 0 = 22

D) 10100 = (1 × 2⁴) + (0 × 2³) + (1 × 2²) + (0 × 2¹) + (0 × 2°) = 16 + 0 + 4 + 0 + 0 = 20

Looking at the decimals, only 20 and 28 are multiples of 4.

Read more about binary to decimal conversion at; https://brainly.com/question/17946394

Finish and test the following two functions append and merge in the skeleton file:
(1) function int* append(int*,int,int*,int); which accepts two dynamic arrays and return a new array by appending the second array to the first array.
(2) function int* merge(int*,int,int*,int); which accepts two sorted arrays and returns a new merged sorted array.
#include
using namespace std;
int* append(int*,int,int*,int);
int* merge(int*,int,int*,int);
void print(int*,int);
int main()
{ int a[] = {11,33,55,77,99};
int b[] = {22,44,66,88};
print(a,5);
print(b,4);
int* c = append(a,5,b,4); // c points to the appended array=
print(c,9);
int* d = merge(a,5,b,4);
print(d,9);
}
void print(int* a, int n)
{ cout << "{" << a[0];
for (int i=1; i cout << "," << a[i];
cout << "}\n"; }
int* append(int* a, int m, int* b, int n)
{
// wru=ite your codes in the text fields
}
int* merge(int* a, int m, int* b, int n)
{
// wru=ite your codes in the text fields
}

Answers

Answer:

Explanation:

#include <iostream>

using namespace std;

int* append(int*,int,int*,int);

int* merge(int*,int,int*,int);

void print(int*,int);

int main()

{ int a[] = {11,33,55,77,99};

int b[] = {22,44,66,88};

print(a,5);

print(b,4);

int* c = append(a,5,b,4); // c points to the appended array=

print(c,9);

int* d = merge(a,5,b,4);

print(d,9);

}

void print(int* a, int n)

{ cout << "{" << a[0];

for (int i=1; i<n; i++)

cout << "," << a[i];

cout << "}\n";

}

int* append(int* a, int m, int* b, int n)

{

int * p= (int *)malloc(sizeof(int)*(m+n));

int i,index=0;

for(i=0;i<m;i++)

p[index++]=a[i];

for(i=0;i<n;i++)

p[index++]=b[i];

return p;

}

int* merge(int* a, int m, int* b, int n)

{

int i, j, k;

j = k = 0;

int *mergeRes = (int *)malloc(sizeof(int)*(m+n));

for (i = 0; i < m + n;) {

if (j < m && k < n) {

if (a[j] < b[k]) {

mergeRes[i] = a[j];

j++;

}

else {

mergeRes[i] = b[k];

k++;

}

i++;

}

// copying remaining elements from the b

else if (j == m) {

for (; i < m + n;) {

mergeRes[i] = b[k];

k++;

i++;

}

}

// copying remaining elements from the a

else {

for (; i < m + n;) {

mergeRes[i] = a[j];

j++;

i++;

}

}

}

return mergeRes;

}

PLEASE HELP!!
Read the following characteristic:
Programmers will write code and have objects interact and perform actions.
How would you classify it?

A disadvantage of object-oriented programming
A purpose of object-oriented programming
A result of procedural programming
An aspect of procedural programming

Answers

Based on the above, I will classify it as purpose of object-oriented programming.

What is this programming about?

The  object-oriented programming (OOP) is known to be where the programmer thinks in regards to the objects instead of the functions.

Note that Objects are said to be defined here via the use of a class and are known to be parts of the program that can does certain actions and interact with one another.

Therefore, Based on the above, I will classify it as purpose of object-oriented programming.

Learn more about Programmers from

https://brainly.com/question/23275071

#SPJ1

what is a computer ?​

Answers

Answer:

A computer is a machine that can be instructed to carry out sequences of arithmetic or logical operations automatically via computer programming. Modern computers have the ability to follow generalized sets of operations, called programs. These programs enable computers to perform an extremely wide range of tasks.

Explanation:


Well.......

A computer is a machine that can be instructed to carry out sequences of arithmetic or logical operations automatically via computer programming. Modern computers have the ability to follow generalized sets of operations, called programs. These programs enable computers to perform an extraordinary wide range of tasks.










According to Wikipedia ;))

Looking at the code below, what answer would the user need to give for the while loop to run?

System.out.println("Pick a number!");
int num = input.nextInt();

while(num > 7 && num < 9){
num--;
System.out.println(num);
}


9

2

7

8

Answers

The number that the user would need for the whole loop to run would be D. 8.

What integer is needed for the loop to run ?

For the while loop to run, the user needs to input a number that satisfies the condition num > 7 && num < 9. This condition is only true for a single integer value:

num = 8

The loop will only run if the number is greater than 7 and less than 9 at the same time. There is only one integer that satisfies this condition: 8.

If the user inputs 8, the while loop will run.

Find out more on loops at https://brainly.com/question/19344465

#SPJ1

characteristics of a bar chart include: multiple select question. length or height of bar reflects frequency of a category typically display vertical bars. are used strictly for quantitative or numerical data. display horizontal bars when the axis labels are long or there are many categories.

Answers

Bar charts display frequency or proportion of categories with vertical or horizontal bars, and can be used for both quantitative and categorical data.

The characteristics of a bar chart include: the length or height of a bar reflects the frequency of a category, they typically display vertical bars, and they can be used for both quantitative and categorical data. Additionally, horizontal bars are used when the axis labels are long or there are many categories.

Bar charts are a useful way to visualize data because they make it easy to compare the frequency or distribution of different categories. They are commonly used in business, statistics, and other fields to present data in a clear and concise way. However, it's important to choose the right type of chart for your data and to ensure that the chart is properly labeled and formatted to avoid misinterpretation.

Bar charts are also customizable, allowing for different colors and patterns to be used to highlight specific data points or categories.

Learn more about data here:

https://brainly.com/question/13650923

#SPJ4

Make sure your animal_list.py program prints the following things, in this order:
The list of animals 1.0
The number of animals in the list 1.0
The number of dogs in the list 1.0
The list reversed 1.0
The list sorted alphabetically 1.0
The list of animals with “bear” added to the end 1.0
The list of animals with “lion” added at the beginning 1.0
The list of animals after “elephant” is removed 1.0
The bear being removed, and the list of animals with "bear" removed 1.0
The lion being removed, and the list of animals with "lion" removed

Need the code promise brainliest plus 100 points

Answers

Answer:#Animal List animals = ["monkey","dog","cat","elephant","armadillo"]print("These are the animals in the:\n",animals)print("The number of animals in the list:\n", len(animals))print("The number of dogs in the list:\n",animals.count("dog"))animals.reverse()print("The list reversed:\n",animals)animals.sort()print("Here's the list sorted alphabetically:\n",animals)animals.append("bear")print("The new list of animals:\n",animals)

Explanation:

a really excellent way of getting you started on setting up a workbook to perform a useful function.

Answers

Templates a really excellent way of getting you started on setting up a workbook to perform a useful function.

What is the workbook  about?

One excellent way to get started on setting up a workbook to perform a useful function is to begin by defining the problem you are trying to solve or the goal you want to achieve. This will help you determine the necessary inputs, outputs, and calculations required to accomplish your objective.

Once you have a clear understanding of your goal, you can start designing your workbook by creating a plan and organizing your data into logical categories.

Next, you can start building the necessary formulas and functions to perform the required calculations and operations. This might involve using built-in functions such as SUM, AVERAGE, or IF, or creating custom formulas to perform more complex calculations.

Read more about workbook here:

https://brainly.com/question/27960083

#SPJ1

You are given an array of integers, each with an unknown number of digits. You are also told the total number of digits of all the integers in the array is n. Provide an algorithm that will sort the array in O(n) time no matter how the digits are distributed among the elements in the array. (e.g. there might be one element with n digits, or n/2 elements with 2 digits, or the elements might be of all different lengths, etc. Be sure to justify in detail the run time of your algorithm.

Answers

Answer:

Explanation:

Since all of the items in the array would be integers sorting them would not be a problem regardless of the difference in integers. O(n) time would be impossible unless the array is already sorted, otherwise, the best runtime we can hope for would be such a method like the one below with a runtime of O(n^2)

static void sortingMethod(int arr[], int n)  

   {  

       int x, y, temp;  

       boolean swapped;  

       for (x = 0; x < n - 1; x++)  

       {  

           swapped = false;  

           for (y = 0; y < n - x - 1; y++)  

           {  

               if (arr[y] > arr[y + 1])  

               {  

                   temp = arr[y];  

                   arr[y] = arr[y + 1];  

                   arr[y + 1] = temp;  

                   swapped = true;  

               }  

           }  

           if (swapped == false)  

               break;  

       }  

   }

Which of the following groups might sign a non-disclosure agreement between them?

the local government and its citizens

a group of employees or contractors

a company and an employee or contractor

two competing businesses or companiesc​

Answers

Answer: I believe the right answer is between a company and employee or contractor.

Explanation: I think this is the answer because a non-disclosure is a legal contract between a person and a company stating that all sensitive. information will be kept confidential.

Answer:a

Explanation:

Which keyboard command would you use to navigate to the left adjacent cell in a worksheet?

Answers

Answer:

Either scroll on a mouse or use the left arrow key.

I don't know if this is right.

Answer:

shift+tab

Explanation:

In summary, McKibben argues that the inhabitable planet is shrinking because (select all that apply):

Answers

MCKibben argues that the inhabitable planet is shrinking because:

Consistently higher temperatures will likely make certain areas uninhabitableDesertification will reduce the amount of harvestable landCoastlines are being lost to sea level rise.

What is Shrinking?

This is the process in which an object or place becomes smaller as a result of various activities.

The most suitable options which explains why the planet is shrinking is as a result of a reduction in the areas in which humans can live as a result of the factors mentioned above.

Read more about Planet here https://brainly.com/question/11157969

Write a c++ program with total change amount as an integer input, and output the change using the fewest coins, one coin type per line. The coin types are Dollars, Quarters, Dimes, Nickels, and Pennies. Use singular and plural coin names as appropriate, like 1 Penny vs. 2 Pennies.

Answers

The c++ program with the total change amount as an integer input, is given below

The C++ code

#include <iostream>

using namespace std;

int main() {

   int total;

   int dollars, quarters, dimes, nickels, pennies;

   cout &#8203;`oaicite:{"index":0,"invalid_reason":"Malformed citation << \"Enter total change amount: \";\n    cin >>"}`&#8203; total;

   dollars = total / 100;

   total = total % 100;

   quarters = total / 25;

   total = total % 25;

   dimes = total / 10;

   total = total % 10;

   nickels = total / 5;

   total = total % 5;

   pennies = total;

   if (dollars == 1) {

       cout << dollars << " Dollar" << endl;

   } else if (dollars > 1) {

       cout << dollars << " Dollars" << endl;

   }

   if (quarters == 1) {

       cout << quarters << " Quarter" << endl;

   } else if (quarters > 1) {

      cout << quarters << " Quarters" << endl;

   }

   if (dimes == 1) {

       cout << dimes << " Dime" << endl;

   } else if (dimes > 1) {

       cout << dimes << " Dimes" << endl;

   }

   if (nickels == 1) {

       cout << nickels << " Nickel" << endl;

   } else if (nickels > 1) {

       cout << nickels << " Nickels" << endl;

   }

   if (pennies == 1) {

       cout << pennies << " Penny" << endl;

   } else if (pennies > 1) {

      cout << pennies << " Pennies" << endl;

   }

   return 0;

}

This program prompts the user to enter a total change amount as an integer, and then uses integer division and the modulus operator to determine the number of each coin type required to make that amount of change.

It then uses conditional statements to print the number of each coin type using the appropriate singular or plural form of the coin name.

Read more about C++ code here:

https://brainly.com/question/24802096

#SPJ1

what is the basic concept of ethernet?

Answers

Answer:

high speed internet connection

Answer:

 Ethernet is the traditional technology for connecting devices in a wired local area network (LAN) or wide area network (WAN). It enables devices to communicate with each other via a protocol, which is a set of rules or common network language. It enables devices to communicate with each other via a protocol, which is a set of rules or common network language.

write code that performs the following input operations: read an int from the keyboard and assign it to a variable named k. (do not print a prompt. use the input() function without a prompt-string to read the input.) read a float from the keyboard and assign it to a variable named d. (do not print a prompt. use the input() function without a prompt-stringto read the input.) read a string from the keyboard and assign it to a variable named s. (do not print a prompt. use the input() function without a prompt-string to read the input.)

Answers

Answer:

k = input()

d = input()

s = input()

Explanation:

k = input()

d = input()

s = input()

This is the code that performs the following input operations.

What is error handling?

Error handling often involves preserving the execution state at the time the error occurred and interrupting the program's usual flow to carry out a particular function or component.

An error handling that occurs while a program is being run is an exception. Non-programmers see exceptions as examples that do not follow a general rule. In computer science, the term "exception" also has the following connotation.

Therefore, k = input()

d = input()

s = input()

This is the code that performs the following input operations.

Learn more about error handling on:

https://brainly.com/question/29314970

#SPJ1

1. What are the main features of IEEE 802.3 Ethernet standard?​

Answers

Answer:

Single byte node address unique only to individual network. 10 Mbit/s (1.25 MB/s) over thick coax. Frames have a Type field. This frame format is used on all forms of Ethernet by protocols in the Internet protocol suite.

Explanation:

802.3 is a standard specification for Ethernet, a method of packet-based physical communication in a local area network (LAN), which is maintained by the Institute of Electrical and Electronics Engineers (IEEE). In general, 802.3 specifies the physical media and the working characteristics of Ethernet.

working with the tkinter(python) library



make the window you create always appear on top of other windows. You can do this with lift() or root.attributes('-topmost', ...), but this does not apply to full-screen windows. What can i do?

Answers

To make a tkinter window always appear on top of other windows, including full-screen windows, you must use the wm_attributes method with the topmost attribute set to True.

How can I make a tkinter window always appear on top of other windows?

By using the wm_attributes method in tkinter and setting the topmost attribute to True, you can ensure that your tkinter window stays on top of other windows, even when they are in full-screen mode.

This attribute allows you to maintain the window's visibility and prominence regardless of the current state of other windows on your screen.

Read more about python

brainly.com/question/26497128

#SPJ1

Question 1 of 50
Which 2 statements regarding sources and targets are true?
There is one source per transaction
There is only one target per transaction
Sources provide information about classes
Source accounts are always Balance Sheet accounts

Answers

The  2 statements regarding sources and targets that are true are

There is only one target per transactionSource accounts are always Balance Sheet accountsWhat are sources and targets in QuickBooks online?

Source is known to be that which gives the summary information about any kind of transaction.

Targets is known to be the one that tends to provide the in-depth information about any kind of  transaction.

Therefore, The  2 statements regarding sources and targets that are true are

There is only one target per transactionSource accounts are always Balance Sheet accounts

Learn more about Source accounts from

https://brainly.com/question/1279931

#SPJ1

The classes Person and Airplane shall have the property to print information about themselves on a printer. Draw class and interaction diagrams

Answers

The classes Person and Airplane shall have the property to print information about themselves on a printer the . Interaction diagrams cognizance on describing the waft of messages inside a device, imparting context for one or greater lifelines inside a device.

How do you operate interplay diagrams whilst you version dynamic factors of a device provide an explanation for with an instance?

Purpose of Interaction Diagrams. Sequence and collaboration diagrams are used to seize the dynamic nature however from an exceptional angle. To seize the dynamic behavior of a device. To describe the message waft withinside the device. To describe the structural corporation of the items.

Interaction diagrams are that describe how a collection of items collaborate in a few conduct - generally a single use-case. The diagrams display some of instance items and the messages which can be handed among those items in the use-case. its call would possibly suggest, an interplay diagram is a sort of UML diagram it's used to seize the interactive conduct of a device. Interaction diagrams cognizance on describing the waft of messages inside a device, imparting context for one or greater lifelines inside a device.

Read more about the interaction diagrams:

https://brainly.com/question/19632962

#SPJ1

Jasmine is using the software development life cycle to create a song-writing app. She debugged and documented the code before releasing it to a group of friends. What should Jasmine do next? (5 points)

Break up the work into chunks and begin writing the app code
Make improvements and enhancements to the app based on feedback
Test the app code, resolve issues, and document the changes
Write pseudocode and create a mock-up of how the app will work and look

Answers

Jasmine should make improvements and enhancements to the app based on feedback.

What is an app?

The word "application" is abbreviated "app," and it refers to a particular kind of software that can be downloaded and used on a computer, tablet, smartphone, or other electronic device. A mobile application or a piece of software that is installed and used on a computer are the two terms that are most frequently used to describe an app. The majority of apps perform a single, limited task.

For instance, a food delivery app may only be intended to be used by customers to order food from nearby restaurants and may not be functional for other purposes, such as grocery shopping or making reservations at restaurants. Currently, there are millions of apps available in a number of categories, including business, productivity, shopping, and scheduling.

Learn more about application

https://brainly.com/question/24264599

#SPJ1

The CPU contains a few internal storage locations called ____, each capable of holding a single instruction or data item.

Answers

The CPU contains a few internal storage locations called registers, each capable of holding a single instruction or data item.

What do registers do?

The Registers in computer architecture are very quick computer memory that is utilised to efficiently carry out operations and run programs. This is accomplished by providing access to frequently used values, i.e., the values in use at the moment the operation or execution is taking place.

Therefore, a variety of different types of CPU registers exist specifically for this purpose, and they cooperate with computer memory to effectively carry out activities. The quick retrieval of data for the CPU's processing is the only reason for having a register. Even though using a hard disc makes reading RAM instructions somewhat quicker, the CPU still cannot use this speed. There are memories in the CPU that can access data from RAM that is due to be performed in advance for even better processing.

To know more about CPU Registers, Check out:

https://brainly.com/question/17193561

#SPJ4

An early attempt to force users to use less predictable passwords involved computer-supplied passwords. The passwords were eight characters long and were taken from the character set consisting of lowercase letters and digits. They were generated by a pseudorandom number generator with 215possible starting values. Using technology of the time, the time required to search through all character strings of length 8 from a 36-character alphabet was 112 years. Unfortunately, this is not a true reflection of the actual security of the system. Explain the problem.

Answers

Answer:

Recently, with the new and advanced hacking algorithms and affordable high-performance computers available to adversaries, the 36 character computer suggested passwords can easily be insecure.

Explanation:

The 8 length passwords generated pseudo-randomly by computers are not secure as there are new algorithms like the brute force algorithm that can dynamically obtain the passwords by looping through the password length and comparing all 36 characters to get the right one.

And also, the use of high-performance computers makes these algorithms effective

What is the correct meaning of judgment

Answers

1a : the process of forming an opinion or evaluation by discerning and comparing careful judgment of the odds. b : an opinion or estimate so formed is not worth doing in my judgment. 2a : the capacity for judging : discernment be guided by your own judgment showing poor judgment.

management is as old as human civilization. justify this statement​

Answers

Answer:

Indeed, management is as old as the human species, as human nature is itself dependent on the natural resources that it needs for its subsistence, therefore needing to exercise a correct administration of said resources in such a way as to guarantee that those resources can satisfy the greatest number of individuals. That is, the human, through the correct management of resources, seeks to avoid the scarcity of them.

What devices do not form part of the main components of a computer but can be attached to function effectively?

Answers

Answer:

Peripherals are a generic name for any device external to a computer, but still normally associated with its extended functionality. The purpose of peripherals is to extend and enhance what a computer is capable of doing without modifying the core components of the system. A printer is a good example of a peripheral.

Explanation:

d) Declare an array list and assign objects from the array in (a) that have more than or equal to 4000 votes per candidate to it. ​

d) Declare an array list and assign objects from the array in (a) that have more than or equal to 4000

Answers

An example of how you can declare an ArrayList and assign objects from an array that have more than or equal to 4000 votes per candidate is given in the image attached?

What is the ArrayList

In this particular instance, one has introduce and establish a Candidate category that embodies every individual who is running for election, comprising their respective titles and total number of votes they receive.

One need to go through each element in the candidates array, assess whether their vote count meets or exceeds 4000, and include them in the highVoteCandidates ArrayList. In conclusion, we output the candidates with the most votes contained in the ArrayList.

Learn more about  ArrayList  from

https://brainly.com/question/24275089

#SPJ1

d) Declare an array list and assign objects from the array in (a) that have more than or equal to 4000
d) Declare an array list and assign objects from the array in (a) that have more than or equal to 4000

. Write a program to calculate the square of 20 by using a loop
that adds 20 to the accumulator 20 times.

Answers

The program to calculate the square of 20 by using a loop

that adds 20 to the accumulator 20 times is given:

The Program

accumulator = 0

for _ in range(20):

   accumulator += 20

square_of_20 = accumulator

print(square_of_20)

Algorithm:

Initialize an accumulator variable to 0.

Start a loop that iterates 20 times.

Inside the loop, add 20 to the accumulator.

After the loop, the accumulator will hold the square of 20.

Output the value of the accumulator (square of 20).

Read more about algorithm here:

https://brainly.com/question/29674035

#SPJ1

Other Questions
Vanessa says, "I know a lot more of the answers than some of the otherstudents in this class." What type of social comparison is Vanessademonstrating?A. UpwardB. PhysiologicalC. Self-fulfillingD. Downward how many cubic feet will it take to fill the prism below Although ________ involves politeness, it is more than that, featuring the ability to disagree without disrespect, seek common ground, listen past one's preconceptions, and teach others to do the same. What is a distinguishing characteristic of a saturated fatty acid? HELPPPPOPPPPPPOPOOO QUICKKKKKK the logic of the exchange-rate effect begins with a change in the price level changing the interest rate. a. true b. false The Community College Survey of Student Engagement reports that 46% of the students surveyed rarely or never use peer or other tutoring resources. Suppose that in reality 40% of community college students never use tutoring services available at their college. In a simulation, we select random samples from a population in which 40% do not use tutoring. For each sample, we calculate the proportion who do not use tutoring. If we randomly sample 100 students from this population, the standard error is approximately 5%. Would it be unusual to see 46% who do not use tutoring in a random sample of 100 students?a) Yes, this would be unusual because 46% is more than one standard error from the mean. It is very rare for a sample to be more than one standard error from mean. b) Yes, this would be unusual because 46% is 6% higher than 40%. c) No, this would not be unusual because the error is only 6%. d) No, this would not be unusual because 46% is only 1.2 standard errors from 40%. Explain how the authors use of the words justice and fairness in paragraph 4 of Lady or the Tiger are ironic. Support your answer using evidence from the story. USE 5-8 SENTENCES!! 25 POINTS!! if f and g are the functions whose graphs are shown, let u(x) = f(x)g(x) and v(x) = f(x)/g(x) Read this excerpt from We've Got a Job.The Hendricks family abided by the campaign and didn't buy new clothes or toys for months. Instead, whenAudrey's mother traveled up north to ask white people who supported civil rights to donate money to ACMHR,also asked them to send toys and clothes for poor black families in Birmingham for Christmas. By mid-Decembthat year, games, puzzles, train sets, dolls, and stuffed animals filled Audrey's living room.Which of Mrs. Hendricks's character traits is best highlighted in this excerpt?her easygoing natureher shy natureher creativityOher compassion How do u write 2(18+w) Which statement describes the graph of this polynomial function?f (x) = x Superscript 4 Baseline + x cubed minus 2 x squared A television originally cost $2800 It goes on sale at 10% off the original price. 2.Teresa __ informacin pedimos peds pide pido(Pls help will mark brainliest) Need help asap please !!!!! Whats the answer??? Which of the following questions will allow you to determine if a population of organisms are MOST LIKELY a result ofnatural or artificial selection?O A. Do the organisms have traits that are valuable to humans but are poorly suited to the wild?OB. Were the organisms produced by sexual or asexual reproduction?OC. How many different traits are there in the population of organisms?O D. How similar are the organisms to their parents? Cynthia Besch wants to buy a rug for a room that is 21 ft wide and 34 ft long. She wants to leavea uniform strip of floor around the rug. She can afford to buy 338 square feet of carpeting. Whatdimensions should the rug have? How did hongwu exemplify confucian ideas? he built a strong military of ""a thousand chariots."" he encouraged the employment of men only. he encouraged reverent behavior among the people. he helped the economy of his country grow. Question 1 (1 point) Suppose that radio active material is given by the equation A(t)=109e-0.35t, What is the half-life? (Round your answer to 4 decimal places.) Your Answer: Answer