Answer:
def draw
Explanation:
did the testt
Answer:
second option
Explanation:
Notice that the word rushes is bolded in the passage.
Based on the text, what can be inferred about rushes?
O Rushes are a type of shady tree.
O Rushes are a type of fish.
O Rushes are a type of water plant.
Rushes are a type of hedge or bush.
Answer:
Rushes are a type of water plant.
Explanation:
Answer:
Its C
Explanation:
What is the initial step that an information security manager would take during the requirements gathering phase of an IT project to avoid project failure?
Answer:
Ensure that the business problem is clearly understood before working on the solution.
Explanation:
To avoid project failure, the initial step in the requirement gathering phase of an IT project is the basic understanding of the real and actual motivation that is behind what is required.
A good and concise understanding of the problem is needed first before a solution can be offered to this problem. If the business problem is unknown or not understood then the project would likely end up as a failure because the solution offered may not be the right one.
There is a feature that allows you to lock the document, to avoid others making changes. t/f
Answer:
true
Explanation:
i have the same class
Answer:true
Explanation:
I took the test and it was correct
What is a programming language?
Answer: it’s C
Explanation:
oops i meant A
Employing the use of a(n)
will help you manage a STEM project.
Answer:
technicians
Explanation:
the answer is technicians. in my freshmen year we made flash cards and i still have them so i remember it.
Answer: technicians
Explanation:
my teacher told me and I passed so its right
4.7 Code Practice: Question 1
for x in range(20, 31):
print(x, end=" ")
I hope this helps!
The program prints all the integers from 20 up to and including 30 on the same line. The program written in python 3 goes thus :
for num in range(20,31):
#use a for statement to loop through all the integers between 20 and 30(inclusive)
print(num, end =' ')
#print each iterated value, followed by a space with the cursor remaining on the same line.
A sample run of the program is attached.
Learn more :https://brainly.com/question/18855444
7.4 Code Practice: Question 2
Adjust the code you wrote for the last problem to allow for weighted classes. Add a parameter weighted ( 1 = yes, 0 = no) and then return the correct number for the GPA. Weighted classes get one extra point on the GPA value.
I could really use some help on this and 7.5 (I’ll ask that question for 7.5 later)
def GPAcalc(grade, weighted):
grade = grade.lower()
dictionary = {"a": 4, "b": 3, "c": 2, "d": 1, "f": 0}
if weighted == 1 and grade in dictionary:
return "Your GPA score is: "+str(dictionary[grade] + 1)
elif weighted == 0 and grade in dictionary:
return "Your GPA score is : "+str(dictionary[grade])
else:
return "Invalid"
print(GPAcalc(input("Input a letter grade: "), int(input("Is it weigthed? (1= yes, 0= no)"))))
I modified the code a bit to cut down on the use of if and elif statements. If you need me to change it, I will. Best of luck.
The program is an illustration of conditional statements.
Conditional statements are statements whose execution is dependent on its truth value.
The program in Python, where comments are used to explain each line is as follows:
#This initializes the dictionary
dict = {"a": 4, "b": 3, "c": 2, "d": 1, "f": 0}
#This gets input for grade
grade = input().lower()
#This gets input for the weighted average
weighted = int(input())
#If the weighted average is 1, and the grade is in the dictionary
if weighted == 1 and grade in dictionary:
#This prints the GPA score
print("Your GPA score is: "+str(dict[grade] + 1))
#If the weighted average is 0, and the grade is in the dictionary
elif weighted == 0 and grade in dictionary:
#This prints the GPA score
print("Your GPA score is : "+str(dict[grade]))
#Otherwise
else:
#The grade is invalid
print("Invalid")
Read more about similar programs at:
https://brainly.com/question/19241597
Resources that doesn't go back to their normal state after being used are *
Answer:
nonrenewable resources
Explanation:
There are primarily two types of resources: renewable and non-renewable. The main difference between the two is that the renewable resources can be replenished while the non-renewable resources cannot be replenished.
Examples of non-renewable resources: coal, oil and natural gas. These are called "fossil fuels." Although they only have a limited supply, most of our human activities are dependent on these fossil fuels, which threatens their depletion.
I want to get an output picture in python but it says this. I'm using turtle
Uploading Your Work
Assignment Upload: Using PowerPoint
Active
Instructions
Click the links to open the resources below. These resources will help you complete the assignment. Once you have created your
file(s) and are ready to upload your assignment, click the Add Files button below and select each file from your desktop or network
folder. Upload each file separately.
Your work will not be submitted to your teacher until you click Submit.
Documents
Uploading Your Work Directions
Clip Art and Media Clips Student Guide
Animations and Photo Albums Student Guide
Customizing SmartArt Graphics and Tables Student Guide
Don’t know how to do this and could really use some help please!!!!!!!
Answer:
Easy all you have to do is upload one assignment at a time and follow all the other directions!
Explanation:
_Hope_this_helps! >O<
Why are my earbuds not working and how can I fix them ?
TmT
Answer:
Are they working yet, Sleepy?
Explanation:
Which. Option tilts the image both horizantly and vertically be degrees
Which of the following correctly declares and initializes a Scanner object that will use input from the keyboard as its data source? *
1. Scanner keyboard = new (System.in);
2. Scanner keyboard = new Scanner (keyboard);
3. Scanner = new Scanner(System.in);
4. Scanner keyboard = new Scanner (System.in);
Answer:
it 4
Explanation:
Electronic type is often considered to be the latest step in the evolution of the written ______________.
A
papers
B
word
C
people
WILL GIVE BRAINLIEST!!!!!!!
In MECHANICAL systems, we use valves to control where the flow of the liquid goes
True
False
Cryptography has requirements include:
A. easy to compute and not invertible
B. tamper-resistant
C. collision-resistant
D. All the above
Answer:
A
Explanation:
Cryptography is the study of secure communications techniques that allow only the sender and intended recipient of a message to view its contents. ... When transmitting electronic data, the most common use of cryptography is to encrypt and decrypt email and other plain-text messages.
PLZ help
In three to five sentences, compare and contrast paraphrasing and summarizing.
To put simply,paraphrasing refers to the conversion of the original or the concerned source material into the own or personal words of the reader or the interpreter.In contrast,summarizing mainly refers to the conversion of the main idea/s,concept/s or content of any original text or source material into the writer's or interpreter's own words.
Explanation:Paraphrasing commonly engages putting any original text of any source material into the own words of the reader or the interpreter of the material.On the other hand,summarizing mainly involves converting the central idea/s or the content/s of the source material into the own words of the reader or interpreter of the source material.
Paraphrasing involves selection of any specific broader section or part of the source material and its conversion into a shorter version in terms of the own words of the reader or the interpreter,whereas,summarizing construes selection of the overall of main idea/s or content of the source material and putting it into a condensed form,expressed in the own words of the reader or interpreter.
Question #3
Multiple Select
Which statements are true about a user-defined data type? Select 3 options.
It can only include one data type.
I
It can include bool data.
It cannot be changed once you define it.
It can include string data.
O It can include numeric data,
An attribute of a piece of data known as a “data type” instructs a computer system how to interpret that data's value.
What are the different type data type and their uses?Data is categorized into different types by a data type, which informs the compiler or interpreter of the programmer's intended usage of the data.
Most computer languages provide a variety of data types, including integer, real, character or string, and Boolean.
The operations that can be performed to create, alter, and use the variable in another calculation without running the risk are specified by the data type.
Knowing the various types of data makes it easier to make sure that the values of each property are as expected and that the data is gathered in the right format.
A programming language is said to be strongly typed if it only permits operations on variables that respect their data type.
Therefore, It can include string data, bool data, numeric data.
Learn more about data type here:
https://brainly.com/question/14581918
#SPJ2
Answer:
A D E
Explanation:
The Scrum team is Using Kanban board to make work Visibility available to all. What cannot visible? a) percentage Completion b) Task move from left to Right
Answer:
a) percentage Completion
Explanation:
A Kanban board is a digital panel divided into five columns where work teams can view a job until its execution and thus optimize the flow of completed jobs, in addition to allowing the full execution of tasks. These columns are named refers to each phase of the production of a job, as a phase is completed it is possible to move the job to the next column, which allows us to conclude that the use of this type of frame allows the movement of tasks from right to left, but does not allow you to see the percentage of completion.
1. Distinguish between
a) Optical and Magnetic scanning
(2marks)
Optical scanning
1.They use principles of light to scan document
Magnetic scanning
1. They use principles of magnetism to
document
sense
Answer:
They use principles of light to scan document
Magnetic scanning
Explanation:
What is the maximum number of alphanumeric characters that a single SMS can have?
A.
140
B.
170
C.
160
D.
150
Answer:
160
Explanation:
Sam is developing a software program in Python and has a question about how to implement a particular feature. Which use of a resource is most likely to provide Sam with the best results?
A) joining a Python developer forum and posting a question to the forum to solicit feedback
B) joining a Python developer forum and following links to technical news sites
C) reviewing an Introduction to Computer Science textbook
D) reviewing the computer user manual
Answer:
A or D
Explanation:
i could be wrong
Answer:
probably A, i mean it makes the most sense cause why review a computer user manual? C is an introduction so I doubt that's the level of question he is asking about. B is a no when it states "News sites", I honestly don't think there is any news sites that would help in any way.
in the validation rule LIKE" OZ" OR LIKE" 1b", what do the asterisks represent?
a specific number of letters
a specific number of digits
any number of characters
a single character
THE ANSWER IS C
How do you make someone the Brainliest?
Answer:
When two people answer you can make someone Brainliest so don't be confused when you couldn't when one person answers.
Explanation:
I want Brainliest, lol.
_____________________________________________________is a pre-designed format to help users with the creation of a document, like a flyer, brochures, or resumes. Fill the blank/ what's the answer?
A.PowerPoint
B,Excel
C.Template
D.Pie Chart
Monica needs to assess the slide sequence and make quick changes to it. Which view should she use in presentation program?
A.
Outline
B.
Slide Show
C.
Slide Sorter
D.
Notes Page
E.
Handout
Answer:
The correct option is C) Slide Sorter
Explanation:
In the early 1800's, a “computer" was not a machine, it was a person who did math
calculations.
O True
False
Answer:
true
Explanation:
How do you create multiple columns in Word?
A.Click Home>Paragraph, Alignment
B.Click Page Layout > Columns, Click the column layout you want
C.Select the text or click in the section you want to change, Click Page Layout > Columns, Click the column layout you want.
Answer:
I think it's B
Explanation:
it sounded right to me.
Write three statements to print the first three elements of vector runTimes. Follow each with a newline. Ex: If runTimes = {800, 775, 790, 805, 808}, print:
Answer:
Following are the code to this question:
#include <stdio.h>//defining header file
int main()//defining main method
{
int runTimes[] = {800, 775, 790, 805, 808};//defining array of integers
for(int k=0;k<3;k++)//defining for loop for print value
{
printf("%d\n",runTimes[k]);//print value with a new line
}
return 0;
}
Output:
800
775
790
Explanation:
In the above-given C language code, an array "runTimes" is defined, which holds the number of integer values.
In the next step, a for loop is defined, which uses the "k" variable, which starts from 0 and ends when its value is less than 3.
In the for loop, it uses the print method with "\n", that prints the array value in the new line.
Cars are only as safe as their driver, so __ is your bet to lower your risk.
seatbelt
Explanation:
Seatbelt lowers your momentum so it can take impact to be less dangerous