Answer:
sounds like a monopoly but is there a word bank?
Explanation:
"the exclusive possession or control of the supply of or trade in a commodity or service."-Oxford dictionary
Remember partially filled arrays where the number of elements stored in the array can be less than its capacity (the maximum number of elements allowed). We studied two different ways to represent partially filled arrays: 1) using an int variable for the numElems and 2) using a terminating value to indicate the end of elements called the sentinel value. In the code below, please fill in the details for reading values into the latter type of array that uses a sentilnel value. Don't forget to complete the printArray function.
#include
using namespace std;
void printArray(int array[]);
// Implement printArray as defined with one array parameter
int main()
{
const int CAPACITY=21;
int array[CAPACITY]; // store positive/negative int values, using 0 to indicate the end of partially filled array
cout <<"Enter up to " << CAPACITY-1 << " non-zero integers, enter 0 to end when you are done\n";
//To do: Write a loop to read up the int values and store them into array a.
// Stop reading if the user enters 0 or the array a is full.
//To do: store 0 to indicate the end of values in the array
//Display array function
printArray(array);
return 0;
}
// To do: implement display for the given array
void printArray(int array[])
{
}
Answer:
Complete the main method as follows:
int num;
cin>>num;
int i = 0;
while(num!=0){
array[i] = num;
cin>>num;
i++;
}
Complete the printArray function as follows:
void printArray(int array[]){
int i =0;
while(array[i]!=0){
cout<<array[i]<<" ";
i++;
}}
Explanation:
Main method
This declares a variable that gets input from the user
int num;
This gets input from the user
cin>>num;
This initializes a count variable to 0. It represents the index of the current array element
int i = 0;
while(num!=0){
This inserts the inputted number to the array
array[i] = num;
This gets another input
cin>>num;
The counter is incremented by 1
i++;
}
The above loop is repeated until the users enters 0
printArray method
This declares the array
void printArray(int array[]){
This initializes a counter variable to 0
int i =0;
This is repeated until array element is 0
while(array[i]!=0){
Print array element
cout<<array[i]<<" ";
Increase counter by 1
i++;
}}
See attachment for complete program
Imagine a room full of boxes. Each box has a length, width, and height. Since the boxes can be rotated those terms are inter- changeable. The dimensions are integral values in a consistent system of units. The boxes have rectangular surfaces and can be nested inside each other. A box can nest inside another box if all its dimensions are strictly less than the corresponding dimensions of the other. You may only nest a box such that the corresponding surfaces are parallel to each other. A box may not be nested along the diagonal. You cannot also put two or more boxes side by side inside another box.The list of boxes is given in a file called boxes.txt. The first line gives the number of boxes n. The next n lines gives a set of three integers separated by one or more spaces. These integers represent the 3 dimensions of a box. Since you can rotate the boxes, the order of the dimensions does not matter. It may be to your advantage to sort the dimensions in ascending order.boxes.txt contains:2023 90 70 48 99 56 79 89 91 74 70 91 91 53 56 22 56 39 64 62 29 92 85 15 23 61 78 96 51 52 95 67 49 93 98 25 57 94 82 95 93 46 38 50 32 50 89 27 60 66 60 66 43 37 62 27 14 90 40 16 The output of your code will be the largest subset of boxes that nest inside each other starting with the inner most box to the outer most box. There should be one line for each box.Largest Subset of Nesting Boxes(2, 2, 3)(3, 4, 4)(5, 5, 6)(6, 7, 9)If there is two or more subsets of equal lengths that qualify as being the largest subset, then print all the largest qualifying subsets with a one line space between each subset. The minimum number of boxes that qualify as nesting is 2. If there are no boxes that nest in another, then write "No Nesting Boxes" instead of "Largest Subset of Nesting Boxes".For the data set that has been given to you, here is the solution set:Largest Subset of Nesting Boxes[14, 27, 62][16, 40, 90][53, 56, 91][57, 82, 94][14, 27, 62][27, 50, 89][53, 56, 91][57, 82, 94][14, 27, 62][37, 43, 66][53, 56, 91][57, 82, 94][22, 39, 56][27, 50, 89][53, 56, 91][57, 82, 94][22, 39, 56][37, 43, 66][53, 56, 91][57, 82, 94][32, 38, 50][37, 43, 66][53, 56, 91][57, 82, 94]
Monster Collector
Write this program using an IDE. Comment and style the code according to the CS 200 Style Guide. Submit the source code files (.java) below. Make sure your source files are encoded in UTF-8. Some strange compiler errors are due to the text encoding not being correct.
Monster collector is a game of chance, where the user tries to collect monsters by guessing the correct numbers between 1 and 5. If the user doesn't guess the incorrect number, you catch the monster, otherwise, it gets away!
Example output:
Welcome to Monster Collector, collect 2 monsters to win!
A wild pikamoo appears! Guess a number between 1 and 5
5
You almost had it, but the monster escaped.
A wild bulbaroar appears! Guess a number between 1 and 5
1
Congratulations, you caught bulbaroar!
There are no more monsters to encounter!
You caught i monsters of 2
Keep training to be the very best!
Welcome to Monster Collector, collect 2 monsters to win!
A wild pikamoo appears! Guess a number between 1 and 5
3
Congratulations, you caught pikamoo !
A wild bulbaroar appears! Guess a number between 1 and 5
1
Congratulations, you caught bulbaroar!
There are no more monsters to encounter!
You caught 2 monsters of 2
You're the monster collector master!
A more detailed explanation of the requirements for each method will be in the method header comments - please follow these closely. Suggested order of completion:getMonster(), catchMonster(), printResult() then main(). Config.java contains an array of monsters, and the seed for your random number generator.
Answer:
In java:
import java.util.*;
public class Main{
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int monsternum, usernum;
int count = 0;
Random rand = new Random();
String [] monsters = {"wild pikamoo","wild bulbaroar"};
for(int i =0;i<2;i++){
monsternum = rand.nextInt(5);
System.out.print("A "+monsters[i]+" appears! Guess a number between 1 and 5: ");
usernum = input.nextInt();
if(monsternum == usernum){ count++; System.out.println("Congratulations, you caught a "+monsters[i]+"!"); }
else{ System.out.println("You almost had it, but the monster escaped."); }
}
System.out.println("There are no more monsters to encounter!");
System.out.println("You caught "+count+" monsters of 2");
if(count!=2){ System.out.print("Keep training to be the very best!"); }
else{ System.out.print("You're the monster collector master!"); }
}
}
Explanation:
This declares monster and user number as integers
int monsternum, usernum;
Initialize count to 0
int count = 0;
Call the random object
Random rand = new Random();
Create a string array to save the monster names
String [] monsters = {"wild pikamoo","wild bulbaroar"};
Iterate for the 2 monsters
for(int i =0;i<2;i++){
Generate a monster number
monsternum = rand.nextInt(5);
Prompt the user to take a guess
System.out.print("A "+monsters[i]+" appears! Guess a number between 1 and 5: ");
Get user guess
usernum = input.nextInt();
If monster number and user guess are equal, congratulate the user and increase count by 1
if(monsternum == usernum){ count++; System.out.println("Congratulations, you caught a "+monsters[i]+"!"); }
If otherwise, prompt the user to keep trying
else{ System.out.println("You almost had it, but the monster escaped."); }
}
Print no monsters again
System.out.println("There are no more monsters to encounter!");
Print number of monsters caught
System.out.println("You caught "+count+" monsters of 2");
Print user score
if(count!=2){ System.out.print("Keep training to be the very best!"); }
else{ System.out.print("You're the monster collector master!"); }
PLEASE QUICK IM TIMED.
Write a program that assigns the value 14 to a variable. Then print out the type of the variable. What will the output of the program be?
This is for Python
Code:
variable = 14
print(type(variable))
Output:
<class 'int'>
paisa pay is facilitated in which e commerce website
Answer:
The answer is "Option A".
Explanation:
The PaisaPay is the digital payment service of eBay, whereby buyers can pay sellers through credit card or Online Money Order. For quick, safe transactions or their cash back, their buyers must use PaisaPay. So, it is easier to go to eBay.co.in, was its digital payment service of eBay, whereby purchasers can charge vendors by credit card or Online Bank Transfer.
See the picture and answer the coding question
Answer:
Actually I don't know computer so I can't help you sorry bro
How can you create the first row of the table as the header of the table?
In the Insert Table dialog box, you select the ______
checkbox to create the first row as the header of the table.
Answer:
table style option
Explanation:
Answer: table style
Explanation:
Find the number of ways in which a committee of 4 can be chosen from six boys and
six girls if it must contain at least one boy and one girl.
Answer:
465 ways
Explanation:
Atleast 1 girl and 1 boy
Possible combinations :
1 girl ; 3 boys = 6C1 ; 6C3
2 girls ; 2 boys = 6C2 ; 6C2
3 girls ; 1 boy = 6C3 ; 6C1
(6C1 * 6C3) + (6C2 * 6C2) + (6C3 * 6C1)
Combination formula:
nCr = n! ÷ (n-r)!r!
We can also use a calculator :
6C1 = 6
6C3 = 20
6C2 = 15
Hence,
(6C1 * 6C3) + (6C2 * 6C2) + (6C3 * 6C1)
(6 * 20) + (15 * 15) + (20 * 6)
120 + 225 + 120
= 465 ways
Hoda is creating a report in Access using the Report Wizard. Which option is not available for adding fields using the wizard?
1. Tables
2. Queries
Reports
All are available options.
Answer:
Reports
Explanation:
Answer:
reports
Explanation:
Select the correct answer.
Which function returns the lowest value of a given set of numbers or range of cells?
A.
ROUND
B.
COUNT
C.
MAX
D.
MIN
Answer:
D. Min
Explanation:
PLZZ HELP HELP EL
SMMSNSM
Answer:
jfhhdbdbfjdjdvebbebzbdbd
10. List three adaptations of wind-pollinated plants to promote pollination.
Answer:
No bright colors, special odors, or nectar.
Small.
Most have no petals.
Wesley purchased a word-processing software program. He used it for a year, during which he got regular updates every two months. After a year, he was not allowed to update the software. However, he could continue using it. Why did the updates stop?
Group of answer choices.
A. The software was corrupt and resulted in a bug.
B. He purchased a license with maintenance for a year.
C. The organization discontinued the software.
D. He purchased an open-source license.
E. He purchase a perpetual non-maintenance license.
Answer:
B. He purchased a license with maintenance for a year.
Explanation:
A software can be defined as a set of executable instructions (codes) or collection of data that is used typically to instruct a computer how to perform a specific task and to solve a particular problem.
Basically, softwares are categorized into two (2) main categories and these are;
I. Open-source software.
II. Proprietary software.
A proprietary software is also known as a closed-source software and it can be defined as any software application or program that has its source code copyrighted and as such cannot be used, modified or distributed without authorization from the software developer. Thus, it is typically published as a commercial software that may be sold, licensed or leased by the software developer (vendor) to the end users with terms and conditions.
In this scenario, Wesley purchased a word-processing software program. He used it for a year, during which he got regular updates every two months. However, after a year, he was not allowed to update the software but he could continue using it.
This ultimately implies that, Wesley purchased a licensed software with maintenance for a year and as such he would stop receiving an update from the software developer after his subscription expired.
Where should a photographer place lights for a headshot? Headshot lighting is more important with darker backgrounds. The light should be at a 45-degree angle from the subject. The light should be in front of the subject. The third light should be the subject to form a ring of light around the subject’s hair.
Answer:
Headshot lighting is more important with darker backgrounds. The
(key) light should be at a 45-degree angle from the subject. The
(fill) light should be in front of the subject. The third light should be
(behind) the subject to form a ring of light around the subject’s hair.
Explanation:
i searched it up individually and thats what i got
Write a program to prompt the user to enter a fist name, last name, student ID and GPA. Create a dictionary called Student1 with the data. Repeat this for three students and create Student2 and Student3 dictionaries. Store the three students dictionaries to a new dictionary called ClassList. (ClassList will have Student1, Student2 and Student3 as sub dictionaries). Print out the ClassList. Then remove the GPA and print ClassList again.
Answer:
Answered below
Explanation:
#Program is written in Python
first_name = input ("Enter first name: ")
last_name = input ("Enter last name:")
student_id = int(input("Enter your ID"))
gpa = float(input ("Enter your GPA: "))
student1 = {}
student1["first_name"] = first_name
student1["last_name"] = last_name
student1["student_id"] = student_id
student1["gpa"] = gpa
//Repeat same code for student2 and student3
class_list = {"student1": {"first_name":"joy","last_name":"Son","student_id":"1","gpa":"3.5"},
#Fill in for student 2 and 3}
#To remove GPA for all students
del class_list["student1"]["gpa"]
del class_list["student2"]["gpa"]
del class_list["student3"]["gpa"]
print(class_list)
third mean between two numbers 27 and 1 by 27 is 1 find the number of means
Answer:
third mean between two numbers 27 and 1 by 27 is 1 find the number of means
Explanation:
You have just started a new job as the administrator of the eastsim domain. The manager of the accounting department has overheard his employees joke about how many employees are using "password" as their password. He wants you to configure a more restrictive password policy for employees in the accounting department. Before creating the password policy, you open the Active Directory Users and Computers structure and see the following containers and OU: eastsim Builtin Users Computers Domain Controllers Which steps must you perform to implement the desired password policy? (Select three. Each correct answer is part of the complete solution.)
Explanation:
To implement the desired password policy, you have to carry out these steps
1. An organizational unit, OU has to be created for these employees in east-sim.com
2. Since there is an organizational unit created for the accounting employees, you have to put the employees user objects in this Organizational unit.
3. Then as the administrator the next step that i would take is the configuration of the password policy, then i would link this to the already created organizational unit for these employees
Helllp me you will git 16 points
Answer:
False
Hope it helps...
Have a great day :P
yes how many poly pockets if I had 10 and gave 2 to esmeraldas father who died and left 1 to his cat, sir whisker?
Answer:
Total 13 poly packets are there
Explanation:
Total number of poly packets = 10
Number of poly packets given to esmeraldas father = 2
Number of poly packets left with his cat = 1
Total remaining poly packets = 10 + 2 + 1 = 10 + 3 = 13
Information Technology
Answer:
whats the question
Explanation:
Answer: The study or use of systems. Especially computers and telecommunications for storing, retrieving, and sending information.
Explanation: I don't know what you're asking buddy. If you're asking for the definition then there you go. Next time add the question :)
please help
Consider the following code segment.
int a = 0;
int b = 3;
while ((b != 0) && ((a / b) >= 0)
{
a = a + 2;
b = b - 1;
}
What are the values of a and b after the while loop completes its execution?
a = 4, b = 1
a = 0, b = 3
a = 6, b = 0
a = 8, b = -1
Answer:
a = 6, b = 0
Explanation:
The loop ran 3 times before b == 0. The statement "while ((b != 0)" is essentially saying: 'While b is not equal to 0, do what's in my loop'. Same general thing with "&& ((a / b) >= 0)". The "&&" is specifying that there should be another loop condition. The final part of the while loop states: 'as long as a ÷ b is greater than 0, do what's in my loop'. If all of these conditions are met, the loop will run. It will continue to run until at least one of the conditions are not met.
Side note: I can't help but notice you posted the same question a while ago, so I just copied and pasted my previous response with some tweaking here and there. Hope this helps you! :)
1. Define Primary Key. Why do we need primary key ?
2. Define Field size.
3. Define Validation Rule.
4. . Not leaving the house and a lack of exercise can cause health problems like obesity. TRUE OR FALSE
5. Rebecca only works 3 days in a week but she works longer hours each day to ensure she hits the 40-hour work week.
-art-time working
-Compressed hours
-Job sharing
-Flexible hour
Answer:
1 .The main purpose of primary key is to identify the uniqueness of a row, where as unique key is to prevent the duplicates, following are the main difference between primary key and unique key.
Explanation:
2. Field size means the dimensions along the major axes of an area in a plane perpendicular to the central axis of the useful beam of incident radiation at the normal treatment distance and defined by the intersection of the major axes and the 50 percent isodose line.
How do most benchmark tests measure the performance of a graphic card
Answer:
Using Frame Rate
Explanation:
Most benchmark tests measure the performance of a graphic card by using "Frame Rate"
This is because using Frame Rate assesses and then measures the number of images a GPU (graphic processing unit) can render and at the same time the number of images that are being shown on a monitor or screen per second.
Hence, in this case, the correct answer is "Frame Rate"
Jason works for a restaurant that serves only organic , local produce . What trend is this business following?
Answer: Green
Explanation:
evaluate the arithmetic expression 234 + 567
Answer:
801
Explanation:
234 + 567 = 801
Solving Systems of Equations by Substitution
pdf
Explain the derived data types in C language with examples each
Answer:
Array, pointers, struct, and union are the derived data types.
Y’all what’s some celebrities that have kids??
Answer:
Angelina Jolie
Parents: Jon Voight, Marcheline Bertrand
Eddie Murphy
Parents: Charles Edward Murphy, Lillian Murphy
Sandra Bullock
Parents: Helga Meyer, John W. Bullock
Kate Hudson
Parents: Goldie Hawn, Bill Hudson
Katie Holmes
Parents: Kathleen A. Stothers-Holmes, Martin Joseph Holmes, Sr.
Reese Witherspoon
Parents: Betty Reese, John Witherspoon
Meryl Streep
Parents: Harry William Streep, Jr., Mary Wolf Wilkinson
Oprah Winfrey
Parents: Vernon Winfrey, Vernita Lee
Tina Fey
Parents: Zenobia Xenakes, Donald Fey
Uma Thurman
Parents: Nena von Schlebrügge, Robert Thurman
David Beckham
Parents: David Edward Alan Beckham, Sandra Georgina West
Susan Sarandon
Parents: Leonora Marie Criscione, Phillip Leslie Tomalin
Sofía Vergara
Parents: Julio Enrique Vergara Robayo, Margarita Vergara Dávila de Vergara
Hilary Duff
Parents: Susan Colleen Duff, Robert Duff
Miley Cyrus
Parents: Billy Ray Cyrus, Tish Cyrus
Zoë Kravitz
Parents: Lisa Bonet, Lenny Kravitz
Beyoncé
Parents: Tina Knowles, Mathew Knowles
Alexis Bledel
Parents: Nanette Bledel, Martin Bledel
Hugh Grant
Parents: Finvola Grant, James Grant
Britney Spears
Parents: Lynne Spears, Jamie Spears
Cindy Crawford
Parents: Jennifer Sue Crawford-Moluf, John Crawford
Adele
Parents: Penny Adkins, Mark Evans
Gwyneth Paltrow
Parents: Blythe Danner, Bruce Paltrow
Solange Knowles
Parents: Tina Knowles, Mathew Knowles
In the range D5:D9 on all five worksheets, Gilberto wants to project next year's sales for each accessory, rounded up to zero decimal places so the values are easier to remember. In cell D5, enter a formula using the ROUNDUP function that adds the sales for batteries and chargers in 2021 (cell B5) to the sales for the same accessories (cell B5) multiplied by the projected increase percentage (cell C5). Round the result up to 0 decimal places. Fill the range D6:D9 with the formula in cell D5.
I just need the formula!!
A B C D
5
Batteries and chargers $ 123,274.42 1.50% $ 125,124
Answer:
Enter the following in D5:
=ROUNDUP((SUM(B5,B5)*C5),0)
Explanation:
Required
Add up B5 and B5, then multiply by C5.
Save result rounded up to 0 decimal places in D5
The required computation can be represented as:
D5 = (B5 + B5) * C5 [Approximated to 0 decimal places]
In Excel, the formula is:
=ROUNDUP((SUM(B5,B5)*C5),0)
Analyzing the above formula:
= ---> This begins all excel formulas
ROUNDUP( -> Rounds up the computation
(SUM(B5,B5) ---> Add B5 to B5
*C5) --> Multiply the above sum by C5
,0) ---> The computation is rounded up to 0 decimal places
To get the formula in D6 to D9, simply drag the formula from D5 down to D9.
The resulting formula will be:
=ROUNDUP((SUM(B6,B6)*C6),0)
=ROUNDUP((SUM(B7,B7)*C7),0)
=ROUNDUP((SUM(B8,B8)*C8),0)
=ROUNDUP((SUM(B9,B9)*C9),0)
Answer:
=ROUNDUP((SUM(B5)+(B5)*C5),0)
Explanation:
I followed Mr. Royal's explanation but the numbers just would not match.
I adjusted and used the formula above in cell D5 and I was able to get the correct sum.
PLZ HELP !!!!!
plzzzz
Answer:
Producers
Explanation:
Producers manufacture and provide goods and services to consumers.