Helppp pleaseee help pleaseee look at picture

Helppp Pleaseee Help Pleaseee Look At Picture

Answers

Answer 1

Answer:

C & E

Explanation:

Brainlest, Please!

Answer 2

Answer:

C and E

Explanation:


Related Questions


A hotel chain is using AI to enhance its booking services. Its system can locate each of its users using their mobile GPS location.

Which AI application is used to perform this task?

A) prediction
B) profiling
C) tracking
D) voice or facial recognition

Answers

The AI application that is used to perform this task is tracking. The correct option is C.

What is AI technology?

In its most basic form, AI (artificial intelligence) refers to systems or machines that mimic human intelligence in order to perform tasks and can iteratively improve themselves based on the data they collect.

Tracking is used to increase or decrease the amount of text on a page by increasing or decreasing the amount of space between letters.

It differs from kerning in that it affects an entire font or range of text, whereas kerning only affects specific letter pairs.

Tracking is the AI application that is used to perform the task using their mobile GPS location.

Thus, the correct option is C.

For more details regarding artificial intelligence, visit:

https://brainly.com/question/22678576

#SPJ1

Select the three main repetition structures in Java.

Answers

The three main repetition structures in Java are while loops, do-while loops and for loops.

What is java?

Java is a high-level, class-based, object-oriented programming language with a low number of implementation dependencies. It is a general-purpose programming language designed to allow programmers to write once and run anywhere (WORA), which means that compiled Java code can run on any platform that supports Java without the need for recompilation. Java applications are usually compiled to bytecode which can run on any Java virtual machine (JVM), regardless of computer architecture. Java's syntax is similar to that of C and C++, but it has very few low-level facilities than either of them. The Java runtime supports dynamic capabilities that traditional compiled languages do not have.

To learn more about java

https://brainly.com/question/25458754

#SPJ13

Palindrome.java

Question:
Write an application that determines whether a phrase entered by the user is a palindrome. A palindrome is a phrase that reads the same backward and forward without regarding capitalization or punctuation. For example, “Dot saw I was Tod”, “Was it a car or a cat I saw”, and “Madam Im Adam” are palindromes. Display the appropriate feedback: You entered a palindrome or You did not enter a palindrome.

CODE:
import java.util.*;
public class Palindrome {
public static void main(String[] args) {

Scanner sc = new Scanner(System.in);
System.out.println("Enter phrase : ");
String phrase = sc.nextLine();
phrase = phrase.replace(" ", "").toLowerCase();
phrase = phrase.replaceAll("[^a-zA-Z0-9]", "");
int i = 0, j = phrase.length() - 1;
boolean ispalindrome= true;
while (i < j) {
if (phrase.charAt(i) != phrase.charAt(j)) {
ispalindrome = false;
}
i++;
j--;
}

if(ispalindrome)

{
System.out.println("you entered a palindrome.");
}
else
{
System.out.println("you did not enter a palindrome.");
}



}
}

RESULTS:

50% good

pls help

Answers

Ok, where is the phrase that we are trying to determine to see if it’s a palindrome. I can help you with this, I just need the provided phrase that was given with the question as well. All I see is transcripts below

How should companies incorporate Agile methodology into their initiatives?

Answers

Answer:

down below

Explanation:

be more carful with things double checking because we are not perfect mistakes can be made , and shipping and packaging needs to better jobs with delivering items and for the not to be broken or box damaged

you receive an email from your organization notifying you that you need to click on a link and enter some personal information to verify your identity or else your account will be suspended. what should you do?

Answers

You should reach out to your organization to confirm that the email is legitimate before taking any action. If you are unsure, you can also try to look up the organization's contact information online to verify.

What is email?

Electronic mail (often known as e-mail) is a technique of transmitting messages ("mail") between persons via electronic equipment. Email was thus envisioned as the electronic (digital) alternative to mail at a period when "mail" solely referred to physical mail (thus e- + mail). Email later became a ubiquitous (extremely extensively used) communication channel, to the point where an email account is often viewed as a basic and necessary aspect of many procedures in most nations, including business, trade, government, education, entertainment, and other realms of daily life.

To learn more about email

https://brainly.com/question/24688558

#SPJ4

Cloud providers have virtually unlimited resources, which allows for

Answers

Cloud providers have virtually unlimited resources, which allows for scalability.

What is resource?

All materials available in our environment that are technologically accessible, economically possible, and culturally sustainable that assist us to satisfy our needs and desires are referred to as resources. They can also be characterised as actual or potential based on their level of development and use, as biotic or abiotic based on their origin, and as ubiquitous or localised based on their distribution. With the passage of time and the advancement of technology, an object becomes a resource.

Cloud scalability in cloud computing refers to the ability to scale up or scale down IT resources in response to changing demand. Scalability is a distinctive property of the cloud and a significant driver of its growing attractiveness among organisations.

To learn more about resource

https://brainly.com/question/24514288

#SPJ9


What type of function does a project management tool have that a task management
tool does not?
file sharing
Oprogress tracking
commenting
budgeting

Answers

The type of function does a project management tool have that a task management tool does not use  is option C; commenting.

What is the project management tool from Microsoft?

To develop timetables, project plans, manage resources, and keep track of time, project managers utilize Microsoft Project. For project management experts, it contains features like Gantt charts, kanban boards, and others.

Therefore, This project management tool enables your engineering team to keep tabs on each undertaking. Every component of any project your engineering team is working on may be managed by a single system and commenting is not one of it.

Learn more about  project management tool  from

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

Our goal is to develop a very simple English grammar checker in the form of a boolean function, isGrammatical(wordList). To begin, we will define a sentence to be grammatical if it contains three words of form: determiner noun verb. Thus
[“the”, “sheep”, “run”] is grammatical but [“run”, “the”, “sheep”] is not grammatical nor is
[“sheep”, “run”]. By tagging convention, determiners are tagged as DT, nouns as NN, verbs as VB, and adjectives (which we discuss later) as JJ. The tagSentence function from the tagger module will help you convert your wordlist to tags; a challenge is that some words (such as swing) have multiple definitions and thus multiple parts of speech (as swing is a noun and swing is a verb). Carefully examine the results returned by tagSentence when defining the logic of isGrammatical.

Note that by our current definition, we are not concerned with other aspects of grammar such as agreement of word forms, thus “an sheep run” would be considered as grammatical for now. (We will revisit this concern later.)


[3 points]
Add the words “thief”, “crisis”, “foot”, and “calf” to the lexicon.txt file, and modify wordforms.py so that it generates their plural forms correctly (“thieves”, “crises”, “feet”, “calves”). In terms of categories for the lexicon.txt, thief is a person, crisis and feet are inanimates. Interestingly, ‘calf’ might be an animal (the young cow) but might be an inanimate (the part of the body).

We are not yet using plurals in our sentences, but you should be able to add additional tests within the wordforms.py file to validate that these new words and forms are handled properly.


[3 points]
The original lexicon includes singular nouns such as cat but not plural forms of those nouns such as cats, and thus a sentence such as “the cats run” is not yet deemed as grammatical. However, the wordforms module does include functionality for taking a singular noun and constructing its plural form.

Modify the code in tagger.py so that it recognizes plural forms of nouns and tags them with NNS. We recommend the following approach:


update the loadLexicon function as follows. Every time you encounter a word that is a noun from the original lexicon.txt file, in addition to appending the usual (word,label), add an extra entry that includes the plural form of that noun, as well as a label that adds an ‘s’ to the original label. For example, when encountering ‘cat’ you should not only add (‘cat’,’animal’) to the lexicon but also (‘cats’,’animals’).


Then update the the labelToTag function to return the new tag NNS when encountering one of those plural labels such as ‘animals’.


Test your new functionality on sentences such as “the cats run” as well as with your new plurals such as “thieves”.

[2 points]
The original lexicon includes verbs such as run but not 3rd person singular forms of those verbs that end in -s such as runs, and thus a sentence such as “the cat runs” is not yet deemed as grammatical. As you did with nouns in the previous step, modify the software so that 3rd person singular verbs are added to the lexicon and tagged as VBZ. Test this new functionality on sentences such as “the cat runs” and
“the sheep runs”.


[2 points]
Now we have both plural nouns and 3rd person singular verbs, however the grammar checker currently doesn’t match them and thus accepts sentences like
“the cat run” and “the cats runs”, neither of which is truly grammatical. Update the rules so that it requires the tag VBZ on the verb if the noun has the singular tag NN, and requires the tag VB on the verb if the noun has the plural tag NNS. Add some test cases to ensure the program is working as intended. Include tests with unusual forms such as the noun “sheep” that can be singular or plural; thus “the sheep runs” and “the sheep run” are grammatical. Make sure to update any previous tests to conform to these new expectations.


[2 points]
Update your grammar to allow any number of optional adjectives between the determiner and noun in a sentence, thereby allowing sentences such as
“the big sheep run” and “the big white sheep run”, though disallowing sentences such as “the cat sheep run”.

Answers

Using the knowledge in computational language in python it is possible to write a code that form of a boolean function, isGrammatical(wordList). To begin, we will define a sentence to be grammatical if it contains three words of form: determiner noun verb.

Writting the code:

# importing the library  

import language_tool_python  

 

# creating the tool  

my_tool = language_tool_python.LanguageTool('en-US')  

 

# given text  

my_text = 'A quick broun fox jumpps over a a little lazy dog.'  

 

# correction  

correct_text = my_tool.correct(my_text)  

 

# printing some texts  

print("Original Text:", my_text)  

print("Text after correction:", correct_text)  

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

#SPJ1

you are working in the most recent version of excel provided by your company. why would you use the save as type pull-down menu?

Answers

Since  you are working in the most recent version of excel provided by your company, the reason why you would  use the save as type pull-down menu is because You are said to be saving the file for a person with an older  type/version of Excel.

What is the oldest version of Excel?

The Excel 97 Viewer was the first version issued by Microsoft. In Windows CE for Handheld PCs, the Excel 97 Viewer was also supported.

Note that Users can arrange, organize, and calculate data in a spreadsheet using Microsoft Excel.

Hence, Data analysts and other users can make information easier to examine as data is added or updated by arranging it using software such as Excel. Excel has many boxes called cells that are organized in rows and columns.

Learn more about Excel from

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

Question # 2 Multiple Choice Do you think it is acceptable to copy and paste material from a web page into a term paper?
Yes, because information on the internet is free for everyone to use.
Yes, because information on the internet is free for everyone to use.
Yes, if you paste of where you got it from but do not quote it.
Yes, if you paste of where you got it from but do not quote it.
No, because you should not pass other people’s work off as your own.
No, because you should not pass other people’s work off as your own.
No, because you can get sued by the owner of the material.

Answers

Do you think it is acceptable to copy and paste material from a web page into a term paper: No, because you should not pass other people’s work off as your own.

What is plagiarism?

Plagiarism simply refers to an act of representing or using an author's literary work, thoughts, ideas, language, or expressions without their consent, permission, acknowledgement or authorization.

This ultimately implies that, plagiarism is an illegal act that involves using another author's intellectual work or copyrighted items word for word without getting an authorization and permission from the original author.

In this context, we can reasonably infer and logically deduce that it is very wrong to copy and paste material from a web source into a term paper without an accurate citation or reference to the original author.

Read more on plagiarism here: brainly.com/question/397668

#SPJ1

Answer:

C. No, because you should not pass other people’s work off as your own.

Explanation:

The software developer is using a 16-Color Bitmap images. How many bits would be used to encode data for one pixel

Answers

Answer:

24 bits

Explanation:

Answer:

Explanation:

Given:

N = 16

_________

x - ?

2ˣ = N

2ˣ = 16

2ˣ = 2⁴

x = 4

Define network architecture?

short answer please​

Answers

Network architecture refers to the approach network devices and services area unit structured to serve the property desires of shopper devices.

Network devices usually embrace switches and routers.Types of services embrace DHCP and DNS.Client devices comprise end-user devices, servers, and smart things.

Networks additionally got to be dynamic, agile, and in lockstep with business desires. ancient, manually intensive strategies of managing pc networks area unit proving to be unsustainable. New approaches area unit necessary, ones that need transformational changes in however networks area unit architected.

This is what spec is all regarding. It’s however information flows expeditiously from one pc to a different. And for businesses with an internet element, it’s a vital idea that encompasses a vital impact on their operation

Learn more about Network Architecture at

https://brainly.com/question/13327017

Stem assessment 4: divisible by

Answers

Explanation:

4 IS DIVISIBLE BY 2,4,1

IF MY ANSWER IS USEFUL MARK ME AS BRILLINT

one image is 16384 pixels wide and 512 pixels high. He decides to save it as a 256 color bitmap image. Calculate the file size in Gib

Answers

The file size would be 0.268435456 gb

What is a File Size?

This refers to the capacity of a file to store information in it and is a function of memory in computers.

Calculations and Parameters

Given that:

There is a 256 color bitmap image.

The pixel dimensions are: 16384 pixels wide and 512 pixels high (16384 x 512)

To find the file size, this would be:

(16384 x 512 x 256)/8

= 268,435,456 bytes.

Then, to convert bytes to gigabytes and it would be 0.268435456 gb

Read more about digital imaging here:

https://brainly.com/question/26307469

#SPJ1

Pregunta Shapes are located on the ______ Tab in PowerPoint.​

Answers

Answer: its located in the insert tab

Which of the following statements are true about validation in the validation and verification process? Each correct answer represents a complete solution. Choose all that apply.
A. Describes proper software construction
B. Answers the 'Are we building the product right?' question
C. Means that the software meets the specified user requirements
D. Answers the 'Are we building the right product?' question

Answers

The  statements that are true about validation in the validation and verification process is option C. Means that the software meets the specified user requirements.

What is the process for verification and validation?

Verification is the process of confirming that the software was created and developed in accordance with the given specifications. The process of validation involves determining whether the software's (the finished product's) genuine needs and expectations have been satisfied.

Therefore, Verification and validation, commonly known as V&V, are separate processes used in tandem to make sure that a system, service, or product complies with requirements and specifications and serves the intended purpose.

Learn more about validation  from

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

So I'm doing a coding project again and I have to recreate a website I'm having difficulty getting my website to look like the one I'm recreating I have put a screenshot of the website I need I recreate and a picture of the code I have so far

Answers

HTML and CSS tutorials

Explanation:

Search for website tuturials

write a statement that retrieves the image stored at index 0 from an imagelist control named slideshowimagelist and displays it in a picturebox control named slideshowpicturebox.

Answers

The statement that retrieves the image stored at index 0 from an image list control named slideshowimagelist and displays it in a picturebox control named slideshowpicturebox are:

{

slideshowPictureBox.Image = slideShowImageList.Images [0];

}

What is picturebox?

The PictureBox control is used to display photos on a Windows Form. The PictureBox control provides an image property that allows the user to set the image at runtime or design time. It acts as a container control, uses memory to hold the picture, and allows for image manipulation in the picture box. It also has an auto size property but no stretch feature.

To learn more about picturebox
https://brainly.com/question/27064099

#SPJ4

Question 2 (1 point)
In a worksheet, the vertical spaces with headings A, B, C, and so on.
columns
cells
rows
labels

Answers

In a worksheet, the vertical spaces with headings A, B, C, are columns.

What do you mean by worksheet?

Spreadsheet software in computing displays a user interface on a computer monitor that resembles one or more paper accounting worksheets. A single spreadsheet (more formally, a two-dimensional matrix or array) is referred to as a worksheet in Microsoft Excel, while a collection of worksheets is referred to as a workbook.

A column in a spreadsheet is defined as the vertical space that runs up and down the window. Each column's location is denoted by a letter.

So, A is the right answer.

To learn more about worksheet

https://brainly.com/question/25130975

#SPJ13

9. Which of the following actions would NOT help identify your personal
ethics?
a. Describe yourself.
b. Conduct a genetic study of your extended family.
c. Identify the influences of your work environment.
d. Prepare a list of values that are most important to you.

Answers

Conduct a genetic study of your extended family would not help identify your personal ethics.

What is personal ethics?

Personal ethics refers to a person's morals and code of behaviour. These principles are instilled in a person by their parents, relatives, and friends from the time they are born. If there is no personal ethics, human existence is inadequate and superficial. It is the ethical standard by which a person makes decisions and acts in both personal and professional situations. These ethics affect many aspects of a person's life and help to develop a person's work ethic, personal and professional objectives, and values. Individuals use ethics to determine what is right and wrong and to influence how others act in difficult situations.

The primary ethical concerns that IRBs and investigators must grapple with when designing and reviewing studies involving the use of genetic information are privacy, confidentiality, informed consent, and return of results.

So, B is correct answer.

To learn more about Personal ethics

https://brainly.com/question/1031443

#SPJ9

Variance for accumulator. Validate that the following code, which adds the
methods var() and stddev() to Accumulator, computes both the mean and variance
of the numbers presented as arguments to addDataValue():
public class Accumulator
{
private double m;
private double s;
private int N;
public void addDataValue(double x)
{
N++;
s = s + 1.0 * (N-1) / N * (x - m) * (x - m);
m = m + (x - m) / N;
}
public double mean(

Answers

Using the knowledge of computational language in JAVA it is possible to write a code that Validate that the following code, which adds the methods var() and stddev() to Accumulator, computes both the mean and variance of the numbers presented as arguments to addDataValue()

Writting the code:

import java.util.*;

public class Accumulator {  

private static double m;  

private static double v;  

private static double st;  

private static  double s[]=new double[5];

private static int N;

private static int count =0;

public static void main(String[] args) {

// TODO Auto-generated method stub

Random r = new Random();

System.out.println("hello world");

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

   double randomvalue = r.nextDouble();

addDataValue(randomvalue);

}

for(int i=0;i<s.length;i++) {

   System.out.println("dataValue:"+s[i]);

}  

mean();

System.out.println("mean:"+m);

var();

System.out.println("variance:"+v);

stddev();

System.out.println("standard deviation:"+st);

}

public  static void addDataValue(double value) {     // addes data values to array

 s[count]=value;

 count++;

}

public static double mean() {        // returns mean

double sum=0.0;

for(int i=0;i<s.length;i++) {

   sum+=s[i];

}

m = sum/s.length;

return m;

}  

public static double var() {    //returns variance

double mm = mean();

    double t = 0;

    for(int i=0;i<s.length;i++) {

        t+= (s[i]-mm)*(s[i]-mm);

}

    v= t/(s.length-1);

     return v;  

}

public static  double stddev() {        // returnsn the stardard deviation

st= Math.sqrt(var());

return st;

}

}

See more about JAVA at brainly.com/question/12975450

#SPJ1


LEDS produce light using a:

Answers

LEDs produce light using a process called electroluminescence.

What is LED?

When current travels through a light-emitting diode (LED), it emits light. Electrons recombine with electron holes in the semiconductor, producing energy in the form of photons.

A light-emitting diode (LED) is a semiconductor diode that emits light when an electric current passes through it. An effect is a form of electroluminescence. The energy required for electrons to pass the semiconductor's band gap determines the hue of the light (equivalent to the energy of photons). Multiple semiconductors or a coating of light-emitting phosphor on the semiconductor device are used to generate white light.

To learn more about LED

https://brainly.com/question/24506043

#SPJ13

some websites and organizations organize card drives, sending thousands of cards to u.s. troops overseas. besides the support these cards express, what else do they provide through the power of language?

Answers

Besides the support these cards express, identity provide through the power of language.

What do you mean by power of language?

The power of language is comprised of two main components: the power to talk and be understood, and the ability to listen and comprehend. Individuals with high language skills can communicate effectively in social situations. When non-native speakers participate in oral communication, native speakers of that language identify sufficiently well-formed speech, in the sense that it is sufficiently 'native' or close to what they know as 'their language' to be totally understood. Non-native speakers must be capable of comprehending and digesting words delivered at real-world rates of speech in the manner spoken by native speakers of that language when listening to a secondary language.

The card drives that send thousands of cards to US troops deployed around the world also establish identity through the power of language.

To learn more about power of language

https://brainly.com/question/28275319

#SPJ4

Answer: comfort

Explanation:

You have found a file named FunAppx86.exe on your hard drive. Which system(s) would this executable file MOST likely run on?

Answers

Since you have found a file named FunAppx86.exe on your hard drive, the systems that this executable file MOST likely run on is Both 32-bit and 64-bit systems.

What does 32- and 64-Bit Mean?

When it comes to computers, the processing capability differential between a 32-bit and a 64-bit is everything. 64-bit processors are newer, quicker, and more secure than 32-bit processors, which are older, slower, and less secure.

Therefore, A computer file that contains an encoded sequence of instructions that the system can directly execute when the user clicks the file icon," is the definition of an executable file.

Learn more about executable file from

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

List and explain the different Print and Document Services components that are available while installing the Print and Document Services server role?​

Answers

The different Print and Document Services components that are available while installing the Print and Document Services server role are:

Supports the loaded paper with a sheet of paper.Edge guides: Assist in loading the paper properly.Protects the printing mechanism with a printer cover.Receiving tray for the paper that was expelled.Sheet feeder: Automatically feeds a stack of papersWhat is print and Document Services role in the server?

You may centralize network printer and print server duties using Print and Document Services. Additionally, you can use this role to obtain scanned documents from network scanners and send them to email addresses, a shared network resource, or a Windows SharePoint Services site.

Therefore, Modern print servers can be broadly categorized into two sorts based on how they connect to the network: wired and wireless ones. Both a serial port and a USB port can be used to connect to the printer simultaneously. Observe that a wireless print server connects to the

Learn more about Document Services components  from

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

1. PP 2.1 Create a revised version of the Lincoln program from Chapter 1 to print the quotation
inside a box made up of character ^.
2. PP 2.2 Write a program that reads four integers and prints the sum of their squares.
3. PP 2.3 Write a program that reads three floating point numbers and prints the cube of their
average.
4. PP 2.7 Write a program that prompts for and reads integer values for typing speed and number
of characters in the document, then prints the time required to type them as a floating point
result.

Answers

The revised version of the Lincoln program from Chapter 1 to print the quotation us illustrate below.

What is a program?

A computer program is a set of instructions written in a programming language that a computer can execute. Software contains computer programs as well as documentation and other intangible components.

The program will be:

public class Print {

public static void main(String[] args)

{

char ch='"';

System.out.println("A quote by Abraham Lincoln:\n"+ch+"Whatever you are, be a good one."+ch);

//by using char for storing double quote

System.out.println("A quote by Abraham Lincoln:\n"+'"'+"Whatever you are, be a good one."+'"');

//in single quote

System.out.println("A quote by Abraham Lincoln:\n\"Whatever you are, be a good one.\"");

//using \"

}//end of main

}//end of Print class

/******OUTPUT*******

A quote by Abraham Lincoln:

"Whatever you are, be a good one."

A quote by Abraham Lincoln:

"Whatever you are, be a good one."

A quote by Abraham Lincoln:

"Whatever you are, be a good one."

*/

Learn more about programs on:

https://brainly.com/question/26568485

#SPJ1

Write a program to display the s
tandard/deviation of 100 sets of numbers already stored in an array​

Answers

import random

import statistics

number = [1, 2, 3, 4, 5]

print("Standart deviation is: ", statistics.stdev(number))

Please edit the array before compiling the code.

Create a program that will allow user to input arithmetic operator, first number and second number
then perform a result based on the condition.

and produce the output below.
• When arithmetic operator "+" or "addition" perform addition for first number and second number and
use (for loop) to display count down from result to 1.
• When arithmetic operator "x" or "multiplication" perform multiplication for first number and second
number and use (for loop) to display from 1 to result.
• When arithmetic operator "-" or "subtraction" perform subtraction for first number and second
number and use (while loop) to count down from result to 0.
• When arithmetic operator "/" or "division" perform division for first number and second number and
use (while loop) to display from 0 to result.
• When arithmetic operator "%" or "modulo" perform modulo for first number and second number and
use (do while loop) to display from 0 to result, Otherwise Access Denied

Answers

A program that will allow the user to input the arithmetic operator, the first number, and the second number and then perform a result based on the condition that when the arithmetic operator "+" or "addition" performs addition for the first number and second number and use (for loop) to display count down from result to 1 is given below:

The Program

a = int(input("Enter First Number: "))

b = int(input("Enter Second Number: "))

print("Enter which operation would you like to perform?")

ko = input("Enter any of these char for specific operation +,-,*,/: ")

result = 0

if ko == '+':

   result = a + b

elif ko == '-':

   result = a - b

elif ko == '*':

   result = a * b

elif ko == '/':

  result = a / b

else:

   print("Error")

print(a, ko, b, ":", result)

Read more about programming here:

https://brainly.com/question/23275071

#SPJ1

The following statements describe the use of graphics in presentations. Responses Graphics should be used when they are relevant to the content. Graphics should be used when they are relevant to the content. Graphics should be used on every slide. Graphics should be used on every slide. Many graphics will make a boring presentation interesting. Many graphics will make a boring presentation interesting. Graphics should be large enough to be seen by the audience. Graphics should be large enough to be seen by the audience.

Answers

Answer:

I. Graphics should be large enough to be seen by the audience.

II. Graphics should be used when they are relevant to the content.

Explanation:

Presentation can be defined as an act of talking or speaking formally to an audience in order to explain an idea, piece of work, project, and product with the aid of multimedia resources, slides or samples.

PowerPoint application refers to a software application or program designed and developed by Microsoft, to avail users the ability to graphically create various slides containing textual and multimedia informations that can be used during a presentation.

Some of the features available on Microsoft PowerPoint are narrations, transition effects, custom slideshows, animation effects, formatting options etc.

Hence, the following statements describe the use of graphics in presentations;

I. Graphics should be large enough to be seen by the audience.

II. Graphics should be used when they are relevant to the content.

Explanation:

Answer:

I. Graphics should be large enough to be seen by the audience.

II. Graphics should be used when they are relevant to the content.

B and C

Explanation:

A function's return data type must be the same as the function's
parameter(s).
True
False



// For C++

Answers

The given statement of data type is false.

What is data type?

A data type is a set of possible values and operations that may be performed on it in computer science and programming. A data type specifies how the programmer intends to use the data to the compiler or interpreter. Most programming languages support integer numbers (of various sizes), floating-point numbers (which approximate real numbers), characters, and Booleans as basic data types. A data type limits the potential values of an expression, such as a variable or a function. This data type specifies the actions that may be performed on the data, its meaning, and how values of that kind can be stored.

To learn more about data types

https://brainly.com/question/179886

#SPJ13

Other Questions
6x + 14y what is the letter y in this problem? In the picture below, angle 2 = 130 degrees, what is the measurement of angle 8? Quantum Theory proposes electrons maybe found in orbitals, which are based onwhat?Bohr's planetary modelThompson's Plum Pudding Modelthe probability of finding an electron in anarea around the nucleusThe Heisenberg-Rutherford Model The sum of 19 and twice a number Given that f(x)=x^2-3x-54and g(x)=x-9 find (x)(fg)(x) a certain reaction is known to be second order in species a. what is the numerical value of k (in m^-1s^-1), the rate constant, if the concentration of a decreases from 1.50 m to 0.367 m after 141.4 seconds? (give your answer to 3 sig figs) Find the length of the third side. If necessary, round to the nearest tenth. 12 5 x=what is the missing number x? Which is the least electronegative element?Group of answer choicescarbonnitrogenoxygenaluminum Exercises Complete the following: 11. Find the intercepts and (a) 9x - 164 = 144 (c) 25x - 4y = 100 (e) x + y = 1 29x + 16y = 144 Frown, and you frown alone.Smile, and the whole world smiles with you.Do you think this saying is true? Why and why not? Which of the following is true? which one of these options is the best definition of extrapolation? group of answer choices fitting a line to data that is non-linear using a given y-value and a linear regression equation to predict an x-value. using a linear regression equation and any x-value to predict any y-value. using an x-value far from observed x values to predict a y value had a question about this and i cant find a answer An e-verify case must be created no later than the end of ___ business days after the employee begins work for pay. 3. x-intercept 4, y-intercept 2, passes through 5. Center on x = 3, radius 13, passes through Center on the y-axis, radius 5, x-intercept 3 cle having the given center and radius. (b) C (-2,-5), r = 4 (d) C(2, -3), r= 6 ving the given properties. (0,0) (6, 5) Please help me, I really need it right now. a cyber hacker is trying to identify the mean age of customers that make frequent purchases on the online retail platform. the hacker does not have access to the raw data, however, the hacker had guessed that the age of customers is normally distributed with a standard deviation of 5 years. in addition to the above, the hacker knows that 70% of the time the age of the customers does not exceed 30 years old. calculate the mean age of customers, relying on the above information. 2.a statewide real estate sales agency, farm associates, specializes in selling farm property in the state of nebraska. its records indicate that the mean selling time of farm property is 90 days. because of recent drought conditions, the agency believes that the mean selling time is now greater than 90 days. a statewide survey of 100 farms sold recently revealed that the mean selling time was 94 days, with a standard deviation of 22 days. at the .10 significance level, has there been an increase in selling time? You are a German who has just heard the terms of the Treaty of Versailles. Explain why do you think your country should prepare for a war of revenge. Read the excerpt from Hammurabis Code.If a man has knocked out the eye of a patrician [aristocrat], his eye shall be knocked out. . . If he has knocked out the eye of a plebeian [commoner] . . . he shall pay one mina of silver. If he has knocked out the eye of a patricians servant . . . he shall pay half his value.What does this quote illustrate about the nature of Hammurabis Code? A. The law's punishments did not encourage social order. B. The law did not treat all members of society equally. C. The law did not address any private matters. D. The law did not specify the crime.