1. P_OP_EW_RE
2.H_R_W_R_
3._ON_E_TI_IT_
4.P_OC_D_RE
5._O_TW_R_​

Answers

Answer 1

Answer:

poopaewr4vh23rbu2rfbu2rfu

Explanation:


Related Questions

What is the 4-digit code?

Answers

Answer:

Try blue, purple, red, then yellow.

Explanation:

What should software firm design for the VR sample at Museum?

Answers

The software firm design for the VR sample at Museum is a 360-degree video that shows a walk through of the virtual studio of a famous artist that is aided by a narration about the various piece of art that the user wants to focus on.

How is VR used in museums?

VR is known to be a technology that puts the user inside the experience they are viewing. It is known to be a kind of  interactive or it is one that take the shape of 360-degree video.

The use of VR is done so as to form or create museum tours, so that exhibits in the museum can be interactive, and to bring the different scenes to reality.

Learn more about museums from

https://brainly.com/question/95815

A company's website needs to be more highly available and faster for users to access outside of their country. Which action can they take to achieve this?

Answers

The company could use multiple versions of the website hosted on different servers on other countries alongside with using different domain endings.

Help!!! Who is this? Who is it from?

Answers

Show: Dragon Ball Super
Character: Vegito
i have no idea who that is

which table option enables you to combine the contents of several xells into one cell?

Answers

The answer is the merge cells

Using an electronic monitoring device that can detect and amplify internal responses not ordinarily available to us is known as

Answers

The use of an electronic monitoring device that can detect and amplify internal responses not ordinarily available to us is known as biofeedback.

What is biofeedback?

The Biofeedback is known to be a kind of a mind-body method that is said to often make use of some visual or auditory feedback to lecture people to know the main physical signs and symptoms linked with stress and anxiety, such as increased heart rate, etc.

It is also known to make use of an electronic monitoring device that can detect and amplify internal responses not ordinarily available to man.

Learn more about biofeedback from

https://brainly.com/question/1124510

A company delivers packages by truck and would like to minimize the length of the route that each driver must travel in order to reach n delivery locations. The company is considering two different algorithms for determining delivery routes.
Algorithm I
Generate all possible routes, compute their lengths, and then select the shortest possible route. This algorithm does not run in reasonable time.
Algorithm II
Starting from an arbitrary delivery location, find the nearest unvisited delivery location. Continue creating the route by selecting the nearest unvisited location until all locations have been visited. This algorithm does not guarantee the shortest possible route and runs in time proportional to n2.
Which of the following best categorizes algorithm II?
A. Algorithm II attempts to use an algorithmic approach to solve an otherwise undecidable problem.
B. Algorithm II uses a heuristic approach to provide an approximate solution in reasonable time.
C. Algorithm II provides no improvement over Algorithm I because neither algorithm runs in reasonable time.
D. Algorithm II requires a much faster computer in order to provide an improvement over Algorithm I.

Answers

The right option that the company should  consider  for determining delivery routes is:

Algorithm II uses a heuristic approach to provide an approximate solution in reasonable time.

What is algorithm?

An algorithm is known to be a group of computer  instructions that is aimed in solving an issue or addressing a task.

A good example of an algorithm is known to be recipe, that is made up different instructions for cooking a dish or meal. In the above scenario,  

The right option that the company should  consider for knowing delivery routes is  Algorithm II as it will help them using  heuristic approach to know a good solution in short time.

Learn more about Algorithm from

https://brainly.com/question/24953880

(03.01 LC)
In programming, what is an integer number?
O A fraction
O A number with a decimal
O A round number
O A number without a decimal

Answers

A number without a decimal. I’m pretty sure


REASON: an integer is a whole number, and it cannot be A because it’s not a fraction. They cannot have decimal points so it’s not B either and not C as well,

The answer love, is D

How does each additional block added to the blockchain strengthen the integrity of the entire chain?

Answers

Answer:

Explanation:

The more blocks in the blockchain, the more opportunities for data on the network to be verified. More blocks means that it is less of a chance that the entire network will be compromised by one person or one group.

A blockchain exists as a decentralized ledger of all transactions across a peer-to-peer network.

What is blockchain?

A blockchain exists as a decentralized ledger of all transactions across a peer-to-peer network. Utilizing this technology, participants can verify transactions without a need for a central clearing authority. Potential applications can contain fund transfers, settling trades, voting, and many other problems.

Blockchain exists as a shared, immutable ledger that simplifies the process of recording transactions and tracking assets in a company network. An investment can be tangible (a house, car, cash, land) or intangible (intellectual property, patents, copyrights, branding).

The more blocks in the blockchain, the more possibilities for data on the network to be confirmed. More blocks mean that it stands less of a chance that the whole network will be compromised by one individual or one group.

To learn more about blockchain refer to:

https://brainly.com/question/25700270

#SPJ2

Which tools would you use to make header 1 look like header 2.

Answers

The tools that would be used to make header 1 appear and look like header 2 is the alignment tool icon and the Bold tool icon.

To understand this question, we must understand the interface of the Microsoft Excel.

What is Microsoft Excel?

Microsoft Excel is a spreadsheet that can be used for a variety of features such as:

Computation of Data sets and variablesCalculation of Business Data Arrangement and Analysis of Data into Tables etc.

As a Microsoft software, Microsoft Excel can also be used to edit sheets. In the image attached, the required tool icons needed to change the header 1 into header 2 is the alignment tool icon and the Bold tool icon.

The two tools can be seen in the image as the two lower left icons.

Learn more about Microsoft Excel here:

https://brainly.com/question/25863198

(1) Output a menu of automotive services and the corresponding cost of each service. (2 pts)Ex:Davy's auto shop servicesOil change -- $35Tire rotation -- $19Car wash -- $7Car wax -- $12(2) Prompt the user for two services. Each service type is composed of two strings. (2 pts)Ex:Select first service: Oil changeSelect second service: Car wax(3) Output an invoice for the services selected. Output the cost for each service and the total cost. (3 pts)Davy's auto shop invoiceService 1: Oil change, $35Service 2: Car wax, $12Total: $47(4) Extend the program to allow the user to enter a dash (-), which indicates no service. (3 pts)Ex:Select first service: Tire rotationSelect second service: -Davy's auto shop invoiceService 1: Tire rotation, $19Service 2: No serviceTotal: $19**THIS MUST BE IN THE C LANGUAGE**

Answers

Answer:

Follows are the code to this question:

#include <stdio.h>//header file

#include <string.h>//header file

int main()//main method

{

char f_service[100], s_service[100];//defining character array

int total;//defining integer variable

do

{

   total = 0;//assign value in total variable

   printf("Davy's auto shop services\n");//print message

   printf("Oil change -------- $35\n");//print message

   printf("Tire rotation ------ $19\n");//print message

   printf("Car wash ---------- $7\n");//print message

   printf("Car wax ----------- $12\n");//print message

   printf("Enter first service: \n");//print message

   fgets(f_service, 100, stdin);//use get function for input value

   f_service[strlen(f_service) - 1] = '\0';//use length function for calculate total length

   printf("Enter second service: \n");//print message

   fgets(s_service, 100, stdin);//use get function for input value

   s_service[strlen(s_service) - 1] = '\0';//use length function for calculate total length

   printf("\nDavy's auto shop invoice\n\n");//print message

   if(strcmp(f_service, "Oil change") == 0)//defining if block that check first input Service

   {

     printf("Service 1: %s, $%d\n", f_service, 35);//print service name with rate

     total = total+ 35;//calcaulte value in total variable

   }

   else if(strcmp(f_service, "Tire rotation")== 0)

   {

     printf("Service 1: %s, $%d\n", f_service,19); //print service name with rate

     total = total + 19;//calcaulte value in total variable

   }

   else if(strcmp(f_service, "Car wash") == 0)

   {

     printf("Service 1: %s, $%d\n", f_service, 7);//print service name with rate

     total = total + 7;//calcaulte value in total variable

   }

   else if(strcmp(f_service, "Car wax") == 0)

   {

    printf("Service 1: %s, $%d\n", f_service, 12); //print service name with rate

     total = total + 12;//calcaulte value in total variable

   }

   else

   {

     printf("Service 1: Empty\n");//print message

   }

   if(strcmp(s_service, "Oil change") == 0)

   {

     printf("Service 2: %s, $%d\n", s_service, 35);//print service name with rate

     total= total+ 35;//calcaulte value in total variable

   }

   else if(strcmp(s_service, "Tire rotation")== 0)

   {

     printf("Service 2: %s, $%d\n", s_service, 19);//print service name with rate

     total = total + 19;//calcaulte value in total variable    

   }

   else if(strcmp(s_service, "Car wash") == 0)

   {

   printf("Service 2: %s, $%d\n", s_service, 7);//print service name with rate

   total = total + 7;//calcaulte value in total variable

   }

   else if(strcmp(s_service, "Car wax") == 0)

   {

   printf("Service 2: %s, $%d\n", s_service, 12);//print service name with rate

   total= total+ 12;//calcaulte value in total variable

   }

   else if(strcmp(s_service, " ") == 0)

   {

   printf("Service 2: No service\n");//print service name with rate

   }

   else

   {

   printf("Service 2:No service\n");//print message

   }

   printf("Total: $%d\n", total);//print total value

   }

   while(strcmp(s_service, "_"));//defining while that compare second service value

return 0;

}

Output:

Please find the attached file.

Explanation:

In the given C language code, the two-character array "f_service and s_service" and one integer variable "total" is declared, in which character array is used for user input, and the total is used for calculating value.

In the next step, the do-while loop is used, in which we used multiple conditional statements, that check "first and second" both array input value and add values into the total variable.If the first array doesn't take any input value, it will print an "empty" message. Similarly, in the second array, if it can't take any value, it will print a message "No service", and for the exit from the program, we pass the "underscore (_)" symbol.  

An ______ is a simplified image. (4 letters)

Answers

Answer:

Icon

Explanation:

To create a new document using a template, navigate to the _____ tab.

File
Home
New
Page Layout

Answers

Answer:

uhh...

Explanation:

i think it might be the new tab.

Question #2
Multiple Select
Which of the following statements about computational thinking are true? Select 3 options.
The result of computational thinking is a problem broken down into its parts to create a generalized model and possible solutions,
Computational thinking involves the techniques of decomposition, pattern recognition, abstraction, and algorithm development.
Computational thinking is basically synonymous with programming.
Computational thinking is a set of techniques used to help solve complex problems or understand complex systems
Understanding all of the minor details about a problem is critical in computational thinking

Answers

Answer:

B. The result of computational thinking is a problem broken down into its parts to create a generalized model and possible solutions.  

C. Computational thinking involves the techniques of decomposition, pattern recognition, abstraction, and algorithm development.

E. Computational thinking is a set of techniques used to help solve complex problems or understand complex systems.

Explanation:

I just got it correct.

________ involves tricking a person into entering sensitive personal or financial information into a form on a website or in an e-mail, typically by convincing the person that she is dealing with a site she normally interacts with, such as her bank. Group of answer choices Adware Spyware Phishing Spam Electronic monitoring

Answers

Answer:

Phishing involves tricking a person into entering sensitive personal or financial information into a form on a website or in an e-mail, typically by convincing the person that she is dealing with a site she normally interacts with, such as her bank.

Explanation:

Adware - When software is installed without consent, and made to show disruptive pop-ups and ads.

Spyware - Records keystrokes, camera and microphone without consent. Can also track activity.

Spam - When the same message is posted several times.

It is clearly not any of these, so it must be Phishing.

- Educator

To enable a single hard drive to store more than one operating system, it would need to be ________.

Answers

Answer:My guess would be disk partitioned

Explanation:

because you are basically dividing into separate filesystems. When operating two OS when call it dual booting.

Explain why Austin takes close-up pictures of whales and displays them in life-size?

Answers

Austin takes close - up pictures of whales so that he that he can provide viewers with an indelible impression of what a whale really looks like.

Why was Austin interested in the picture?

He so interested because, he might not be able to see Whale any time soon.

And the picture will give a platform to evoke unexplored thought and emotion for him.

Learn more about picture at;

https://brainly.com/question/25938417

Write a for loop that uses the print function to display your first name exactly 5 times

Answers

Answer:

idkhuhubuhuhuuhuhg hih

Explanation:

idkuhuhuhyhuhhijhuhuh

Which of the following is an OOP principle that is represented by putting medicine inside a pill capsule to make it easier to swallow?
1.classes and instances

2.inheritance

3.overriding

4.encapsulation

Answers

Answer:

4.encapsulation

The correct option for the OOP principle represented by putting medicine inside a pill capsule is encapsulation.

Hence, option 4 is correct.

The objective of this question is to test your understanding of the principles of object-oriented programming (OOP), specifically the concept of encapsulation.

It aims to assess whether you can recognize encapsulation as the principle that aligns with the scenario of putting medicine inside a pill capsule to make it easier to swallow.

The correct answer is encapsulation.

Encapsulation is an important principle in object-oriented programming (OOP) where it involves bundling data and methods (or functions) together into a single unit called a class.

In the context of the medicine and pill capsule analogy, encapsulation is represented by the act of enclosing the medicine inside the capsule, making it easier to swallow while hiding the details of the medicine's formulation.

Similarly, in OOP, encapsulation helps to hide the internal workings of a class, allowing us to access and interact with the class's methods and data through a simplified interface.

Hence,

Option 4 is true.

To learn more about programming visit:

https://brainly.com/question/14368396

#SPJ3

Simone is working as a photographer for a local state senator as he runs for office in her small town. While at a recent rally, she found a group of teenagers hanging out near the rally, gave them several signs to hold, and asked them to jump up and down while waving the signs and cheering. What type of photograph is Simone taking by doing this?


propaganda


military


celebrity


fashion

Answers

Answer: 1. It is bolder, with exciting backgrounds.

2. ethnographic photographer

3. analog, physical photography

4. Ethnographic photography is from the point of view of someone participating in the culture to some degree.

5. creative stock photography

6. Early Photography 1839-1900

7. medical, fiber optic, and astrophotography

8. propaganda

9. life

10. indigenous photography

11. glamour photos

12. Modern Photography 1900-1945

13. Westerners (Americans)

14. They might deemphasize her subject's faces and include more background and context.

15. Hopi ceremonial dances

Explanation: I finished the quiz

The type of photograph is Simone taking by doing this is propaganda. The correct option is A.

What is propaganda?

Dissemination of information, including facts, arguments, rumors, half-truths, and lies, is known as propaganda and is done to sway public opinion.

Simone is engaging in propaganda photography when she instructs a bunch of youngsters to bounce up and down while waving the signs they have been given at a political gathering.

Using photos to advance or popularize a specific political or ideological stance, propaganda photography frequently employs deceptive tactics to sway people's perceptions or actions.

In this instance, Simone is attempting to project a picture of fervent backing for the senator's campaign by utilizing the teenagers as a visual prop to promote the politician.

Thus, the correct option is A.

For more details regarding propaganda, visit:

https://brainly.com/question/29959113

#SPJ2

Which of the following displays an internal index?
O categories
publish
O tags
O featured image

Answers

Answer:

featured image

Explanation: featured image

Which of the following best describes the "friction" property of a physics material?
A. Controls how fast the object will fall due to gravity
B. Controls the maximum speed of an object
C. Controls how far an object will bounce when it collides with another object
D. Controls how much resistance is felt when two objects are in contact

Answers

Answer:

D. Controls how much resistance is felt when two objects are in contact

Explanation:

Friction is a force, the resistance of motion when one object rubs against another. Whenever two objects rub against each other, they cause friction. Friction works against the motion and acts in the opposite direction.

Which of the following is an example of emerging technologies?

Television
Radio
Streaming video
Automobiles

Answers

Answer:

Automobile is an emerging technologies

Streaming video

Live streaming over the internet has evolved at a rapid rate over the past decade. New technology has improved and simplified the streaming experience for broadcasters and viewers alike.

Explanation:

Hope it helps you!!

1.a. EXPLAIN THE TERM LOGGING INTO A EMAIL ACCOUNT

1.b. WRITE DOWN THE STEPS TO LOG IN AN EMAIL ACCOUNT

1.c. EXPLAIN THE TERM LOGGING OUT AN EMAIL ACCOUNT



Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

Logging into an email account:

Logging into email account, that you are trying to login to your email account.

For example, if you want to login to g-mail , you give your user name and password, upon correct user name and password, the email management system will then allow you to login to your account, where you can see your  inbox, outbox, and other customized emails.

WRITE DOWN THE STEPS TO LOG IN AN EMAIL ACCOUNT

The following steps are used to log in an email account:

Enter your email account URL in your browser or open the application of email. For example g-mail.Then enter your username and passwordUpon provision of right username and password, email system will direct you to login to your email account.

EXPLAIN THE TERM LOGGING OUT AN EMAIL ACCOUNT

The term logging out from an email account means that you are leaving your email account, and the email management system will ensure that no one tries to access your system and protect it from others. It is same like as you are protecting your files and folders and important data from other users  in your system while setting login and logout password.

5 What is the effect of the author proposing athought experiment at the beginning of the text? ​

Answers

Answer:

i dont know correct or not . then also i will.. sorry if the answer is wrong

Explanation:

text "Disease Central" in When Birds Get Flu by John DiConsiglio. In 1958, scientists at the CDC made their first trip overseas. A team went to Southeast Asia to respond to an epidemic of smallpox and cholera. The author uses this passage to help the reader focus on

The aim of A thought experiment is to promote speculative thinking, logical reasoning, and paradigm shifts, it address problems, forces out of our comfort zone, mainly highlight the gaps.

What is the meaning of thought experiments?

Thought experiments is nothing but an imaginative methods which involve in examining the nature of things, employed in various  purposes in different disciplines, including physics, economics, history, mathematics, and philosophy.

It is a test of thoughts that can be done in minds only, it involve imagination of a specific scenario like repercussions, which can lead to broad conclusion.

Hence, a thought experiment  mainly produce speculative thinking, logical reasoning, and paradigm shifts, address problems out of our comfort zone.

Learn more about experiments on:

brainly.com/question/17274244

#SPJ2

Is it true or false?

Answers

Answer:

False

Explanation:

descending starts from highest and goes to lowest. you want ascending sort tool, NOT descending sort tool

Answer: true

Explanation: if your going to sort the patients depending on their blood pressure from highest to lowest, your going to use descending sort tool because if your going to use ascending sort tool it would be organized from lowest to highest.

example: descending- 10, 9, 8 , 7, 6

ascending- 6, 7, 8, 9, 10

how do you take a screen shot on a chrome book

Answers

Answer:

hold ctrl + the square box thing above the six

Explanation:

Answer:

Yuh its ctrl shift and f5 if you want to crop what you are screen shotting

Explanation:

WILL GIVE BRAINLIEST!!!!!!!!
Pipeline construction and maintenance is a highly regulated practice with involvement from federal, state, and local entities.

True

False

Answers

True,

This is a true statement, pipeline construction is taken very seriously and heavily regulated by multiple entities.
TRUE

Create a flowchart that will accept 10 whole numbers one at a time and print the highest and the lowest. Use Switch.

Answers

I will create a sequence of steps that would accept 10 whole numbers one at a time and print the highest and the lowest in Java:

Import javax.swing.JOptionPane;

public class loop_exer2 {

public static void main(String agrs[])

{ String input; int trial=10, sc=0, h=0, l=0, test=0;

System.out.print("Scores: ");

for (int ctr=1;ctr<=10;ctr ) {

input=JOptionPane.showInputDialog("Enter the Scores [" trial "] trials "); sc=Integer.valueOf(input); System.out.print(sc ", ");

if(test==0){h=sc;l=sc;test=1;}

if(sc>h){h=sc;}

else if(sc>h){

h=sc; {

else if(sc<1) {

l=sc;

}

JOptionPane.showMessageDialog (null, "Highest score is:" h "Lowest score is:" l);
System.out.println();

System.out.println ("Highest score is: " h);

System.out.println ( "Lowest score is: "l);

}

}

What is a Flowchart?

This refers to a diagram which is used to represent the various steps which a system uses to create a step by step solution.

From the above code, there is the command to accept whole numbers in String and then request for them one at a time and after the computation, display the highest and lowest numbers.

Read more about flowcharts here:
https://brainly.com/question/6532130

Texas and California have the same average annual salary for web developers and digital interface designers in May 2019
True or False​

Answers

Answer:

False

Explanation:Got it right on 2.02 web design quiz

Other Questions
Find the equation of the line.Use exact numbers. Read the dialogue from a story. "Hey yall, who wants to join me for game of hoops at the park?" asked Justin. "Im down," replied Kara. "Lets play horse and loser buys a round of pops for the rest of us. ""Pops?!" exclaimed Justin. "I reckon thats some sorta drink? Are y'all tryin' to say soda?""Thats right Justin, I keep forgetting youre new around these parts," Andre joked. "Lets see if this makes more sense to a Florida kid. Im fixin to whoop yall at basketball and then enjoy the nice cool soda that youll buy me. ""Fair enuf" replied Justin, "Im ready to show you Michigan kids whats good!"How does Justin speak differently from the other characters?Drag the correct answer into the box. Correct Answer what is 6 1/2 - 3 6/12 One gallon of orange juice costs $3.40 The Javier family drank 2/5 of a gallon of orange juice this morning what is the cost of the orange juice they drank Question 5! Need help Use the drop-down menus to complete the statements about using section breaks in a document.The four section break options can be found in the Breaks menu under the tab.To insert a section break and start the new section on a new page, you would chooseTo insert a section break and start the new section on the same page, you could choose is this intransitive sentence or transitive he received a prize Marjorie consumed 1.5 gallons of water in one day. How many milliliters are equal to 1.5 gallons, if 1 liter = 1,000 milliliters and 1 gallon = 3.785 liters? ( You want to determine how quickly messages can spread on a social media website. On the first day, youcreate a message that is shared with 2 people. On the second day, each of those people share it with 3 people.On third day, everyone who received the message shares it with 3 more people, and so on. Write an equationthat represents the nth term of the geometric sequence. Then find as. as soon as it was said , i was done (use....no sooner.....than) Many Anglo Americans were attracted to the new settlement in Texas because of the cheap farmlandPlease select the best answer from the choices provided which binary value equals 20a) 0100b) 0001c) 1000d) 0000 A researcher took a random sample of 100 students from a large university. She computed a 95% confidence interval to estimate the average weight of the students at this university. The confidence interval was too wide to provide a precise estimate. True or false? the researcher could produce a narrower confidence interval by increasing the confidence level to 99% A small rectangular package has a area of 9x square units and a height of 5 units. A large rectangular package has an area of 6 square units a d a height of 3x units more than the small box. What equation could be used to determine the volume of the large rectangular box? Choose the correct form of the adjective grand to agree with the noun.Ma maison est trsHelp!!! 8. A fossil plant that helps support the theory of continental drift is ____. a. Mesosaurus b. Glossopteris c. Glomar d. Pangaea Rewrite 4/5 and 7/9 so they have a common denominator If logx y = 2, which of the following is true. y = x^2 y = 2x x = y^2 x = 2y Make a number line and mark the points that represent the following values of x.5x34 Rewrite in simplest terms: -2(5d-9f)+7f-10(-9f-7d)