Which statement is true?
An employee list can give the departments and job titles of employees.
A product list can include names and addresses of buyers of the product.
A medical record can include consumer buying behaviors of prescriptions.
A market research report can give names of employees of a company.

Answers

Answer 1

Answer:

An employee list can give the departments and job titles of employees.

Explanation:

Well you have to your employees age birth certificate  and stuff like that on file and there department and title would bee in that file.

Answer 2

Answer:

A

Explanation:

Makes the most sense


Related Questions

Ivan wants to have code in a game that will make it possible to change the speed of a swimmer in the game. Which of these does Ivan need?

A.
a Boolean value

B.
output

C.
a variable

D.
a database

Answers

A) a Boolean value, because you can have two possible values which is intended to represent the two truth values of logic.

Which two statements are true about an OS?

A- translates the user’s instructions into binary to get the desired output
B- needs to be compulsorily installed manually after purchasing the hardware
C- is responsible for memory and device management
D- delegates the booting process to other devices
is responsible for system security

Answers

Answer:

A AND C

Explanation:

Answer: C and D

Explanation: correct on Plato - A is not a function of an OS

can some one please help

Answers

Answer:

i will try other questions too

How is video compression accomplished?
O Video compression works by making the pixel size smaller.
O Video compression works by removing the sound.
O Video compression works by smoothing the pixels.
O Video compression works by removing unnecessary parts of frames.

Answers

Answer:

Video compression works by making the pixels smaller.

Explanation:

I went on a boring website that actually knows about this stuff and found the answer. R I P my brain cells.

Answer:

a

Explanation:

i need help, thank you

Answers

Answer:

A

Explanation:

When astronauts aboard the International Space Station (ISS) exhale carbon dioxide (CO2), it's removed from the air and pumped into space.

please mark brainliest :D

I WILL MAKE BRAINLIEST PLS HURRY
Give your own examples for how list and dictionary data structures could keep track of some common information you might need. Your examples should be different from the ones in the unit.

Answers

Examples

Lists:

- Keep track of how much water you drink per day

- Hours spent on studying per week

- The growth of a plant

Dictionaries:

- Keep track of overall grades for each subject

- Keep track of where money is mostly spent on

- Dates for upcoming assessments and tests

Hope these examples help :)

-goodLizard is right

--Please make him brainliest

[Thank you]

3. What is output by the following code?
str1 "awesome"
str2 "leopard";
int i = 3;
int j = str2.length() - 3;
while (i < str1.length() &8 j > 0)
System.out . print (strl.substring(i, i + 1));
System.out.print(str2.substring (j, j + 1);
1++;
j--;
a. saopmoee
b. saompoeel
C.
saerwd
aspoomee
Nothing is printed because there is an out of bounds error
e,

Answers

Answer:

B I think

Explanation:

Is it still worth it to get Airpods right now?

Answers

Answer:

Well that depends if you're getting them for Christmas.

Explanation:

Also I have Airpods, and in my point of view There kinda hard to keep track of, but maybe that's just me :P

I hope I helped!

here is something cool

Answers

cool beans s s s s s s s s

Answer:

Ok

Explanation:

PLS HURRRYYYYYY!1!1!1!1!1
You have used different ways to store data. Match each definition with its type.

movieAwards = ('Oscar', 'Golden Globe', 'Director's Guild')

movie = 'Star Wars'

movieStars = ['Carrie Fisher', 'Harrison Ford']

movieRatings = {5:'language', 3:'violence'}

movieID = 132

movieCost = 4.95


Vocab:

Float

Tuple

int

string

list

dictionary

Answers

movieID = 132 Int

movieCost = 4.95 Float

movie ='Star Wars' string

movieAwards = ('Oscar', 'Golden Globe', 'Director's Guild') tuple

movieStars = ['Carrie Fisher', 'Harrison Ford'] list

movieRatings = {5:'language', 3:'violence'} dictionary

If you want these explained , can do in replies :)

Answer: Int, Float, String, tuple, list, dictionary

Explanation: got it right on edgen

heeeeeeeeeelp its timed :(
drag the correct word to the correct place
plllz help

Answers

Answer:

Upward Blue arrow= Lift

Downward Blue arrow= Drag

Upward yellow arrow= Thrust

Downward yellow arrow= Weight

i m not so sure

Why is this python code giving me problems?
This is having the user input a decimal number and the code has to round it up to the 2nd decimal place. This code is giving me problems, please fix it.

num3 = int(input("Please input a decimal number:")

num3 = int(round(num3, 2))

print ("your decimal rounded to the 2nd decimal place is:", x)

Answers

Answer:

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

Explanation:

The given code in this program has syntax errors.

In the given code, at line 1, input will cast or convert to int. It will generate an error on the second line because integer numbers can't be rounded. In simple, integer numbers don't have decimals. So, to correct the line you must use float instead of int.

In the second line, you need also to emit the int casting, because you have already converted the input into the float. In line 3, the second parameter to print function is num3, not x.

So the correct lines of the python code are given below:

num3 = float(input("Please input a decimal number:"))

num3 = (round(num3, 2))

print ("your decimal rounded to the 2nd decimal place is:", num3)

When you will run the above bold lines of code, it will run the program successfully without giving you any syntax and semantic error.

PYTON CODERS I NEED HELP I WILL GIVE BRAINLIEST!!! Why is this python code giving me problems?
This is having the user input a decimal number and the code has to round it up to the 2nd decimal place. This code is giving me problems, please fix it.

num3 = int(input("Please input a decimal number:")

num3 = int(round(num3, 2))

print ("your decimal rounded to the 2nd decimal place is:", x)

Answers

Answer:

num3 = float(input('Insert a decimal: '))

num3 = round(num, 2)

print(f"You rounded decimal is: {num3}")

Explanation on why this works:

This block of code resembles a decimal from user input and round it to its nearest 10th. Let me explain the flaws in the original:

>>> num3 = int(input("Please input a decimal number:")

On this line of code you put it as the user input will be transferred to an int when in reality it should be a decimal float so we can round it later in the program. so it should be:

>>> num3 = float(input("Insert a decimal: "))

Second Line of code:

>>> num3 = int(round(num3, 2))

In this case, the int() function is not needed. so just remove and its good.

Lastly you used:

>>> print("your rounded decimal is: ", x)

Which is perfectly fine. Two more ways to output the same thing is by using:

>>> print(f"You rounded decimal is: {num3}")

Or just use the format() string method:

>> print("You rounded decimal is: {0}", num3)

What are the options included in the Illustrations command group? Check all that apply O Pictures and Online Pictures Tables SmartArt Screenshot Tool Animations​

Answers

Answer:

A. Pictures and Online Pictures.

C. SmartArt.

D. Screenshot Tool

Explanation:

Microsoft Excel is a software application designed and developed by Microsoft Inc., for analyzing and visualizing spreadsheet documents.

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

There are five (5) options included in the Illustrations command group of the Microsoft Excel software application and these are;

I. Pictures: this command or button is used to add images from a document (file) saved on a local computer.

II. Online Pictures: it is used for adding images from an online source such as blogs, websites etc.

III. SmartArt: this button is used to add graphical diagrams to a spreadsheet using styles such as process, matrix, relationship, picture, pyramid, list etc.

IV. Screenshot Tool: this is used for taking a snapshot of any window open on the computer i.e screen clipping.

V. Shapes: this comprises of various shapes such as lines, basic shapes, rectangles, equation shapes, block arrows, and flowchart.

What does the primary Help icon look like in Access?

a square with a star
a diamond with an asterisk
a circle with a question mark
a triangle with an exclamation point

Answers

a circle with a question mark

Answer:

c

Explanation:

Lorraina is editing a novel. Which style guide is the publisher most likely going to ask her to use?

American Psychological Association (APA)
Associated Press (AP)
Chicago Manual of Style (CMoS)
Modern Language Association (MLA)

Answers

Answer:

C) Chicago Manual of Style (CMoS)

Explanation:

Edge showed me the right answer.

Answer:

C

Explanation:

Exam Review on edge 2022

Gross profit i how much it costs to bring a business products to the costumers true or false

Answers

Answer:

True

Explanation:

Which statement allows more than one condition in an If statement? O Else O While O Elif If-then ​

Answers

Answer:

C. Elif

Explanation:

:)

Answer:

Eilf 100000%

Explanation:

why did the boy run from the pillow...... wrong answers only

Answers

He thinks there is a demon hiding innit thus, he runs and calls his mom. His mom says "Jimmy there's nothing in that pilow young man!" Jimmy walks back to his room scared if its still there. He hops into bed hoping that he can get a good nights rest. The next day, Jimmy asks if he can go buy another pillow. His mom says "As long as it makes you feel safe then ok." Young Jimmy, jumping in excitement, goes to the checkout zone to buy his new pillow. When they get home, Jimmy and his mom eat dinner and then head for bed. Jimmy hops into bed and knows that everything will be ok. The end.

9.3 Code Practice
Write a program that creates a 4 x 5 grid called numbers. The elements in your array should all be random numbers between -30 and 30, inclusive. Then, print the array as a grid

Please help!!!

Answers

Answer:

import random

def grid_maker(x, y):

   return [ [str(random.randint(-30, 30)) for _ in range(x)]for _ in range(y) ]

print ('\n'.join(' '.join(row) for row in grid_maker(4, 5)))

Explanation:

We use a template function and we generate numbers between -30 and 30:

>>> [str(random.randint(-30, 30))]

We also use the str() method so we can later concatenate the integers with \n. If you do not specify the integers, it will cause a crash. Also, keep in mind if we use a variable to store the integers, it will come out more of like a seed than a random grid. For instance, output without the random integers in a variable:

-12 16 -18 -3

7 5 7 10

18 -21 -16 29

21 3 -4 10

12 9 6 -9

Vs with a variable:

-25 6 -25 -20

-25 6 -25 -20

-25 6 -25 -20

-25 6 -25 -20

-25 6 -25 -20

Next we specify the  x and the y:

>>> for _ in range(x)]for _ in range(y) ]

Next we just print it and create a new line every time a row is made

hope this helped :D

The program is an illustration of the random module

The program in python, where comments are used to explain each line is as follows:

#This imports the random module

import random

#This is repeated four times (the rows)

for i in range(4):

   #This is repeated five times (the columns)

   for j in range(5):

       #This prints a random number between -30 and 30

       print(random.randint(-30, 30),end = ' ')

   #This prints a new line

   print()

Read more about random modules at:

https://brainly.com/question/13664230

What are the characteristics of using the Email Calendar command? Check all that apply.

a. it shows a specific date range
b. it shares a snapshot of the calendar
c. it is delivered as an attachment to an email
d. it grants read only access to the whole calendar
e. it is used to show dates without sharing the entire calendar.
f. it allows the user to add the calendar to their outlook client.


(question from edge)

Answers

Answer:

a b c e     are the correct ones

Explanation:

A, B, C, E

the correct answers are A, B, C, and E

Which of the following will result in a True value?
1. NOT (TRUE AND FALSE) AND TRUE
II. NOT (TRUE AND TRUE) AND TRUE
111. NOT (TRUE AND TRUE) OR TRUE

Answers

Answer:

1. 'NOT(TRUE AND FALSE) AND TRUE'

3. 'NOT (TRUE AND TRUE) OR TRUE'

Explanation:

We can go through each option to find out which statements will result in a 'TRUE' value.

1. 'NOT (TRUE AND FALSE) AND TRUE':

'TRUE AND FALSE' inside the parentheses will result in 'FALSE' since the Boolean operator 'AND' requires both terms to be 'TRUE' for the resulting value to become 'TRUE', otherwise it returns 'FALSE'.

'NOT (TRUE AND FALSE) AND TRUE' now becomes 'NOT FALSE AND TRUE'. The Boolean operator 'NOT' will return the opposite of the term given, so 'NOT FALSE' becomes 'TRUE'. This leaves us with 'TRUE AND TRUE' which returns 'TRUE'.

2. 'NOT (TRUE AND TRUE) AND TRUE':

'TRUE AND TRUE' inside the parentheses will result in 'TRUE', leaving us with 'NOT TRUE AND TRUE'. 'NOT TRUE' will give us 'FALSE', resulting in 'FALSE AND TRUE'. The resulting value of 'FALSE AND TRUE' is 'FALSE'.

3. 'NOT (TRUE AND TRUE) OR TRUE':

Again, 'TRUE AND TRUE' inside the parentheses will result in 'TRUE', leaving us with NOT TRUE OR TRUE'. The Boolean operator 'OR' requires only one term to be 'TRUE' for the resulting value to become 'TRUE'. This means that this statement will return 'TRUE'.

Hope this helps :)

Please help me!!!

Use searching laterally to find more out about obesitymyths.com and if it is credible. Share your findings here.

Answers

Explanation:

I am verry bad at computer science. ...........

Using the search tool, it is discovered that the website is not a credible website.

Why is the website not credible?

This is due to the fact that the domain of the website has been put up for sale. The website does not contain information about what its name suggests.

There is a transfer of ownership waiting to happen. Hence we can conclude that it is not a credible website.

Read more on websites here: https://brainly.com/question/1382377

#SPJ2

the ratio of length, breadth and height of a room is 4:3:1. If 12m^3 air is contained in a room, find the length , breadth and height of the room​

Answers

Explanation:

The ratio of length, breadth and height of a room is 4:3:1

Let length = 4x

Breadth = 3x

Height = x

Volume of air contained in the room, V = 12 m³

We need to find the length, breadth and height of the room. The room is in the shape of a cubiod. The volume of a cuboid is given by :

V = lbh

[tex]4x\times 3x\times x=12\\\\12x^3=12\\\\x=1[/tex]

Height of the room = 1 m

Breadth of the room = 3x = 3 m

Length of the room = 4x = 4 m


Pls help! 7th grade pythin fyi

Answers

Answer:

There should be a colon at the end of the if statement, ie:

if x > 100:  print("...")

Can anybody answer this please hurry

Answers

Answer:

Ada Lovelace

The first one!

Hope this helps!

Answer:
A. Ada Lovelace

Explanation:
She created it in the 1840s while Alan Turing created his software in 1935.

Which online note-taking device allows students to clip a page from a website and reuse it later?

web clipping tools
electronic sticky notes
offline data storage sites
online data storage sites

Answers

Answer:

The answer is A.) web clipping tools.

Explanation:

Cuz like yeah

Answer: WEB CLIPPING TOOLS

Explanation:

can someone answer me

Answers

Answer:

D. 5,184,000

Explanation:

3000*1728= 5184000

A period in which unemployment is low, business produces many goods and services, and wages are good is called ______.

A. prosperity
B. productivity
C. personal income
D. business cycle

Answers

Answer:

A

Explanation:

Which phrase best describes a scenario in Excel 2016?


A. a type of what-if analysis that allows a user to define a single variable for a single function or formula

B. a type of what-if analysis that allows a user to define multiple variables for multiple functions or formulas

C. a type of chart analysis that allows a user to predict outcomes using data

D. a type of chart analysis that allows a user to set predetermined outcomes using data

Answers

A phrase which best describes a scenario in Microsoft Excel 2016 is: B. a type of what-if analysis that allows a user to define multiple variables for multiple functions or formulas.

What is Microsoft Excel?

Microsoft Excel simply refers to a software application that is designed and developed by Microsoft Inc., for analyzing and displaying spreadsheet documents, especially by using rows and columns in a tabulated format.

The types of function in Microsoft Excel.

In Microsoft Excel, there are different types of functions which are referred to as "predefined formulas" and these include the following:

Sum functionMaximum functionAverage functionCount functionIF functionMinimum function

In conclusion, Microsoft Excel 2016 is designed and developed by Microsoft Inc., as a type of what-if analysis which avail its end users to use multiple variables in defining multiple functions or formulas.

Read more on Excel function here: https://brainly.com/question/14371857

#SPJ1

Other Questions
Solve the compound inequality 2x -4 5 Identify the transformation from the graph of f(x) = x3to g(x) = (x 4)3 Question 3 (0 points)Which sentence is grammatically correct?Hint: Make sure the definite or indefinite articles agree in gender and number with the noun. aEllos son el amigos de Gisela. bEllos son los amigos de Gisela. ______ attract water in the GI tract and help to slow down digestion and absorption.A.OligosaccharidesB.PectinsC.LigninsD.Oligosaccharides and pectins Sam obtains a $20,000 loan for a new car. If the interest rate is 3.5% with a loan term of 72 months, how much will his monthly payment be? (Round to the nearest cent) Read this excerpt from "Types of Volcanoes."Cinder cones are formed when small pieces of lava, called cinders, fly out of a vent and land around it. The cinders then cool from molten rock into solid rock.According to the context clues, which term best defines the underlined word?liquidheavyblackfrozen PLEASE SOMEONE HELP ASAP, 80 POINT'S!!!!!!!!!!!!! PLEASE DON"T ANSWER IF YOUR NOT WRITING WHAT IS REQUESTED HERE.We will look at a hypothetical person with the following symptoms:FatigueDifficulty losing weightConstipationDry skinSensitivity to coldHoarsenessUsing the information found in the previous lesson and your own research, attempt a diagnosis based on oriental medicine.What sort of imbalances might these symptoms suggest? Consider yin/yang, the five phases, and the seven emotions when deciding on your diagnosis. Please cite sources that provided the information that led you to your diagnosis.Also provide some information on what you think the course of treatment might be to help this person. What would need to be brought back into balance? Is there something he or she could eat or something else he or she could do that might be able to help? Again, cite sources for any theories you provide. Paper should be at least 600 words in length. Help PLEASE!!!!!!!!!! Explain this and tell me the answer clearly! Thanks Darnell buys homes and flips them (spanish)To express completed actions in the past, you should use the ______tense.preteritimperfect Which factors directly contributed to an increase in the enslaved population in Georgia in the late 1700's and 1800's? which sentence from the letter BEST supports the idea that a playwriting class would be useful to students who take the class? Which of the following is a characteristic of a task-oriented leader? staying accountable for assigning work ensuring everyone receives the work they are most comfortable doing focusing on employee motivation collaborating with employees on goal setting What is the theory of continental drift? What did Alfred Wegener notice that helped him to create this theory? What is the theory of continental drift? What did Alfred Wegener notice that helped him to create this theory? Which coordinate plane represents the linear relationship 4x+5y=20 Which astronimical theory did the ancient indians develop 31% of the class made a C , 44% of the class made a "B" on their quiz. If there are 32 students in the class. How many students made a A? Identify the slope (m) for y=3x+2. I need help finding the value of x. What two movements cause pressure in the lungs to decrease when breathing in?