A scatter plot can be used with both numerical and non numerical values. True or False?

Answers

Answer 1

Answer:

true

Explanation:


Related Questions

what are output devices ?
name them​

Answers

Answer:

Monitor.

Printer.

Headphones.

Computer Speakers.

Projector.

GPS.

Sound Card.

Video Card.

Explanation:

Mingji is working to transfer photos from her digital camera to her computer. While

reading her camera's user manual, she sees that she doesn't need to use a USB cord to

make the transfer. What type of digital camera does Minji have?

Answers

Answer:

digital camera with bluetooth

Explanation:

Bluetooth is defined as a wireless technology with the help of which data and information such any images, documents, files, etc can be send to other devices equipped with bluetooth technology over a short distance with the use of UHF radio waves.

Bluetooth technology help in exchanging data with out the use of a USB cable.

In the context, Minji is having a digital camera with bluetooth technology as she can transfer her photos from the camera to the computer with out the help of any USB chord.

4.20 [5] <§4.5> Add NOP instructions to the code below so that it will run correctly on a pipeline that does not handle data hazards. ADDI X1, X2, #5 ADD X3, X1, X2 ADDI X4, X1, #15 ADD X5, X3, X2

Answers

Answer:

Following are the solution to this question:

Explanation:

The following is the sequence of instructions to ensure proper implementation after adding NOPs:  

[tex]ADDI \ Xl,X2, \#5\\NOP\\NOP\\NOP\\ADD \ X3, X1,X2\\ADDI \ X4, X1, \#15\\ADD \ X5, X3,X2\\[/tex]

The value of the X1 is identified in the first ADDI order X1, X2, #5, mostly on the WB level, which appears in clock cycle five. Before the second instructions, three NOPs are added because as second instruction should wait for X1 to be correct.

Its second primary example with cycle 5, but ends through cycle 9. clock. Since X3 quality doesn't execute its third command, no NOP is inserted.

Its third instruction begins at clock cycle 6 and finishes at clock cycle 10. Because the fourth order is not required to execute an X4 value, no NOP is inserted, and the fourth instruction begins in cycle 7 and finishes at clock cycle 11.

A new computer virus attacks a folder consisting of 200 files. Each file gets damaged with probability 0.2 independently of other files. What is the probability that fewer than 50 files will get damaged? g

Answers

Answer:

0.95345

Explanation:

Given that :

Number of files (n) = 200

Probability of getting damaged (p) = 0.2

q = 1 - p = 1 - 0.2 = 0.8

using normal approximation:

Mean (m) = np = 200 * 0.2 = 40

Standard deviation (s) = √n*p*q= √(200 * 0.2 * 0.8) = 5.6568542

P(X < 50)

X = 50 - 0.5 = 49.5

Find the standardized score :

Z = (x - m) / s

Z = (49.5 - 40) / 5.6568542

Z = 9.5 / 5.6568542

Zscore = 1.6793786

P(Z < 1.6793) = 0.95345 ( using Z probability calculator)

Which statements accurately describe the Outlook interface? Check all that apply.

1) Two main elements are items and folders.
2) The content pane contains a list of items to be viewed in the reading pane.
3) The ribbon contains a list of tabs and menu items.
4) Command groups are located in the folder pane.
5) The main Outlook menu has a ribbon tab with default commands.
6) File, Home, Send/Receive, Folder, and View are commands on the main ribbon tab.

Answers

Answer:

1,2,3,5,6 was right on edge

Explanation:

Joseph is a digital media developer and has years of work experience. He now wants to improve his management skills. What can he do to develop and sharpen his managerial skills? To improve his managerial skills, Joseph can enroll in a degree program.

Answers

Answer:

Following are the solution to this question:

Explanation:

Soft skills are best developed for irrespective of the occupation technical skills is a common skill, which everyone requires to master to work together and carry mostly on work successfully. A technically gifted individual needs soft skills to work with each other to the concept of work, to resolve issues, etc. The different soft training programs for different roles and decades of expertise are offered. therefore Professors propose learning in soft skills as well as an MBA degree.

Write a program that asks the user to enter 2 words, then prints "Great!" if the two words are identical, "Close enough" if they are the same length and all but the last letter matches, and "Try again" otherwise.

java, desperate fr

Answers

Answer:

 System.out.println("Enter 2 strings:");

   Scanner scan = new Scanner(System.in);

   String a = scan.nextLine();

   String b = scan.nextLine();

   int c = a.length();

   int d = b.length();

   String e =  a.substring(0, a.length()-1);

   String f = b.substring(0, b.length()-1);

   if (a.equals(b)){

     System.out.println("Great!");

   }

   else if (c== d && e.equals(f)){

     System.out.println("Close enough");

   }

   else{

     System.out.println("Try again");

   }

 }

 

}

Explanation:

Following are the java program to comparing the words:

Program Explanation:

Import package.Defining the main class.Defining the main method.Inside the main method two string "f,s" is declared that uses input method to input value.After input value multiple conditional statement is declared that checks inputs value.In the if block, it checks first string value equal to second value, if it is true it will print a message "Great!".In the else if block it checks string value that has same length, for this it uses "l" variable that checks length value, and the print the message "Close enough".In the else block, it will print the message "Try again".

Program:

import java.util.*;//import package public class Main //defining a class {    public static void main(String[] ars) //defining main method    {        String f,s;//defining String variable        Scanner obc=new Scanner(System.in);//creating Scanner class object        System.out.print("Enter First word: ");//print message        f=obc.next();//input value        System.out.print("Enter Second word: ");//print message        s=obc.next();//input value        if(f.equals(s))//use if to check input string value are equal            System.out.println("Great!");//print message        else if(f.length()==s.length())//using else if block that checks string value has same length         {            int c=0;//defining integer variable             int l=f.length();//defining integer variable l that holds first string length value            for(int i=0;i<l;i++) //using for loop to compare string value            {                if(f.charAt(i)==s.charAt(i))//use if to compare string by using charAt method                    c++;//incrementing c value            }            if(c==l-1 && f.charAt(l-1)!=s.charAt(l-1)) //comparing string            {                System.out.println("Close enough");//print message            }        }        else //defining else        {            System.out.println("Try again");//print message        }    } }

Output:

Please find the attached file.

Learn more:

brainly.com/question/20875119

bvbmb

The internet's data gathways rely on what kind of hardware devies to route data to its destination?

Answers

Answer:

router

Explanation:

What connections do you see between variables and what you learned about the Input-Output-Store-Process model of a computer?

Answers

Answer:

h

Explanation:

Before inserting a cover page or a blank page, where should the cursor be placed?
O at the end of the first line on the page to insert the new page after it
at the end of the last line on the page to insert the new page before it
at the beginning of the last line on the page to insert the new page after it
O at the beginning of the first line on the page to insert the new page before it

Answers

Answer:

At the beginning of the first line on a page to insert the new page before.

Explanation:

if you need more assistance please let me know.

cheers

Answer:

D.  at the beginning of the first line on the page to insert the new page before it

Explanation:

An array is another name for a list.

True or false. With explanation.

Answers

Answer:

True

Explanation:

An array could state a particular or indefinite number of items in order. The word is also synonymous to list

Answer:

True

Explanation:

in which step of web design is storyboarding helpful?

a
Coding

b
Editing

c
Planning

d
Publishing

Answers

Answer:

the soup become too salty through the process of osmosis system specific message and you can get my points

Explanation:

his email address is going to change your notification delivery settings for Corona CA and you know that

Write at leaat 20 shortcuts on the Microsoft word.​

Answers

Answer:

Open a document: Ctrl + O.

Create a new document: Ctrl + N.

Save the current document: Ctrl + S.

Open the Save As window: F12.

Close the current document: Ctrl + W.

Split the window: Alt + Ctrl + S.

Copy: Ctrl+C

Paste: Ctrl+V

Cut the current selection: Ctrl + X

Copy the current selection: Ctrl + C

Paste the contents of the clipboard: Ctrl + V

Bold: Ctrl + B

Italics: Ctrl + I

Underline: Ctrl + U

Underline words only: Ctrl + Shift + W

Center: Ctrl + E

Make the font smaller: Ctrl + [

Make the font bigger: Ctrl + ]

Change text to uppercase: Ctrl + Shift + A

Change text to lowercase: Ctrl + Shift K

Insert a page break: Ctrl + Enter

Add a hyperlink: Ctrl + K

Explanation:

Write a section of code that asks the user for their last name and then will create A new string produced by randomly splitting their name into two parts and reversing their order.
Example: "computer" may produce the result "utter comp".

Answers

import random

name = input("Enter your last name: ")

w = random.randint(0,len(name)-1)

txt = name[0:w]

txt1 = name[w:]

print(txt1+" "+txt)

I hope this helps!

What are the key components to planning a presentation?
Check all that apply:
audience
conclusion
methods
purpose
thesis
title
topic

Answers

1,3,4,7 just took on edge

Answer:

1 3 4 7

Explanation:

30 points! Help me out, please! I need help with this!

Answers

Answer:

Both are touchscreen.

Tablets are seen more as an entertainment device (tv, games, etc.).

Phones are smaller, and used more for everything; you can take phones anywhere you go, whereas tablets are more difficult to transport.

Other Questions
Erase un naricisimo infinito muchsimo nariz,nariz tan fiera que en la cara de Anas fuera delito.?de que trata el poema? Which professional would most likely use a diagram for their presentation? Check all that apply. a science teacher who wants to show the basic structures of a cell a statistician who wants to illustrate how a math problem was solved a river raft guide who wants to show the location of the best rapids an economic development director who wants to show job growth over time a senator who wants to visualize the process a bill takes to become law Anybody know the slope to this? Kiara made the table below to show the IQ scores and grade point averages (GPAs) of students in her class. She made another table to show the standardized test scores and IQ scores.IQ, GPA, and SAT ScoresIQGPAIQStandardized Test Score1203.71201540852.3858001103.01101,200962.79610001002.91001100She graphs the data in each table and writes the rounded values as shown for the regression line y = a x + b.I Q and G P A. a = 0.04. b = negative 0.9. I Q and Standardized Scores. A = 20. b = negative 924.Next, Kiara uses the steps below to predict a students standardized test score based on the students GPA of 4.0.Step 1 Write the equation of the trend line for IQ and GPA.y = 0.04 x minus 0.9Step 2 Write the equation of the trend line for IQ and standardized test score.y = 20 x minus 924Step 3 Find the IQ that is expected from a GPA of 4.0.y = 0.04 x minus 0.9. 4 = 0.04 x minus 0.9. 4.9 = 0.04 x. 122.5 = x.The IQ is about 122.5.Step 4 Find the corresponding standardized test score for an IQ of 122.5.122.5 = 20 x minus 924. 122.5 = 20 x minus 924. y = 523.The standardized test score is 523.In which step did Kiara make the first error?step 1step 2step 3step 4 How would you feel if you were bullied by a friend? Match the number with its opposite. (4 points) Mary has a new puppy. The puppy weighs 5 pounds and is 20% of it's adult weight. What would the puppy's adult weight be? Approximately what percent of the population is above the daily limit in added sugar, saturated fats, and sodium? in the revolt of 1857 , ahmadullah shah who belonged to faizabad came to fight in What are the five properties of matter? Jarvis is a coffee farmer who wants to hedge his entire coffee crop that will be harvested by September. The December coffee contract (which consists of 37,500 pounds of coffee) is trading at $2.00 per pound, which the farmer views as a profitable price. To hedge the entire crop, which is expected to weigh 150,000 pounds, at the best price, Jarvis should: A 1500 kg car is parked at the top of a hill 5.2 m high. What is the velocity of the car, in meters per second, when it reaches the bottom of the hill? HEEEELP! ASAP! What similarities and differences do you see in the two organisms in image 3? What is generalization A. A simple statement about something complicated.B. Hints or clues that tell you what is going to happen in a story.C. A series of events that make up what happens in a story. D. The final resolution or event that ties up loose ends in a story. Can someone help me find x. What is the main reason the United States has had a major presence in the middle east during the 21st century how many solutions do the equations y=3x+4 and 3y-6x=2 have? gold has a density of 19300 kg/m3 calculate the mass of 0.02m3 of gold in kilograms Write a one-paragraph letter to the editor of a newspaper from the perspective of a Federalist supporting ratification of the Constitution I support ratification because . . . please help!!!!!!!!!!!