Answer: None of these
Explanation: It would not cause any of these unless the pillow was blocking a window or something
HELPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP!!!
Express the diagram in the form of a logic statement. [2]
P = ________________________
3. (a) Complete the truth table below for the logic circuit which is made up of NAND gates only.
Answer:
different or difference between Dot-matrix and Daisy-wheel printer
Un usuario desea conocer de manera descriptiva ,como se lleva a cabo el proceso de solicitud de transferencia monetaria en una población local, pues desconoce cómo se proporcionan esas respuestas y le interesa saber cómo es que se lleva a cabo dicha transmisión desde donde él se encuentra ubicado, que es el punto A, hasta donde lo recibe la otra persona que es el punto F. Proporciona la solución a la problemática.
Answer:
Research My Friend Use a Translator Promise!!
Answer:
what
Explanation:
When there are more columns or rows than you can view on one screen at a time, you can use the
command to lock columns and rows on the screen.
Freeze Panes
Freeze Rows
Freeze Windows
Freeze Columns
Which term describes a visual object such as a picture, a table, or a text box?
A.) caption
B.) WordArt
C.) illustration
D.) comment
ANWSER: A
Answer:
A) Caption
Explanation:
This option makes the most sense. It's not Word Art or Comment. An illustration is like a drawing, so that's incorrect as well, leaving only caption as the correct answer.
Hope it helps!
Answer:
a
Explanation:
Which of the following are true of e-mail communications when compared to phone or face-to-face communications?
Communications via e-mail are _____.
absent of visual cues
more precise and accurate
limited in efficiency
less likely to be saved
easily shared
more difficult to determine tone or inflection
pick more than one
Communications via e-mail are Absent of visual cues, Easily shared and more difficult to determine tone or inflection.
What is communication?The transmission of information is commonly defined as communication.
The term can also refer to the message itself, or to the field of study known as communication studies, which investigates these transmissions.
When compared to phone or face-to-face communications, the following statements are true of e-mail communications:
There are no visual cues.Simple to shareTone and inflection are more difficult to determine.It is important to note that when compared to phone or face-to-face communications, the other statements listed are not always true of e-mail communications.
E-mail communications, for example, can be just as precise and accurate as other forms of communication, and in some cases, may be more efficient.
Thus, e-mails can also be easily saved and saved for future reference.
For more details regarding communication, visit:
https://brainly.com/question/22558440
#SPJ2
Which type of material is most common in sports equipment?
OA.
metals
OB. composites
O c. stainless steel
OD.
ceramics
Answer:
stainless steel
Explanation:
Answer:
composites
Explanation:
this can refer to, baseball clothing, soccer clothing, football clothing, etc.
Complete each statement by choosing the correct answer from the drop-down menu advancements in technology occur because _______ technology makes peoples lives more productive because ______ advancements in technology impact ____ ______ is not a reason why new technologies are introduced to a profession
Answer:
People need to solve new problems; they can do things more efficiently; buisnesses and individuals; slowing down a process.
Explanation:
Technology can be defined as a branch of knowledge which typically involves the process of applying, creating and managing practical or scientific knowledge to solve problems and improve human life. Technologies are applied to many fields in the world such as medicine, information technology, cybersecurity, engineering, environmental etc.
Advancements in technology occur because people need to solve new problems. Technology makes peoples lives more productive because they can do things more efficiently. Advancements in technology impact buisnesses and individuals.
Slowing down a process is not a reason why new technologies are introduced to a profession but rather technologies are introduced so as to catalyze the rate of production of goods and services, as well as increasing the level of output.
Generally, technology has impacted the world significantly and positively as it has helped to automate processes, increased efficiency and level of output with little or no human effort.
One benefit of taking notes in class is that the student
a.watches the teacher.
b.is actively engaged.
c.impresses the teacher.
d.writes instead of talking.
Answer:
A
Explanation:
you got to listen if you want to be smart
Targeted advertising, in which advertisements are shown to individuals based on past purchases, web searches or other demographic data, has advantages and disadvantages. Which of the following are NOT benefits of targeted advertising?
Choose two answers.
A. Individual preferences are able to remain completely private.
B. People are more likely to see advertisements for products they are interested in, and are less likely to see advertisements products which are irrelevant to them.
C. On social media websites people are not exposed to political viewpoints that they do not agree with.
D. Sites can provide content for free to users and use targeted advertising to provide a source of revenue.
Answer:
i personally think its a and c i could be wrong tho.
Explanation:
The statements that do not represent the benefits of targeted advertising are as follows:
Individual preferences are able to remain completely private.On social media websites, people are not exposed to political viewpoints that they do not agree with.Thus, the most valid options for this question are A and C.
What do you mean by Targeted advertisement?A targeted advertisement may be characterized as a type of process that is imperatively placed in order to reach a clearly defined audience on the basis of past customer behavior and other data. Such types of advertisements provoke many benefits to marketers and consumers.
According to the context of this question, targeted advertisements are expressed to individuals on the basis of past purchases, web searches, or other demographic data. It basically has advantages and disadvantages over a specific period of time. Under this circumstance, sites can provide content for free to users and use targeted advertising to provide a source of revenue.
Therefore, the most valid options for this question are A and C.
To learn more about Targeted advertisements, refer to the link:
https://brainly.com/question/29312895
#SPJ3
Which statement describes how to insert the IF, COUNTIF, or SUM function into a cell?
A.) Use the Insert tab and select the appropriate function from the Functions group.
B.) Type an = sign in the cell, followed by the name of the function and the relevant arguments.
C.) Right-click the cell to access the context menu to insert the function.
D.) Use the View tab and choose the correct function from the displayed list.
ANWSER: B
Answer:
B. Type an = sign in the cell, followed by the name of the function and the relevant arguments.
Ravi is programming in C++. This type of language is translated entirely into machine language before use. What type of language is Ravi programming in?This task contains the radio buttons and checkboxes for options. The shortcut keys to perform this task are A to H and alt+1 to alt+9.
A
Interpreted
B
Machine
C
Compiled
D
Assembly
Create a program called "Geometry" Prompt the user for a small decimal number. Prompt the user for a large decimal number. Using those numbers as lower and upper bounds, randomly generate a decimal value between the two. Using the randomly generated number, calculate the VOLUME of a sphere if it were to have that size radius. Output the radius as well as the volume back to the user.
Answer:
In Python:
import random
small = float(input("Small: "))
large = float(input("Large: "))
radius = round(random.uniform(small, large),2)
volume = round(4/3 * 22/7 * radius* radius* radius,2)
print("Radius: "+str(radius))
print("Volume: "+str(volume))
Explanation:
This imports the random module
import random
The next two lunes prompt the user for small and large decimal number
small = float(input("Small: "))
large = float(input("Large: "))
This generates the radius
radius = round(random.uniform(small, large),2)
This calculates the volume
volume = round(4/3 * 22/7 * radius* radius* radius,2)
This prints the generated radius
print("Radius: "+str(radius))
This prints the calculated volume
print("Volume: "+str(volume))
Note that, the radius and the volume were approximated to 2 decimal places. Though, it wasn't stated as part of the program requirement; but it is a good practice.
The Python program to compute a sphere's volume, given a random radius, is found in the attached image
The program first asks for the small decimal number, then the large decimal number. It then converts them to floating point values and stores them in the variables min_value and max_value.
To generate a random radius, we use the function uniform to generate a value in the range min_value < random_radius < max_value
Then, the volume of the sphere is computed using the formula
[tex]\frac{4\times \pi \times random\_radius^3}{3}[/tex]
Finally, the random radius and the volume are both displayed to two decimal places.
Learn more about computing volumes in Python: https://brainly.com/question/19150697
What does D'Artagnan discover about Milady? d. That she has the mark of a criminal, the fleur- c. That she is secretly working for the queen. de-lis. b. That she is the wife of the Count of Rochefort. d. That she stole the diamonds from the queen.bl
Answer:
prolly b
srry need tha points
Explanation:
You looked at the methods used to determine database requirements. Now, research and find a database requirements template. Choose any five questions and mention the significance of these questions to design a database.
Answer:
search bar insert or design and chose
Explanation:
which element always appears to start on a new line in the browser window
a. class type
b. ID
c. method
d. block level
steps in how to locate information on a website
Answer:
here you go!
Explanation:
1. Choose a website that you may have already heard of before (Wikipedia, Britannica)
2. You can go on that website and search for the specific thing you want
3. If nothing pops up you can just find a different website, but be careful for bots/hackers
4. Go on said website and look up for the specific thing u need to look up.
5. Once you find it (if you do) Read it thoroughly (it'll help later on)
6. Then go and check multiple websites
7. If the websites say similar things as the original website then it's probably a goof bout' of infomation
8. If the websites all have different opinions It's safe to say don't use that information.
Hope this helps!!!!
Read the scenario and decide which type of banking service is the top priority for each
person.
1. Ja'Mychal is always on the go, and he uses his cell phone for just about everything. He's
heard about banks that have apps in which he can take a picture of a check he wants to
deposit, upload the picture to the app, and the money will be deposited to his account.
He feels this app will save him time instead of having to go to a bank branch to deposit
the money in person. He also wants to be able to see his bank balance through the app.
Which bankinſ service is Ja’Mychal most interested in?
2. Kyra has just began making money. Actually, she hasn't really started making money at
all. Instead, she receives an allowance each month from her parents, but she wants to
Pay Herself First. She knows in a year or so she will need some money to pay for car
insurance.
Which banking service is Kyra most interested in?
3. Sara is about to graduate high school. She has saved money the last few years while
working a part-time job. Her parents bought her a car when she turned 16, but her
younger brother is about to turn 16 and he
Answer:
1. internet banking service
2. savings service
Explanation:
The type of banking service which is suitable for each of the persons are stated below:
Internet banking serviceSavings serviceSavings ServiceWhat is a Bank?This is a place where people keep money and also perform financial transactions.
With this in mind, we can see that Michael is always on the go so he needs an internet banking service so he can make seamless transactions and because Kyra is still getting allowances, then she needs to get a savings service.
Read more about banking services here:
https://brainly.com/question/16657246
Explain the danger leaks pose when operating a tractor.
? Question
How are the Internet and the World Wide Web different from each other?
Answer:There just different
Explanation:
The world wide web, or web for short, are the pages you see when you're at a device and you're online. But the internet is the network of connected computers that the web works on, as well as what emails and files travel across. ... The world wide web contains the things you see on the roads like houses and shops.
Answer:html makes them different
Explanation: