Answer:
Software as a service
Explanation:
You may hear this as (SaaS) for short.
You have the following code:
----------------------------------------------------------------------------------------------
fruit_list = ["strawberries", "bananas", "apples", "grapes"]
total_cost = 0
for fruit in fruit_list:
if fruit in ["apples","bananas"]:
total_cost += 3
elif fruit == "cantaloupe":
total_cost += 5
elif fruit in ["raspberries","strawberries","grapes"]:
total_cost += 4
-------------------------------------------------------------------------------------------------
What will be the value of total_cost?
A.13
B.14
C.15
D.7
Answer:
7
Explanation:
We already have the functions that tells us how much to add. If you add all this, you will get 12. HOWEVER because cantaloupe is in the list, the computer does not count that. So if we add that again without 5(how much the cantaloupe costs), we get 7.
In an array, the element is ______________________________. group of answer choices all of the data stored in the array the location of an individual piece of data in the array an individual piece of data stored in the array the dimensions of the array
Answer:
An individual piece of data stored in the array
Explanation:
Development
Select the correct answer from each drop-down menu.
What is DHTML?
DHTML is ______ . It’s allows you to add functionality such as ______
The answer options for part 1 are A: an updated version of html B: a version of html meant for mobile devices or C: a set of technologies that allows developers to create interactive websites. Part 2 answer options are A:loading pages in the background B:automatic sign in or C: drop down menus and roll over text
Answer:
Part 1: C
Part 2: C
Explanations:
Answer
DHTML is ______. It allows you to add functionality such as ______
a set of technologies that allows developers to create interactive websites drop-down menus and rollover textI hope this help
BTW PLATO
Discuss the variety of shapes and sizes in which cases come for desktops, laptops, tablets, smartphones, portable media devices, and game consoles.
Modern computers are comes in a multitude of designs, sizes, and designs. There is a computer form to suit each use, whether it's a massive tower under a desk or a small brick the size of, well, a brick.
How is a laptop different from a desktop?A desktop uses an external monitor, keyboard, and mouse to be used at work or at home, whereas a laptop has all of these components integrated in and can be easily transferred as a single device that can be used in a number of locations.
Thus, Modern computers are comes in a multitude of designs, sizes, and designs.
For more information about laptop different from a desktop, click here:
https://brainly.com/question/19340665
#SPJ1
a computer is made up of four different types of devices which are
A computer is made up of four different types of devices which are input, storage, processing and output devices.
What are computer devices?Computer devices are those components of computer known as the computer hardware that ensures the proper functioning of the system.
The four different types of devices found in the computer are :
Input devices: These are used to put in data into the system.Storage device:. These are used for storage of processed data.Processing device: This is the brain box of the computer.Output devices: They are used to display data.Learn more about hardware here:
https://brainly.com/question/24370161
#SPJ1
6.25 lab: even/odd values in a vector write a program that reads a list of integers, and outputs whether the list contains all even numbers, odd numbers, or neither. the input begins with an integer indicating the number of integers that follow. ex: if the input is:
def is_list_even(my_list):
for i in my_list:
if(i%2 != 0):
return False
return True
def is_list_odd(my_list):
for i in my_list:
if(i%2 == 0):
return False
return True
def main():
n = int(input())
lst = []
for i in range(n):
lst.append(int(input()))
if(is_list_even(lst)):
print('all even')
elif(is_list_odd(lst)):
print('all odd')
else:
print('not even or odd')
if __name__ == '__main__':
main()
After selecting the entire document what is the quickest way.
Answer:
The Quickest way to what I will re-answer the question once you clarify this
Explanation:
???????????????
If you were referencing an e-book what would be the proper citation format?.
Answer:
Use the standard in-text citation format of author's surname and year of publication to cite an ebook in your work. Include the author's last name and first initial, the year of publication, the italics title of the book, as well as the retrieval information or DOI number in an APA reference list entry.
Hope this helped you! I would appreciate a Brainliest if you wouldn't mind.
How have cloud and 5g helped make extended reality (xr) technology more accessible to a wide audience?.
Cloud and 5G helped make extended reality (XR) technology more accessible to a wide audience by tracking as well as managing activity of users in extended reality using blockchain databases.
What is Cloud and 5G?
5G technology is bringing major improvements to the cloud computing. Most technology innovations can be more efficient when they are cloud-dependent. 5G makes communications more smoother and faster.
This activity is managed by the database management.
Thus, Cloud and 5G helped make extended reality (XR) technology more accessible to a wide audience by tracking as well as managing activity of users in extended reality using blockchain databases.
Learn more about Cloud and 5G.
https://brainly.com/question/11973901
#SPJ1
Alma will make the honor roll if she has at least a 3.80 GPA and misses less than 5 days of school in a year. In which of the following cases will Alma make honor roll?
1. Alma has a 3.84 GPA and misses 5 days of school
2. Alma has a 3.78 GPA and misses 2 days of school
3. Alma has a 3.68 GPA and misses 6 days of school
4. Alma has a 3.81 GPA and misses 3 days of school
Answer: 4. Alma has a 3.81 GPA and misses 3 days of school
Explanation: The others don't meet the requirments.
The only case where Alma will make honor roll is the fourth case where she has a 3.81 GPA and misses 3 days of school.
What is GPA?GPA stands for Grade Point Average, and it is a measure of a student's academic performance in a given period.
It is calculated by assigning a numerical value to each grade received in a course and then averaging those values.
Based on the given criteria, Alma will make honor roll if she has at least a 3.80 GPA and misses less than 5 days of school in a year.
Alma has a 3.84 GPA and misses 5 days of school: Alma has the required GPA, but she misses 5 days of school which is greater than the allowed 5 days. Therefore, she will not make honor roll.
Alma has a 3.78 GPA and misses 2 days of school: Alma misses less than 5 days of school, but her GPA is less than the required 3.80. Therefore, she will not make honor roll.
Alma has a 3.68 GPA and misses 6 days of school: Alma misses more than 5 days of school, and her GPA is less than the required 3.80. Therefore, she will not make honor roll.
Alma has a 3.81 GPA and misses 3 days of school: Alma has the required GPA and misses less than 5 days of school. Therefore, she will make honor roll.
Thus, Alma will only make honour roll if she has a 3.81 GPA and misses three days of school in the fourth case.
For more details regarding GPA, visit:
https://brainly.com/question/15170636
#SPJ2
CODEHS: WHY is it important to know the difference between div and span?
Span and div are both generic HTML elements that group together related parts of a web page. However, they serve different functions. A div element is used for block-level organization and styling of page elements, whereas a span element is used for inline organization and styling.
This is about a software called GIMP
Answer:
The answer is Stroke
Explanation:
Stroke outlines objects on a layer
Answer:
The correct answer is Stroke.
Explanation:
Go to the Edit menu now and from here, click on the Stroke Selection option. A dialog box will open up where you need to select the Stroke Line option and then set up various options like solid line, line style, dash pattern, line width, etc. After setting up these options, press the Stroke option, and wooo u did it!
Hope this helps:) Goodluck!
Write a program that takes a 10-digit phone number and adds a hyphen in the correct location. Using an input field for the user to enter the information. Also, use a string for instructions on how to enter the phone in the input field.
The python program will request for a ten digit number from the user and formulate a real phone number from it.
How to write a python program to form a real phone number?The program is written in python.
Therefore,
x = input("please write a ten digit number: ")
if len(x) == 10:
a = f"({x[0:3]})"
b = x[3:6]
c = x[7:]
print(a + " " + b + "-" + c)
Code explanation:The variable x is used to store the user's input.If the length of x is equals to 10, then we get the first three terms in bracket, the second three terms and the last 4 terms.Finally, we use delimiters to join the variables as required and print it out.learn more on python here: brainly.com/question/13462052
#SPJ1
Registration on a site can: a.All of these are correct. b.provide information the customer wants. c.furnish data for personalization of communications. d.provide an email address for CRM contacts.
Answer:
A
Explanation:
i would say A, there are of course sites that dont include all of that but if you want to make a very good registration site than do all of that above
Because of the Patriot Act of 2001, law enforcement officials:
OA. can access your email
activity more easily.
OB. must periodically check your online activity.
OC. are not authorized to monitor your emails.
OD. need permission to view your text messages.
Based on the Patriot Act of 2001, law enforcement officials must periodically check your online activity.
What is the role of Patriot Act ?The USA Patriot Act is known to be an Act that hinders and punishes terrorist attacks that is done in any part of the United States and abroad via enhanced law enforcement and others.
Therefore, Based on the Patriot Act of 2001, law enforcement officials must periodically check your online activity to see if there is threat to national security.
Learn more about Patriot Act from
https://brainly.com/question/25741451
#SPJ1
Answer:
A, can access your email activity more easily
Explanation:
Trust me its correct
what ctrl to show the font dialog box
Answer:
Ctrl + D key [Same time]
Explanation:
Using this imput will allow you to see the font dialog box :D
Have a great day <3
At Universal Containers, the sales managers would like Opportunities that have NOT been updated in the past 30 days to automatically be flagged. How should a System Administrator implement this requirement
The System Administrator implement and Create a formula field to calculate the time since last update and display an image of a red flag if it meets the defined criteria.
What is a Formula field?This is known to be a read-only fields that often calculate a value through the use of other fields or a given formula.
Note that The System Administrator implement his requirement and Create a formula field to calculate the time since last update and display an image of a red flag if it meets the defined criteria.
Learn more about System Administrator from
https://brainly.com/question/27129590
#SPJ1
A company organizes all of its client database in order of the amount of money that the account is worth. When a new account is added, it is placed in the correct order in the database based on the worth of the account. Which classic algorithm would be best suited to perform this function
Answer:
The addition and count algorithm
Explanation:
The classic algorithm that would be best suited to perform this function is the insertion sort algorithm. The correct option is 2.
What is insertion sort algorithm?Insertion sort is a simple sorting algorithm that is useful for sorting small databases because it is efficient for small datasets.
Iterating through an array or list and inserting each element into its proper position in the sorted sequence is how it works.
The database is sorted in this scenario based on the amount of money the account is worth. When a new account is added, it must be placed in the appropriate position in the sorted sequence.
Insertion sort can insert a new account into its correct position in the database while keeping the sorted order.
Thus, the correct option is 2.
For more details regarding insertion sort algorithm, visit:
https://brainly.com/question/13326461
#SPJ2
Your question seems incomplete, the probable complete question is:
A company organizes all of its client database in order of the amount of money that the account is worth. When a new account is added, it is placed in the correct order in the database based on the worth of the account. Which classic algorithm would be best suited to perform this function
Linear/Sequential Search Insertion Sort Selection Sort None of theseOf the five classic components of every computer system, two of these constitute the CPU or microprocessor. Select the correct answers. Group of answer choices Input Devices Datapath Storage RAM Output Devices Control
The option on the five classic components of every computer system that is made up of the CPU or microprocessor is Control.
What is the control unit?The control unit (CU) is known to be a part of a computer's central processing unit (CPU) that helps to show the way for the operation of the system to work.
Therefore, The option on the five classic components of every computer system that is made up of the CPU or microprocessor is Control.
Learn more about Control unit from
https://brainly.com/question/12974626
SPJ4
Which email protocol allows an email client to download email messages to the local computer?.
Answer:
The protocol is called Post Office Protocol version 3(POP3)
Explanation:
Hope this helps!
True or false. The send e-mail feature, listed under tools, will allow you to send an e-mail to your instructor and to fellow students directly from your online course in blackboard.
Answer:
TRUEExplanation: please mark me brainliest
The logo for Ask search engine
and pls no links
Answer:
Explanation:
hope it helps
Date Underline the correct answer from the options. 1. How many basic input devices does a desktop computer have? .. a)2 b)3 c) 1 d)4 2. The computer equipmentwhich feeds the computer with data is called. a) Storage device b) Processing device c) Diskette d) Input device 3.When an output is displayed in a printed form it is termed as a) Softcopy output b) File c) Document d) Hardcopy output
4. Which computer device will convert human voice into digital voice? a) Projector b) Loudspeaker c) Microphone d) Joy. 5) All the following are hardcopy output devices except a) Photocopier b) Printer c) Projector d) Plott
Answer:
1. 3
2. D (Input Device)
3. B (File)
4. C (Microphone
You will participate in a Discussion Board with your peers to express your ideas on the unit topics. In this Discussion Board, prepare a post based on the following.
After reviewing your work for Unique Physique, the owner would like your input regarding the future of the company. In two or more paragraphs, provide your thoughts on the trends and forecasts possibilities for the gym. Also, discuss the benefits of producing the flyer for the business, what affects the presentation will have on the business, and which products can be expanded to increase profits.
Respond thoughtfully, then comment on some of the entries of your classmates. Be respectful to others. Refer to the Discussion Rubric for guidance.
The current trends and forecasts possibilities for the gym are:
Home exercise gym. .Strength training that is made up of free weights.Personal Training, etc.What is the future of fitness?Exercise, health and wellness is one that is often been transformed and as such, gyms providers of fitness need to upgrade themselves both inside and outside their walls and thus make a change that can reach new customers.
Note therefore, The current trends and forecasts possibilities for the gym are:
Home exercise gym. .Strength training that is made up of free weights.Personal Training, etc.Learn more about gym from
https://brainly.com/question/1365564
#SPJ1
A____
interprets an audio or video signal and compresses it.
Codec
Frequency
Bit rate
RGB
Answer:
Codec
Explanation:
A codec (encoder/decoder) is a piece of hardware or software that interprets an audio or video signal and compresses it.
HOPE THIS HELPS AND HAVE A NICE DAY <3
Android os is developed by
Answer:
It is developed by G oogle
Explanation:
Android os is developed by G oogle. It launched in 2008.
The main function of a(n) ____________________ is to centralize access control for the network by keeping an eye on both inbound and outbound traffic and preventing unauthorized users and malicious code from entering a network. .
Advantages of using Unicode to represent data
can I have some help?
the ________ is part of the processor that manages the movement of data through the cpu.
Answer:
The control unit is part of the processor that manages the movement of data through the cpu.
Explanation: