Most people have unexpected expenses at some time. Yes. No.

Answers

Answer 1

Answer:

Yes

Explanation:


Related Questions

How to write a C++ program that allows a user to enter their rating of the three movies in the Dark Knight Trilogy and then display each rating entered, the highest rating, the lowest rating, and the average of the ratings??

Answers

The program is an illustration of arrays.

Arrays are used to hold multiple values in one variable.

The program in C++ where comments are used to explain each line is as follows:

#include <iostream>

using namespace std;

int main(){

   //This declares an array of three elements for the three ratings

   int ratings[3];

   //This initializes the sum of the ratings to 0

   int total = 0;

   //The following iteration gets input for the three ratings

   for(int i = 0; i<3;i++){

       cin>>ratings[i];

       //This calculates the sum of all inputs

       total+=ratings[i];

   }

   //This declares and initializes the lowest and the highest ratings

   int lowest = ratings[0], highest = ratings[0];

   //This iterates through the array

   for(int i = 1; i<3;i++){

       //The following if condition determines the lowest rating

       if (lowest > ratings[i]){    lowest = ratings[i];        }

       //The following if condition determines the highest rating

       if (highest < ratings[i]){            highest = ratings[i];        }

   }

   //This prints the output header

   cout<<"The ratings are: ";

   //The following iteration prints the three ratings

   for(int i = 0; i<3;i++){

       cout<<ratings[i]<<" ";   }

   //The prints the highest ratings

cout<<endl<<"Highest: "<<highest<<endl;

   //The prints the lowest rating

   cout<<"Lowest: "<<lowest<<endl;

   //The prints the average rating

cout<<"Average: "<<total/3<<endl;

   return 0;

}

At the end of the program, the ratings entered, the highest rating, the lowest rating, and the average of the ratings are printed.

See attachment for sample run

Read more about similar programs at:

https://brainly.com/question/13261254

what is true of open source software

Answers

Answer:

lo que es cierto del software de código abierto?  

opera con los principios subyacentes de la producción de iguales y la colaboración masiva, creando un desarrollo de software más sostenible para los usuarios finales.

Explanation:

These operating systems were referred to as command-based.

Android and MS-DOS
iOS and Windows
LINUX and UNIX
MS-DOS and UNIX

Answers

[tex]{\underline{\boxed{\bf{MS - DOS \: and \: UNIX}}}}[/tex]

It is Linux and Unix!

Take the midterm, quiz, and final exam of 5.1 million points, and the average score is 1) A if it is 90 or higher, 2) B if it is less than 90 and 80 or higher, 3) C if it is less than 80 and 70 or higher, 4) Write a program that outputs D if less than 70 and more than 60, 5) F if less than 60.

Answers

Answer:

B

Explanation:

Not so sure

QUESTION 8
A
is a vertical group of cells in a worksheet.
Column
Row
Value
Formula

Answers

I believe that the answer is column.

Who is the best Attack on Titan Character?

A.) Levi
B.) Eren
C.) Armin
D.) Mikasa
E.) Other​

Answers

Answer:

Levi

Explanation:

Levi is just a massive W of a character

Levi
Tbh just a hige w

Is this correct just need somebody to check my answer plz and use your honest answer

Answers

Answer:

your answer looks correct

Research on a latest advancement in computing and discuss its potential or how will it impact our lives in the future

Answers

Answer:

hqiauahhwbbwbwbbssbbs

How many times will the loop body execute:
for i in range(5,9)
A) 1
B) 2.
C) 3
D) 4



I think it’s a But I don’t know

Answers

I’d also say B, which is 2

#2 i
Write -0.312 as a fraction in simplest form.
-0.312 =
-
What’s the answer

Answers

Answer: 39/125

Explanation:

What type of classroom enable students to attend lectures without being physically present with the teacher?

Answers

The answer is online learning since the virus happens alot of schools have been swtiching to online learning. It doesn't require anyone to be pychically present in class and there alot of platforms to do online learning.

Project light with a system of lenses used for projecting slides or film into a screen.

Answers

Answer:

Optical system. An overhead projector works on the same principle as a slide projector, in which a focusing lens projects light from an illuminated slide onto a projection screen where a real image is formed.

Explanation:

Give me some information about Shakira because I need to do a project

Answers

Answer:Summary : She's a Columbian pop singer who's sold more than 70 million albums sold worldwide. Her best known songs are "Hips Don't Lie" and " Whenever, Where ever".

Explanation: Born on February 2, 1977 in Barranquilla, Colombia. Her full name is Shakira Isabel Merabarak Ripoll. She wrote her first song on May 11, 1985. On October 1st she had her first successful album. On September 21, 1998 her album was sold worldwide

Answer:

Shakira's hips don't lie.

Type the correct answer in the box. Spell all words correctly. Karen is a famous hair stylist in New York and caters to big names. A few weeks ago, two hair stylists from South East Asia joined her team. They are shy by nature and hardly communicate with the rest of the members in Karen's team. Which strategy might Karen use to ensure people from minority backgrounds open up and contribute to group communications? Karen might use the strategy to encourage people from minority backgrounds to contribute to group communications​

Answers

Answer: To open them up emotoinally from a personal level then build up to group disscosiuns or counseling

Explanation:

Answer:

inclusion strategy

Explanation:

i got it right on plato

When working with a shared worksheet, how do you know it's shared?
The word "Shared is saved in the name of the file.
The email in which you received the file says "Shared."
The word "Shared" appears after the workbook title in the title bar.
The word "Shared" appears at the bottom next to the worksheet tabs.

Answers

Answer:

The Word shared appers in the email and appears next to the worksheet tab

Explanation:

Hope this answers your question :)

Answer:

C

Explanation:

hope this helps :)

You must configure a certificate authority on your network to use EFS. True or False?
a. True
b. False

Answers

You do not need to configure a certificate authority on your network to use EFS.

EFS is the short form for Encryption File System. With EFS, users can encrypt their files and folders and even the entire content of a given drive. By encrypting these files and folders, the access to them are restricted and thus increasing, improving and enhancing the security level of the users' data.

In other words, even though there are other ways to restrict access (such as using logon authentication and NTFS file permissions), EFS allows to add another layer of security to data.

To encrypt and decrypt data files and folders in EFS, a certificate authority (CA) could be used. This is however not a requirement. In the case where there is no certificate authority, EFS  will sign a default certificate that will be used for encryption. In other words, EFS will generate its own certificate if none does not exist.

The following are other things to note about EFS

i. EFS uses a public and private key pair to encrypt data.

ii. Users do not need to enable EFS. It is enabled by default.

iii. For EFS to encrypt a file, the NTFS file system must be used.

Since a certificate authority is not required on your network to use EFS, the correct option is:

(b) False.

Read more at: https://brainly.com/question/10410730

if a hacker wants to exploit the TCP three-way handshake, what is the most effective way to go about it?

Answers

The most effective way to exploit TCP three-way handshake is TCP SYN flood.

SYN flood attack is simply a kind of computer attack that begins with 3-way TCP handshake. TCP SYN flood is also called SYN flood and it is a type of distributed Denial of Service (DDoS) attack that uses every part of the normal TCP three-way handshake to eat up resources on the known server and render it non-functionalWith TCP SYN flood, a hacker can eat up resources of target's computer and makes it unresponsive.

From the above, we can therefore say that the most effective way to exploit TCP three-way handshake is TCP SYN flood.

Learn more from:

https://brainly.com/question/14739766

You are working as a security expert in an e-commerce enterprise. Your company recently decided on a short-term collaboration with a small business named BuyMe, and the following issue arose. Whenever your customers purchase any product from BuyMe, the e-commerce website redirects them to the BuyMe website, asking for additional authentication. This results in customers abandoning their purchases. To solve this issue, both enterprises agree to use a single authentication process wherein the users, once logged in to your website, can purchase from BuyMe without additional steps.

How should you implement this without storing the customers' credentials on the BuyMe server?

a. Use RADIUS authentication
b. Use Using Kerberos authentication
c. Use TACACS+
d. Use SAML

Answers

Answer:

Use TACACS+. IT IS THE BEST

Explanation:

IT IS THE BEST

Answer: Use SAML

Explanation:

Describe about abacus​

Answers

An abacus is a calculation tool used by sliding counters along rods or grooves, used to perform mathematical functions. In addition to calculating the basic functions of addition, subtraction, multiplication and division, the abacus can calculate roots up to the cubic degree.

Answer:

An abacus is a calculation tool used by sliding counters along rods or grooves, used to perform mathematical functions. In addition to calculating the basic functions of addition, subtraction, multiplication and division, the abacus can calculate roots up to the cubic degree.

With working from home now becoming a norm what is an effective network for an organization to secure its internal resources access by employees working from home

Answers

Answer:

Always encrypt data never store anything in plain text someone could use wireshark to pull out a data packet and if the data is not encrypted, expect things to happen.

PLEASE HELP I WILL GIVE BRAINLYEST

Answers

Answer:

I am guessing photoshop

Explanation:

Photoshop is also under the Adobe company of graphics designs

What are the different ways computers can process information?

Answers

To determine what to do with the instructions, the CPU goes through 4 steps to make sure the program runs without errors. The 4 steps are fetch, decode, execute and writeback.

Input, process, output, and storage are the the different ways computers can process information.


What is a computer?

A computer is a piece of computer components used to handle information or files. Data can be stored, retrieved, and processed by it. Maybe may already be aware of the fact you are able use a desktop to surf the Internet, send emails, type articles, and play online games.

The software directs but really the hardware actually does the information to output execution. Input, process, output, and storage are the four important information processing operations needed for a computerized system to operate.

Input, processing, as well as output are really the three phases of the computer. These stages are carried out by a computer "running" a code. A program comprises a set of detailed instructions that specify how the computer should process input to generate the desired result.

Learn more about computers, here:

https://brainly.com/question/21080395

#SPJ2

List 2 positive impacts of cybersecurity.




**Answer and I will give you brainiliest**​

Answers

Answer:

Protection for your business and Increased productivity

Explanation:

This is because it ensures your employees aren't at risk from potential threats and, since there no virus, the computers will work well (not slow down)

Please please help I don’t understand this

Answers

Answer:

Yes and yes

Explanation:

It’s is this because yes and yes

Question 5 / 15
What does clicking and dragging the fill handle indicated by the cursor below do?
077
Х
✓ fx
=0.08*B77
B.
с
76
Sales
Tax
77
$794
$64
78
$721
79
$854
80
$912
81
$1,020

Answers

Answer:

$1,020 that is my answer because it will be that one

The value that would be returned based on the formula [=COUNTIF(A43:A47, "NP*")] in cell A49 is 4.

Microsoft Excel can be defined as a software application that is designed and developed by Microsoft Inc., so as to avail its end users the ability to analyze and visualize spreadsheet documents.

In Microsoft Excel, there are different types of functions (predefined formulas) and these include:

Sum functionAverage functionMinimum functionMaximum functionCount function

A count function is typically used to to calculate the number of entries in a cell or number field that meets a specific (predefined) value set by an end user.

In this scenario, "NP*" is the specific (predefined) value that was set and as such the value that would be returned based on the formula in cell A49 is 4 because A43, A44, A45 and A46 contain the value "NP."

Read more on Excel formula here: https://brainly.com/question/25219289

When people become more dependent on digital technology in their lives, the potential for data misuse will grow. Explain the above sentence in your opinion.




**Answer and I will give you brainiliest**​

Answers

Answer:

yest that's correct.

Explanation:

for example we can see Artificial intelligence/AI the more it becomes super computer the future of human existence will be in jeopardy like in the movie Terminator.

some people will become lazy and don't use their brain for anything

what type of information system would more be likely to be used by schools?
commercial
scientific data processing
information retrieval and management
automation

Answers

Answer:

probably

informaition retreival

Explanation:

which of the following statements describes the general idea of an assistive media​

Pasagot po plssss

Answers

Answer:

What statmentssssssssss

The general idea of assistive media is described by C) Technology or tools designed to aid individuals with disabilities in accessing information and interacting with the world.

We have,

Assistive media refers to various technologies or tools that are specifically developed to assist people with disabilities.

These tools are designed to enhance their ability to access information, communicate effectively, and interact with their environment.

Assistive media can take many forms, such as screen readers for individuals with visual impairments, communication devices for those with speech disabilities, adaptive keyboards or switches for individuals with motor impairments, and more.

The main purpose of assistive media is to level the playing field and provide individuals with disabilities the means to participate fully in various aspects of life, including education, communication, work, and social interactions.

Thus,

The general idea of assistive media is described by C) Technology or tools designed to aid individuals with disabilities in accessing information and interacting with the world.

Learn more about assistive media here:

https://brainly.com/question/29891210

#SPJ3

The complete question:

Which of the following best describes the concept of assistive media?

A) A form of social media that helps people connect with friends and family.

B) A type of entertainment media, such as movies or music.

C) Technology or tools designed to aid individuals with disabilities in accessing information and interacting with the world.

D) Media coverage of events and news happening globally.

9. These particular machines can be decentralized.

A) Risograph
B) Photocopier
C) Desktop computer
D) Printers

__and__??

Answers

Answer:

A, B

Explanation:

Because the desktop computer and the printers are decentralized, they're connected with another noce in a company.. So I suppose that the Risograph and photocopier isn't decentralized.

List 2 negative impacts of cybersecurity.



Answer and I will give you brainiliest ​

Answers

Answer:

Cyber security can be used for good but nevertheless some people will find ways to do bad things. Basically the negative impacts of cyber security is the opposite to the good type of cyber security they take advantage of it and exploit computer system to do what they want. An example to this is planting a malware on the victim's computer or using a DDOS attack on a WiFi router the possibility are endless.

Other Questions
find the value of a square + b square when a+b = 8 and ab = 10 A snake slithered across the sidewalk in between two sign posts. At the first sign post his speed was1.2 m/s. At the second sign post his speed was 1.2 m/s. This is an example of... What is the density of a block of wood, that weigh 18 grams, and volume is 56ml A man whos been battling lung cancer for the last three months is now experiencing personality changes and memory problems. Describe some of the different professionalswho might be needed to diagnose and treat this man. Is it common knowledge, or must it be documented? Choose common knowledge or needs documentation on the line before each example. A laptop computer is more portable than a desktop computer. One of the themes in I Heard the Owl Call My Name is the dying of the tribes way of life. Cell phones communicate using satellites orbiting the earth. Robert Frost wrote poetry. "Once upon a midnight dreary, while I pondered, weak and weary," a scientists opinion of the global warming issue What Type: of cells go through the special cell division process of meiosis?1. gametes2. lymphocytes 3. neurons4. hepatocytes Shared decision making is always a positive strategy to take.A TrueB.False A __________ is a specific number whose value does not change. A scale model of a bus is 12 inches long. The scale is 1:21. How many inches long is the bus itrepresents? A new movie theater holds 350 people with 14 seats in every row. Use division to find how many rows are there in the theater. If 3x-4 = 14 then x = 6 true or false NEED HELP ASAP!!!What should be included in the body of an argumentative essay? (Select all that apply.) A. the evidence B. the conclusionC. the reasonsD. the introduction Revise and edit the argumentative research essay you wrote in Lesson 2, based on feedback from your peers and from your instructor. Your revised essay should show that you paid special attention to the feedback you've received and that you've made a major effort to improve the assignment. Your essay should also be as free as possible of sentence-level issues such as typos and confusing wording.Your assignment should include the following elements:A claim, supporting reasons, and evidence from at least five sourcesAn introduction paragraph, body paragraphs, and a conclusion paragraphA counterclaim, followed by a response that supports your argumentTransitions to show how the claim, reasons, evidence, and counterclaim are related please helpSec. 2. Mission. The mission of the Office shall be to develop and coordinate the implementation of a comprehensive national strategy to secure the United States from terrorist threats or attacks. The office shall preform the functions necessary to carry out this mission. . . .Sec. 3. Functions. The functions of the Office shall be to coordinate the executive branch's efforts to detect, prepare for, prevent, protect against, respond to, and recover from terrorist attacks within the United States.Executive Order 13228, President George W. Bush, October 8, 2001Which U.S. government agency was created by Executive Order 13228? A. the Federal Protective Service B. the Department of Homeland Security C. the Federal Bureau of Investigation D. the Department of Defense A girl attempts to swim directly across a stream 15meters wide. When she reaches the other side, she is15 meters downstream. The magnitude of herdisplacement is closest to In mammals the digestive tract is made up of multiple such as the stomach, pancreas and intestines. These all work together to form the we use to digest food. mr gardener is makin 6 treat bags.he has 185 chocloate coverd raisins. how many chocolate coverd rasins will be on each bag HELPPPPPPP FASSSSSSSSST THIS IS DUE 1 Which answer best describes how early British explorers used the land when they came to AmericaA. They found fertile soil, which they used to grow a variety of crops. B.They found the soil unusable, and they had to rely on fishing and hunting for food. C. They discovered sandy soil, which they had to convert to grassland in order to grow crops.D. They shared their knowledge of crop rotation with Native Americans in order to establish trade. If B = x + 10 and C = x + 2 , find an expression that equals 2B + 2C in standard form.