Answer:
E
Explanation:
What Is a Zero-Sum Game? Zero-sum is a situation in game theory in which one person's gain is equivalent to another's loss, so the net change in wealth or benefit is zero.
Which term best describes these lines?
count = 0
loop through list
if “basketball” is found
add one to count
output count
A.
Python 3 code
B.
selection program
C.
pseudocode
D.
sequential program
Answer: ln what áreas is leslie's overspending hurting her budget
Explanation:
Answer ASAP and I'll give brainliest, thanks, and five stars!
Answer:
The students who buy lunch are not getting enough time to socialize/ eat lunch because they spent it standing in line
Explanation:
That would be my guess, hope this helps
Answer:
hers is right, go ahead and give her brainliest
Explanation:
What will be the result of the following lines of CSS?
body{
background-color:yellow;
}
A.
The background of the header will be yellow.
B.
The text will be highlighted yellow.
C.
The background of the body of the webpage will be yellow.
D.
The photo will change to a yellow box if the user clicks on the photo.
Answer:
C.
Explanation:
The correct option that explains the result of the given lines of CSS is:
C. The background of the body of the webpage will be yellow.
The CSS code provided sets the background color of the body element to yellow. The "body" selector targets the entire body of the webpage, and the "background-color" property sets the background color to yellow. This means that the background of the entire webpage will be displayed in yellow.
Answer:
C. The background of the body of the webpage will be yellow.
Question 1(Multiple Choice Worth 5 points)
(03.01 MC)
Which line of code will only allow a non-decimal point to be stored in a variable?
candyCost = int(input("How much is the candy?"))
candyCost = input("How much is the candy?")
candyCost = float(input("How much is the candy?"))
candyCost = str(input("How much is the candy?"))
Question 2(Multiple Choice Worth 5 points)
(03.01 MC)
Cheri's teacher asked her to write a program using the input() function. What will this allow her program to do?
Add comments to the code
Allow others to understand the code
Display a string on the screen
Make the program interactive
Question 3(Multiple Choice Worth 5 points)
(03.01 MC)
Jabari is writing a program which prompts a user for a value that is negative and has a decimal. Which function should he use?
float()
int()
print()
string()
Question 4(Multiple Choice Worth 5 points)
(03.01 LC)
In programming, what is a string?
A cable that connects a computer to hardware
A method of threading code into a computer
A system of organizing letters alphabetically
A way to store a sequence of letters, numbers, or symbols
Question 5(Multiple Choice Worth 5 points)
(03.01 LC)
Which function converts the user's input to a number without a decimal?
float()
int()
print()
string()
Answer:
b
Explanation:
it's not a c or d and now I have to make it 20 characters long so I will do this
what is a late object and early object java learning and explained which is the best to learn
Answer:
DESCRIPTION
Brief Java: Early Objects, 9th Edition focuses on the essentials of effective learning and is suitable for a two-semester introduction to programming sequence. This text requires no prior programming experience and only a modest amount of high school algebra. Objects and classes from the standard library are used where appropriate in early sections with coverage on object-oriented design starting in Chapter 8. This gradual approach allows students to use objects throughout their study of the core algorithmic topics, without teaching bad habits that must be un-learned later.
Choosing the enhanced eText format allows students to develop their coding skills using targeted, progressive interactivities designed to integrate with the eText. All sections include built-in activities, open-ended review exercises, programming exercises, and projects to help students practice programming and build confidence. These activities go far beyond simplistic multiple-choice questions and animations. They have been designed to guide students along a learning path for mastering the complexities of programming. Students demonstrate comprehension of programming structures, then practice programming with simple steps in scaffolded settings, and finally write complete, automatically graded programs.
The perpetual access VitalSource Enhanced eText, when integrated with your school’s learning management system, provides the capability to monitor student progress in VitalSource SCORECenter and track grades for homework or participation.
Enhanced eText and interactive functionality available through select vendors and may require LMS integration approval for SCORECenter.
Explanation:
Choose one social media platform as the subject for an essay. Answer the following questions about this platform in your essay:
When was this platform launched and who were the founders?
What did the founders intend this platform to do for people or society?
Does the platform function as the founders intended, or has the platform evolved over time or had unexpected uses?
How many users does the platform have now? How many unique visitors each day? Add any other interesting statistics you find.
Do you think this platform is becoming more or less popular? What do you predict will happen to it in the future?
Your essay should be between 300-500 words and must use at least six sources for information. At least one of your sources should be from the traditional print media: newspaper, magazine, book, or encyclopedia, though you may access this on the internet. Cite your sources of information, using quotation marks and footnotes when you use a portion of text from a source. Make sure your essay has an introductory paragraph and a conclusion paragraph.
Answer:
COPY AND PASTE!
Explanation:
that's to much to read.
1. What do you think is the most important event in the history of the internet? What event has had the biggest impact on your daily life?
Answer:
The biggest event in internet history was YuTubers punching each other in the face. Months of hype came to a peak Saturday for the self-declared “biggest event in internet history” a boxing match between two YuTube celebrities in Manchester, England.
Explanation:
There is no particular event but the whole journey till now which shaped my personality. Every person even if they are the worst has something good in them.
Which type of cyber crime offender requires the highest percentage of risk management in terms of computer monitoring?
A) Sex offenders
B) Identity thieves
C) Low-Risk offenders
D) hackers
Answer: D
Explanation: Hackers are the only type of cyber criminal that monitors your computer
Question 1 (2 points)
What is a written list of instructions (recipes, assembly instructions, etc.)?
Question 1 options:
Algorithm
Syntax
Flowchart
Pseudocode
Question 2 (2 points)
What is a series of instructions that are used to solve a specific problem?
Question 2 options:
Algorithm
Pseudocode
Syntax
Flowchart
Question 3 (2 points)
What is a graphical representation of a computer program in relation to it works?
Question 3 options:
Flowchart
Pseudocode
Algorithm
Syntax
Question 4 (2 points)
What is the sequence of words/symbols that are used to form a correctly structured sentence/program called?
Question 4 options:
Syntax
Pseudocode
Flowchart
Algorithm
Question 5 (2 points)
IF/THEN statements are part of what we know as Syntax.
Question 5 options:
True
False
Answer:
2. 2. 1. 4. I'm not to sure about the last one
Can someone please help me with fixing this bug? (Ten points if you are able to help me)
Answer:try to power of phone then power back on clear briny( history) and go back to it
Explanation:
Advantages and disadvantages of using the command-line interface to manage files and folders
PLZ HELP I WILL MARK YOU AS BRAINLIEST ASAP
4.5.4 Correct Portion is complicated can you help
Answer:
Explanation:
# Amount of food and number of people
tons_of_food = 0.07
num_people = 25
# Determine how much food each person gets
tons_of_food_per_person =round(tons_of_food)/ round(num_people)
print(tons_of_food_per_person)
# Ask the user how much food they took
tons_taken = float(input("How many tons of food did you take? "))
if round(tons_taken, 5) == round(tons_of_food_per_person, 5):
print ("Good job, you took the right amount of food!")
else:
print ("You took the wrong amount of food!")
what is the answer i need them now pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls
Answer: Insert ribbon > table drop down menu
Explanation:
Answer:Insert ribbon > table drop down menu
Explanation:
Eliza is the head instructor at a ballet academy. Eliza works in the ______ pathway of the Arts, AV Technology, and Communication cluster.
Question 11 options:
A. AV Technology and Film
B. Printing Technology
C. Journalism and Broadcasting
D. Performing Arts
Your new apartment is too small for your stuff.
(A.) WHAT DO YOU WANT TO DO?
RENT A STORAGE UNIT ($45)
(B.) HAVE A YARD SALE
(C.) ASK A FRIEND TO STORE IT
ps my BALANCE is only $240
Answer:
B, it would be good to get rid of some stuff also your getting extra cash .
One student will be stationed near you in a coffee shop. The other student will be located two miles away from your school. You will need to communicate with one another as you coordinate this event. Pretend you have been given $650 to develop this hunt.
Research the costs of various mobile computing devices.
Write, in a report of at least 250 words, your mobile device purchase recommendations that will best suit the student communication needs of your assignment.
Upload a 250-word report about the geocache treasure hunt that includes the following:
In light of your budget, which device is the best buy for communicating with your fellow student in the coffee shop?
Which device is the best choice for communicating with your fellow student located at your school?
What trade-offs do you need to consider, such as the size of the device vs. features?
Answer:
A LG K92 5G titan Gray that also uses cricket wireless network
Explanation:
It cost 160 bucks plus tacks.
Describe the disadvantages, threats, or problems associated with using message boards.
Answer:
Text-based online discussion necessarily excludes some people
The lack of physical cues in online forums may lead to miscommunication
Busy online discussion forums may cause information overload
Participants may accidentally go off-topic within a particular discussion thread
Hope this helps!
The surgery manager will create a password policy for staff.
Changing passwords regularly is one rule they will include.
Give two other rules they could include in this policy.
Answer:
They could add a rule that you can only use letters in your password. Another rule they could add is your password must start with an uppercase letter and end in an exclamation mark.
Answer:
they should make it to where your password must start with a capitol and end with a special character and make it more customizable
Explanation:
In a minimum of 250 words, discuss the technological problems that can occur when consumers emphasize on speed over security.
Explanation:
--> used brainly simplify :D
Consumers prioritizing speed over security can lead to several technological problems. This includes vulnerabilities and breaches where attackers can exploit weaknesses in software or systems. Malware and phishing attacks become more likely when security measures are overlooked. Weak or simplified authentication and authorization methods can make it easier for unauthorized users to gain access. Neglecting updates and patches leaves devices and systems vulnerable to known threats. Lastly, rushing through secure development practices may result in the inclusion of vulnerabilities in the software itself. To address these issues, consumers should use strong passwords, update their software regularly, and be cautious of suspicious links or emails. Service providers and developers should prioritize security by conducting thorough security assessments and promptly addressing vulnerabilities. Striking a balance between speed and security is crucial for a safe and efficient technological environment.
Emily wishes to work in print media. What career would she choose for this purpose?
a
architect
b
textile designer
c
photographer
d
fashion designer
How do you code things to make shapes out of them and add color
Answer:
go to KhanAcademy and search "Coloring with code" and it should be the first thing at the top
Which file type is typically used to save Microsoft Word files? Group of answer choices DOC MPEG PDF XLSX
Answer:
DOC
Explanation:
It's the common file used.
I NEED HELP!!!!!!!!!
Answer:
2nd Step is to - Look up the shelf where the book belongs
3rd Step is to - Move to the shelf where the book belongs
4th Step is to - Place the book on the shelf
A friend of a friend needs a place to stay. He’s offered you $200 to camp out in your living room.
WHAT DO YOU WANT TO DO?
(A.)SAY YES
(B.)SAY NO
Answer:
A.
i wouldn't say no to that Who would?
Explanation:
Do Graphs need a horizontal and a vertical axis? Yes or no?
A person who breaks into a computer, network, or online site is called
a: Spoofer
b: Hacker
c: Phreak
d: Jacker
Answer:
B: Hacker
Explanation:
literally anything else aren't even real things besides hacker.
Riley receives an email containing several grammatical errors with a link to sign a petition. Which of the following strategies should he use to make sure the email is trustworthy? (5 points) Evaluate source credibility. Fact check. Listen to his gut. Look for authenticity.
The Answer:
Explanation:
You are in the process of creating a form that will be used to obtain customer contact information. You have two goals: Wrap a box around the fields, and add a field to allow customers to type several lines of comments. Select the correct elements to fulfill these two codes.
To wrap a box around the fields in the form, you can use the HTML <fieldset> element. This element is used to group related form fields together and provides a visual boundary around them. Here's an example of how you can use it:
<fieldset>
<legend>Contact Information</legend>
<!-- Your form fields go here -->
</fieldset>
By using the <fieldset> element and providing a <legend> element inside it, you can create a labeled box around the contact information fields.
To add a field that allows customers to type several lines of comments, you can use the HTML <textarea> element. This element creates a multi-line input area where users can enter and edit text. Here's an example:
<textarea name="comments" rows="4" cols="50"></textarea>
In the example above, the <textarea> element is created with the name attribute set to "comments". The rows attribute determines the visible height of the input area, and the cols attribute determines the visible width. Adjust these values according to your desired size.
By incorporating the <fieldset> element to wrap the contact information fields and adding the <textarea> element for customer comments, you can create a form that fulfills both requirements.
To wrap a box around the fields in the form, you can use the HTML <fieldset> element. This element is used to group related form fields together and provides a visual boundary around them.
<fieldset>
<legend>Contact Information</legend>
<!-- Your form fields go here -->
</fieldset>
By using the <fieldset> element and providing a <legend> element inside it, you can create a labeled box around the contact information fields.
To add a field that allows customers to type several lines of comments, you can use the HTML <textarea> element. This element creates a multi-line input area where users can enter and edit text. Here's an example:
<textarea name="comments" rows="4" cols="50"></textarea>
In the example above, the <textarea> element is created with the name attribute set to "comments". The rows attribute determines the visible height of the input area, and the cols attribute determines the visible width. Adjust these values according to your desired size.
By incorporating the <fieldset> element to wrap the contact information fields and adding the <textarea> element for customer comments, you can create a form that fulfills both requirements.
Learn more about text on:
https://brainly.com/question/29784279
#SPJ1
Who needs help, Comment you answer and I'll give the answer.
Quick, answer this please! What happens if you answer bot questions with low points? Like they say they would give you 10+ points but they only have 5 points? I am afraid I might get h a c k e d
Answer:
Hello! I haven't been h a c k e d yet so I'm pretty sure its safe.
Explanation: