When you send large attachments, you are not
a. considering the needs of others
b. doing anything wrong
c. helping to maintain respectful communication
d. following social conventions
Please select the best answer from the choices provided
A
ОО
B
ОС

Answers

Answer 1

Answer:

c,becauses she is helping

Explanation:

thank me later

Answer 2

Answer:

A

Explanation:

i got a 100


Related Questions

Which pair of devices have the same input motion and different outputs?

scissors and adjustable wrench

nutcracker and can opener

musical instrument and adjustable wrench

salad tongs and nutcracker

Answers

Answer:

nutcracker and can opener

Explanation:

what is two examples of software and hardware?​

Answers

Answer:

Hardware Software

If hardware is damaged, it is replaced with new one. If software is damaged, its backup copy can be reinstalled.

Ex: Keyboard, Mouse, Monitor, Printer, CPU, Hard disk, RAM, ROM etc. Ex: Ms Word, Excel, Power Point, Photoshop, MySQL etc.

Explanation:

Answer:

hardware= key board ,mouse

software =excel,power point.

Your ____ should always be bigger than your gutters

Answers

Always always always

Last two question, Let's go

Answers

For question 9, it's science

for question 10 it's the "world works"

16. Your character qualities never change. (3 points)
A. True
B. False

Answers

Answer:

False

Explanation:

Hope this helps!

false, people’s qualities does change over time !!

Your program for a game allows users to choose a car to drive. You have 50 models.


You have designed each model to have different qualities, such as maximum speed, ability to turn tight curves, fuel usage rate, etc.


Which collection is best to store the characteristics of each model?



list


tuple


deque


dataset


Will Give Brainliest to Best or correct answer

Answers

Answer:

dataset

Explanation:

For the information being described the best collection to store this data would be a dataset. This is mainly due to the fact that each individual car has a wide range of separate variables and values that are attached to each car model. Such variables/values include maximum speed, ability to turn tight curves, fuel usage rate, etc. The dataset allows each individual model to be registered alongside all of their individual characteristics/qualities. Therefore, connecting each model with their own data.

Answer:

Deque is the right option

Explanation:

deques are more useful for large amounts of data and will locate specific things faster (E2020)

What is assembler? What is Compiler?What is interpreter?

Answers

Answer:

A compiler is a software that converts programs written in a high level language into machine language.

An interpreter is a software that translates a high level language program into machine language while an,

assembler is a software that converts programs written in assembly language into machine language.

Explanation:

1A. Assembler is a program that converts assembly level language (low level language) into machine level language.

2A. Compiler compiles entire C source code into machine code.

3A. interpreters converts source code into intermediate code and then this intermediate code is executed line by line.

PLEASE THANK, RATE AND FOLLOW ME,

AND PLEASE MARK ME AS "BRAINLIEST" ANSWER

HOPE IT HELPS YOU

The purpose of project management is to fix problems.
True
False

Answers

Answer:

true

Explanation:

I’ll give brainliest
you don’t need to do the spreadsheet i just need something to write down i dont care if its 400 words or not.

Answers

Answer: ] Data moving to the cloud puts it at risk for malware. Increasing user mobility and results in data taken outside of an organization’s security perimeter, exposing their business to risk. Cloud services pose security challenges putting pressure on security teams, thus fueling the growth of . The basic pillars or features of  are Visibility, Access Control, Threat Protection, Data Security, and Compliance. Two camps are emerging: pure plays and large security vendors adding to a broad cloud security solution. Several startups are emerging and there has been intense M&A activity in recent years. Cloud apps are a new opportunity for hackers to gain access to an organization's data and its network.  has developed quickly from just being used for shadow IT. It is an important tool to monitor cloud usage and also implement security.  is a small but fast growing market in a state of flux.

Explanation:

Write a method that takes two circles, and returns the sum of the areas of the circles.

This method must be named areaSum() and it must have two Circle parameters. This method must return a double.

For example suppose two Circle objects were initialized as shown:

Circle circ1 = new Circle(6.0);
Circle circ2 = new Circle(8.0);
The method call areaSum(circ1, circ2) should then return the value 314.1592653589793.

You can call your method in the program's main method so you can test whether it works, but you must remove or comment out the main method before checking your code for a score.

Answers

Answer:

public static double areaSum(Circle c1, Circle c2){

 double c1Radius = c1.getRadius();

 double c2Radius = c2.getRadius();

 return Math.PI * (Math.pow(c1Radius, 2) + Math.pow(c2Radius, 2));

public static void main(String[] args){

 Circle c1 = new Circle(6.0);

 Circle c2 = new Circle(8.0);

  areaSum(c1,c2);

 }

Explanation:

The function calculates the sum of the area of two circles with their radius given. The program written in python 3 goes thus :

import math

#import the math module

def areaSum(c1, c2):

#initialize the areaSum function which takes in two parameters

c1 = math.pi * (c1**2)

# calculate the area of the first circle

c2 = math.pi * (c2**2)

#Calculate the area of the second circle

return c1+c2

#return the sum of the areas

print(areaSum(6.0, 8.0))

A sample run of the program is attached

Learn more : https://brainly.com/question/19973164

Answers are 1-11, 3 is wrong

Answers

Answer:is the python

Explanation:

Use repl .it

The answer is 4

1:
3+2=5
2:
5+2=7
3:
7+2=9
4:
9+2=11
It would stop here as 11 is bigger than 10

Which output device would a teacher use to show a movie to the class? Check all of the boxes that apply.

Answers

Answer:

speaker and projector i think

Explanation:

Answer:

C & D

Explanation:

How would Patrick save his formatted message in Outlook?
O The Draft Folder saves a real-time version automatically.
O Click Save As Draft and it is placed in the Saved Folder.
O Click Save and it remains in the Draft folder for later edits.
O Click Archive and it will save the message in your Documents folder.

Answers

Answer:

O Click Save and it remains in the Draft folder for later edits.

Explanation:

I hope it's help

Answer:

The Answer is C!

Hope it helps

Explanation:

What is the base of a number system?

A.
the minimum number of digits needed to represent a number in that system
B.
the place value of the leftmost digit in numbers written in that system
C.
the place value of the rightmost digit in numbers written in that system
D.
the number of symbols used to represent numbers in that system

Answers

Answer:

A

the minimum number of digits needed to represent a number in that system

Approximately how many tweets are posted on Twitter each day? 500 500 thousand 500 million 500 billion

Answers

Answer:

around 500 million

Explanation:

What are the benefits of writing functions that use parameters and return List 2 please and explain what is return

Answers

Answer and explanation:

There are many benefits of writing functions that use parameters and return. Some of them are:

1. Flexibility: With functions having parameters, several values of the parameters can be used at invocation time thereby making the application flexible. For example, given the following function in Java.

public void showName(String name){

   System.out.println("Your name is " + name);

}

To call this method (function), the programmer could use various values for the name parameter used in the function like so:

showName("John");

showName("Doe");

If the function didn't have a parameter, it is possible it will only print a hardcoded name every time the function is called.

2. Scope Control: When a function is allowed to return a value, it helps to work around scope issues since variables declared within a function are limited to that function and do not exist outside the function. This means that the values of these variables cannot be used anywhere else outside the function in which they are being declared. However, if the function returns a value, the value can be used anywhere else in the program.

For example:

public String getDouble(int x){

   int y = x * 2

   return y;

}

The function above returns twice the value of the argument supplied to it. Since the integer variable y is declared within the function, it's value cannot be used outside the function. However, since the value is being returned by the function, it could be used anywhere the function is being called. Thanks to the return keyword.

what is this answer?

Answers

Answer:

ITS ALL ABOUT C

Explanation:

READ IT CAREFULLY

The symbol is used to indicate that a line of text is a comment.

Answers

Answer:

Explanation:

asterisk

Answer:

# is the symbol you would use

Explanation:

I took the Unit Test on Edgen.

anyone pls answer this!!!!!!thanks ^-^​

Answers

Answer:

True

False

False

False

Explanation:

HTML isnt a scripting a scripting language it's a markup language

There are 6 levels of HTML

An empty tag only has a starting tag

Babbage’s punch cards, which used numbers from 0 to 9. Digital or analog.

Answers

Answer:

Analog

Explanation:

yuh

Answer:

Your answer would be

1. Digital

2. Analog

3. Digital

4. Analog

5. Analog

Explanation:

Edge 2022

What are the most important considerations when comparing computer systems? Check all of the boxes that apply.

the type of mouse
the type of keyboard
computer speed
amount of storage

Answers

C and D



Explanation:




Rachel has set up a computer network. In this network, due to a device, the computers partake in the message transfer process. Which device is this? A. NIC B. hub C. modem D. switch E. bridge

Answers

Answer:

B. hub

Explanation:

Hub is a device that connects two or more computers together to make a Local Area Connection (LAN). It receives message and sends it to every computer on the network through a hub cables plugged into it from each computer. It enables each individual computer to partake in the message transfer process and each users can listen to the information. It is typically used at the centre of a star network and it is mostly regarded as an unsecured network.

Answer:

b

Explanation:

Choose the term that best matches the definition.
v rules used by a computer network.

A. Network protocol
B. Hierarchy protocol
C. Procedure

Answers

Answer: it’s network protocol

Explanation:

Answer:

A. Network protocol

Explanation:

On Edge, it states that network protocol are, "rules used by computers in a network." Therefore, it's confirmed.

I hope this helped!

Good luck <3

On December 9, 1698, computer inventor Douglas Engelbart demonstrated many new computing technologies, including the computer mouse. His demonstration was so important that it became known as “The Mother of All Demos”. It would be at least two decades before some of the technologies he demonstrated saw widespread use, but all of them are used by people today. Here is a list fo some of Engelbart’s technologies. Which ones do you use today? The computer mouse, video conferencing hypertext links, word processing, or collaborative real-time editing

Answers

Answer:

all of them

Explanation:

Answer: All trust guy above

Explanation:

.

who here can move stuff with there minds

Answers

Answer:

I can, at least I wish I could, it be like having the force which would be amazing.

Explanation:

ICT 10
Research on other forms of Operating systems used in smartphones and give a description for each.​

Answers

uSE THE ANSWER BELOWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW

The goal of a system is to


be natural or human-made

use energy

perform a task

be social or physical

Answers

Answer:

The answer is option C, which is: perform a task

key is used to enter commands or to move the cursor to the begin
of the next line
a) Delete key
b) Shift key
c) Ctrl key
d) None of these​

Answers

I believe the answer would be D

The contrast ratio of green-45 text on a yellow-15 background is
to 1.
03
O 30
O 45
06

Answers

Answer:

30

Explanation:

in ratio

not connected

1) What are the six (6) core elements of developing a whole person? Explain
concisely its relationships.​

Answers

Answer:

Six component of whole person development are -

emotional, physical, spiritual, social, psychological, and professional

Explanation:

Six component of whole person development are -

emotional, physical, spiritual, social, psychological, and professional

1. Emotional – This shapes our reaction to any situation, adaption to change, establish connection with others and develop emotional intelligence

2. Physical – It is related to physical health and comprises of eating right food, exercising, taking sufficient sleep and managing stress.  

3. Spiritual – This helps in connecting ourself with the world and the nature around us. It makes a person compassionate, positive, optimistic and generate inner peace.  

4. Social – This helps to develop social relationship and maintain them  

5. Psychological – This helps in understanding inner self of an individual and promotes self esteem and acceptance

6. Professional – Professional stability and peace is essential to make a good work life balance.  

Other Questions
PLS HELP ASAP y = -3x + 1y = x -7 ABC is translated left 3 units to form the image ABC.What are the coordinates of the vertices of ABC ?Enter your answer by filling in the boxes. Where Is Barranquilla located? Given: RST, RS = 15, ST = 20, and TR = 29Which inequality correctly compares the measures of the angles of RST? Consider the following method. public static int getValue(int[] data, int j, int k) { return data[j] data[k]; } Which of the following code segments, when appearing in another method in the same class as getValue, will print the value 70?a. int arr = {40, 30, 20, 10, 0); System.out.println(getValue(arr, 1, 2)); b. int[] arr = {40, 30, 20, 10, 0); System.out.println(getValue(arr, 1, 2)); c. int[] arr = {50, 40, 30, 20, 10}; System.out.println(getValue(arr, 1, 2)); d. int arr = {40, 30, 20, 10, 0}; System.out.println(getValue(arr, 2, 1)); e. int arr = {50, 40, 30, 20, 10}; System.out.println(getValue(arr, 2, 1)); help pls thank you :)))$$:$: Each day that a library book is kept past its due date, a $0.30 fee is charged at midnight. Which ordered pair is aviable solution if x represents the number of days that a library book is late and y represents the total fee?O (-3,-0.90)O(-2.5, -0.75)O(4.5, 1.35)O (8, 2.40)I need the answer mate A 2028 kg Oldsmobile traveling south on Abbott Road at 14.5 m/s is unable to stop on the ice covered intersection for a red light at Saginaw Street. The car collides with a 4146 kg truck hauling animal feed east on Saginaw at 9.7 m/s. The two vehicles remain locked together after the impact. Calculate the velocity of the wreckage immediately after the impact. Give the speed for your first answer and the compass heading for your second answer. (remember, the CAPA abbreviation for degrees is deg) -1.75 What is the answer 2/3 + 5/12 = Explain the Women & Demographic Change. Thursday, 11 OctoberPresently they descried people, naked, and the Admiral landed in the boat, which was armed, along with MartinAlonzo Pinzon and Vincent Yanez his brother, captain of the Nina. ... The Admiral called upon the two Captains, andthe rest of the crew who landed, as also to Rodrigo de Escovedo notary of the fleet, and Rodrigo Sanchez, of Segovia,to bear witness that he before all others took possession (as in fact he did) of that island for the King and Queen hissovereigns, making the requisite declarations, which are more at large set down here in writing. Numbers of thepeople of the island straightway collected together. Here follow the precise words of the Admiral: "As I saw that theywere very friendly to us, and perceived that they could be much more easily converted to our holy faith by gentlemeans than by force, I presented them with some red caps, and strings of beads to wear upon the neck, and manyother trifles of small value, wherewith they were much delighted, andbecame wonderfully attached to us. Afterwardsthey came swimming to the boats, bringing parrots, balls of cotton thread, javelins, and many other things which theyexchanged for articles we gave them such as glass beads, and hawk's bells, which trade was carried on with theutmost good will. But they seemed on the whole to me, to be a very poor people.... Weapons they have none, norare acquainted with them, for I showed them swords which they grasped by the blades, and cut themselves throughignorance. They have no iron, their javelins being without it, and nothing more than sticks, though some have fish-bones or other things at the ends. They are all of a good size and stature, and handsomely formed. I saw some withscars of wounds upon their bodies, and demanded by signs the of them; they answered me in the same way, thatthere came people from the other islands in the neighborhood who endeavored to make prisoners of them, and theydefended themselves. I thought then, and still believe that these were from the continent. It appears to me, that thepeople are ingenious, and would be good servants and I am of opinion that they would very readily becomeChristians, as they appear to have no religion. They very quickly learn such words as are spoken to them. If it pleaseour Lord, I intend at my return to carry home six of them to your Highnesses, that they may learn our language."These are the words of the Admiral.Part BWhat does Columbus describe the people of Hispaniola? List at least three pieces of evidence match the following(also i know this probably doesn't go in the arts section, but I don't know where else to put it) Elodia is a plant that lives in water. Like all plants, elodea can make its own food via photosynthesis. Oxygen is a gas produced during photosynthesis. Photosynthesis can only happen in the presence of light. To measure the rate of photosynthesis, a piece of elodia can be placed in an inverted test tube filled with sodium bicarbonate solution. Oxygen gas produced by photosynthesis will collect at the top of the tube. The experimental set up created by a student is shown above. What is the dependent variable in this experiment? why do food scientists analyse the dna from meat products Select the correct answer.Which word best describes the mood of this passage?O A. anticipationB.annoyanceOC. sympathyD.melancholy Mya claims (m3 + m4) = m1Which equations explain why Mya's claim must be true?A:(m1 + m2) = 90 and (m3 + m4) = 90B:(m1 + m2) = 180 and (m3 + m4) = 180C:(m1 + m2) = 90 and (m3 + m4 + m2) = 90D:(m1 + m2) = 180 and (m3 + m4 + m2) = 180 in a season there are 40 matches.How many matches should Sachin's team expect to win in a season? the diagonal of a rectangular tv is 52 inches long. the screen is 45 inches wide. how high is the screen? round decimal to the nearest tenth. A. 97B. 68.8C. 26.1D. 7 Can you help me? Please Joaquin tells his science class that galaxies consist of gas, dust, and many planets. What is the most important component of galaxios Joaquin is missing in his description?astero decometsconstellationsStars