What is the answer I will give brainliest

What Is The Answer I Will Give Brainliest

Answers

Answer 1
The answer is 24kQr3

Related Questions

. Which of the following are container elements?

a. bold b. underline c. italics d. all of these

Answers

It’s c cba to explain

Answer:

I think letter b. underline, but not sure

anybody remember that football game that everyone used to play during school

Answers

Answer:

Like an actual video game or the one where you would play during recess then get in trouble when someone got hurt

Explanation:

A career in culinary arts can best be described as working in the __________ industry.
A.
food
B.
clothing
C.
computer
D.
entertainment

Answers

Answer:

A-Food

Explanation:

The answer would be A:Food

1. While cell phones provide Freedom and mobility,they can also become a leash, compelling user's to answer them anywhere and anytime​

Answers

Cellular phones have had a major impact on our lives and the way that we perform every day tasks. Many of these changes are apparent, while others we may not even be aware of.

Cell phones have brought a whole new meaning to the term multitasking. Twenty years ago, it was not possible to talk to the office while you were at the grocery store picking up some necessary items. You could never have had a three-way business conference while you were fixing dinner or been able to deal with a business client from home while caring for a sick child.

A line graph titled Unemployment Percentages and Levels of Education where the x-axis shows dates from November 2007 to November 2010 and the y-axis shows the percentage unemployed. No High School diploma starts at 7.5 percent in November 2007, rises steadily to 15 percent in November 2009, and stays at 15 percent to November 2010. High School diploma starts at 4.8 percent, rises steadily to 10.5 percent in November 2009, and falls to 9.5 percent in November 2010. Some college starts at 4 percent in November 2007, rises to 9 percent in November 2009, and falls to 8 percent in November 2010. Bachelor's degree or higher starts at 2 percent, rises to 5 percent in November 2009, and slowly falls to 4.9 percent in November 2010.

Based on the above graph, what was the percentage of difference between someone without a high school diploma and someone who has completed some college in November 2009?

A.

4%

B.

5%

C.

7%

D.

10%

can yall please answer my question pls

Answers

Answer:

D

Explanation:

the answer is D because

Answer:

It's B

Explanation:

IM SORRY IF ITS WRONG

Which expression is equivalent to 3x + 3x + 3x?

From Performance Matters

Answers

9x because you can add 3x+3x+3x because they are the same and can be added
Answer:
The answer is 9x

Given the following class, public class Magazine { private static double SUBSCRIPTION_DISCOUNT = .60; private String title;
private String publisher;
private double newsstandPrice;
public Magazine(String theTitle, String thePublisher, double theNewsPrice) {
title = theTitle;
publisher = thePublisher;
newsstandPrice = theNewsPrice;
}
public String getTitle() {
return title;
}
public String getPublisher() {
return publisher;
}
public double getNewsstandPrice() {
return newsstandPrice;
}
public double getSubscriptionPrice() {
// implementation not shown
public void setNewsstandPrice(double newPrice) {
newsstandPrice = newPrice;
}
}
Which of the following methods is an accessor method?
I. getTitle
II. getPublisher
III. setNewsstandPrice

I only
I and II only
II only
I and III only
III only

Answers

Answer:

The answer is "III only"

Explanation:

An accessor method is also an instance function that receives or establishes the value of an object's properties. This method is called methods through obtaining information about an entity. This method reverses it to process, which has two accessory string techniques to reach source string data reference length Accessor method.

Which explanation best describes the importance of continuing education?

1.Continuing education is important to maintain certification and keep up with new advances in the field.
2.Continuing education can be very costly and opportunities are difficult to find.
3.Only physicians and nurses are required to have continuing education.
4.Continuing education is not required, but it is a good way to learn more in your field.

Answers

Answer:

1.Continuing education is important to maintain certification and keep up with new advances in the field.

Explanation:

Continuing education is any additional formal learning that is not focused on a  college degree outcome.

Continuing education helps one to acquire more knowledge and to be relevant in one's field.

So, continuing education is important to maintain certification and keep up with new advances in the field.

I need an open response pleaseeeeeee

The format is "Describe‌ ‌the‌ ‌smart‌ ‌home‌ ‌devices‌ ‌impact‌ ‌of‌ ‌technology‌ ‌on education"

Answers

Answer:

Explanation:

Smart Home devices have had a large impact on education. It has allowed students of all ages to better understand the concept of interconnected devices and artificial intelligence. This alone has also opened up a new door of information by allowing for instant answers to question through such smart home devices as Alexa or Home. Which are artificial intelligence virtual assistants.

which of the following statements most accurately describes the difference between aptitudes and skills​

Answers

Explanation

Aptitudes are ability, and skills are the potential. Aptitudes can be learned or trained, unlike skills. Aptitude is the level of skill that a person has gained.

Answer:

D

Explanation:

7.5 Code practice Plz answer ASAP

Answers

def calculate_GPA(grade, weight):

   grades = {"A": 4, "B": 3, "C": 2, "D": 1, "F": 0}

   if weight == 0:

       return grades[grade]

   else:

       return grades[grade] + 1

classes = int(input("How many Classes are you taking? "))

total = 0

for x in range(classes):

   letter = input("Enter your Letter Grade: ")

   user_weight = int(input("Is it weighted? (1 = yes) "))

   grade = calculate_GPA(letter, user_weight)

   total += grade

   print("Your GPA score is: ", grade)

print("Your weighted GPA is a",(total/classes))

I wrote my code in python 3.8. I was able to replicate the output in your picture exactly. If you need me to make any changes, I'll do my best.

The function is an illustration of for loops

For loops are used to perform repetitive operations; just like the while loop

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

#This defines the studentGPA function

def studentGPA(grade, weight):

   #This initializes a dictionary for all grades

   allGrade = {"A": 4, "B": 3, "C": 2, "D": 1, "F": 0}

   #This sets the return grade to 0

   retValue = 0

   #If the grade is valid

   if grade in allGrade:

       #If the weight is 0

       if weight == 0:

           #Then score is not graded

           retValue = allGrade[grade]

       #If otherwise

       else:

           #This adds 1 to the return grade

           retValue = allGrade[grade]+1

   #This returns the grade point

   return retValue

#The main begins here    

#This gets the number of classes

klass = int(input("How many Classes are you taking? "))

#This initializes the total grade to 0

total = 0

#This following is repeated for each class

for x in range(klass):

   #This gets input for the letter grade

   letterGrade = input("Enter your Letter Grade: ")

   #This gets input for the weight

   weight = int(input("Is it weighted? (1 = yes) "))

   #This gets the corresponding grade

   grade = studentGPA(letterGrade, weight)

   #This prints the grade point

   print("Your GPA score is: ", grade)

   #This calculates the total grade

   total += grade

#This calculates the GPA

GPA = total/klass

#This prints the GPA

print("Your weighted GPA is a",GPA)

Read more about for loop at:

https://brainly.com/question/12736327

What are the three primary components of an inbox?
O the Task List, the Calendar, and the Status bar
O the Task List, the Calendar, and the Reading Pane
o the message header, the Folder Pane, and the Reading Pane
O the message header, the Status bar, and the Reading Pane

Answers

The three primary components of an inbox are the message header, the Folder Pane, and the Reading Pane. Hence option c is correct.

What is inbox?

Inbox is defined as a location in an email client or online email account where email messages are received. You may view and manage received emails in your inbox. The sender's name, the message's subject, and the date it was received are provided with each email. You can find the Inbox in the Message List. Opening in the Reading Pane are emails. You have more options for organizing emails with the ribbon.

A computer or smartphone's inbox is a folder where new emails are saved. An email program's inbox is a repository where incoming messages are stored. Email applications may provide several inboxes into which new communications are filtered after being examined for content

Thus, the three primary components of an inbox are the message header, the Folder Pane, and the Reading Pane. Hence option c is correct.

To learn more about inbox, refer to the link below:

https://brainly.com/question/208303

#SPJ2

Which statement best describes what a project manager controls

Answers

Project controls are processes for gathering and analyzing project data to keep costs and schedules on track. The functions of project controls include initiating, planning, monitoring and controlling, communicating, and closing out project costs and schedule.

The delegation of responsibilities in a project is a project manager controls. Hence, option D is correct.

What is delegation of responsibilities?

Transferring accountability for particular tasks from one person to another is referred to as delegation. From a managerial standpoint, delegation happens when a manager gives their staff members particular tasks to do.

The manager can distribute authority, but responsibility and accountability cannot, according to the idea of absolute responsibility. Both the tasks that the manager has delegated to his subordinates and the actions of his subordinates fall under his purview of accountability to his own superior.

Effective delegation helps you and your team become better leaders and professionals, frees up time, gets you ready to manage bigger teams, and motivates team members to work harder. A crucial managerial skill to develop throughout your career is delegation.

Thus, option D is correct.

For more information about delegation of responsibilities, click here:

https://brainly.com/question/14875204

#SPJ5

The options were missing-

the overall choice of which work becomes a project

the overall deadline when a project is due

the overall resources allocated for a project

the delegation of responsibilities in a project

var words = ["apple", "bug","car", "dream", "ear", "food"]
var filteredWords = [];
for(var i = 0; i < words.length; i++){
var word = words[i];
if (word. Length < 4){
appendItem(filteredWords, word)
}
}
console.log(filteredWords);
If the program above is run, what will be displayed in the console?
O A. [apple, dream]
B. [bug, car, ear]
O C. [bug, car, ear, food]
O D. [apple, dream, food]

Answers

Answer:

B

Explanation:

I haven't taken cs principles, but i have taken cs a

is that python?

bug, car, ear are the only words less than 4 characters in legnth

If the program above is run, [bug, car, ear] will display in the console. The correct option is B.

What is a program?

A computer program is a set of instructions written in a programming language that a computer can execute. The software contains computer programs as well as documentation and other intangible components.

When you use a computer program, you are utilizing a program. When you program a computer, you are instructing it to perform a specific task.

To run a program, and to see if a program is running, you may open the Task Manager by pressing the Ctrl + Alt + Del keyboard shortcut keys, then selecting Task Manager. You may also pick Task Manager by right-clicking on the Windows Taskbar.

Therefore, the correct option is B. [bug, car, ear].

To learn more about the program, refer to the link:

https://brainly.com/question/3397678

#SPJ5

Learning how to use word processing and spreadsheets, and creating presentations are all considered __________ computer skills.
A.
basic
B.
advanced
C.
optional
D.
unnecessary

Answers

Answer: a i hope it help

Explanation:

Answer:

A basic

Explanation:

<33


Binary digits can represent the state of an electrical charge. How
many different states of an electrical charge can binary digits
represent?

Answers

On and off can be represented.

what type of waves are used on a tv remote control?

Answers

Answer:

(IR) Light

Explanation:

The signal of the remote control, control the pules of the infrared light. But human eye cant see, but can see through a digital camera.

Seneca has just applied conditional formatting and realizes that she has made a mistake. Which action should she take to fix the mistake?

Clear the rule she created by going to the Conditional Formatting Rules Manager dialog box and deleting the rule.
Clear all rules that have been applied to the worksheet or selected range by clicking the Clear Rules button.
Use the Undo button or Ctrl+Z.
Right-click the area where the conditional formatting rule has been applied, and select Clear Rule from the menu list.

Answers

If Seneca has not done anything since the conditional formatting she can undo what her last action was. This is done by either pressing control+Z or by clicking on the undo icon.

If other actions have been done, there are a few more steps that need to be taken in order to clear the formatting. They are:

1. Select the cell or cells whose formatting you want to delete.

2. Display the Home tab of the ribbon.

3. In the Editing group, click Clear | Clear Formats.

Answer:

ITS C HOLY MOLLY

Explanation:

Peer collaboration helps develop critical-thinking skills, which is the ability to

focus on multiple subjects at once.
criticize the thoughts of others.
examine a subject more closely.
focus on a single opinion or perspective.

Answers

Answer:

its c

Explanation:

after a few googel searches this is the answer

Answer:examine a subject more closely.

Explanation:

i just finshed the test

_____ (without parity) means spreading the data among multiple (at least two) drives. Group of answer choices Parity

Answers

Answer:

"Disk Striping" would be the right choice.

Explanation:

Disk stripping has become a methodology where certain numerous small external drives consist of a single massive disk. This same classification turns huge information into single blocks but instead disperses them over numerous different storage media. Disk stripping retail outlets instead of every data unit through a single place and doesn't provide disk failure safeguards.

How do you describe packet switching in your own words

Answers

Answer:

this is your answer bhaiya

A ________ network has no central computer.

Answers

Answer:

Ring Networks

Explanation:

They do not have a central computer system controlling the operation of the entire network. Instead, the various computers in the network are arranged around a ring, and each computer may communicate with any other computer in the ring.

They lack a centralized computer system in charge of managing the entire network. Instead, the network's many computers are placed in a ring, and any one of them is free to speak with any other computer in the ring.

What role of ring network in central computer?

When a straightforward network is required, ring network topologies are used. They are appropriate for places that do not require particularly fast data transmission rates and where it is unlikely that the network's size or structure will change.

The data move in the shape of a ring from one node to the next. If computer A wants to transfer information to computer D, the information is first put in the packet.

Therefore, A tiny office with only a few nodes, for instance, might employ a ring network design.

Learn more about ring network here:

https://brainly.com/question/15837844

#SPJ2

What surprised you the most about computer science ?

Answers

Answer:

Computer science is the study of algorithmic processes

Explanation:

:) its interesting

Answer:

don't know

I am not sure what you mean

Explanation:

Select the correct answer.
Nancy wants to buy a cooking stove that’s electrically insulated and resistant to heat. What material should she choose for the cooktop?
A.
composite
B.
polymer
C.
metal
D.
ceramic
E.
semiconductor

Answers

Answer:

E I think is the best answer

The success criteria are used to judge whether a project is successful. False True
need it now

Answers

Answer:

True True True True

Answer:

true

Explanation:

what are the peripherals of a computer ​

Answers

Answer:

A computer peripheral is any external device that provides input and output for the computer.

Skyler is ready to transfer his Webpage files from his computer to a Web server. Which of the
following is a set of rules that enables his large Webpage files to be exchanged between his
computer and the Web server?
O FTP
O SSH
O HTTP
O SSL

Answers

Answer:

FTP

Explanation:

FTP (File Transfer Protocol) is a protocol that allows the transfer of files across different machines.

Which of the following computer components typically has the FASTEST performance?

RAM
NIC
Firmware/BIOS
CPU

Answers

Answer:

CPU

Explanation:

The CPU is typically the fastest component in a computer and processes a large number of commands in a short amount of time. The CPU controls the other parts of the computer by getting information from them, then telling them what to do.

I REALLY Need help on this.

Answers

Make a deposit talk to A representative transfer money and Check account balance

whats ur favorite video game​

Answers

Answer:

Minecraft has always been my favorite

Answer:

Far Cry 5. It has a great story line and it's lots of fun

Explanation:

Other Questions
Pls help Ill brainlest Which activity is demonstrates both flexibility and muscular endurance convert 2,000,000mm into Decametres Plzz help me Which excerpt from "Escape" adds to the theme that the speaker can see herself differently than others see her?I look inside me and I dont see itI dont see the powerThe confidence you say I haveI wait anxiously Feeling my stomachA block of iceAvoid conflictWatch my rainbowAnd let you watch yoursI must take this test just like everyoneTakes testsI am closing in on the sky Circle geometry please help, What stores all software and files on your computer and reads and writes data onto a spinning magnetic or optical disk? What are vernal pools? A lakes B swimming pools C hollows where water collects D caves where wild animals sleep Jimmy and Marquis are conducting an experiment in class. They haveplanted four seeds in four different pots. They placed the pots in differentplaces around the classroom: in a sunny window, on the work table, on thefloor near the window, and under the boys' desk. The boys watered thepots every morning when they arrived at school. Once the seeds sproutedthe boys measured how much each seed grew. "Wowl" said Marquis, after3 weeks of observing and measuring, "I can tell which seed was under ourdesk!" Can you? Which seed was placed under the boys desk?Measuring Plant Height10Plant Height (Inches)Seed 1 Seed 2 Seed 3 Seed 4 Help U Will get Brainliest HELPP this hard IMAO Math homework need help ?? anyone know thank you who came to pick up scrooge from school What would happen to the volume of a gas if you increased the temperature? Find the sum of the interior angle measures of a convex 15-gon (a fifteen-sided polygon). Solve l-20l - l7l PLEASE HELPP IM ON A TEST In the Communist Soviet Union:a. people who spoke out against the government were killed or used as slave labor. b. the people elected all the government officials. c.there were two distinct, powerful political parties. d.poverty decreased significantly. What factors affect personality development? g line a) The emission line with the shortest wavelength. b) The absorption line with the shortest wavelength. c) The emission line with the lowest energy. d) The absorption line with the lowest energy. e) The emission line with the lowest frequency. f) The line corresponding to the ionization energy of hydrogen. 7+1-8-5||(1-4) +17What the answer