6 A command performs:
a) a specific block
b) none of the blocks
c) a chore that I was asked to do
d) only blocks within a loop

6 A Command Performs:a) A Specific Blockb) None Of The Blocksc) A Chore That I Was Asked To Dod) Only

Answers

Answer 1

Answer:D

Explanation:


Related Questions

Jane is applying for an entry-level position as a support specialist at an IT firm. She is creating a résumé and needs to add her current skills.

Which of the following is most relevant to the job?
A. Computer
B. Creativity
C. Math
D. Sensitivity

Answers

A. Computer

I’m sorry if I’m incorrect but I’m pretty sure that right

What patterns do you find within the fractions in the inch on the ruler?

Answers

Answer:

The markings on a standard ruler represent the fractions of an inch. The markings on a ruler from the start to the 1″ mark are: 1⁄16“, 1⁄8“, 3⁄16“, 1⁄4“, 5⁄16“, 3⁄8“, 7⁄16“, 1⁄2“, 9⁄16“, 5⁄8“, 11⁄16“, 3⁄4“, 13⁄16“, 7⁄8“, 15⁄16“, and 1”.

Which Internet connection type tends to use shared bandwidth?
Cable
Dial-up
DSL
ISDN

Answers

Answer:

try dial-up

Explanation:

Answer:

dial up

Explanation:

Which of the following identifies the two reasons why people may not purchase organic produce as often as conventionally grown produce?



the taste and the appearance of the produce


the cost and the convenience of the produce


the convenience and taste of the produce


the appearance and the cost of the produce

look at this question pls help

Answers

Answer:the taste and the appearance of the produce

Explanation:

Pls help with this (20 points again)

Answers

Answer:

1. b

2. c

3. d

4. a

5. e

What is computational thinking?

Answers

Answer:

In education, computational thinking is a set of problem-solving methods that involve expressing problems and their solutions in ways that a computer could also execute.

How is video compression accomplished?
Video compression works by making the pixel size smaller.
Video compression works by removing the sound.
Video compression works by smoothing the pixels.
Video compression works by removing unnecessary parts of frames

Answers

Video compression works by making pixels smaller, so A.

Answer:

A. Video compression works by making the pixel size smaller.

Explanation:

E2020!

Ill give 100 points to whoever gives me the CORRECT answer. I keep getting syntax errors when I do the "add:" part. Can someone walk me through this code?
Part A One of the biggest benefits of writing code inside functions is that we can reuse the code. We simply call it whenever we need it! Let’s take a look at a calculator program that could be rewritten in a more reusable way with functions. Notice that two floats (decimal numbers, but they can also include integers) are inputted by the user, as an operation that the user would like to do. A series of if statements are used to determine what operation the user has chosen, and then, the answer is printed inside a formatted print statement. num1 = float(input("Enter your first number: ")) num2 = float(input("Enter your second number: ")) operation = input("What operation would you like to do? Type add, subtract, multiply, or divide.") if operation == "add": print(num1, "+", num2,"=", num1 + num2) elif operation == "subtract": print(num1, "-", num2,"=", num1 - num2) elif operation == "multiply": print(num1, "*", num2,"=", num1 * num2) elif operation == "divide": print(num1, "/", num2,"=", num1 / num2) else: print("Not a valid operation.") Your job is to rewrite the program using functions. We have already looked at a function that adds two numbers. Using that as a starting point, we could call the add function from within our program in this way: if operation == “add”: result = add(num1, num2) print(num1, "+", num2,"=",result) Now it’s your turn to do the following: Type all of the original code into a new file in REPL.it. Copy the add function from the unit and paste it at the top of your program. Write 3 additional functions: subtract, multiply, and divide. Pay careful attention to the parameters and return statement. Remember to put the three functions at the top of your Python program before your main code. Rewrite the main code so that your functions are called. Part B There are many different ways that a user could tell us that he or she would like to add two numbers in our calculator program. The user could type “add”, “Add”, “ADD”, or “+”, to name a few possibilities. Of cour

Answers

Answer:

sorry but there is not enough information to complete this

Explanation:

working on rewriting my code so i can paste it here! itll be done in a sec

What are the different data types that a variable can be in computer programming?

Answers

Answer:String (or str or text)

Character (or char)

Integer (or int)

Float (or Real)

Boolean (or bool)

Explanation:

(01.01 LC)
Programmers perform which of the following tasks?
Build and maintain network connections
O Create web and mobile applications
O Design graphics for websites
Repair computers and servers

Answers

Answer:

Create web and mobile applacations

Explanation:

Programmers primarily build and maintain software applications, including web and mobile applications.

What is software?

Programmers typically work with software, which is a collection of instructions and programmes that instruct a computer or other electronic device on what to do.

They create, test, and maintain software applications for desktops, mobile devices, and the web using programming languages such as Java, Python, and C++.

Programmers create and maintain software applications, such as web and mobile applications.

They may also design the application's user interface and user experience, but they are not typically in charge of designing graphics for websites.

Furthermore, while programmers may be involved in troubleshooting and resolving issues related to the software application they have created, they are not typically in charge of repairing hardware such as computers and servers.

Thus, the correct answer is "Build and maintain network connections".

For more details regarding software, visit:

https://brainly.com/question/985406

#SPJ2

Your wireless network consists of multiple 802.11n access points that are configured as follows: SSID (hidden): CorpNet Security: WPA2-PSK using AES Frequency: 5.75 GHz Bandwidth per channel: 40 MHz Because of the unique construction of your organization's facility, there are many locations that do not have a clear line of sight between network clients and access points. As a result, radio signals are reflected along multiple paths before finally being received. The result is distorted signals that interfere with each other. What should you do

Answers

Answer:restart your internet box

Explanation:

After reading his e-mail messages, Orlando became very frustrated. Many of the messages he received did not conform to netiquette guidelines. He knew his productivity was being decreased because he wasted time reading these messages. Out of the four messages Orlando read, only one followed the rules. The text of the messages appears below. Which is an appropriate message for the workplace?

Answers

Answer:

We need to talk about the project, please call me.

Explaination:

edge 2021

A privacy prevention technique by using a unique number while installing a
software to prove the software originality.

-Product Keys
-License agreement
-Holograms
-Software permission​

Answers

Product keys ? I’m not too sure on what ur asking

Answer:

Product keys

Explanation:

Write a Python program in Python-IDLE(in Script mode), save and upload in the
classroom for the following. 1) To calculate addition, subtraction, multiplication
of any 2 values which you will input while running the program. 2) To input 5
values, calculate total and average of those five values.
Your answer​

Answers

num1 = int(input(“Enter First Number: “)
num2 = int(input(“Enter Second Number: “)
add_num = num1 + num2
sub_num = num1 - num2
mult_num = num1 * num2
div_num = num1 / num2
print(“Results”)
print(“Addition: “ + add_num)
print(“Subtraction: “ + sub_num)
print(“Multiplication: “ + mult_num)
print(“Division: “ + div_num)

Personal digital assistants are: Group of answer choices artificial intelligence systems that leverage rules or examples to perform a task in a way that mimics applied human expertise. handheld computing devices meant largely for mobile use outside an office setting. systems that provide rewards and usage incentives, typically in exchange for a method that provides a more detailed tracking and recording of customer activity. small chip-based tags that wirelessly emit a unique identifying code for the item that they are attached to. transaction processing systems that capture customer purchases.

Answers

Answer:

its about digital science

Explanation:

Elgin is taking notes for his presentation about how people drink too much soda and other sugary drinks, and he finds information about how some cities and states are taxing sugary beverages at a higher rate to encourage people to make healthier choices. In which portion of Elgin's presentation does this information fit?

Answers

Answer:

a solution to the problem

Explanation:

In organizing his text, the move taken by some cities to help their citizens make better choices will fall into the part where he lists or proffers solutions to the excessive intake of soda and sugary drinks by people. Prior to this part, he might begin by explaining what the problem is, and including data that shows the impact of this problem in the society.

When concluding the text, he may now include details of how the government has intervened in remedying the situation.

what are the two main parts to a VR experience.

Answers

Answer:

The 2 main parts to a VR experience is getting comfortable and interacting with people in the VR if you have friends :3

Explanation:

:3

PLEASE can someone give me some examples of activities I can put on a resume presentation?

I'm a freshman and I didn't really play any sports other than 8th grade volleyball. I really need some examples​

Answers

Answer:

list down extracurriculars (e.x. maybe you attend piano lessons, or you attend an art class during the weekend, or you play football outside of school, etc.)

you can also list any volunteering you do on the side (e.x. maybe you volunteer at your local church or at the local animal shelter), whatever you think counts.

Which step should Rupa take?

Insert tab, Tables group, Draw Table option
Insert tab, Tables group, Insert Table option
Insert tab, Tables group, Quick Tables option
none of the above

Answers

Complete Question:

Rupa would like to quickly insert a table into her document without having to worry about formatting the data in the table. Which step should Rupa take?

Group of answer choices.

A. Insert tab, Tables group, Draw Table option

B. Insert tab, Tables group, Insert Table option

C. Insert tab, Tables group, Quick Tables option

D. none of the above

Answer:

C. Insert tab, Tables group, Quick Tables option

Explanation:

Microsoft Word refers to a word processing software application or program developed by Microsoft Inc. to enable its users to type, format and save text-based documents.

In Microsoft Word 2019, the users are availed with the ability to edit the word document in the following view type;

I. View Mode.

II. Print Mode.

III. Drift Layout.

Quick tables refers to the pre-formatted or pre-created stored in building blocks galleries that are easily accessible to the end users at any time.

In this scenario, Rupa would like to quickly insert a table into her document without having to worry about formatting the data in the table. The steps which Rupa should take are click on Insert tab, Tables group and then select the Quick Tables option.

Which term describes how content in an array is accessed?
brackets

string

subscript

class

Answers

Answer:

the answer is subscript

Explanation:

Describe, with examples, the way in which a defect in software can cause harm to a person, to the environment, or to a company

Answers

Answer:

Losing jobs. Fire. Destruction of property.

Explanation:

Having a company shut down due to lack of protection and having people testify products unsafe. If software blows up it could cause desturction of property therefore causing the effect of many people losing their jobs.

1. Describe a recent modern "story" you heard, read, or saw. Explain how that story taught you an important idea about life, family, or society. Be sure to talk about where/how you heard/read about the story in your description.

2. Describe a simulation game you've played recently or have heard about (you may even propose a simulation game idea yourself). Explain why that game fits the definition ofba simulation.

3. in an age of books, films, television, why are games important?

4 think of a game you enjoy. For that game, Describe some of its objectives, rules, operstion, obstacles, and outcomes.

5. What is the main difference between a video game and other types of games (board games, card games, tag, etc.)? What are the similarities?​

Answers

due to recent times there has been injustice. the movement im talking about is blm or alm. theese rough times when socitey cant agree with each other. during theese times its taught me alot about both sides arguments. may 25 2020 "i cant breathe i cant breathe i cant breathe" george floyed was killed may 25 2020 this is when this whole mess started. building being burnt down to crips. people raiding the streets. people getting hurt. the pain some people felt was to much to handle that they dealt with it wrong. here is were alm comes in. alm all lifes matter, mexican lifes matter, black lifes matter, muslims lifes matter, chinnese life matetr white lifes matter unborn lifes matter and much more. blm supporters disagree that all lifes dont matetr untill black lifes do and that alm didnt exist until blm did. theese tough times taught me society needs to stick togther now more then ever and that the skin tone your size your religon dosent matter just how you treat other.

a simulation game. a stimulation game i propose is a simulation game were you live normal life. get a job pay rent and ect. which would teach kids how to work and how to earn money how to pay taxes. this game would be perfect to teach kids the importance of money and that money isnt earned easy. how i imagine it is the game is all about investing buying a better house getting a good job and not going bankrupt. you could even start a buisness which other players can shop in. this game would be the perfect fun and educational game.

in an age of books, films, television, why are games important? games can come in diffrent forms some teach you how to stay safe. some teach you how to run a buisness. some can even teach you how to invest. game can be educational and fun at the same time! games are great for whenever its raining outside and you have some spare time to get cozy and enjoy a game. some games can even bost your mental strength with puzzels and maze's which help your brain stay healthy.

my favorite game, is a board game monopoly. its a game were you invest in properties and NOT go bankrupt! its a fun game with lots of obstacles i enjoy that you play it with lots of people because in real life you will have obstacles people will try and get in your way.

a video game and a board game. the diffrence is video games can be good but can take a bad turn wuick to much is bad for you and like drugs can become addictive and somtimes even dangerous with hackers. a board game is safe because you just play it with your faimly and friends and there is no virus no hackers. there can be cheaters but much safer than video games. the simarlity is that they both can bost your mental stregth and keep your brain active with lots of thinking on the best move.

this took so long so i hope you like it!

HELP MEEE PLEASE!!!
Match the description with the information system it represents.

1. The use of a computer program to determine the diagnosis of a patient

2. The use of a computer program to forecast an earthquake

3. The use of a computer program to create a presentation

Decision support systems
Knowledge-based system
Office automation system

Answers

Answer:

b goes with 1 c goes with 3 and a goes with 2

Explanation:

The web lab consists of which elements. Select all that apply. Group of answer choices Files Inspector Tool Preview Hints Work Space Instructions

Answers

Answer:

Inspector Tool

Preview

Work Space

Instructions

Explanation:

Web Lab is a function that incorporates HTML in web development. It has functions such as Workspace where the developer writes the body of the website. Preview helps the developer take a look at the final product of what he is creating. Instructions panel provides a list of the different types of html packages that the developer can chose from.

All of these options help the developer produce a website that is up to standard.

the dash area is used for typing and editing the text​

Answers

Explanation:

document area is used for typing and editing the text

7.3.4: Find the Error

Answers

Answer:

my_string = "hello!"

# One of the two lines below will cause an error.

# Each line is an attempt to replace the first

# letter of myString with H. Comment out the

# line you think is incorrect.

# my_string[0] = "H"

my_string = "H" + my_string[1:]

print(my_string)

Explanation:

The numeric or alphanumeric error code is being used to identify the type of error. Following are the description of the error code in the given question:

Incorrect code:

my_string[0] = "H" // this line give the error that is "'str' object does not support item assignment".

Correct code:

my_string = "hello!"#defining the string variable that is "my_string"

my_string = "H" + my_string[1:]#using string variable that perform slicing and hold its value

print(my_string)#print my_string value

Code Explanation:

Defining the string variable that is "my_string".In the next line, the string variable is used that adds "H" to the first index value and performs slicing, and holds its value. Using the print method that prints the "my_string" variable value.

Output:

Please find the attached file.

Find out more about the error here:

brainly.com/question/13106116

Use the drop-down menus
to complete the steps for reducing the mailbox server storage,
1. To access Mailbox Cleanup tools, navigate to_____the tab, and click Cleanup Tools.
2. Once in the Mailbox Cleanup dialog box, there are different options to choose from, such as_____________
or Empty Deleted Items,
3. The____________
function moves items off the server to an online Office 365 folder.

Answers

1. enter back stage view

Answer:

1. File

2. AutoArchive

3. Online Archive

Explanation:

What is a good starting point for data mining?

A. Data Visualization
B. Writing a Data dictionary
C. Non Parametric methods
D. creating a relational database
E. machine learning

Answers

Answer:

A is the answer

Explanation:

hope this help

It is a good starting point for data mining and that is A. Data Visualization.

What is the distinction among data mining and data visualization?

Data Mining is a collection of various sports to extract special styles out of the massive facts units wherein facts units may be retrieved from special facts reassets while Data Visualization is a manner of changing numerical facts into graphical pics like significant 3-D images on the way to be used to analyData Mining data.

Data Visualization. Data mining is a manner of extracting beneficial information, styles, and developments from uncooked facts. Data Visualization refers back to the visible illustration of facts with the assist of complete charts, pics, lists, charts, and different visible objects. It comes below facts science.

Read more about the Data Visualization:

https://brainly.com/question/1822923

#SPJ2

Describe how tuples can be useful with loops over lists and dictionaries, and give Python code examples. Create your own code examples.

Your descriptions and examples should include the following: the zip function, the enumerate function, and the items method.

Answers

Answer:

i dont no

Explanation:

Filtering out the details to leave the general characteristics is referred to as_____.

A. refinement

B. decomposition

C. pattern recognition

D. abstraction

Answers

Answer:  

✔️ A. abstraction

Explanation:

Answer:

abstraction is correct

Explanation:

Other Questions
Can a rhombus be inscribed in a circle? Why or why not?A.)Yes, any rhombus can be inscribed in a circle, because the consecutive angles of a rhombus are congruent.BYes, a square is the only rhombus that can be inscribed in a circle, because the opposite angles of a square are supplementaryC. No, no parallelogram can be inscribed in a circle, because the opposite angles are not necessarily congruent.D. No; no rhombus can be inscribed in a circle, because the opposite angles are not necessarily supplementary Write the 0.5% in two other forms (fraction and percent). A bar magnet has a. one magnetic pole. b. two magnetic poles. c. three magnetic poles. d. four magnetic poles. Help pleaseeeee asapppp! who dies and how in the most dangerous game What is responsible for the unusual ecosystem of the highlands?volcanoes and volcanic activityrivers and river movementshumans and human movementsanimals and animal activity Plz Help The leading brand of cosmetics in the US had about 20% of the total sales in the industry. The total sales were $2.6 billion. What was the leading brands sales? Show your work. I need the shown work, it's an exam. PLEASEEEEEEEEEEEEEEEEREEEEE What problem did the KansasNebraska Act pose for the United States? The act intensified the issue over slavery in the United States Congress. The act called for a gradual end to slavery in the South. The act allowed for African Americans to vote in presidential elections. The act resolved the conflicts between the slave and free states. Which of the following are solutions to the equation below?Check all that apply.4x2 - 81 = 0 I would love so much if someone could help me. This is due tonight... help pls if you do something that doesn't make sense I'll report you I need to solve this triangle. PLSSS help!!!!!!!!!! need help with this problem Suppose at December 31 of a recent year, the following information (in thousands) was available for sunglasses manufacturer Oakley Inc.: ending inventory $170,000; beginning inventory $125,000; cost of goods sold $351,050 and sales revenue $761,000. a. Calculate the inventory turnover for Oakley, Inc. b. Calculate the days in inventory for Oakley, Inc. Giselle spent 7/10 of her money on a book and 10/100 of her money on food. What fraction of her money did she spend altogether? SASAGEYO SASAGEYO SHINZOU WO SASAGEYO Please help please giving out brainless Southern states were known as all of the below EXEPT... A. Confederate States B. Rebels C. Union D. Supporters of States' Rights Discuss the foreshadowing in Noras conversation with Anne-Marie