whats your favorite rocket leage carr???????????????????????????? comment if there is already 2 answers brainleist for first

Answers

Answer 1

Answer:

hello

Explanation:

Octane is my favorite

Answer 2
same ^

thx for the points

Related Questions

different the need for external or secondary memory​

Answers

Answer:

Secondary storage is needed to keep programs and data long term. Secondary storage is non-volatile , long-term storage. Without secondary storage all programs and data would be lost the moment the computer is switched off.

External storage enables users to store data separately from a computer's main or primary storage and memory at a relatively low cost. It increases storage capacity without having to open up a system.

what is data analysing data and give three examples ?​

Answers

Answer:

Data Analysis is the process of systematically applying statistical and/or logical techniques to describe and illustrate, condense and recap, and evaluate data. ... An essential component of ensuring data integrity is the accurate and appropriate analysis of research findings.

Inferential Analysis. Diagnostic Analysis. Predictive Analysis. Prescriptive Analysis are examples.

what presents information about the document, the progress of
current tasks and the status of certain commands and keys?​

Answers

Answer: status bar

Explanation:

The status bar refers to the horizontal window that's found at the bottom of the parent window whereby an application will show different kinds of status information.

The main function of the status bar is to simply display information withnragrds to the current state of the window. Therefore, the status bar helps in the presentation of information about the document, indicates progress of

current tasks and also the status of some commands and keys.

Create a new Java project/class called ChangeUp. Create an empty int array of size 6. Create a method called populateArray that will pass an array, use random class to choose a random index and prompt the user to enter a value, store the value in the array. Note: Generate 6 random index numbers in an attempt to fill the array. Create a method called printArray that prints the contents of the array using the for each enhanced loop. Submit code. Note: It is possible that your array won't be filled and some values will still have 0 stored. That is acceptable.

Answers

Answer:

//import the Random and Scanner classes

import java.util.Random;

import java.util.Scanner;

//Begin class definition

public class ChangeUp {

   

   //Begin the main method

  public static void main(String args[]) {

       //Initialize the empty array of 6 elements

      int [] numbers = new int [6];

       

       //Call to the populateArray method

       populateArray(numbers);

       

       

   } //End of main method

   

   

   //Method to populate the array and print out the populated array

   //Parameter arr is the array to be populated

   public static void populateArray(int [] arr){

       

       //Create object of the Random class to generate the random index

       Random rand = new Random();

       

       //Create object of the Scanner class to read user's inputs

       Scanner input = new Scanner(System.in);

       

       //Initialize a counter variable to control the while loop

       int i = 0;

       

       //Begin the while loop. This loop runs as many times as the number of elements in the array - 6 in this case.

       while(i < arr.length){

           

           //generate random number using the Random object (rand) created above, and store in an int variable (randomNumber)

           int randomNumber = rand.nextInt(6);

       

           //(Optional) Print out a line for formatting purposes

           System.out.println();

           

           //prompt user to enter a value

           System.out.println("Enter a value " + (i + 1));

           

           //Receive the user input using the Scanner object(input) created earlier.

           //Store input in an int variable (inputNumber)

           int inputNumber = input.nextInt();

           

           

           //Store the value entered by the user in the array at the index specified by the random number

           arr[randomNumber] = inputNumber;

           

           

           //increment the counter by 1

          i++;

           

       }

       

       

       //(Optional) Print out a line for formatting purposes

       System.out.println();

       

       //(Optional) Print out a description text

      System.out.println("The populated array is : ");

       

       //Print out the array content using enhanced for loop

       //separating each element by a space

       for(int x: arr){

           System.out.print(x + " ");

       }

   

       

  } //End of populateArray method

   

   

   

} //End of class definition

Explanation:

The code above is written in Java. It contains comments explaining the lines of the code.

This source code together with a sample output has been attached to this response.

Answer:

import java.util.Random;

import java.util.Scanner;

public class ArrayExample {

   public static void main(String[] args) {

       int[] array = new int[6];

       populateArray(array);

       printArray(array);

   }

 

   public static void populateArray(int[] array) {

       Random random = new Random();

       Scanner scanner = new Scanner(System.in);

       boolean[] filledIndexes = new boolean[6];

     

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

           int index = random.nextInt(6);

         

           while (filledIndexes[index]) {

               index = random.nextInt(6);

           }

         

           filledIndexes[index] = true;

         

           System.out.print("Enter a value for index " + index + ": ");

           int value = scanner.nextInt();

           array[index] = value;

       }

   }

 

   public static void printArray(int[] array) {

       System.out.println("Array contents:");

       for (int value : array) {

           System.out.print(value + " ");

       }

   }

}

Explanation:

In the code provided, we are creating an array of size 6 to store integer values. The objective is to populate this array by taking input from the user for specific indexes chosen randomly.

To achieve this, we have defined two methods: populateArray and printArray.

The populateArray method takes an array as a parameter and fills it with values provided by the user. Here's how it works:

We create an instance of the Random class to generate random numbers and a Scanner object to read user input.We also create a boolean array called filledIndexes of the same size as the main array. This array will keep track of the indexes that have already been filled.Next, we use a loop to iterate six times (since we want to fill six elements in the array).Inside the loop, we generate a random index using random.nextInt(6). However, we want to make sure that we don't fill the same index twice. So, we check if the index is already filled by checking the corresponding value in the filledIndexes array.If the index is already filled (i.e., filledIndexes[index] is true), we generate a new random index until we find an unfilled one.Once we have a valid, unfilled index, we mark it as filled by setting filledIndexes[index] to true.We then prompt the user to enter a value for the chosen index and read the input using scanner.nextInt(). We store this value in the main array at the corresponding index.This process is repeated six times, ensuring that each index is filled with a unique value.

The printArray method is responsible for printing the contents of the array. It uses a for-each enhanced loop to iterate over each element in the array and prints its value.

**By separating the population and printing logic into separate methods, the code becomes more modular and easier to understand.**

Haley is responsible for checking the web server utilization. Which things should she review while checking the server utilization?

While checking the server utilizations, she should review____ and ____.

First box?
CPU
cables
backup media

Second box?
RAM
web application
antivirus

Answers

Answer:

While checking the server utilizations, she should review CPU and RAM.

Explanation:

Answer:

CPU and RAM

Explanation:

Which of these elements help të orient a user?
to
A
a dialog
B.
page name
c. an icon
b. a banner




Fast please

Answers

answer:

page name

Explanation:

Answer:

b. page name

Explanation:

plato

2.19.5: Circle Pyramid 2.0

Answers

In this exercise we have to use the knowledge of the python language to write the code, so we have to:

The code is in the attached photo.

So to make it easier the code can be found at:

def move_to_row(num_circle):

x_value = -((num_circle*50)/2)

y_value = -250 +(50*row_value)

penup()

setposition(x_value,y_value)

pendown()

def draw_circle_row(num_circle):

for i in range(num_circle):

endown()

circle(radius)

penup()

forward(diameter)

#### main part

speed(0)

radius = 25

diameter = radius * 2

row_value = 1

num_circle = int(input("How many circle on the bottom row? (8 or less): "))

penup()

for i in range(num_circle):

move_to_row(num_circle)

row_value=row_value+1

draw_circle_row(num_circle)

num_circle=num_circle-1

See more about python at brainly.com/question/26104476

Other Questions
I dont know which one is correct. A) a=80 b=100B) a=60 b=120C) a=70 b=110D) a=72 b= 108 Please help thank you How much heat, in kilojoules, is needed to raise the temperature of 236 g of silver from 8.5oC to 34.9 C? (cAg = 0.24 J/gC) Suppose you had the chance to plan a quinceaera. Do you think it would be easy or difficult? Why? Include facts and details from the Article in your answer. Identify any outliers of the data set. Then determine the effect that the outlier has on the mean.25, 29, 58, 27, 23, 26, 27, 25, 28, 24 Question 3 (2 points)(09.06)For two functions, m(x) and p(x), a statement is made that m(x) = p(x) at x = 7. What is definitely true about x = 7? (2 points) aBoth m(x) and p(x) cross the x-axis at 7. bBoth m(x) and p(x) cross the y-axis at 7. cBoth m(x) and p(x) have the same output value at x = 7. dBoth m(x) and p(x) have a maximum or minimum value at x = 7. what is the value of 8 in 293,581 1 Choisissez Select the answer that best completes the statement, according to the text1. En France, on sert les saladesa. comme entre. b. aprs le fromage. c. aprs le plat principal..2. On prend le gotera. le matin. b. laprs-midi. c. le soir.3. On dit Sant!a. avant de manger. b. avant de boire. c. aprs les repas.4. Les Franais adorent manger un plat de fruit de mer qui sappellea. la bouillabaisse. b. le couscous. c. la farcis 5. En France, on sert le plat du fromage comme a. hors duvre b. avant le plat principal c. aprs le plat principal 6. On retrouve des amis au caf pour prendre a. les hors duvre b. les desserts c. les apros7. Le far breton est a. une soupe b. une salade un dessert For a given product demand, the time-series trend equation is 53 - 4 x. The negative sign on the slope of the equation: a. is a mathematical impossibility. b. is an indication that the forecast is biased, with forecast values lower than actual values. c. is an indication that product demand is declining. d. implies that the coefficient of determination will also be negative. e. implies that the cumulative error will be negative. I dont understand it please help Jeanie sells M&Ms out of her giant bag at 4 for 5 cents. The machine at the store sells you 9 for 25 cents. which is the better deal for you? The quotient of 9 and 3 subtracted from the product of 6 and 2 The profit P, in millions, of Company A is given by the equation P=7.5x +17, where x is the number of years in business. The profit P, in millions, of Company B is given by the equation P=4.1x +12. Write a polynomial equation to give the "difference" in profit D after x years. BRAINLIEST IF CORRECTHow does the evidence from Document 1 support or (refute) that the Mongols may not have been or were indeed "barbaric"? Describe positive and negative factors of ruling a large empire. You can also include what you've learned so far about the Mongols. Which revision corrects the error in this sentence?Many students at Carson High School are aware of the human impact on the environment and most feel this issue isimportantA)B)Many students at Carson High School are aware of the human impact onthe environment, and most feel this issue is important.Many students at Carson High School are aware of the human impact onthe environment, and most feel this issue is important.Many students at Carson High School are aware of the human impact, onthe environment and most feel this issue is importantc)D)Many students at Carson High School are aware of the human impact onthe environment, and most feel, this issue is important Please answer correctly !!!!Will mark Brianliest !!!!!!!!!!!!!! Ok, do we live in or on earth? HELP ME PLEASEEEEEEEEEEEE One method of increasing the chances of particles colliding during a reaction is to...1)decrease temperature2) decrease concentration3)increasing concentration4)use a catalyst Name three important inventions of the Spanish American war Volume of a hexagonal prism with a base side length of 2 inches and a height of 8 inches, the prism is regular. Also it would be a big help if you could calculate the lateral area and the total area. Thanks so much