What are some real-life situations where multi-dimensional arrays might be useful?

Answers

Answer 1

If you think, there are many game application where you can use a Multi-dimensional array. If we talk about a game then chess is the first game where rows and columns are used. The Second is the tic-tac-toe game and other board games are there too.


Related Questions

please answer fast..​

Answers

Answer:

a. False.

b. True.

c. False.

d. False.

Explanation:

a. False: Data stored in RAM are called firmware. It's the data stored in read only memory (ROM) are called firmware.

Radom Access Memory (RAM) can be defined as the main memory of a computer system which allow users to store commands and data temporarily.

Generally, the Radom Access Memory (RAM) is a volatile memory and as such can only retain data temporarily.

All software applications temporarily stores and retrieves data from a Radom Access Memory (RAM) in computer, this is to ensure that informations are quickly accessible, therefore it supports read and write of files.

b. True: a register is a temporary storage device within the central processing unit (CPU) of a computer system. Thus, it is designed to quickly accept, store and transfer data or instructions being used on a computer system.

c. False: the result obtained after data processing is given by input devices. Any result obtained after data processing is given by output devices such as speakers, monitor, projector, etc.. Input devices such as keyboard, mouse, scanner, etc., are used for entering the data into a system.

d. False: E-shopping allows us to make deposits, withdrawal and pay bills with the click of a mouse.

E-shopping can be defined as a marketing strategy that deals with meeting the needs of consumers, by selling products or services to the consumers over the internet.

This ultimately implies that, E-shopping is strictly based on the buying and selling of goods or services electronically, over the internet or through a digital platform. Also, the payment for such goods or services are typically done over the internet such as online payment services.

To discover how many cells in a range contain values that meet a single criterion, use the ___ function

Answers

Answer:

COUNTIF

Explanation:

the Countif function counts the number of cells in range that meets a given criteria.

Submit your business presentation that clearly compares and contrasts three different cell phone service plans..


I NEED IT DONE BY 5/24!!


I WILL PAY!!!!


100 points also


AND I WILL MAKE YOU BRAINLIEST!!

Answers

Answer:

My three phone service plans are T-Mobile, Verizon, and At&t.

How All of them compare is that the are phone companies and phone services. How T-Mobile contrast with Verizon is that T-mobile has  Bigger Nationwide 5g while Verizon has 5g for big cities, At&t doesn't have that much 5g yet. T-mobile has since combined with Sprint making it a bigger company. if you get Tello unlimited data from T-Mobile you pay $39 a month that means 468 dollars a year. Verizon's Unlimited plans are $80 a month that equals 960 a year. AT7T is much cheaper if you get the AT&T unlimited starters which is 35 a month so 420 a year. I  will go for T-mobile because it's not that cheap or expensive and it is very reliable.

Explanation:

Mark as Brainliest

How can you make a search phrase more effective?

A.
by framing it as a question
B.
by using more specific search terms
C.
by using a different search engine
D.
by using all the search terms you can think of

Answers

Answer: C.

Explanation:

Whst is the author's opinion about the school hours from 8:00 to 10:00 am?

Answers

Answer:

good

Explanation:

What option is found in the Alignment tab of the Format Cells dialog box? Fill Effect Merge Cells Strikethrough Supercript

Answers

Answer:

B. Merge cells.

Explanation:

The options that are available in the Alignment tab in the Format Cells dialog box are text alignment (horizontal, vertical), text control (wrap text, shrink to fit, merge cells), text direction, and orientation.

Therefore, from the given options the correct one is B, merge cells.

The merging option, in Microsoft Excel, enables the users to merge two or more cells into one large cell.

Thus, option B is correct.

Asking yourself “do I have any new needs” is a method to fulfill which of the following steps of selecting an insurance program?

Reviewing the results

Developing a plan to reach the goals

Setting insurance goals

Putting the plan into action

Answers

I think it's Reviewing the results

how to get off of supervised user

Answers

Answer:

On the Chromebook sign-in screen, select the profile you want to remove. Next to the profile name, select the Down arrow . Select Remove this user.

hope this helps

have a good day :)

Explanation:

What should you keep in mind when adding contents to your digital portfolio?
The contents of the portfolio will depend on the _____

Answers

Answer:

The contents of the portfolio will depend on individual education, work experience and future goals

Explanation:

The contents of the portfolio will depend on the following -

a) Work biography/experiences

b) Career goals

c) personal details

d) contact information

e) Professional photograph

f) Relevant skills

g) Relevant documents, certificates, degree etc.

etc.

Answer:

target audience

Explanation:

plato/edmentum

What does the Latin word VIDEO mean?
1 I vine
O I conquered
I see
I hear

Answers

It comes from the word: “I see”

What are computer Ethics.

Answers

Answer:

Computer ethics is the application of moral principles to the use of computers and the Internet.

Answer:

Computer ethics is defined as the analysis of the nature and social impact of computer technology and the corresponding formulation and justification of policies for the ethical use of such technology. The typical problem with computer ethics is the policy vacuum that arises from the new capabilities of the technology.

happy to help

Def pig_latin(word): """ ------------------------------------------------------- Converts a word to Pig Latin. The conversion is: - if a word begins with a vowel, add "way" to the end of the word. - if the word begins with consonants, move the leading consonants to the end of the word and add "ay" to the end of that. "y" is treated as a consonant if it is the first character in the word, and as a vowel for anywhere else in the word. Preserve the case of the word - i.E. If the first character of word is upper-case, then the new first character should also be upper case. Use: pl = pig_latin(word)

Answers

def pig_latin(word):

   if word[0].lower() in 'aeiou':

       word = word + 'way'

   else:

       t=''

       for x in range(len(word)):

           if word[x].lower() in 'aeiou':

               break

           if word[x].lower() == 'y' and x>0:

               break

           else:

               t+=word[x].lower()

       if word[0].isupper():

           word = word[len(t):]+word[:len(t)].lower()+'ay'

           word = word.title()

       else:

           word = word[len(t):]+word[:len(t)].lower()+'ay'

   return word

word = 'test'

pl = pig_latin(word)

print(pl)

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

In the coding, if the first character of the word is upper-case, then the new first character should also be upper-case is written in python.

What is coding?

We connect with computers through coding, often known as computer programming.

def pig_latin(word):

  if word[0].lower() in 'aeiou':

      word = word + 'way'

  else:

t=''

      for x in range(len(word)):

          if word[x].lower() in 'aeiou':

              break

          if word[x].lower() == 'y' and x>0:

              break

else:

              t+=word[x].lower()

      if word[0].isupper():

          word = word[len(t):]+word[:len(t)].lower()+'ay'

          word = word.title()

      else:

          word = word[len(t):]+word[:len(t)].lower()+'ay'

  return word

word = 'test'

pl = pig_latin(word)

print(pl)

Therefore, the coding is written above.

To learn more about coding, refer to the link:

https://brainly.com/question/13390402

#SPJ2

What is the function of HTML?

Answers

Explanation:

HTML is used to create web pages, documents.

hope this helps u

There is no functions in html:

It is only used to create documents for the web browser.

here is an example file of html, and css:

<!DOCTPYE html>

<html>

<head>

<title>There is no function to html</title>

<style>

#heading {

color: red;

}

</style>

</head>

<body>

<h1 id="heading">There are no functions in html</h1>

</body>

</html>

yeah

1. What is hydrolics?​

Answers

Answer: Mechanical machines that use liquids to move.

PLS FAST DONT EXPLAIN

Answers

Answer:

</head>

Explanation:

Submit your business presentation that clearly compares and contrasts three different cell phone service plans. I have TO HAVE IT DONE BY 5/24 I WILL PAY!!!!!! I WIll MAKE YOU BRAINLIEST... I WIll give points

Answers

Answer:

Ufone - It offers complete hybrid package for its user which includes 1000MB mobile data, 300 local call minutes, 1000 minutes on the same network and 15000 SMS.

Telenor - Telenor does not offer hybrid packages instead user has to purchase call and SMS packages separately but its packages are cheap.

Jazz - It offers unlimited data, unlimited call and SMS for the entire month. It is most suitable for professionals and businessmen who cannot keep track for their calls and SMS.

Explanation:

The cell phone service providers offer different plan for their customers. They introduces offer which is most demanded by their customers and they target their audience and tries to retain them by offering them special packages which suites them.

what is Internet?Write its importance in the today world.​

Answers

Answer:

Well it makes life easier of course we don't need it to survive but it just makes stuff easier

Explanation:

Answer:

The internet is a vast network that connects devices from all around the world allowing people to comment and share I information. the importance in today's world is extremely significant. People are able to communicate from any location. People can search anything up. People can make friends, videos and share ideas on the internet. people can have a voice through it and it greatly impacts our world as it has great impacts.

WILL GIVE BRAINLEST!!!!!!!! 10 POINTS!!!!
What are the three necessary parts of an if statement?
Question 13 options:
1) if, a variable, a semi-colon
2) if, a print statement, a colon
3) if, a condition, a colon
4) if, a print statement, a semi-colon

Answers

Answer:

option 4 : if, a print statement, a semi-colon

Explanation:

Hope it helps :)

Answer:

i think 4

Explanation:

hope it helps

Does anyone else's Homepage look like this?
Does anyone know how to fix it??
It's been like this for days!!

Answers

Add me please please add please help me please please add please help me get it

Our ways of communicating in society will change mostly due to: O A. our desire to be isolated. O B. a population decline. O O C. changes in technology O D. alterations in our brains.​

Answers

Answer:C

Explanation:

Which of the following are steps your employer can take to protect you from
heat-related illnesses?

Answers

Answer:

An employer with workers exposed to high temperatures should establish a complete heat illness prevention program. Provide workers with water, rest and shade. Allow new or returning workers to gradually increase workloads and take more frequent breaks as they acclimatize, or build a tolerance for working in the heat.

covert algebraic expressions into mathematical expressions s=ut+at² ​

Answers

Answer:

Python Expression:

u*t+ (1/2)* a*t** 2

PYTHON CODING LANGUAGE (i am a beginner)


Please write a few lines of code.

Here is a scenario:

In order to find the pay, you need to multiply the rate and hours.

*USE VARIABLES

Answers

#let the user input data
Hours = int(input(“enter how many hours were worked”))

Pay_rate = float(input(“Enter the pay rate”))

Pay_amount = Pay_rate * Hours
#calculate the wages


Print (Pay_amount)
#print the final answer

HELP FAST
You see this red line appear below your text as you are typing an email. The red line indicates that you should check for:

red squiggly line


grammar errors
grammar errors

sentence structure errors
sentence structure errors

punctuation errors
punctuation errors

spelling errors
spelling errors

Answers

Answer:

spelling errors and/or punctuation errors

Lin received 200 new laptops to be issued to company employees. Lin was asked to set them up and distribute them to everyone on a list provided by his supervisor. Lin has completed installing all the software on each computer and is ready to distribute them, but he needs to keep track of who received each laptop. ​ How can Lin keep track of all the laptops?

Answers

Answer:

Inventory Management Documentation

Explanation:

In this scenario, Lin would need an Inventory Management Documentation. This is a document that holds all of the laptops hardware information, as well as who it was given to. This includes the laptop's model, serial number, size, condition, and for the client it includes the client's name, day it was given, time, etc. Such documentation is usually created with inventory management software and would help Lin keep track of all of the laptops efficiently.

What critical-thinking tool is being used when asking the question, Is this information specific enough?

constructive
detailed
practical
precision

Answers

Precision, specificity is related to the accuracy of the information with respect to the subject at hand. Precision is the only answer that makes sense.

Avatars can help abused children: O A. feel safe and more confident. O B. connect with the police. O C. find a better living situation. O D. eat tasty and nutritious meals.​

Answers

Answer:

A. feel safe and more confident.

Explanation:

An avatar can be defined as an image, icon or figure that graphically represents an end user or the user's character (personality). It is also referred to as a profile picture or user's identity on an internet forum, video games, etc.

Basically, an avatar isn't a true representation of a user because it typically involves the use of an icon, symbol or digital image rather than an authentic (real) image.

Generally, an avatar is mostly used by people who wishes to conceal their identity or remain anonymous over the internet. Thus, other members of the web wouldn't be able to tell exactly who is operating a particular account with an avatar.

For example, a child that has been a victim of any form of abuse either physically or psychologically may choose to use an avatar so as to conceal his or her identity from the general public, thereby boosting his or her confidence, morale and safety.

Hence, avatars can help abused children feel safe and more confident.

Answer:

A. feel safe and more confident

Explanation:

How is communication different from data transfer?

A) Communication includes more than one party; data transfer only includes one party.
B) Communication includes e-mails and voice calls; data transfer includes downloading files and streaming.
C) Communication includes voluntary data transfer; data transfer includes unknowingly sharing information with strangers.
D)Communication includes permanently sharing information; data transfer includes temporarily sharing information.

Answers

Answer:

B) Communication includes e-mails and voice calls; data transfer includes downloading files and streaming.

Explanation:

Communication can be defined as a process which typically involves the transfer of information from one person (sender) to another (recipient), through the use of semiotics, symbols and signs that are mutually understood by both parties. One of the most widely used communication channel or medium is an e-mail (electronic mail).

The linear model of communication comprises of four (4) main components and these are; sender, message, channel and receiver (recipient).

Data transfer can be defined as the transmission of analogue or electronic data such as pictures, music, videos, texts, etc., from one computer node to another computer system through the use of various techniques and technologies.

Communication differs from data transfer in the sense that communication involves the use of channels such as e-mails and voice calls while data transfer includes downloading files and streaming over a Transmission Control Protocol and Internet Protocol (TCP/IP) network, through the use of a file transfer protocol (FTP) on port number 20 or 21.

¿Quién recibe la orden de ejecución de un programa enviada por el usuario?

Answers

Answer:

El sistema operativo.

Explanation:

En ciencias de la computación, una orden es una instrucción a un sistema operativo de computadora para realizar una tarea específica. Generalmente, una orden se emite a través de una interfaz de línea de órdenes de otro programa. Así, se trata de una instrucción a un programa de computadora para que actúe como intérprete para resolver un problema.  

Por ejemplo, podemos pedir a través de una orden que muestre el contenido de una carpeta, buscar un archivo en particular y especificar mediante parámetros adicionales cómo se debe realizar esta acción (por ejemplo, utilizando expresiones regulares para realizar una búsqueda).

i was trying to put in a question but branily.in kept saying Don't use such phrases here, not cool! It hurts our feelings :( BUT WAT DID I DOOOO? its about keyboarding class

Answers

It’s because you used a word Brainly doesn’t allow
Other Questions
Hi I'm bad at math the questions is -r - 20r = please help The length of a rectangular map is 37,5 cm and the perimeter is 125 cm. Find the width Write 11 k-6 (2k+5)in expanded form and find the sum I Dont understand this can someone answer it PT= 4x+6 and TQ=9x-9 find the values of x and PT . Please help me Im stuck Mendel crossed tall pea plants with short pea plants. the offspring were all tall plants.1. Which allele is recessive?2. Which allele is dominant?please hurry 1. Find 2 arithmetic means between 12 and 21. Pact sign by communist nations pledging to support each other in the war against the West. A.) NATOB.) UN C.) Warsaw Pact D.) Communist Pact Agreement Find the surface area of the regular pyramid.13 in.55 in.4.3 in.The surface area issquare inches. define reflex action in your own words HELP I NEED HELP ASAP HELP I NEED HELP ASAP HELP I NEED HELP ASAP HELP I NEED HELP ASAPHELP I NEED HELP ASAP HELP I NEED HELP ASAP HELP I NEED HELP ASAP HELP I NEED HELP ASAPWhich shading technique is used in the following image?A. Cross-Hatching B. BlendingC. Stippling A snack food company is increasing it's product size by 20%. If the original container held 10 ounces of product, how many ounces will the new container hold?PLEASE EXPLAIN HOW TO DO IT What is the total surface area of the pyramid? plss i need the rogth answer i will mark brainliest I BEG OYU PLSS On Saturday, a gymnast walked a distance of x miles. On Sunday, the gymnast walked half the distance that he walked on Saturday. Which expression represents the total number of miles the gymnast walked on Saturday and Sunday? Ryland is setting up a cooler to store flowers for a big event. Which of the following is NOT going to contribute to ethylene build up in his cooler?O Gas leaksO Succulents and cactiO Old flowersO Ripening fruit Can someone help me with this question below 1. Explain three ways southern states resisted racial equality in the South after the Civil War *Enter your answer D o I p l a y M i n e c r a f t o r, F o r t n i t e? Special right triangles