1. Three strategies for making better text-based slides are to make more focused headlines/slide titles, to present just one main _____ per slide, and to avoid _____.Select an answer:· word; repetition· story; short phrases· color; multiple full sentences· idea; multiple full sentences2. What should your mantra be when designing a chart for a presentation?Select an answer:· simplify· use flair· quantify· be complete3. What is the scientific basis for simplifying charts?Select an answer:· Complexity fosters conflict.· People are slow to learn.· Simplicity is associated with expertise.· Short-term memory is limited.4. How should you present a color or symbol legend?Select an answer:· by making it accessible as a pop-up or drop-down menu· by integrating it with the actual data in the graphic· by placing it in the lower right corner of the graphic· by locating it just under the main heading

Answers

Answer 1

Three strategies for making better text-based slides are to make more focused headlines/slide titles, to present just one main idea per slide, and to avoid  multiple full sentences. Hence,  Option D: · idea; multiple full sentences is correct.

2My mantra will be when designing a chart for a presentation is option A; simplify·

3. The scientific basis for simplifying charts is option D: Short-term memory is limited.

4.The way that you present a color or symbol legend is option B: by integrating it with the actual data in the graphic·

How do text slides work?

A text slide is one that is exactly what it sounds like a slide that is meant to include content that is primarily text-based. Sometimes your presentation doesn't need a lot of graphics or photos.

Therefore, the way that a text slides be made more engaging are:

Make more text hierarchy.Format your writing expertly.cling to the empty space.Introduce your content before separating it.Maintain interest by changing the layout.Give your viewers a moment to breathe.

Learn more about slides from

https://brainly.com/question/15710950
#SPJ1


Related Questions

How hip-hop artists are seen in local media versus national media?

Answers

Answer:

The way hip-hop artists are portrayed in local and national media can vary significantly. On a local level, hip-hop artists are often seen as cultural icons and community leaders, reflecting the unique sounds and experiences of their cities and neighborhoods. They may receive coverage for their contributions to local charities, community events, and outreach programs, and are often recognized for their authenticity and genuine connection to their roots.

However, on a national level, hip-hop artists may be subject to more scrutiny and criticism. They may be portrayed as controversial and edgy, with their music and lyrics being scrutinized for their potential negative impact on youth culture. At the same time, they may also be celebrated for their innovation and creativity, as well as their impact on American popular culture.

Overall, the portrayal of hip-hop artists in local and national media can reflect both the unique experiences of their communities and the broader trends and controversies of the music industry.

Explanation:

please answer urgently. See the attached image

please answer urgently. See the attached image

Answers

Based on the information, the tight upper bound for T(h) is O(h).

How to explain the information

The algorithm visits at most x children in line 3, where x is the number of keys in the current node.

T(h) ≤ T(h-1) + x

For a B-Tree of height 0, i.e., a single node, the algorithm just compares the key with the node key and returns. Therefore, T(0) = Θ(1).

We can express T(h) as a sum of terms of the form T(h-i) for i = 1 to h:

T(h) ≤ T(h-1) + x

T(h-1) ≤ T(h-2) + x

T(h-2) ≤ T(h-3) + x

...

T(2) ≤ T(1) + x

T(1) ≤ T(0) + x

Adding all these inequalities, we get:

T(h) ≤ T(0) + xh

Substituting T(0) = Θ(1), we get:

T(h) = O(h)

Therefore, the tight upper bound for T(h) is O(h).

Learn more about upper bound on

https://brainly.com/question/28725724

#SPJ1

An ANOVA can find significant positive main effects at the same time as a significant negative interaction effect. True False

Answers

that is averaged over all other independent variable levels in experimental design and variance analysis.

Is it possible to have a large interaction but no major effect?

When the interaction is there, is it really required to include both main effects? No, you do not always require primary effects when there is an interaction, to put it simply. The interaction term won't, however, signify the same thing as it would if both primary impacts were taken into account.

What connection exists between interactions and major effects?

The impact one independent variable has on the dependent variable without taking into consideration other independent variables is known as a primary effect. The impact of one independent variable on another independent variable and how that impact affects the dependent variable is known as an interaction.

To know more about ANOVA visit ;

https://brainly.com/question/23638404

#SPJ4

Five batch jobs A to E arrive at the same time. They have estimated running time of 10,2,6,8,4 respectively. Their priority are 3,2,5,4,1 with 5 being the highest priority. For each of the following algorithms, determine mean process turnaround time. Round Robin quantum of 3

Answers

Round Robin Scheduling fixes the time quantum before scheduling the processes such that no one process receives more CPU time than one time quantum at a time.In an interactive setting, a process's reaction time may not be acceptable if the time quantum is too large.

What is quantum in round robin?

For time-sharing systems, the round-robin (RR) scheduling method was created.Although pre-emption is included to switch between processes, it is similar to FCFS scheduling.A time quantum, also referred to as a time slice, is defined.A time quantum typically lasts between 10 and 100 milliseconds. A round robin is a method of selecting elements from a group evenly and in a logical order, typically from top to bottom of a list, and then repeating the process starting at the top of the list.Round robin can be conceptualized as simply "taking turns." Use the formula N x (N-1)/2 to get the number of games in a single round robin tournament as shown above .The math would be 6 x (6-1)/2 = 6 x 5/2 = 30/2 = 15 games for a tournament with 6 teams. For the first 10 minutes of round robin, each job receives one fifth of the CPU.C completes at the end of the allotted ten minutes.Each job receives 1/4 of the CPU for the following 8 minutes, at which point D is completed.Once B is finished, the remaining three jobs each receive 1/3 of the CPU for the following six minutes.The five jobs took 10, 18, 24, 28, and 30 minutes to complete on average.

        To learn more about Round Robin quantum  refer

        https://brainly.com/question/16045350

         #SPJ1

Write A C++ Program To Find If a Matrix Is a reflexive / irreflexive/Symmetric/Antisymmetric/Transitive.

Answers

A C++ Program To Find If a Matrix Is a reflexive / irreflexive/Symmetric/Antisymmetric/Transitive is given below:

Given the sample input:

0 1 2 3 //elements (A)

0 0    //relations (B)

1 1

2 2

3 3

x y z //elements (A)

x y   //relations (B)

y z

y y

z z

x y z //elements (A)

x x   //relations (B)

y z

x y

z y

x z

y y

z x

y x

z z

1 2 3 4 5 6 7 8 //elements (A)

1 4            //relations (B)

1 7

2 5

2 8

3 6

4 7

5 8

6 6

1 1

2 2

The Program

bool pair_is_in_relation(int left, int right, int b[], int sizeOfB)

{

   for(int i=0; i+1<sizeOfB; i+=2) {

       if (b[i]==left && b[i+1]==right)

           return true;

   }

   return false;

}

bool antiSymmetric(int b[], int sizeOfB)

{

   bool holds = true;

   for(int i=0; i+1<sizeOfB; i+=2) {

       int e = b[i];

       int f = b[i+1];

      if(pair_is_in_relation(f, e, b, sizeOfB)) {

           if (e != f) {

               holds = false;

               break;

            }

       }

   }

   if (holds)

      std::cout << "AntiSymmetric - Yes" << endl;

   else

       std::cout << "AntiSymmetric - No" << endl;

   return holds;

}

Read more about C++ programming here:

https://brainly.com/question/20339175

#SPJ1

How did the case Cubby v. CompuServe affect hosted digital content and the contracts that surround it?

Answers

Although CompuServe did post libellous content on its forums, the court determined that CompuServe was just a distributor of the content and not its publisher. As a distributor, CompuServe could only be held accountable for defamation if it had actual knowledge of the content's offensive character.

What is CompuServe ?

As the first significant commercial online service provider and "the oldest of the Big Three information services," CompuServe was an American company. It dominated the industry in the 1980s and continued to exert significant impact into the mid-1990s.

CompuServe serves a crucial function as a member of the AOL Web Properties group by offering Internet connections to budget-conscious customers looking for both a dependable connection to the Internet and all the features and capabilities of an online service.

Thus,  CompuServe could only be held accountable for defamation if it had actual knowledge of the content's offensive character.

To learn more about CompuServe, follow the link;

https://brainly.com/question/12096912

#SPJ1

An executive thinks that using the cloud requires devices to be constantly connected to the internet. What is an example of an application that breaks this philosophy?

Answers

An example of an application that breaks the philosophy that using the cloud requires devices to be constantly connected to the internet is a cloud-based productivity suite with offline support.

What is the internet about?

For example, Goo gle's G Suite allows users to work on G oogle Docs, Sheets, and Slides even when they are not connected to the internet. The changes made offline are automatically synced to the cloud when the device regains a connection.

Therefore, This allows users to continue working even when they are not connected, and ensures that their work is not disrupted due to a lack of internet access.

Learn more about internet from

https://brainly.com/question/28342757

#SPJ1

A personal idea must be identified with a
a.
Citation
c.
Parenthesis
b.
Letter from the author
d.
A new paragraph


Please select the best answer from the choices provided

Answers

Answer:

answer is A!

Explanation:

A personal idea must be identified with a Citation. Thus, the correct option for this question is A.

What is Citation?

The Citation may be defined as a type of document that significantly commends or applaud someone publicly for something the person has concluded. In a more simple sense, the citation is a reference to a particular source.

A Citation is a type of quotation which includes a reference to the book, research papers, etc. This type of document generally recognized the personal idea of the individuals in the field and the work he/she is associated with.

In-text citations must be delivered in parentheses. A letter from the author must be represented in acknowledgment.

Therefore, a personal idea must be identified with a Citation. Thus, the correct option for this question is A.

To learn more about Citation, refer to the link:

https://brainly.com/question/8130130

#SPJ5

The epa requires spray guns used in the automotive refinishing process to have transfer efficiency of at least

Answers

The epa requires spray guns used in the automotive refinishing process to have transfer efficiency of at least  65 percent transfer efficiency.

What is the transfer efficiency

EPA lacks transfer efficiency requirement for auto refinishing spray guns. The EPA regulates auto refinishing emissions and impact with rules. NESHAP regulates paint stripping and coating operations for air pollutants.

This rule limits VOCs and HAPs emissions in automotive refinishing. When it comes to reducing overspray and minimizing wasted paint or coating material, transfer efficiency is crucial. "More efficiency, less waste with higher transfer rate."

Learn more about transfer efficiency  from

https://brainly.com/question/29355652

#SPJ1

a. The two programs perform the same function. Describe it. b. Which version performs better, and why

Answers

Programs are series of instructions interpreted by a computer

The description of the program is to compute the square of the difference between corresponding elements of two arraysThe better version of the program is program A.

How to describe the programs

From the programs, we have the following highlights

The program iterates from 1 to n - 1The iteration calculates the difference between corresponding elements of the arraysThe difference is then squared

Hence, the description of the program is to compute the square of the difference between corresponding elements of two arrays

The better version

The better version of the program is program A.

This is so, because the program uses fewer instructions for the same task as program B

Read more about programs at:

https://brainly.com/question/16397886

Computing modular exponentiation efficiently is inevitable for the practicability of RSA. Compute the following exponentiations xe mod m applying the square and-multiply algorithm: 1. x = 2, e = 79, m = 101 2. x = 3, e = 197, m = 101

Answers

x = 2, e = 79, m = 101
Using the square and-multiply algorithm:
Initialize y = 1
Convert e to binary form: e = 1001111
For i = 7 to 0, do the following:
y = (y * y) mod m = (y^2) mod m
If the i-th binary digit of e is 1, then y = (y * x) mod m = (y * 2) mod m
The final value of y is the result of the modular exponentiation: x^e mod m = y = 28
x = 3, e = 197, m = 101
Using the square and-multiply algorithm:
Initialize y = 1
Convert e to binary form: e = 110000001
For i = 8 to 0, do the following:
y = (y * y) mod m = (y^2) mod m
If the i-th binary digit of e is 1, then y = (y * x) mod m = (y * 3) mod m
The final value of y is the result of the modular exponentiation: x^e mod m = y = 67

Create a class Car, which contains Three data members i.e. carName (of string type), ignition (of bool type), and currentSpeed (of integer type)
 A no-argument constructor to initialize all data members with default values
 A parameterized constructor to initialize all data members with user-defined values
 Three setter functions to set values for all data members individually
 Three getter function to get value of all data members individually
 A member function setSpeed( ) // takes integer argument for setting speed
Derive a class named Convertible that contains
 A data member top (of Boolean type)
 A no-argument constructor to assign default value as “false” to top
 A four argument constructor to assign values to all data-members i.e. carName, ignition, currentSpeed and top.
 A setter to set the top data member up
 A function named show() that displays all data member values of invoking object
Write a main() function that instantiates objects of Convertible class and test the functionality of all its member functions.

Answers

Answer:

Copy paste it.

Explanation:

#include <iostream>

#include <string>

using namespace std;

//Create a class Car, which contains • Three data members i.e. carName (of string type), ignition (of bool type), and //currentSpeed (of integer type)

class Car

{

public:

string carName;

bool ignition;

int currentSpeed;

//A no-argument constructor to initialize all data members with default values

//default value of string is "",bool is false,int is 0

Car()

{

carName="";

ignition=false;

currentSpeed=0;

}

//A parameterized constructor to initialize all data members with user-defined values

Car(string name,bool i,int speed)

{

carName=name;

ignition=i;

currentSpeed=speed;

}

//Three setter functions to set values for all data members individually

// Three getter function to get value of all data members individually

void setCarName(string s)

{

carName=s;

}

void setIgnition(bool ig)

{

ignition=ig;

}

void setCurrentSpeed(int speed)

{

currentSpeed=speed;

}

string getCarName()

{

return carName;

}

bool getIgnition()

{

return ignition;

}

int getCurrentSpeed()

{

return currentSpeed;

}

//A member function setSpeed( ) // takes integer argument for setting speed

void setSpeed(int sp1)

{

currentSpeed=sp1;

}

};

//Derive a class named Convertible

class Convertible:public Car

{

//A data member top (of Boolean type)

public:

bool top;

public:

//A no-argument constructor to assign default value as “false” to top

Convertible()

{

top=false;

}

//A four argument constructor to assign values to all data-members i.e. carName, ignition,

//currentSpeed and top.

Convertible(string n,bool i,int s,bool t):Car(n,i,s)

{

carName=n;

ignition=i;

currentSpeed=s;

top=t;

}

// A setter to set the top data member up

void setTop(bool t)

{

top=t;

}

//A function named show() that displays all data member values of invoking object

void show()

{

cout<<"Car name is:"<<carName<<endl;

cout<<"Ignition is: "<<ignition<<endl;

cout<<"Current Speed is :"<<currentSpeed<<endl;

cout<<"Top is:"<<top<<endl;

}

};

//main function

int main()

{

//creating object for Convertible class

Convertible c1("Audi",true,100,true);

c1.show();

c1.setCarName("Benz");

c1.setIgnition(true);

c1.setCurrentSpeed(80);

c1.setTop(true);

c1.show();

cout<<"Car Name is: "<<c1.getCarName()<<endl;

cout<<"Ignition is:"<<c1.getIgnition()<<endl;

cout<<"Current Speed is:"<<c1.getCurrentSpeed()<<endl;

return 0;

}

Write the definition of a class named "Card" which creates a card from a standard deck of cards. This class should have the following methods: __init__(self, rank, suit), getRank(self), getSuit(self), printCard(self), shuffle(self), and cheat(self, rank, suit).

• The suits are: "Hearts", "Diamonds", "Clubs", and "Spades".
• The ranks are: "Ace", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "Jack", "Queen", and "King".
• getRank(self) and getSuit(self) return the rank and the suit of the card, respectively.
• printCard(self) prints the information on the card, like "This card is the Ace of Spades."
• shuffle(self) replaces the card with any card from the deck, chosen randomly.
• cheat(self, rank, suit) changes the rank and suit of the card to the input given in cheat.

The user should be able to do the following (also see template below):
c = Card("Ace", "Spade")
c.getRank()
"Ace"
c.getSuit()
"Spade"
c.printCard()
This card is the Ace of Spades.

c.shuffle()
c.printCard()
This card is the Ten of Diamonds. # Or any other random card

c.cheat("King", "Heart")
c.printCard()
This card is the King of Hearts.

c.cheat("12", "Spades")
c.printCard()
Invalid card

from random import choice

# Definition of class Card

# Note that the possible suits are ["Hearts", "Diamonds", "Clubs", "Spades"]
# The possible ranks are ["Ace", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "Jack", "Queen", "King"]

class Card:
def __init__(self, rank, suit):
self.rank =
self.suit =

def getRank(self):
# Enter your code here

def getSuit(self):
# Enter your code here

def printCard(self):
# Enter your code here

def shuffle(self):
# You will need a list of the possible suits and a list of the possible ranks to be able to shuffle
# Recall that the method choice(list) chooses a random element from the list.
# Enter your code here

def cheat(self, rank, suit):
# Enter your code here
# If you have time, you should check that the rank and suit entered are valid by checking if they are in the lists of possible ranks and suits.

c = Card("Ace", "Spade")
c.getRank()
c.getSuit()
c.printCard()

c.shuffle()
c.printCard()

c.cheat("King", "Heart")
c.printCard()

c.cheat("12", "Spades")
c.printCard()

Note: The program has to be written in the Python programming language!

Answers

import random

class Card:

   def __init__(self, rank, suit):

       # Initialize the rank and suit of the card

       self.rank = rank

       self.suit = suit

   def getRank(self):

       # Return the rank of the card

       return self.rank

   def getSuit(self):

       # Return the suit of the card

       return self.suit

   def printCard(self):

       # Print the information on the card

       print(f"This card is the {self.rank} of {self.suit}.")

   def shuffle(self):

       # Define a list of possible ranks and suits

       ranks = ["Ace", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "Jack", "Queen", "King"]

       suits = ["Hearts", "Diamonds", "Clubs", "Spades"]

       # Assign a random rank and suit to the card

       self.rank = random.choice(ranks)

       self.suit = random.choice(suits)

   def cheat(self, rank, suit):

       # Change the rank and suit of the card to the input given in cheat

       self.rank = rank

       self.suit = suit

# Example usage:

card = Card("Ace", "Spades")

card.printCard()  # Output: This card is the Ace of Spades.

card.shuffle()

card.printCard()  # Output: This card is the random rank and suit.

card.cheat("King", "Hearts")

card.printCard()  # Output: This card is the King of Hearts.

Which of the following is the first step to writing an algorithm?
making a plan
carrying out a plan
extending the problem
understanding the problem

Answers

Answer:

Making a plan

Explanation:

Usually you will get stuck on some problems while making an algorithm, so you should make a plan to push forward more easier.

Answer: understanding the problem

Explanation:

Because you have to understand the problem before making a plan

How can you ensure that messages from a trusted email address will not be identified as spam or junk email? Add the message to the Safe Senders list. Add the message to the Safe Recipients list. Right-click the message, and select Move to the Saved folder. Right-click the message, and select Move to the Archive folder.

Answers

Answer:

Yes it so that whenever a meassage is a spam you will notice some error in between the message and it come in a phishing method

Answer:

A.)  Add the message to the Safe Senders list.

Explanation:

The internet solves a variety of problems. How does it solve the problem of data storage?
Responses

Even if your device is damaged, with the cloud, your information is still available online.

It allows people to store all their data safely on physical devices such as memory sticks.
It allows people to store all their data safely on physical devices such as memory sticks.

It allows people to work from home and always keep all their data with them on their devices.

With the cloud, even if the internet is not working, your information is still available on a device.

Answers

Answer:

i would say B

Explanation:

it makes the most sense

This is for computer technology please help me out!

This is for computer technology please help me out!

Answers

Answer:

bag = 2

Explanation:

apples + oranges > 20 is false

apples + oranges > 15 although it is 15, its false. If it was apples + oranges >= 15 it would be true. But it doesn't so that's false.

apples + oranges > 10 is true, and when you run it, bag will equal to 2.

hope this helped :D

Is it possible to beat the final level of Halo Reach?

Answers

It is impossible to beat this level no matter how skilled the player is.

Why might you use this kind of graph?
A. To show the relationship between sets of data using lines
B. To compare data from different groups or categories
C. To show the relationship between two variables using dots
D. To show parts of a whole
SUBMIT

Answers

A dot plot can be used to display the relationship between two variables by plotting individual data points on the graph.

One reason you might use a scatter plot graph (which shows the relationship between two variables using dots) is to identify any patterns or trends in the data. This can be useful in fields such as economics, where you might want to see if there is a correlation between two economic factors, or in healthcare, where you might want to see if there is a relationship between two medical conditions. Another reason to use a scatter plot is to identify any outliers in the data, which can be important in making decisions or developing strategies based on the data. Additionally, a scatter plot can help you to see if there are any clusters of data points, which can indicate a specific group or demographic within the larger dataset. Overall, scatter plots are a useful tool for visualizing and analyzing data that can help to inform decision-making processes.

For more such questions on Graph:

https://brainly.com/question/29994353

#SPJ8

Which query will return the entire Gamers table?
SELECT all FROM Gamers;
SELECT * FROM Gamers;
SELECT DATABASE FROM Gamers;
SELECT ALL FROM Gamers;

Answers

SQL queries can be used to retrieve data from a table.

The query that returns the entire Gamers table is (b) SELECT * FROM Gamers;

To retrieve a data we make use of the SELECT FROM clause

From the question, we understand that all entries of the Gamers table should be returned.

The keyword ALL in SQL is represented with asterisk i.e. *

The table whose data would be retrieved is the Gamers table.

Hence, the required query is: SELECT * FROM Gamers;

Read more about SQL queries at:

https://brainly.com/question/24223730

Answer:

SQL queries can be used to retrieve data from a table.

The query that returns the entire Gamers table is (b) SELECT * FROM Gamers;

To retrieve a data we make use of the SELECT FROM clause

From the question, we understand that all entries of the Gamers table should be returned.

The keyword ALL in SQL is represented with asterisk i.e. *

The table whose data would be retrieved is the Gamers table.

Hence, the required query is: SELECT * FROM Gamers;

Explanation:

What is it called when you plan out and take control of the amount of time that you spend on activities in order to increase effectiveness, efficiency, and productivity? A time management. B supply stocking. C calendar organization. D ergonomics.​

Answers

Answer:

time management A for Sure

Your friend Alicia says to you, “It took me so long to just write my resume. I can’t imagine tailoring it each time I apply for a job. I don’t think I’m going to do that.” How would you respond to Alicia? Explain.

Answers

Since my friend said  “It took me so long to just write my resume. I can’t imagine tailoring it each time I apply for a job. I will respond to Alicia that it is very easy that it does not have to be hard and there are a lot of resume template that are online that can help her to create a task free resume.

What is a resume builder?

A resume builder is seen as a form of online app or kind of software that helps to provides a lot of people with interactive forms as well as templates for creating a resume quickly and very easily.

There is the use of Zety Resume Maker as an example that helps to offers tips as well as suggestions to help you make each resume section fast.

Note that the Resume Builder often helps to formats your documents in an automatic way  every time you make any change.

Learn more about resume template from

https://brainly.com/question/14218463
#SPJ1

Question 1 of 10 Which two scenarios are most likely to be the result of algorithmic bias? A. A person is rejected for a loan because they don't have enough money in their bank accounts. B. Algorithms that screen patients for heart problems automatically adjust points for risk based on race. C. The résumé of a female candidate who is qualified for a job is scored lower than the résumés of her male counterparts. D. A student fails a class because they didn't turn in their assignments on time and scored low on tests. ​

Answers

Machine learning bias, also known as algorithm bias or artificial intelligence bias, is a phenomenon that happens when an algorithm generates results that are systematically biased as a result of false assumptions made during the machine learning process.

What is machine learning bias (AI bias)?Artificial intelligence (AI) has several subfields, including machine learning. Machine learning relies on the caliber, objectivity, and quantity of training data. The adage "garbage in, garbage out" is often used in computer science to convey the idea that the quality of the input determines the quality of the output. Faulty, poor, or incomplete data will lead to inaccurate predictions.Most often, issues brought on by those who create and/or train machine learning systems are the source of bias in this field. These people may develop algorithms that reflect unintentional cognitive biases or actual prejudices. Alternately, the people could introduce biases by training and/or validating the machine learning systems using incomplete, inaccurate, or biased data sets.Stereotyping, bandwagon effect, priming, selective perception, and confirmation bias are examples of cognitive biases that can unintentionally affect algorithms.

To Learn more about Machine learning bias refer to:

https://brainly.com/question/27166721

#SPJ9

I need help finishing this coding section, I am lost on what I am being asked.

I need help finishing this coding section, I am lost on what I am being asked.
I need help finishing this coding section, I am lost on what I am being asked.
I need help finishing this coding section, I am lost on what I am being asked.

Answers

Answer:

when cmd is open tell me

Explanation:

use cmd for better explanatios

please help me please help me.​

please help me please help me.

Answers

Answer:

Earth. Wind. Water. Fire

Explanation:

These are elements right or is it metal plastics and all the other object materials sorry if this question isn't what you asked for just that I don't get the question

12. In cell A14, use the INDEX function and structured references to display the value in the first row and first column of the AcademicGroups table.

Answers

Answer:index(E3:H12,1)

Explanation:

Answer: =INDEX(AcademicGroups,1,1)

Explanation:

Use the INDEX function (fx) button and you will be provided two different arguments to choose from.

Select the argument: array,row,num,column,num

In the Array section, click the up-arrow and then highlight the range A2:G12 (this is the AcademicsGroups table).

In the Row_num section, enter the number 1

In the Column_num section, enter the number 1

Press OK

Hopefully the logic behind this, after seeing it, makes sense.

A/an is a series of instructions or comands that computers follows used to create software

Answers

Answer:

Program

Explanation:

All computers have to follow a program to operate. Without a program, computers would not do what they are capable of today, and computers most likely wouldn't work.

Hope this helps! :)

Are AWS Cloud Consulting Services Worth The Investment?

Answers

AWS consulting services can help you with everything from developing a cloud migration strategy to optimizing your use of AWS once you're up and running.

And because AWS is constantly innovating, these services can help you keep up with the latest changes and ensure that you're getting the most out of your investment.

AWS consulting services let your business journey into the cloud seamlessly with certified AWS consultants. With decades worth of experience in designing and implementing robust solutions, they can help you define your needs while executing on them with expert execution from start to finish! AWS Cloud Implementation Strategy.

The goal of AWS consulting is to assist in planning AWS migration, design and aid in the implementation of AWS-based apps, as well as to avoid redundant cloud development and tenancy costs. Project feasibility assessment backed with the reports on anticipated Total Cost of Ownership and Return on Investment.

Learn more about AWS consulting, here:https://brainly.com/question/29708909

#SPJ1

Which two ports are used on websites

Answers

Answer:

The two ports that are used on websites ......... Search for HTTP on List of TCP and UDP port numbers for some of them.

Answer:

80 and 443

Explanation:

TCP/IP-based protocols called ________ established a _____ between two computers through which they can send data.

Answers

Answer:

1. Communications Protocol

2. Network

Explanation:

TCP/IP is an acronym in computer science or engineering, that stands for Transmission Control Protocol or Internet Protocol. It is often referred to as COMMUNICATIONS PROTOCOL. It is technically utilized for the interconnection of NETWORK for machines or gadgets on the internet. In some other cases, it can also be used as either intranet or extranet; a form of a private computer network.

Hence, in this case, the correct answer is TCP/IP-based protocols called COMMUNICATIONS PROTOCOL established a NETWORK between two computers through which they can send data.

Other Questions
What does this experiment demonstrate about the movement of water across a cell membrane?UJmoreA. If a cell is placed in a solution that has a lower concentration of solutes than the concentration inside the cell,solutes will move out of the cellB. If a cell is placed in a solution that has a higher concentration of solutes than the concentration inside the cell,water will move into the cellC. If a cell is placed in a solution that has a higher concentration of solutes than the concentration inside the cell,water does not enter or leave the cellD. If a cell is placed in a solution that has a higher concentration of solutes than the concentration inside the cell,water will move out of the cell Write an inspiration speech about real life hero . Please pretty urgent Design brief of grain crusher. Design specification of grain crusher. Design constraints of grain crusher pmp exam prep 2022-2023: the most simplified all-in-one guide to pass the exam on first try with no effort 40 L of a gas is collected at 50.0 C. What will be its volume upon cooling to 25.0 C? a(n)_____ taking, entitling a property owner to just compensation, occurs when a regulation deprives the property owner of all economically beneficial uses of the land. Is length a vector,scalar,both,neither which of the following can be sensed by plants? i. gravity ii. pathogens iii. wind iv. light only iii and iv only i, ii, and iv i, ii, iii, and iv only ii, iii, and iv only i and iii Part 23. NO LINKS!! What is the area of this figure? people with neurofibromatosis will show varying degrees of the disease; this is because of the genetic principle of: efforts to organize fans to resist ticket price increases have generally failed because 3.The Moy family budgeted $32,650 to remodel their kitchen. They spent$43,987. How much more or less is the amount spent than the amountbudgeted? A $11,337 more B $11,337 less C $17,887 more D $17,887 less 63. Evaluate social medial's effectiveness in advocating for Community support for a salle and healthy living environment.(12) What is an example normalcy in the lottery? Please answer the questions in the photo. Do not copy from the internet. Bobby bought a bag of 10 muffins. There were 3 blueberry muffins and 2 banana muffins in the bag and 5 cranberry sam sold a property to emma for $225,000. sam's loan balance was $44,500 with an interest rate of 7%. emma's conventional loan was at 8% with a 90% loan to value ratio. the taxes for the year were $1250 and the home owner's insurance was $495. closing took place on october 30th. based on this information, answer the following question. how much was the transfer tax? select one: a. $202.50 b. $225.00 c. $226.00 d. $675.00 I need help with some Spanish. I know there are more than one correct answer. Thank you. A ______________ is a piece of informational text that tells about a specific portion of someone's life Which of the following is the minimum value of the equation y = 3x2 - 4x - 2?