Question 2 If you are deploying applications in your Pods that need persistent storage, which controller type should you use

Answers

Answer 1

Answer:

"StatefulSet" is the right response.

Explanation:

StatefulSet seems to be an API teaching load instrument that is used to start managing stateful implementations.

Maintains or controls the integration as well as balancing of such a series of Pods but mostly generates a sort of assurance on the placing an order but rather distinctiveness of certain Pods.Like some kind of Implementation, a StatefulSet did maintain pods that have been predicated on the same type of receptacle.

Related Questions

Use the drop-down menu to complete the steps for editing a conditional formatting rule.

On the ___ tab, click the ___ group. On the Styles drop-down list, click ______. In the dialog box, select the rule, and click ________. Make the changes to the rule and click ok.

Answers

Answer:

1. Home

2. Conditional formatting.

3. Manage rules.

4. Edit.

Explanation:

A spreadsheet can be defined as a file or document which comprises of cells in a tabulated format (rows and columns) typically used for formatting, arranging, analyzing, storing, calculating and sorting data on computer systems through the use of Microsoft Excel.

On the Home tab, click the Conditional formatting group. On the Styles drop-down list, click Manage rules. In the dialog box, select the rule, and click Edit. Make the changes to the rule and click OK.

Answer:

Use the drop-down menu to complete the steps for editing a conditional formatting rule.

On the

✔ Home

tab, click the

✔ Styles

group.

On the Styles drop-down list, click

✔ Conditional Formatting

.

In the dialog box, select the rule, and click

✔ Manage Rules

.

Make the changes to the rule, and click OK.

Explanation:

The /home/gshant/smp directory contains several files. The directory and files need to be removed. The current working directory is /home/gshant. What would you enter at the command prompt to remove the smp directory and all the files it contains?

Answers

Explanation:

Whenever a user types in a command at the command line that is not built into the shell or that does not include its absolute path and then presses the Enter key, the shell searches through those directories, which constitute the user's search path, until it finds an executable file with that name.

List two reasons why someone looking at a career in the Energy cluster might want to focus on new technology, such as energy-efficient products or sustainable energy. Give two examples of careers that may work with these new energy technologies.

Answers

Answer:

....

Explanation:

When having the new technology that we have in 2021, it'll be easier to work with since we may know more now, then back then. Career's that may work with new types of energy technologies, are Civil Engineers, Construction, or Building Inspectors.  

Answer:

When having the new technology that we have in 2021, it'll be easier to work with since we may know more now, then back then. Career's that may work with new types of energy technologies, are Civil Engineers, Construction, or Building Inspectors.  

Explanation:

the guy above me right

Mario has a friend who uses assistive technology. Complete the paragraph to describe how Mario can make his document useful to his friend. Mario wants to make his document accessible to assistive technology users. He first needs to access the Accessibility Checker. He can do this by clicking the tab. Next, he needs to click the option. Then, he needs to click the icon. When he clicks on the Check Accessibility option, the Accessibility pane will open. He then needs to read the information about errors, warnings, tips, and steps he needs to take to make his document accessible to assistive technology users.

Answers

Answer:

First options for all 3

Explanation:

Answer:

File, Info, Check for issues

Explanation:

edge

Including the word OR will make a search less specific.
O False
O True

Answers

Answer:

true, the word or makes it sound like there is a option.

True, it will make the search less specific.

Submit your newsletter that includes the following: two or three columns a title at least three graphics, but not more than six

Answers

Sorry for late response. I hope this answer helped.

I will be doing the biography report.  

The Biography and Life of Henry Ford.

Column One: Who was Henry Ford?

Henry Ford was the founder of Ford Motor Company and also the mass producer of the automobile. Henry Ford was born in 1863. At the age of 16, he worked as a machinist apprentice. Later, Henry began to work the family farm while still working on creating steam engines. Henry had a big interest in steam engines, which would later contribute to him building his first working automobile.

Column Two: How did Henry Ford contribute to our society?

After marrying in 1888, Ford was hired to work for Edison Illuminating Company. His position was an engineer, and Ford began to accelerate his position in the company quickly. After a while, Ford created his first operating vehicle. This was called the "Quadricycle." Ford wanted to improve on his models, so he founded the Company Ford with others. Ford then began to develop methods of mass-producing automobiles to sell to the public. After success in business, he bought the whole company and owned it all by himself. Ford began to mass-produce automobiles. It is said that " The mass production techniques Henry Ford championed eventually allowed Ford Motor Company to turn out one Model T every 24 seconds." Ford passed away in 1945. He decided to give ownership to his son Edsel Ford before he died, but Edsel sadly died before Henry Ford. The Ford company's ownership was given to Ford's grandson, Henry Ford II.

Three Graphics:

The newsletter consists of a topic from the Microsoft foundation. It typically makes charitable contributions to nonprofit organizations directly.

What is Newsletter?

A newsletter may be defined as a small or brief publication that significantly contains news of interest chiefly to a special group. The purpose of a newsletter is to promote a product or service and create an individual touchpoint with your email subscribers.

The support of the Microsoft foundation is given on a national and international basis in areas of company operations, with emphasis on the Puget Sound, Washington, area. This is permanently guided by the belief that every life has equal value, the Bill & Melinda Gates Foundation works to help all people lead healthy, productive lives.

In developing countries, it focuses on improving people's health and giving them the chance to lift themselves out of hunger and extreme poverty.

To learn more about Newsletter, refer to the link:

https://brainly.com/question/28424369

#SPJ2

You know that you should check the room for security against unwanted entry do you check locks on doors and windows. What else do you want to check

Answers

Under the bed and the closet because of monsters

Who is responsible for making adjustments to the shots taken in a two-camera situation?
camera person
audio technician
technical director
A/V tech

Answers

Answer:

The correct option is;

Technical director

Explanation:

A scene in a movie is made up of several shots and the idea portrayed by a scene is determined by the technical director or the director of photography who has the responsibility of making the film appear as intended by working with the different film production departments including the editing department at various film editing phases

Create a while loop to try making a video game turn based battle.
Then have a monster health value and a player health value.
The player can then choose to attack, heal, or do magic.
If they choose to attack, roll one die and take that damage away from the monsters health.
If they choose to heal then add a dice roll to the player's hp.
If they choose magic then take two dice rolls away from the enemy.
The enemy attacks every turn with 1 dice roll.

Answers

import random

monster_health = 20

player_health = 20

while player_health >0 and monster_health>0:

   player_choice = input("Do you wish to attack, heal, or do magic? (type attack, heal, or magic) ")

   if player_choice == "attack":

       damage = random.randint(1,6)

       monster_health -= damage

       print("You attack the monster for",damage,"points of health. The monster has",monster_health,"points of health")

   elif player_choice == "heal":

       heal = random.randint(1,6)

       player_health += heal

       if player_health>20:

           player_health = 20

       print("You heal for",heal,"points of health. Your health is now at",player_health)

   elif player_choice == "magic":

       total = 0

       for x in range(2):

           total += random.randint(1,6)

       monster_health -= total

       print("You attack the monster for",total,"points of health. The monster has",monster_health,"points of health")

   if player_health < 1 or monster_health <1:

       break

   monster_damage = random.randint(1,6)

   player_health -= monster_damage

   print("The monster attacks your for",monster_damage,"points of health. You have",player_health,"points of health remaining.")

if player_health < 1:

   print("You died! Better luck next time!")

elif monster_health < 1:

   print("You defeated the monster! Great job!")

I wrote my code in python 3.8. Best of luck.

Your users are reporting latency in your services. Traditionally with on premise architecture, you would have to page your admin so she could launch another server to balance the load on your servers. How can you automate this with AWS

Answers

Answer:

You have to enable the Amazon CloudWatch alarm that would trigger the scaling policy.

Explanation:

Amazon web service is a cloud-based service company that provides network and database solutions to its customers. Network administrations used these services to enhance productivity and automate their cloud tasks.

The Amazon CloudWatch alarm is a service used by administrators to trigger scaling policies for their deployed applications and tasks.

What two choices do you have when you open the Remote tab of the System Settings?

Answers

Answer:

remote assistance and remote desktop

Explanation:

^

Write a program in python to test if given number is prime or not.

Answers

num = int(input("Enter a number to test if it's prime or not: "))

if num%2 == 0:

   if num == 2:

       print(num,"is prime")

   else:

       print(num,"is not prime")

else:

   count = 0

   for x in range(2,num):

       if num % x == 0:

           count+=1

   if count==0:

       print(num,"is prime")

   else:

       print(num,"is not prime")

I wrote my code in python 3.8. I hope this helps!

Answer:

Answer:

def main():

num = int(input("Input a number to check for prime: "))

if num > 1:

 for i in range(2,num):

  if (num % i) == 0:

   print("%d is not a prime number" % num)

   break

  else:

   print("%d is a prime number" % num)

   break

else:

 print("%d is not a prime number" % num)

 

if __name__ == "__main__":

main()

Explanation:

Solution retrieved from programiz.com.

Note, this program uses the idea of the Sieve of Eratosthenes to validate the input number by using the modulo operator to determine primeness.

The program will output to the user if the number input is indeed prime or not.

Cheers.

Explanation:

JAVA

Write a program to display the given pattern:
3
5 6
8 9 10
12 13 14 15​

Answers

Answer:

class Main {  

 public static void main(String args[]) {

   int nr = 1;

   int value = 3;

   while(value < 16) {

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

          System.out.printf("%d ",value++);

      }

      System.out.println();

      value++;

      nr++;

   }

 }

}

Explanation:

This is one of the many approaches...

To display the grid limits, you must right-click on the

Answers

Answer:

????????????????????? very confused

Explanation:

Right click on the Grid icon to access the grid settings. In the Drafting Settings dialogue box, untick Display Grid beyond limits to see the boundary of your drawing limits. You can set the limits of the drawing grid by typing limits and following the prompts on the command line.

The computer that can be used for performing the daily life tasks that might include emailing, browsing, media sharing, entertainment etc

Answers

Answer:

Yes, this statement is completely true

Explanation:

Yes, this statement is completely true. A personal computer is a multimedia machine and can be used to complete an incredibly large number of tasks with ease. Such tasks include all of the ones listed in the question. Aside from that other tasks depend more on the skill level and understanding of the user. For example, an individual who has a vast understanding of technology and programming can create software to perform absolutely any task they may want or need to do.

When delivering 2021 Rogue, what limitation should you point out when using the available wireless charging pad

Answers

Answer:

Not all mobile devices are capable of utilizing wireless charging

Explanation:

The reason for this is because the wireless charging feature is a relatively new technology, and so most older mobile devices were not build to support this feature.

Hence, this is a limitation in the case where the vehicle owner owns an older mobile device; they would unable to use the available wireless charging pad.

How did technology change the world

Answers

Answer:

Technology has changed the world for the better.

Explanation:

Without technology, many of the things we take for advantage, such as, credit cards, calling people from far distances, heck even being able to call to across the world from where you are right now. Technology has revolutionized many things we use commonly on a day-to-day basis.

Answer:

tecnology changed our really far from ancient to the future without technology we will go back riding a horse or walking one place another it will take weeks or months or there will be no mobile so we to send message to the mail office to mail to send or we give a bird message to send another person

Explanation:

hope it helps

Persuasion is when Someone speaks to crowd about love
○True
○False​

Answers

false i think is the answer

Complete each sentence using the drop-down menu. Information on local driving laws can be found on a website. A class textbook can be found on a website. An article about how to donate blood can be found on a website. An popular magazine can be bought off of a website.

Answers

Answers:

1. D

2. A

3. B

4. C

Explanation: I just did it and got a 100%

The correct option are D, A, B and C.

What is Drop Down Menu?

A drop-down menu is a list of choices that can only be seen if a user interacts with it, either by clicking on it or by moving their mouse over it. The menu options then vertically descend and vanish after the user leaves the menu.

Dropdown menus are frequently used on websites and web applications to hide information.

It is  that consumers might not need to view after the initial page load but still might want to utilize since they let you add additional content and connections to a page without making it look cluttered.

Therefore, The correct option are D, A, B and C.

To learn more about Dropdown, refer to the link:

https://brainly.com/question/27625347

#SPJ3

What is the output of this program?
numA = 2
numB = 3
if numA == 2 or numB == 2:
print("yes")
elif numA == 2 and numB == 3:
print("no")
Output:

Answers

Answer:

Output: yes

Explanation:

First if statement is satisfied, since numA==2, so yes is printed.

The elif statement is skipped altogether, since elif statements are only evaluated, when the statement above if false, which it is not.

what does an "embedded video" mean

Answers

it’s when you are hosting the video at another location and simply linking to it

Answer:

simply linking to the video at another location and

Explanation:

The symbol located to the left of a code number that identifies a code description that has been revised is _____.

Answers

Answer:

"Triangle" is the right answer.

Explanation:

Positioned or installed to something like the left including its compiler, this same code interpretation has indeed been modified throughout the standard requirements of that same CPT.  It designates a characterization of the compiler as well as the written code which has already been rewritten or changed.  

Therefore this statement is correct.

JAVA.
plzzz help

..............​

Answers

Solution file is attached here.

Why do attackers tend to target public or private Wi-fi networks?


I’ll mark as brainiest

Answers

Probably because there easier to hack or something idrk much about that stuff

can you defeat all 3 Daughters of Lerion at a 98 power level in AC Valhalla

Answers

Answer:

???????

Explanation:

Answer:

defeat what now...

Explanation:

If I write too much for an exam answer, do I get downgraded?

Answers

Answer:

I don't think so

Explanation:


Where might you find recommendation engines at work?
Suggesting a new song you might
enjoy on a streaming music site.
Providing new movies you might
enjoy based on titles you liked.
An online advertisement for a video
game you recently read about in a
blog post.
All of the above

Answers

Answer:

All of the above.

Explanation:

All scenarios show signs of a recommendation engine at work since they are providing recommendations and suggestions of things that you would potentially like based on the analysis of data from your search history or likes from songs, movies, etc.

Hope this helps :)

2.5 Code Practice
import random

a = 6
b = 3

answer = a + b

print (str(a) + " + " + str(b) + " = " + str(answer))

Answers

Answer:

from math import

Answer:

import random

a = random.randint(1,10)

b = random.randint(1,10)

answer = a * b

print (str(a) + " * " + str(b) + " = " + str(answer))

Explanation:

Worked!

computer is a major source of informarion why​

Answers

Answer:

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

Explanation:

Computer can  process and store data.It can easily store large amount of data and process the data very fast but it is not the source of information it serve as a store of information because it store information and whenever we need any information we can retrieve that information from computer memory.in this way computer is s source of information.

♡ thx for any help, this is java

Answers

Explanation:

There is only one number we need to change in the code, and that is 6. The 6 represents the number of sides, but this only works for a 6-sided die. If we changed the 6 to sides, this would work for any sided die, because sides would be plugged in

Other Questions
I WILL GIVE BRAINLIEST!!!!!!!!Sylvia, a 12 year old girl, has a resting heart rate of 58 beats per minute. Using the lower and upper limit reserve training percentages of 50% and 85% respectively, what is Sylvia's target heart rate range? (2 points)Group of answer choices104176 beats per minute133185.5 beats per minute162208 beats per minute176208.5 beats per minute find the error in the statement below if height _variable >59;print ("you can ride this roller coaster.") In the ladder analogy of the DNA molecule, the "steps of the ladder are.....SugarsO Joined sugar and phosphateO Paired nitrogen bases A farmer plans to fence a rectangular garden next to a river. There will be no fence along the river side. Draw a picture of this situation. The pasture will contain 405,000 square meters. Find the dimensions of the garden that will require the least amount of fencing. I will mark brainlist for this science question please. I need to figure out where to put where. And what percentages. Your choices of percentages is 0, 25, 50, 75, and 100. What is meant by the right to redress? PLS HELP FAST Several short periods of exercise are not as effective as one long session.A. TrueB. False 45% of 45 is (Explain ur method) You are the copyright holder over any images you create. True or False Which two details should be included in a summary of "Home"?Hattie allows herself to be sad for all that has changed, and she realizes that family is what makes a home.Hattie thinks her family's new apartment in New York City is smaller than the kitchen in their old Iowa farmhouse.Hattie feels upset that her family had to move from their Iowa farm to New York City.Hattie spends a lot of time scrubbing the scribbles off her bedroom wall in Iowa before her family moves. plss help I dont understand it its for homework Alright I really need help and this question is going to give you alot of ponits so let do it also its due in 20min!!!!!!! Ok so Five cats each ate 1/4 cup of canned food and 1/4 cup of dry food. How much food did they eat altogether? Please don't spam me and get the answer right because as soon as I get a reply then i will put that answer on the page Need this asap ill mark brainliest Write down two additional questions you have about koalas. im not sure what to ask so could u guys help me out The necessary and proper clause of the Constitution is also known as which of the following?A. the interstate clause, because it affects interstate commerceB. the elastic clause, because it has been used to expand the power of the federal governmentC. the rubber clause, because the power bounces back to the federal governmentD. the unlimited clause, because it is used to expand power Which of these econormc systerns is based on a "cormmand" econormy, as oO MarismO democracyO capitalisnO utopianism Lavon is going to the beach on a hot summer day. He wants to take a bottle of cold water. What material would be best to wrap the bottle to keep the water cool?1.foil2.foam3.paper4.plastic if cd and ab intersect at g if m What ia an effect of water pollution in Africa? A. high levels of acid rain B. the loss of timber resources C. the spread of disease D. major changes in climate Select all the numbers that have an even number of factors.8,9,15,16,25 determine whether (8,5 a solution of the equation y=15x-14) Steam Workshop Downloader