7. What icon is typically used to show an email attachment? *
a. A folder
b. A paperclip
C. A tape dispenser
d. A stapler
TA

Answers

Answer 1
B. A paper clip
I looked at my email and this is what popped up
7. What Icon Is Typically Used To Show An Email Attachment? *a. A Folderb. A PaperclipC. A Tape Dispenserd.

Related Questions

What are the different types of Network Connectivity Devices? Minimum If 5 Network Connectivity Devices

Answers

Answer:

Different types of Network Connectivity Devices are;

1) Network Interface Card (NIC)

2) Network router

3) The hub

4) Modem

5) Wireless Access Point

Explanation:

Network Connectivity Devices are network equipment that is used to receive and transmits data signals in analog or digital format to and other devices within the network through either wired or wireless connection

1) The network interface card enables the wired connection of a computer to an external network

2) A router is used for connecting two or more networks by routing packets to the different networks

3) A network hub transmits data it receives through one port to all the other ports in the hub and vice versa

4) The modem which is an abbreviation of modulator demodulator is used to transmit and receive data through telephone lines by converting digital signals into analog signals and vice versa

5) A wireless access point is made up of a device used to create a wireless network by using a transmitting and receiving data that allows wireless interconnectivity between users in the network.

which measuring instrument is used in measring current in a circuit?​

Answers

Explanation:

Ammeter is used to measure current in a circuit.

Answer:

ammeter

Explanation:

ammeter is measuring device used to measure the electric current of a circuit

1. The advancement of media and information bring society countless opportunities such
as...​

Answers

Answer:

The advancement of media and information bring society countless opportunities such as quick access to information that helps people during their daily lives and problems.

Thus, for example, nowadays the use of the internet and social networks allows individuals very fast access to different methods of solving everyday problems: a clear example is the tutorial videos where it is explained how to carry out a certain activity or arrangement of a break on a specific asset, providing users with a quick solution to their daily problems.

how does a programmer use digital waves to transfer sound?

Answers

An analogue sound wave is picked up by a microphone and sent to an Analogue to Digital (ADC) converter in the form of analogue electrical signals. The ADC converts the electrical signals into digital values which can be stored on a computer. Once in a digital format you can edit sounds with programs such as audacity.

An analogue sound wave is picked up by a microphone and sent to an analogue to digital converter which converts the electrical signals into digital values which can be stored on a computer.

What is analogue to digital (ADC)?

Analogue to Digital (ADC) is refer to as a system which converts an analog signal, such as a sound picked up by a microphone or light entering a digital camera, into a digital signal.

Once in a digital format that can edit sounds with programs such as audacity. To play digital audio convert the sound from digital values into analogue electrical signals using the DAC, these signals are then passed to a speaker that vibrating the speaker cone, moving the air to create sound waves and analogue noise.

For more information regarding analogue to digital, visit:

https://brainly.com/question/20827936

#SPJ2

9.
Write an application that computes and displays the day on which you become (or
became) 10,000 days old. Save the application as Ten ThousandDaysOld.java.
TI

Answers

Answer:

Explanation:

The following code is written in Java and it asks you for your age and then prints out the exact date from your birthday that you will turn 10,000 days old.

import java.util.Calendar;

import java.util.Date;

import java.util.Scanner;

public class Main {

   public static void main(String[] args) {

       Scanner in = new Scanner(System.in);

       System.out.println("What is your age?");

       int age = in.nextInt();

       int daysLeft = (10000 - (age*365));

       Date birthday = new Date();

       Calendar cal = Calendar.getInstance();

       cal.setTime(birthday);

       cal.add(Calendar.DATE, daysLeft);

       Date modifiedDate = cal.getTime();

       System.out.println(modifiedDate);

   }

}

Draw a flow chart to input some numbers and calculate and their total , stop when the total is greater
than 200.
Output the total , average and how many numbers where their total is less than 200.

Answers

Answer:

See attachment for flowchart

Explanation:

Using the attachment as a point of reference:

1. Start

2. sum and count were initialized to 0

3. The flowchart gets input from the user

4. The sum is calculated and the count is updated (by adding 1)

5. Check if sum is greater than 200.

If yes, go to 6, if no go back to 3.

6. Print sum

7. Calculate average

8. Print average and count of numbers

9. Stop

the physical parts of Computer are kwon as

Answers

Answer:

Computer hardware

Explanation:

Computer hardware includes the physical parts of a computer, such as the case,central processing unit (CPU), monitor, mouse, keyboard, computer data storage, graphics card, sound card, speakers and motherboard.

Write a static method reOrder56(int[] nums) that return an array that contains exactly the same numbers as the given array, but has been reorderd so that every 5 is immediately followed by a 6. You may choose to move every other number with the exception of 5; You are not to move 5. The array contains the same number of 5's and 6's, every 5 has a number after it that is not a 5, and a 6 appears in the array before any 6.

Answers

Answer:

Follows are the code to the given question:

static int[] reOrder56(int[] nums)//defining a static method reOrder56 that holds an array in parameter

{

   int x,y;//defining integer variables

   for(x=0;x<nums.length;x++)//using for loop that counts array  

   {

       if(nums[x]==5 && nums[x+1]!=6) //defining if block checks arry values

       {

           for(y=0;y<nums.length;y++)//use for loop to count array value again  

           {

               if(nums[y]==6 && nums[y-1]!=5)//defining if block checks arry values  

               {

                   nums[y] = nums[x+1];//swap the array element value

                   nums[x+1] = 6;//holing value in array

                   break;//break the condition

               }

           }

       }

   }

}

Explanation:

In this code, a static method "reOrder56" is declared that takes an integer array "nums" in its parameter, and inside the method, two integer variable "x, y" is defined, which is used in the nested loop.

In the first loop, it holds array values and uses the if block to check the array element value and define another loop to check the same condition, and this block, swap the value and holds the value in the array and breaks the condition.

Modern Computers compared to earlier computers are
a)faster than larger
b)less reliable
c) larger and stronger
d)faster and smaller ​

Answers

I think your answer would be d)faster and smaller.

HELP ASAP. Which of the following is the best example of an installation issue? A computer can’t find the file that it needs to perform an operating system function. A computer displays error messages, and then the Blue Screen of Death appears. A user made an error while trying to set up a software program. A software program is not compatible with the computer’s operating system.

Answers

Answer:

The question is sufficiently broad that multiple answers would be likely candidates.  I would say though that the most likely "correct" answer is the last one - a program is incompatible with the OS.  That's definitely an issue with installing the wrong package.

Explanation:

With the first answer - A computer can't find the file it needs to perform an OS operation - that's more likely due to file corruption, accidental deletion, or some other event like that.  It could potentially be an issue with installation of the OS, but I doubt that's what's meant.

With the second answer - A computer displays errors and gives you a BSOD - this could be any number of issues, but installation is not the best candidate.

With the third - A user made an error while trying to set up a software - that depends on what they mean by "set up".  If they mean installation, then that's an acceptable answer.  If on the other hand they mean configuration, then it's not.

With the last - A computer program is not compatible with the system's OS - That is very definitely an issue with installation as far as it being installed on the wrong OS goes.  One could however say that the installation was successful, and that the choice of which package to install was a human error.

Please help ASAP!!!!!

Answers

i’m thinking the answer is A or D

Dad Mystery

Guys. You seriously just have to look up stuff for an answer.

Can someone explain what Nilbin is.

Answers

nilbin, in simple words, is a pain reliever

Answer:

Hai T!

Explanation:

Discuss briefly four types of websites and the criteria you will use to evaluate the content of a website

Answers

Answer: I would look at who made it, what date it was published, what it is about and if it says .gov, .com or etc.

Explanation:

Who wants to play Among Us as My hero Academia characters?

Answers

Answer:

this is brainly uhhhhhhh

Explanation:

y

Aight, I missed it walpp

You have learned a lot about the types of careers that are involved with building a playground. Create two job descriptions of positions you would like on the construction team. List at least three skills that each position needs. Suggest at least one career field for each position. Respond to at least two of your classmates. Suggest another position on the construction team that would complement the two positions that your classmate suggested. List at least three skills and a career field for your position. Read the responses to your own post. Explain how all three positions would work together on the construction team to get the playground built. Remember that sharing your ideas with your classmates is an important part of this course. Don’t forget to read and reply to your classmates’ posts. You may offer advice, support, suggestions, or encouragement to your classmates.

Answers

Answer:

Learn some easy and hard careers

Explanation:

People are known to have different kinds of Careers. The job descriptions of positions I would like on the construction team are Playground designer  and Carpenters.

The Playground designer needs a design skill, must be able to draw and also be able to estimate how much the design will cost

The Carpenter must have knowledge/ skills of the carpentry work, how to use the tools for the work and  must know how to make sketches and layouts.

Another position on the construction team that would complement the two positions are Construction Laborer or ground crew.

What is a construction team?

There are different kinds of professionals and career paths in the construction industry. They include;

ArchitectsEngineersBuildersEstate surveyors, and others.

Conclusively, They are work hand in hand to ensure a  good and perfect construction work.

Learn more about construction team from

https://brainly.com/question/25795065

Do you think tracking your screen time will reduce your usage? Why or Why not?

Have a Good day​

Answers

Answer:

I dont think it will help much

Explanation:

Well, just tracking it will not necessarily make you stop. I would recommend putting app limits or downtime (if you have a mac). Also make a log. Write down how much time you need for different things, like 1 hour of free time, 5 hours of schoolwork. Also, make a schedule based off the things you put on your log.

I found doing this helped me reduce my time on screen and made me more productive.

In computing, what does Bcc mean. The topic in which this is found is HOW TO CREATE AN E MAIL ACCOUNT ​

Answers

Answer:

BCC stands for "blind carbon copy."

Answer:

that I have a a but this is the real account of Finn have a great day today with my mom said you didn't want me there was an accident in the middle of nowhere near as much as I can get some sleep now so I can get some sleep now so I can get some sleep now so I report

What is the main advantage of the WebM video file format?


A. WebM files are smaller and download faster than other video file formats, but do not sound as good.


B. WebM files are smaller than and effectively compete with other video file formats, but are not open-source.


C. WebM files are larger, download faster, and look as good as other audio file formats.


D. The WebM file format is open-source and effectively competes with proprietary file types.

Answers

Answer:

C. WebM files are larger, download faster, and look as good as other audio file formats.

TRUE OR FALSE: THE BUILDER'S CLUB IS A PAID SUBSCRIPTION.

Answers

Answer:

true

Explanation:

It's true it a paid subscription

place the steps in order for customizing the outlook ribbon

Answers

Answer: click the file tab, then options, click the customize ribbon, click the add new tab button, rename the tab and command group, add a command to the group

Explanation:in that order, just did it.

What is the difference between ionizing and non-ionizing radiation?

Answers

Non-ionizing radiation is longer wavelength/lower frequency lower energy. While ionizing radiation is short wavelength/high frequency higher energy. Ionizing Radiation has sufficient energy to produce ions in matter at the molecular level.

Answer:

Radiation is classified as being either non-ionizing or ionizing. Non-ionizing radiation is longer wavelength/lower frequency lower energy. While ionizing radiation is short wavelength/high frequency higher energy. Ionizing Radiation has sufficient energy to produce ions in matter at the molecular level.

Explanation:

Raul is a 13-year-old teenager interested in taking up photography as a new hobby. His dad wants to buy him a camera for his birthday that will be easy to use and simple enough for a beginner, meaning that Raul won’t have to mess with any settings if he doesn’t want to. What type of camera might be a good starter camera for his teen aged son?

a. point and shoot
b. hybrid
c. DSLR
d. format field camera

Answers

Answer:

c. DSLR can be good camera for the teenager son or any beginner photographer

Answer:

Point and shoot

Explanation:

With a point and shoot camera, all you literally do is point and shoot. It is a very simple camera with no buttons and the lens don't move. Is it the perfect camera for a beginner.

What are the features of MS Excel​

Answers

Then here are the excel features that you need to get a hold of:

Learn to use shortcuts. Once you are able to live without the mouse, you get the speed that counts. There are two types of shortcuts - one where you press a set of keys sequentially - like Alt>H>O>I to adjust column width. And the second where you simultaneously press a combination of keys - like Ctrl+Shift+L for applying filters or Ctrl+1 for the format numbers dialog box. It takes repetition to get the speed but once you are there, you get an edge.
Learn excel functions and apply them to build formulas. Start with easy ones like SUM, COUNT, SUMIF, COUNTIF, IF etc, then move to VLOOKUP, SUMIFS, COUNTIFS, HLOOKUP, INDEX, MATCH, then move to building nested complex formulas like IF inside an IF, VLOOKUP with HLOOKUP, INDEX+MATCH and so on.
Learn about data analysis and data aggregation. This includes tools like Pivot table, solver, goal seek, data tables, descriptive statistics, regression.
Learn about conditional formatting. Style and colour your spreadsheets.

In Secure Electronic Transaction, the purpose of Dual Signature is to link two messages that are intended for two different recipients. Discuss these two messages that are intended for two different recipients along with the need of linking. Also discuss if this purpose is fulfilled if we use KUc instead of KRc in the given model. Justify your answer with appropriate discussion.

Answers

Answer:

The analysis of the question is summarized in the following explanation.

Explanation:

The dual signature would be intended as a connector for both signals, we can clearly distinguish between the transmit antennas by delivering each statement with such a separate signing, thus making the linkage of certain messages possible via the World wide web.No violation of the records allows data easily accessible to a third party so we can improve the safety of 2 statements linking, because nobody can identify how the data have been authenticated as well as how the text could be decrypted to gather intelligence.

Arrange the Jumbled letters 1.eilf ngrihsa ________________ 2.cersityu ourreecs ________________ 3. ngrihsa ________________ 4. mmocnoitacin ________________ 5. exiflble ecscsa

Answers

Answer:

1. file sharing

2. security recourse

3.sharing

4.communication

5.flexible access

Explanation:

-

PLEASEEEEE HELLPPP IT'S URGENT!!!

We’re working on micro:bits and I need to find the keywords to these words:

•LED Matrix
•Battery
•Processor
•Accelerometer
•Micro USB Port
•Compass
•Block Editor
•Iteration
•Selection
•Variable
•Algorithm
•Debug
•Number
•String
•Define iteration
•Indefinite iteration
•If Statement
•Text Based programming
•Block Based programming
•JavaScript
•Function
•Syntax

YOU DON’T HAVE TO DO ALL THE WORDS JUST SOME, I WILL GIVE BRAINLIEST!!!

Answers

Answer:

Battery: DC power source to feed electricity in the circuit

Processor: component that reads instructions from memory, executes them and writes result data to memory and output devices

Accelerometer: device that measures motion acceleration along 3 dimenstions

Micro USB Port: standard interface for serial communication and power

Compass: sensor that finds orientation based on earth's magnetic field

•Block Editor: pass

Iteration: one cycle of a program loop

•Selection: pass

Variable: program construct to hold a value that code can read and write to.

Algorithm: programming code with a particular function to transform a given input to an output

Debug: the process of finding and fixing mistakes in your program

4. In Drag and Drop method of Excel , to copy the data , you need to press __________ key while dragging the cells.

Answers

Answer:

The control [Ctrl] key

Explanation:

While holding down left click and pressing control key it will copy to where you drag and drop it.


Why is John Von Neumann to a remarkable name?
si​

Answers

Answer:

John von Neumann is remarkable for his vast knowledge of mathematics, and the sciences as well as his ability to correlate the pure and applied sciences.

Explanation:

John von Neumann who was born on December 28 1903, and died on February 8,1957 was known for his extensive knowledge of mathematics, physics, computer, economics, and statistics. In computing, he was known to conceive the idea of the self-replicating machines that thrive in the automata cellular environment, the von Neumann architecture, stochastic computing and linear programming.

He developed the game theory in Economics, and laid the foundation for several mathematical theories. He contributed greatly to quantum mechanics and quantum physics. Little wonder, he was dubbed "the last representative of the great mathematicians."

What is the output by:
print(len(stuff))

Answers

Answer:

The output will print out whatever the length is for stuff.

Explanation:

You use len() to get the length of the given string, array, list, tuple, dictionary, etc. Thus, passing in stuff using len will let the program to get the length of it.

What is the importance of social media to advance social causes​

Answers

Answer:

Social media can enhance the awareness of a topic. Social media brings helpers towards a social cause.

Explanation:

Other Questions
if sarah shot 40 free throws and only made 25% of them. how many did she make Monster calls exam question PLZ HELP1). Read again the first part of the source from lines 4 8.List four things you learn from this part of the text about what can be seen outside of the window. PLZ HELPPPP MEH plzzzzzLook at question one what is 4 times the power of 18? Write a summary (5-7 sentences) of Scrooge's experience with the Cratchit family, and explainChow that affects his perspective.Questions to consider while creating your summary:What does Scrooge have that the Cratchit's do not? Why?What do the Cratchits have that Scrooge does not? Why?What evidence from the text shows how the Cratchits feel about their situation? Can someone help me HELP WITHIN A HOUR!Show work, please! Which of the following best describes the semiconservative model and the end resultof DNA replication?When replication is complete you have two identical DNA molecules with two conservedstrands.When replication is complete you have one DNA molecule that consists of three conservedstrands and one new strand.When replication is complete you have one DNA molecule that consists of two conservedstrands.When replication is complete you have two identical DNA molecules, each with one newstrand and one old strand. x at power 2 + 6x = 16Pls explication Which statement correctly describes the graphed function () = - +5, with a domain restricted to naturalnumbers, in terms of an arithmetic sequence?The point (1.4) means the 1st term of the sequence is 4. The point (2,3) means the 2nd termof the sequence is 3, and so on.The point (1,4) means the 4th term of the sequence is 4. The point (2,3) means the 3rd termof the sequence is 3, and so on.The point (1,4) means the 4th term of the sequence is 1. The point (2, 3) means the 3rd termof the sequence is 2, and so on.The point (1,4) means the 1st term of the sequence is 1. The point (2,3) means the 2nd termof the sequence is 2, and so on Determine the center of the circle whose equation is (x 5)2 + (y + 7) = 14 If a_1=2a 1 =2 and a_n=(a_{n-1})^2-2a n =(a n1 ) 2 2 then find the value of a_4a 4 . You deposit $500 in a savings account that earns 2.5% interest compounded yearly. Find the balance in the account after 1 year. Be sure your answer has a dollar sign. For example: $150.80 * Anyone know this??!! A spinner was spun 96 times. The results are shown in the table below.Yellow WhiteSpinner ResultsYellow 24White18Red 12Blue 24OrangeRedGreen BlueGreen6Orange12Which colors' experimental probabilities match their theoretical probabilities?.White, Red and Blue.Yellow. Red, and OrangeC.White, Red, and GreenD.Yellow. Blue and Green HELP ME PLEASE!!!!!!!!!!! Which sentence is punctuated correctly?The grinding, groaning, and screeching sounds coming from the cars brakes let us know it was time to visit the mechanic.The grinding, groaning, and, screeching sounds coming from the cars brakes let us know it was time to visit the mechanic.The grinding, groaning, and screeching, sounds coming from the cars brakes let us know it was time to visit the mechanic.The grinding, groaning and, screeching sounds coming from the cars brakes let us know it was time to visit the mechanic. Geometry> Q.1 Pythagorean theorem F55Relative to Olivia's home, Lakewood is 72 kilometers due north and Wildgrove is 21kilometers due east. One day, Olivia decides to run some errands that will require her toleave home and drive to Lakewood, then go directly to Wildgrove, and finally return home.How long of a drive will she be making? Aysia went to the grocery store to buy cold cuts for making sandwiches for lunch. She wants to buy 0.75 lb. of ham that costs $7.92 per pound. How much will she spend on ham? Show your work using a model or equation. PLEASE ANSER QUICK Prompt( can someone help?)In a well-structured paragraph, summarize the important achievements and contributions of ancient Indian civilization. Besure to include cultural achievements and contributions in math, science, and technology. I could use some assistance with this!