who is your favorite ducktales character
a. webby vanderquack
b. huey dewey and louie
c. Donald Duck
d. Scrooge McDuck

Answers

Answer 1

Donald Duck for sure.....

Answer 2

Answer:

this is not supposed to be on brainly

Explanation:


Related Questions

what is a file named TR/Dldr.Adload.ugkeo doing on my computer

Answers

Answer:

That's brainly's way of making sure you're not a bot

Explanation:

I don't actually know

Answer:

did you download any file from this user or this similar link look at the picture below. If you please take it to someone who know how to get rid of viruses

ONCE AGAIN Can somebody explain the difficulties and hardships of being a computer engineering?

Answers

Answer:

The only thing I can think of, is stress. I cannot tell you how frustrating it is when you're writing code and it decides to bug out because of some little mistake. For hours you're writing and find out that you're missing a single ";" or an indent.

When you're writing out code in order to solve a problem, you need to break it down step by step in order to actually write it. Otherwise, you'll miss a bunch of steps

15.A telecommunication company wants to start a business in Dera Ghazi khan. For Information technology (IT) support, they hired an IT Staff and want to buy hardware from the market. Choose the hardware name which is important for the company.

Answers

Answer:

The company should have computer with secured bandwidth and LAN system which can connect employees on one network.

Explanation:

Telecommunication company will require a network setup which can connect employees on a single network. The network security should be efficient which keeps the LAN network secure from cyber attacks. The IT staff should buy Telecoms equipment and hardware and keep them in a secured control room whose access is limited to certain users only.

Multiple choice:
Select the terms relating to comparisons for equality.


A) ==

B) ^=

C) <>

D) =

E) <

F) !=

G) <=

H) >=

Answers

Answer:

Well there is only 1

"==" is checking for equality and "=" is assigning a value to a variable. Although "==" should be the only answer, since the question is asking you to select multiple, I'd select both of those

Select the correct images Jane has to pick images that portray action photography. Which of these images would she pick? please help me​

Answers

Answer: i think its the horse the basketball and the bike hopefully i helped

Explanation:

2. The
is the main and usually largest data storage hardware device in a computer​

Answers

The answer you are looking for is either Hard Drive or SSD (Solid State Disk).

Write a function named buildArray that builds an array by appending a given number of random two-digit integers (10-99). It should accept two parameters — the first parameter is the array, and the second is an integer for how many random values to add, which should be input by the user.

Answers

Answer:

The function in C++ is as follows:

void buildArray(int arr[], int n){

   srand(time(NULL));

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

       arr[i] = rand() % 99 + 10;    }

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

       cout<<arr[i]<<" ";

   }

}

Explanation:

This defines the function

void buildArray(int arr[], int n){

This klets the program generate different random numbers

   srand(time(NULL));

This iterates from 0 to n - 1 (n represents the length of the array)

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

This generates random 2 digit integer into the array

       arr[i] = rand() % 99 + 10;    }

This iterates through the array and print the array elements

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

       cout<<arr[i]<<" ";

   }

}

See attachment for complete program that includes the main

i really need help with this:((
Write a program that uses an initializer list to store the following set of numbers in an array named nums. Then, print the array.

14 36 31 -2 11 -6

Sample Run
[14, 36, 31, -2, 11, -6]

Answers

Answer:

sorry i dont know

Explanation:

How would someone know if their were communication devices placed in their homes illegally. Cameras and USB controlling devices?

Answers

Explanation:

Among the recommended options often suggested by IT experts includes:

In the case of cameras, using a cell phone around the home switch results in unusual signal interference possibly indicates a special radio frequency coming from the illegally implanted device.The use of a mobile app designed for detecting hidden cameras. For example, the ”detect hidden cameras” app available on iPhone or Android mobile devices is a good tool. This app automatically senses  the radio frequencies of any hardware within the device range.

What is the advantage of using the Selection pane to modify SmartArt?
O It can insert or edit individual graphic boxes on a slide.
O It helps to reorder or remove on-screen elements that overlap.
O It adds a new overlay for creating overlapping graphics and text.
Olt automatically aligns graphic elements to on-screen guidelines.

Answers

Answer:

B

Explanation:

Bc I said so

Answer:

It helps to reorder or remove on-screen elements that overlap

Explanation:

edge 2022

Jim needs to ensure that a list of items includes the information regarding suppliers in the same report. Which control should he add in Design view? subreport text box combo box label

Answers

Answer:

Labels

Explanation:

The label can be used to attach information. This feature can be used by applying it to the Design View Form. The property sheet feature contains a list of adjustments such as color, font size, and name that the user can apply to the text.

Labels meant for headings can also be used to display commands on the form. Most label controls have a fixed text by default. When a user wishes to attach information to a list, the label control can be used to achieve that.

Demographics and psychographics influence database marketing.


False

True

Answers

Answer:

true is the correct answer

an obstacle or barrier that may prevent you from accomplishing your goal is called

Answers

Answer:

a roadblock

Explanation:

A roadblock because it is

How many days are depicted in the movie stand by me?

I need the answer

Answers

Answer:

I have no idea

Explanation:

How do you play game on phone

Answers

You download a game from the App Store
Download it and play it

3. Describe the types of input the peripheral nervous system receives in each of the three scenarios.

Answers

Answer:

espanel hjcrkl cuecls oob

Please help!
The ExperimentalFarm class represents crops grown on an experimental farm. An experimental farm is a rectangular tract of land that is divided into a grid of equal-sized plots. Each plot in the grid contains one type of crop. The crop yield of each plot is measured in bushels per acre.

A farm plot is represented by the Plot class. A partial definition of the Plot class is shown below.

public class Plot

{

private String cropType;

private int cropYield;



public Plot(String crop, int yield)

{

/* implementation not shown */

}



public String getCropType()

{

return cropType;

}



public int getCropYield()

{

return cropYield;

}

}

The grid of equal-sized plots is represented by a two-dimensional array of Plot objects named farmPlots, declared in the ExperimentalFarm class. A partial definition of the ExperimentalFarm class is shown below.

public class ExperimentalFarm

{

private Plot[][] farmPlots;



public ExperimentalFarm(Plot[][] p)

{

/* implementation not shown */

}



/** Returns the plot with the highest yield for a given crop type, as described in part (a). */

public Plot getHighestYield(String c)

{

/* to be implemented in part (a) */

}



/** Returns true if all plots in a given column in the two-dimensional array farmPlots

* contain the same type of crop, or false otherwise, as described in part (b).

*/

public boolean sameCrop(int col)

{

/* to be implemented in part (b) */

}

}

(a) Write the getHighestYield method, which returns the Plot object with the highest yield among the plots in farmPlots with the crop type specified by the parameter c. If more than one plot has the highest yield, any of these plots may be returned. If no plot exists containing the specified type of crop, the method returns null.

Assume that the ExperimentalFarm object f has been created such that its farmPlots array contains the following cropType and cropYield values.

The figure presents a two-dimensional array of Plot objects with 3 columns and 4 rows. The columns are labeled from 0 to 2, and the rows are labeled from 0 to 3. Each plot is labeled with a crop name and crop yield as follows. Row 0. Column 0, "Corn" 20. Column 1, "Corn" 30. Column 2, "Peas" 10. Row 1. Column 0, "Peas" 30. Column 1, "Corn" 40. Column 2, "Corn" 62. Row 2. Column 0, "Wheat" 10. Column 1, "Corn" 50. Column 2, "Rice" 30. Row 3. Column 0, "Corn" 55, Column 1, "Corn" 30. Column 2, "Peas" 30.
The following are some examples of the behavior of the getHighestYield method.

Method Call Return Value
f.getHighestYield("corn") ​farmPlots[1][3]
f.getHighestYield("peas") farmPlots[1][0] or farmPlots[3][2]​
f.getHighestYield("bananas") null
Write the getHighestYield method below.

/** Returns the plot with the highest yield for a given crop type, as described in part (a). */

public Plot getHighestYield(String c)

Answers

Answer:

See explanation. I divided it up into part a and b.

Explanation:

PLOT CLASS CODE:

public class Plot

{

private String cropType;

private int cropYield;

public Plot(String crop, int yield)

{

  this.cropType = crop;

  this.cropYield = yield;

}

public String getCropType()

{

return cropType;

}

public int getCropYield()

{

return cropYield;

}

public String toString() {

  return this.cropType+", "+this.getCropYield();

}

}

EXPERIMENTAL FARM CLASS CODE:

public class ExperimentalFarm

{

private Plot[][] farmPlots;

public ExperimentalFarm(Plot[][] p)

{

  this.farmPlots = p;

}

/** Returns the plot with the highest yield for a given crop type, as described in part (a). */

public Plot getHighestYield(String c)

{

  Plot plot = null;

  int highest = this.farmPlots[0][0].getCropYield();

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

  {

     for(int j=0;j<3;j++)

     {

        if(farmPlots[i][j].getCropType().equalsIgnoreCase(c) && farmPlots[i][j].getCropYield()>highest)

        {

           highest = farmPlots[i][j].getCropYield();

           plot = farmPlots[i][j];

        }

     }

  }

  if(plot != null)

  return plot;

  else

  return null;

/* to be implemented in part (a) */

}

/** Returns true if all plots in a given column in the two-dimensional array farmPlots

* contain the same type of crop, or false otherwise, as described in part (b).

*/

public boolean sameCrop(int col)

{  

  boolean check = true;;

  String crop = farmPlots[0][col].getCropType();

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

  {

     if(!farmPlots[i][col].getCropType().equalsIgnoreCase(crop))

        {

        check = false;

        break;

        }

  }

  return check;

/* to be implemented in part (b) */

}

}

MAIN CLASS CODE:

public class Main {

  public static void main(String[] args)

  {

     Plot p1 = new Plot("corn",20);

     Plot p2 = new Plot("corn",30);

     Plot p3 = new Plot("peas",10);

     Plot p4 = new Plot("peas",30);

     Plot p5 = new Plot("corn",40);

     Plot p6 = new Plot("corn",62);

     Plot p7 = new Plot("wheat",10);

     Plot p8 = new Plot("corn",50);

     Plot p9 = new Plot("rice",30);

     Plot p10 = new Plot("corn",55);

     Plot p11 = new Plot("corn",30);

     Plot p12 = new Plot("peas",30);

     Plot[][] plots = {{p1,p2,p3},

                 {p4,p5,p6},

                 {p7,p8,p9},

                 {p10,p11,p12}};

     ExperimentalFarm f = new ExperimentalFarm(plots);

     Plot highestYield = f.getHighestYield("corn");

     Plot highestYield1 = f.getHighestYield("peas");

     Plot highestYield2 = f.getHighestYield("bananas");

     try {

     System.out.println(highestYield.toString());

     System.out.println(highestYield1.toString());

     System.out.println(highestYield2.toString());

     }

     catch(Exception e)

     {

        System.out.println("null");

     }

     System.out.println("The method call f.sameCrop(0)");

     System.out.println(f.sameCrop(0));

     System.out.println("The method call f.sameCrop(1)");

     System.out.println(f.sameCrop(1));

  }

}

1. Many photographs tell a story. What is the story of this photograph? What is happening? Where is the photograph taken? Why is the photograph taken?

2. Good photographs create an emotion or feeling. What emotion does this photograph make you feel? How does the photographer create this emotion in the photograph?

Answers

Answer:

Answer below! Hope I am correct!( I know what happened in that picture, I am sure!)

Explanation:

What is the story of this photograph?

The story is... I think there is a earthquake going on in San Francisco...

What is happening?

There is a earthquake and people are trying to run away & trying to stay safe...

Where is the photograph taken?

Looks like a long time ago, maybe it’s in California (San Francisco) April 19 or 18, 1906.

Why is the photograph taken?

It was a really important & significant earthquakes! So it will be part of history & will be remembered....

What emotion does this photograph make you feel?

It makes me feel really horrible to see that there is a earthquake, I think many people died :( ......

How does the photographer create this emotion in the photograph?

By all the smokes... I can also see people trying to run away from the earthquake.. also I can tell they are really scared!

Hope this helps!

By:BrainlyAnime

Hope these points help you.
I love.

Answers

Answer:

Explanation:

thanks, have a great day

Answer:

Thank you so much for the free points! You are so kind.

Explanation:

I hope you have a wonderful rest of your day and if these points were not for me then I must have misunderstood. Have a good one!

(ɔ◔‿◔)ɔ ♥

Fill in the blanks to complete a summary of this part of the passage. For the power of Patents

Answers

i’m confused . what do i do?

Answer:

??

Explanation:

After saving a chart, where can you find it again to use it for a different data set?

sparklines
saved charts
templates
formats

Answers

Answer:

C. Templates

Explanation: Edge 20201

Answer:

templates

Explanation:

While many instruments have been "electrified", there is no such thing for the drums.
Group of answer choices

True

False

Answers

False, because they are called percussion group
False. Because it is fake not true

What type of malicious software tries to gather information about you without your consent?
Select one:
a. Spyware
b. Viruse
c. Malware
d. Ransomware

Answers

Answer:

B-malware

Explanation:

I do tech and i help work on computars.

Convert the given for loop to while loop and find the output of the program assuming the
value entered for num is 15.
num = int (input ("Enter a value"))
sum =0
count=0
for i in range (1, num):
if i%2 == 0:
count += 1
sum += i
print(sum)
print(count)

Answers

Answer:

Explanation:

num = int (input ("Enter a value"))

sum =0

count=0

i = 1

while i < num:

 if i%2 == 0:

        count += 1

        sum += i

        i += 1

 i += 1

print(sum)

print(count)

The output assuming num is 15 would be

56

7

Anna has taken up her first job as an IT help desk technician. Which certification will help her advance her career?

A. Microsoft Certified Solutions Expert
B. CompTIA A+
C. Cisco Certified Network Professional
D. Oracle Certified Professional

Answers

B, I think.

Cisco = networking
Oracle =
Networking as well I think

The strength of gravity on the Moon is 1.6
Newtons per kilogram. If an astronaut's mass is 80
kg on Earth, what would it be on the Moon?​

Answers

Answer:

[tex]Mass = 80kg[/tex]

Explanation:

Given

On Earth

[tex]Mass = 80kg[/tex]

On the moon

[tex]g = 1.6N/kg[/tex]

Required

The astronaut's mass on the moon

The mass of an object do not change base on location

So, if the mass of the astronaut is 80kg on earth, it will be 80 kg on the moon.

Hence:

[tex]Mass = 80kg[/tex]

3.4 lesson practice quiz edhesive

Answers

3.4 lesson practice quiz edhesive :

Write a program to check if user inputs "yellow"

Answer:

In Python:

col = input("Enter Color: ")

if col == "yellow":

   print("True")

else:

   print("False")

Explanation:

This prompts the user for color

col = input("Enter Color: ")

This checks if color is yellow

if col == "yellow":

If true, this prints true

   print("True")

If otherwise, this prints false

else:

   print("False")

I need help now I really do what is the answer thank you

Answers

the answer is c
just replace the y with the y value and the x with the x value

5.
1 point
*
*
dog#
Choose
This is a required question

Answers

Answer:

WHAT IS YOUR QUESTION ⁉️⁉️

SO I CAN HELP YOU

BECAUSE I APPLIED IN BRAINLER HELPER

Define an array and why it is needed in programming

Answers

Answer:

An array is a data structure, which can store a fixed-size collection of elements of the same data type. An array is used to store a collection of data, but it is often more useful to think of an array as a collection of variables of the same type.

Explanation:

Happy to help :-)

Answer:

An array is a data structure, which can store a fixed-size collection of elements of the same data type. a array is used to store a collection of data, but it´s often more useful to think of an array as a collection of variables of the same type.

Explanation:

Other Questions
One choice contains ONLY biotic factors that might be found in a home aquarium's environment. That isA)fish, snail, and plants.B)fish, snail, and gravel.water, gravel, and the glass wall of the aquarium.D)fish, dissolved oxygen, and bacteria living in the water. please help im literally crying i cant fail this what prompted mahmud to invade india need help pleaseeee nowwwwwwwwwwwwwwwwwwwwwww Enter just the number, no units. What is the value of ( 2 1/4 ) ? PLEASE HELP IF YOU HELP I WILL MAKE A QUESTION FOR YOU GUYS TO GET 50 POINTS In the text field belowwrite a first draft of your critique based on your outline and notes. Your critique should be at least 400 words long 2. After a break, reread what you have written . Make any corrections in content that seem necessary . Then check your work for errors , looking at these areas : Indentation of paragraphs capitalization punctuation at the end of each sentence spelling of doubtful words use of quotation marks to set off exact words quoted from story use of a variety of sentence patterns correct punctuation within sentences How many territories does the U.S. control before 1820 Which organisms are common pioneer species? Answer, please my profile glitch and I can not look at the answers.20 pointsRead this excerpt from "Wiley, His Mama, and the Hairy Man in The People Could FlyShe knew because she was from the swamps near the Tombigbee River and she knew conjure.Which plot element does this excerpt describe?the climaxthe conflictthe settingthe falling actionWho is the antagonist in "Wiley, His Mother, and the Hairy Man" and why?Wiley is the antagonist, because he fights against the Hairy Man and eventually wins.Mama is the antagonist, because she finally wins the fight against the Hairy Man.The dogs are the antagonists, because they are the main characters that fight against the enemy.The Hairy Man is the antagonist, because he is the main enemy that the main character fights against.Read this excerpt from "Wiley, His Mama, and the Hairy Man in The People Could FlyIn the morning, say there was a big, wide path right through the swamp just like a cyclone cut along through it. Trees torn clear up, roots and all, and lyin there on the ground.This excerpt is from which part of the story?the expositionthe rising actionthe climaxthe falling actionWhich excerpt from "Wiley, His Mother, and the Hairy Man" best clues readers that the Hairy Man is the antagonist of the story?The Hairy Man's . . . gone get you if you don't look out.You know, the Hairy Man can't stand some hound dogs.Hairy Man was ugly, even when he grinned.The Hairy Man hasn't any feet like a man.The climax of "Wiley, His Mother, and the Hairy Man" occurs whenWiley gets out of the tree without being hurt by the Hairy Man.the Hairy Man dissolves the ropes that are tying up the dogs.the Hairy Man realizes that he stole a pig, not a human baby.Mama tells Wiley that the Hairy Man will not hurt him anymore.Which statement best describes the main conflict in "Wiley, His Mother, and the Hairy Man"?Wiley has to find a way out of the tree he ran up.Wiley has to trick the Hairy Man into turning himself into animals.Wiley has to ask his mama for help to defeat the Hairy Man.Wiley has to defeat the Hairy Man three times to make him go away.Read this excerpt from "Wiley, His Mama, and the Hairy Man in The People Could FlyNow, facts are facts. Wiley was a boy. He and his mama lived by themselves with just Wileys dogs.What makes this excerpt part of the exposition of the story?It describes the setting of the story.It introduces the main character.It states the main conflict of the story.It tells about the antagonist of the story.What is the most important lesson Wiley learns in "Wiley, His Mother, and the Hairy Man"?Strong people often try to hurt smart people.Rope is not as strong as the ties between people.It is better to be a clever person than a strong one.Mothers are always smarter than their children.Read this excerpt from "Wiley, His Mama, and the Hairy Man in The People Could FlyBut they heard a great bad laughin way off across the river. And everybody sayin it, "Thats the Hairy Man. . . . . papa never got across Jordan because the Hairy Man block his way.This excerpt introducestwo enemies of the hero.two supporting characters.the protagonist and his father.the antagonist of the story. Read this excerpt from "Wiley, His Mama, and the Hairy Man in The People Could FlyBut they heard a great bad laughin way off across the river. And everybody sayin it, "Thats the Hairy Man. . . . . papa never got across Jordan because the Hairy Man block his way.This excerpt introducestwo enemies of the hero.two supporting characters.the protagonist and his father.the antagonist of the story.Who is the protagonist in "Wiley, His Mother, and the Hairy Man" and why?Wileys mama, because she helps Wiley defeat the Hairy ManWileys papa, because he is the first character the Hairy Man attacksThe Hairy Man, because most of the story is about himWiley, because he is the main character who fights the Hairy Man 3. The Electoral College (Page 83) was established as acompromise over who should elect the president andvice-president, the people or Congress? Do you feel thiscompromise was fair? If so, explain why? If not, what would youhave proposed? Explain in detail. Ana went to a book store and bought a pen and pencils and the total money she spent is $850 and a pen cost $150 and a pencil cost $100 what are all the possible purchases that she could have made. 4y320x4y9.y66(x8)2 plz show work Complete the following statement. 4 T = lb. Miss Bee bakes a pie for her book club meeting the Shaded part of the diagram shows the amount of Pi left after the meeting that evening this far just eats 1/4 of the whole pie what fraction represents the amount of pie remaining Promoting gender equality in employment is one of the goals ofthe Special Olympics.the United Farm Workers.the American Indian Movement.the National Organization for Women. PART A: which statement best expresses the central idea of the text sinners in the hands of an angry god A business must decide whether to open a new office in China. If it opens thebranch, it will increase its chances of selling a high volume of its products inChina. On the other hand, the business will have to spend a lot of money tomake the branch operational.What would be an opportunity cost for the business if it chooses not to openthe new branch in China?A. The business would have to open a new branch in a differentcountryB. The business would increase its marginal benefits on eachproduct it makesC. The business would be able to use the money it saves on otherprojects.D. The business would lose the chance to make more money inChina. The genotype of individual 2 could be