What is application software used for?

Answers

Answer 1

Answer:

Explanation: Application software is a type of computer program that performs a specific personal, educational, and business function. Each program is designed to assist the user with a particular process, which may be related to productivity, creativity, and/or communication.

Answer 2

Answer:

to make certain tasks easier for the computer user

Explanation: a p e x


Related Questions

convert the decimal number 191 into an binary number

Answers

Answer:

Binary: 10111111

Explanation:

Which unit of measurement is used to express the capacity of a servo motor?
A. kg/hr
B. kg/m
C. kg/cm
D. kg/km

Answers

Answer:

C. kg/cm

Explanation:

I just did it

(true or false) One of the difficult things about working in game design is that while there are many different roles, most of them only match one specific personality type.
True
False

Answers

Tbh I think it’s False because most of them don’t match
I thinks it’s false cause most don’t match

Write a program that reads two integers, checks if a digit repeats 3 times in a row in the first integer and that same digit repeats two times in a row in the second integer.

Answers

Answer:

first_num = input("Enter integer digits (should be four or more digits): ")

sec_num = input("Enter integer digits (should be four or more digits): ")

num = '3'

if

def count_check( digit):

   if (digit * 3) in first_num and (digit * 2) in sec_num:

       print(True)

   else:

       print(False)

count_check(num)

Explanation:

The python source code above receives two values assigned to variables "first_num" and "sec_num" and defines a function called count_check to check if a digit occurs three consecutive times in the first input and two in the second to print a value of true or false otherwise.

Erin’s classmate said that the program that they were working on is not running properly because the classmate accidentally put in commas where semi-colons should be. What kinds of errors does Erin need to fix?
logic errors
database errors
debugging errors
syntax errors

Answers

Answer:

A simple syntax error :)

"A character or string incorrectly placed in a command or instruction that causes a failure in execution."

Good luck! Hope this helped! :D

The kinds of errors does Erin need to fix is a simple syntax error.

What is syntax error?

Syntax is a character or string when incorrectly placed in a command or instruction results in failure while executing.

Erin’s classmate said that the program that they were working on is not running properly because the classmate accidentally put in commas where semi-colons should be.

The correct way to remove syntax error is putting colon and semicolon on the right place.

Learn more about syntax error.

https://brainly.com/question/18271225

#SPJ2

write some positive and negative impacts of computer in our daily life​

Answers

Positive impacts are
1. Communicating with people
2. Daily update of what going on in the world
3. learn new things
Negative impacts are
1. Viruses
2. Private information shared
3. Less face to face conversations

Sean works for a company that ships hospital equipment. He needs to calculate the weight of the items being shipped. He enters the number of items in cell A1. The weight of each item is 180 pounds, so Sean enters 180 in cell A2. The weight of the packaging for each item also needs to be included. This weighs 10 pounds for each item, so he enters 10 in cell A3. Which formula should Eric use to calculate the total weight?

Answers

Answer:

= A1 * (A2 + A3)

Explanation:

In order to calculate the total weight of the equipment, he would need to first add the total weight of each item. This is done by adding the weight of the item by the weight of the packaging. Once you have this amount you can multiply this value by the total number of items being shipped and that should give you the total weight of the shipment. Using the cells, this can be calculated with the following formula in Excel...

= A1 * (A2 + A3)

Which of the following is an example of a tax?

cash payment,medicare,rental payment,line of credit

Answers

Medicare because it’s like insurance

SOMEONE PLEASE HELP ME I REPOSTED THIS 3 time and no ONE HAD HELPED ME

Answers

Answer:

The answer is B

If you draw strength from video games, how?

Answers

Answer:

I really dont know

Explanation:

Thank u for the pts tho < :)

What will you see on the next line? >>> int(6.5)

Answers

Answer:

6

Explanation:

The int functions founds down to the nearest whole number, which in this case would be 6.

Answer:

6

Explanation:

a employee who has intregity is

Answers

Answer:

is some one who demonstrates  sound moral and ethical principles ,always does the right thing no matter when or who's watching, they can be trusted around the staff and the stakeholders. which means that that person is honest, fair, and dependable

Explanation:

i actually just did a report for a class that i am taking called human resources

i hoped this helped you

Write a python program to input money in Bahrain dinar and find out number of denominations can be used to make that money.

For example: -
Enter total money in BD: 76
Then the output Should be :
No.of 20 BD : 3
No.of 10 BD : 1
No.of 5 BD : 1
No.of 1 BD : 1

Pls answer fast

Answers

n = int(input("Enter total money in BD: "))

n20 = n//20

n10 = (n-(n20*20))//10

n5 = (n - ((n20*20)+(n10*10)))//5

n1 = (n - ((n20*20)+(n10*10) + (n5*5)))//1

print("No. of 20 BD: "+str(n20))

print("No. of 10 BD: "+str(n10))

print("No. of 5 BD: "+str(n5))

print("No. of 1 BD: "+str(n1))

Answer: There are various ways to earn money online in Bangladesh. Here are some options you can explore:

Freelancing: Freelancing is one of the most popular ways to earn money online in Bangladesh. You can offer your skills and services on various freelance platforms such as Upwork, Fiverr, and Freelancer. You can offer services such as content writing, graphic designing, web development, data entry, and more.

Affiliate marketing: You can earn money by promoting products and services through affiliate marketing. You can join affiliate programs of various companies such as Amazon, Clickbank, and ShareASale and earn commission on the sales made through your unique affiliate link.


Help me please I need the correct answe

Answers

Pretty much, yeah.

if it's wrong just pick false.

Considering there are 2 dictionaries, one with the name of the person and the stock name and number of stocks they have and the other dictionary has the stock name and it’s today’s market value -

Ex: a = { “Joe” :{“AAPL”:5, “AMZN”:2}, ”Bill” :{“AAPL”:2, “AMZN” :5 }}

B = {“AAPL” : 227, “AMZN” :1721 , “NFLX” : 267 , “TSLA” : 244, “FB” : 179 }



Write a Python program to find the amount of money each person makes by selling all of their stock today, and who will get the most value

Answers

a = {"Joe": {"AAPL": 5, "AMZN": 2}, "Bill": {"AAPL": 2, "AMZN": 5}}

B = {"AAPL": 227, "AMZN": 1721, "NFLX": 267, "TSLA": 244, "FB": 179}

total = 0

largest = 0

for x in a:

   for w in a[x]:

       total += a[x][w] * B[w]

   a[x] = total

   if total > largest:

       largest = total

   print("{} will have ${}".format(x, total))

for x in a:

   if a[x] == largest:

       print("{} will get the most value".format(x))

I hope this helps!

why are media conductors needed in computer network?​

Answers

Answer:

Transmission media connectors attach directly to the medium itself and serve as the physical interface between cabling and network nodes.

Explanation:

Answer:

masamstha 31 is correct hope it's help you have a good day

Which list method allows elements in a sequence to be removed and added at either end of the structure?
a) index
b) queue
c) stack
d) deque
PLEASE HURRY

Answers

Answer:

b) queue

Explanation:

Queue is also an abstract data type or a linear data structure, just like stack data structure, in which the first element is inserted from one end called the REAR(also called tail), and the removal of existing element takes place from the other end called as FRONT(also called head).

Answer:

B is right!

Explanation:

can anyone help with this?​

Answers

The correct answer is Use hanging indents in the second line

Explanation:

One of the recommendations in the works cited page like the one presented is to use hanging indents. This implies the second, third, etc. line of a citation should be indented, while the first line is not indented. This is required by the MLA (Modern Language Association) because it makes citation to be easy to read. According to this, to improve the sample, hanging indents need to be included in the second line of the first and third citation.

Choose the word that matches each definition.
1 - ISP
2 - HTTP
3 -URL

Answers

Answer:

1 - Internet Service Provider

2 - Hypertext Transfer Protocol

3 - Uniform Resource Locator

Explanation:

The resistance in a particular kind of circuit is found using this formula: R1(R2)R1+R2.


Assuming all the variables are non-zero, which line of code will find the value of the resistance?


resistance = (R1 * R2) / (R1 + R2)

resistance = R1(R2) / R1 + R2

resistance = R1(R2) / (R1 + R2)

resistance = R1(R2) / (R1 + R2)

Answers

Answer:

resistance = (R1 * R2) / (R1 + R2)

Explanation:

PYTHON doesn't recognize multiplication like this example >> 3(4)

This is why PYTHON uses this symbol (*)

I WILL GIVE BRAINLIEST TO WHO ANSWERS FIRIST AND CORRECT
How are blogs and wikis alike?


accessible 24/7

telecommunications technology

collaboration tool

available online

used for online dialog

increase business productivity

Answers

Answer:

accessible 24/7

available online

increase business productivity

telecommunications technology

Blogs and wikis alike because they are:

Accessible 24/7.Available online.Increase business productivity.Telecommunications technology.

What are blogs?

A blog is known to be a short word for  “weblog”. This is known to be a kind of an online journal that is also said to be an informational website where one can get Infor on different subject.

Conclusively, Note that Blogs and wikis alike because they are Accessible 24/7 and one can get any information they want from it to increase  business productivity.

Learn more about Blogs from

https://brainly.com/question/3653791

#SPJ2

PLEASE HELP ASAP 100 POINTS 2 MORE MINUTES!!!!! :/
Use the (blank) to add a new slide to your presentation.
Slide plane
Standard toolbar
Insert menu
Slide view

Answers

Answer:

Insert Menu

Explanation:

This is what the passage that I read for school said:

In most programs, you can add a new slide from the Insert menu.

4.9 Code Practice: Question 4
Instructions
Write a program that asks the user to enter ten temperatures and then finds the sum. The input temperatures should allow for decimal values.

Sample Run
Enter Temperature: 27.6
Enter Temperature: 29.5
Enter Temperature: 35
Enter Temperature: 45.5
Enter Temperature: 54
Enter Temperature: 64.4
Enter Temperature: 69
Enter Temperature: 68
Enter Temperature: 61.3
Enter Temperature: 50
Sum = 504.3

Answers

total = 0

i = 0

while i < 10:

   temp = float(input("Enter Temperature: "))

   total += temp

   i += 1

print("Sum =", str(total))

I hope this helps!

Write the code in python to ask the user to input two integers. Your program will then print the greatest common divisor of the two integers. Look at the math module for a function that will help you find the greatest common divisor.

Answers

import math

num1 = int(input("Enter a number: "))

num2 = int(input("Enter a number: "))

print(math.gcd(num1, num2))

The gcd() - greatest common divisor function, which is part of the math module works perfectly in this situation.

Name any two operating systems you know.

Answers

Answer:

software and hardware

2 operating systems are windows and iOS

Taylor needs to remove the text to the left of his cursor. Which of the following keys should he press?

Answers

Answer:

bacspace not delete

Explanation:

delete erases on the right not left

Backspace he should press to remove the text to the left of his cursor.

What is cursor?

A cursor is an indicator used in computer user interfaces to show the current position for user interaction on a computer monitor or other display device that responds to input from a text input or pointing device. Because of its usage resemblance to a pointing stick, the mouse cursor is also known as a pointer. Cursor is a Latin word that means "runner." The transparent slide engraved with a hairline that is used to mark a point on a slide rule is known as a cursor. By example, the word was later transferred to computers. On November 14, 1963, while attending a computer graphics conference in Reno, Nevada, Douglas Engelbart of the Augmentation Research Center (ARC) expressed his desire to pursue his goal of developing both software and hardware computer technology to "augment" human intelligence by pondering how and where to adapt the underlying principles of the planimeter to inputting X- and Y-coordinate data.

To learn more about cursor
https://brainly.com/question/12406758

#SPJ2

Question # 1
Multiple Select
You already now about some collections. Which of the following is a type of collection in Python? Select 2 options.

group

dataset

ordered set

list

deque

Answers

Answer:dataset

Explanation:

data set because it is kida a set

Answer:

A list, and a deque.

Explanation:

Why am i right? Because i am.. TRUST ME ITS RIGHT YW EVERYONE! :3

What affect did the Scopes trial have on the school curriculum in Tennessee?
It changed the curriculum to include creationism in science classes.
It did not change the curriculum because Bryan died shortly after the trial.
It changed the curriculum to include evolution in science classes.
It did not change the curriculum because Scopes lost the case.

Answers

D)It did not change the curriculum because Scopes lost the case.

The effect that Scopes trial had on the school curriculum in Tennessee is that

It did not change the curriculum because Scopes lost the case.

The Scopes trial

The scopes trial was a trial that involved a high school teacher called Scopes and the government of the United States.

This trial took place at the time where the US was subject to very serious Christian beliefs.

The reason for the trials was that Scopes had taught evolution in the classroom.

Read more on the Scopes trial here:

https://brainly.com/question/874883

Choose the proper term to describe each of the following examples.
senate.gov:____
23.67.220.123:_____

SMTP acc name
Domain name
IP address

Answers

Answer:

senate.gov: Domain Name

23.67.220.123: IP Address

Explanation:

We need to choose the proper term to describe:

a) senate.gov

It is called Domain Name

The domain name is a component of a URL (uniform resource locator ) used to access web sites

b) 23.67.220.123

It is called IP address.

IP address is defined as unique string of characters that is used to uniquely identify each computer in the network.

How can you continue learning about computer science and improve your coding abilities?

Answers

Answer:

5 Ways to Improve Your Coding and Programming Skills

Take advantage of books and other free resources. ...

Sign up for a bootcamp. ...

Practice, practice, practice. ...

Engage with the computer science community. ...

Pursue a formal education in computer science.

Other Questions
Why do phase changes occur?1. Compare: Set the Water temperature to 0 C and click Play. Observe the water molecules.Click Reset, set the Water temperature to 100 C, and click Play again.What do you notice? The water molecules are moving slightly faster at 100 C than at 0 C.[Note: This difference may be too small to observe easily.]2. Observe: Click Reset. The mean molecular speed of the water molecules is displayedbelow the container. Set the Water temperature to 0 C and Add/remove heat energy to400 J/s. Click Play.A. How does the mean speed of the water molecules change as they are heated?The average speed of water molecules increases as they are heated.B. Does the mean molecular speed change as much as the temperature as thewater heats up? Explain.Sample answer: For each degree of temperature change, the mean molecularspeed increases by about 1 m/s. At 100 C, the mean molecular speed is about17% faster than at 0 C.3. Explain: How is temperature related to the motions of molecules?The higher the temperature, the faster the molecules move.4. Observe: Click Reset. Set the Water temperature to 20 C and the Ice volume to 50 cc.Set Add/remove heat energy to 0 J/s. Click Play. How do the molecules in the liquidinteract with the molecules in the solid?The molecules of the liquid collide with the molecules of solid, gradually breaking the bondsbetween the molecules in the solid and causing the ice to melt. please help me asap Who was the established groups in Postville before the in-migration? What were their expectations of each of the new groups Jeremy find the cost by adding the percents. 25% off of $60 is equal to 15% off of $60, then subtracting 10% from that cost is equal to . The two total costs are HELP!!BRAINLIEST AND 10 POINTS !! Complete the analogyREBEL : ORTHODOXY :: (A) nonconformist : convention(B) radical : revolution (C) soldier : combat (D) scientist : theory Which statement illustrates bias in scientific research?A zoologist publishes incomplete data on sloths which supports their original hypothesis and notes that more research is required.A botanist publishes data about plant growth that does not support their original hypothesis and is replicable.An ecologist publishes data funded by a construction company which supports their original hypothesis that an endangered animal's territory is not endangered.A microbiologist publishes data funded by the National Institutes of Health that does not support their original hypothesis. Help me please!!! I need a short letter, using basic or simple teems, words, vocabulary. I would like to be Cabinet member perspective. But Natives is also fine with me. Thanks. Please need help Choose the words that complete the following sentence.Direct quotes needaround them, or else it is considered(1 point)O quotation marks/summarizingO quotation marks/plagiarismO parentheses/summarizingO parentheses/plagiarism I love you. You are worth it. What does this quote mean? Thanks! Ayala is making salad dressing. She mixes oil andvinegar in a blender until a smooth consistency isformed. Explain whether this is a heterogeneous or ahomogeneous mixture and why. Help?Jessica must determine how many packages of cookies and cupcakes to buy for her family reunion. Jessica's mother has asked her to buy the same number of each type of item but no more than 100 of each. At the bakery, Jessica finds that cookies are sold in packages of 12 and cupcakes are sold in packages of 9.Use the drop-down menus to select the answers that make each statement true.The greatest number of packages that Jessica can buy is _ packages of cookies and _ packages of cupcakes. explain what happens when particles collide When a story is told from the _____, the narrator has full knowledge of all the characters. omniscient third-person point of view reliable first-person point of view unreliable first-person point of view limited third-person point of view The product of the ages of two adults is 572. Find their ages. Guys, I need help ASAP!! The standard deviation of the following data set is 0.31. 95% of the data would fall in which range?4.3, 5.1, 3.9, 4.5, 4.4, 4.9, 5.0, 4.7, 4.1, 4.6, 4.4, 4.3, 4.8, 4.4, 4.2, 4.5, 4.4Pr (3.88 X 5.12)Pr (2.67 X 5.33)Pr (4.19 X 4.81)Pr (3.57 X 5.43) ATG AATTCTCAATTACCTTACTTAA GAGTTAATGGAHow many pieces of DNA would result from this cut a student performed an experiment, using a cocktail peanut, before it was burned the peanut half weighed .353 g. After burning the residue weighed .016 g. The energy released by the conjunction increased the temperature of 200. mL of water in the calorimeter by 7.2 degrees Celsius. Calculate the mass of peanut consumed in the combustion. twice the sum of k and 9 is 4