Answer:
while (c <= 100):
print (c)
c = c + 1
Explanation:
We can cancel out the while loops with ' < ' because then it won't print when C is 100.
while (c <= 100):
print (c)
c = c + 1
Is probably right because unlike the other while loop with ' <= ' it has a print statement before the C = C + 1 which means look at this:
C = 1
print(c)
C = C + 1
So when it's run 1 is printed
But when doing the other while loop:
c = 1
while (c <= 100):
print (c)
c = c + 1
C = 1
c = c + 1
print(c)
It prints 2 because it added 1 to C first before actually printing it.
The loop that prints the numbers 1, 2...100 is
c = 1
while (c <= 100):
print (c)
c = c + 1
We are to find the loop that prints the numbers 1 , 2 …100.
Therefore, the loop that print 1 to 100 can be represented as follows:
c = 1
while (c <= 100):
print (c)
c = c + 1
c is a variable initialize with zero.
The while loop is used to check if c is less than or equals to 100.
If c is less than or equal to 100 we print the value of c .
Then we add 1 to c and go back to the loop again.
learn more on loop here: https://brainly.com/question/19705987?referrer=searchResults
Tell me everything that happened in the fortnight galactics event. WHO EVER HAS THE BEST EXPLANATION WILL GET BONUS POINTS AND WILL BE MARK BRAINLYNESS
Answer:
people still play fortnight?!?!
Explanation:
psn: Smallboy_life
Which statement best describes the pros and cons of lack of regulation for cloud-based technology? Lack of regulation enables people to collaborate without the extra cost of paying a service provider; however, there is an increased opportunity for cybercrime. Lack of regulation speeds up the process of invention, but requires individuals to back up their own data. Lack of regulation encourages open innovation, but is not always secure. Lack of regulation encourages greater collaboration, but can lead to increased cost from price increases.
Answer:
3.) Lack of regulation encourages open innovation, but is not always secure.
Explanation:
Got it right in Introduction to Careers in Arts, A/V Technology and Communications
In critical thinking, an argument is:
A reflection about someone's thinking
A pointless dispute with someone
An attempt to persuade someone
An explanation of something
One advantage of putting information into a database is that you can filter the data.
O True
O False
Answer:
True.
Explanation:
One of the purposes of databases is to allow data lookup through queries, which is basically filtering data, using efficient algorithms too.
Answer:
True
Explanation:
If you sell homework answers can you get in police trouble
Answer: nah as long as u dont get caught u wont get into trouble
Explanation:
PLEASE HELP ME I NEED IT DONE TODAY!!!!!!!!!!!!
Discussion Topic
You know how businesses use spreadsheets in their day-to-day operations for storing, computing, analyzing, and visualizing data. Discuss the advantages of using spreadsheets to manage and organize your personal life.
Answer:
They're free.
They require minimal training so they're easy to figure out
Spreadsheets are difficult to share internally.
Spreadsheets are easy to share externally.
There's no clear indication of who's working on what when.
Multiple versions of the truth so you don't always have to stick with just one
Errors, can be everywhere but they can be solved
Explanation:
My explanation is that spreadsheets can be confusing but when you take your time and get help working on them they can become 2nd nature. I got my ideas from personal experience with them with help from teachers.
How many passes will it take to find the five in this list?
1, 5, 10, 15, 20, 22, 30
3
1
4
2
Answer:
1 im prety sure
Explanation:
Answer:
2
Explanation:
is the correct answer
good luck
Compare and contrast the advantages and disadvantages of the Windows, Apple and Linux operating systems.
Jared has trouble remembering when his assignments are due, and he wants to keep reminders on his computer. Which online note-taking tool would be the best one to use?
Answer and Explanation:
Google Keep & Google Reminders
Google Keep is an online stick-note tool, that also has an online reminder tool as well. You can also use another platform for reminders such as Google Reminders. Both platforms are easy, online and simple to use!
Answer: electronic sticky notes
Explanation:
:)
Complete the sentence.
A ___________search can be done on a list that is not ordered.
Answer:
Well, a binary search has to be ordered. So ima just say linear search..
Explanation:
I think its linear..
A binary search can be done on a list that is not ordered.
What is a binary search?Binary search is a fast technique that finds an item from a sorted list of objects with a run-time complexity of O(log n), where n is the total number of elements. Divide and conquer concepts are used in binary search.
When performing a binary search on an array in computer programming, the array must be sorted in ascending order, i.e. from the least to the highest with respect to the data value.
The primary benefit of using binary search is that it does not scan every element in the list. Instead of scanning each element, it searches the first half of the list. As a result, a binary search takes less time to find an element than a linear search.
Therefore, the correct option is b, Binary.
To learn more about binary search, refer to the link:
https://brainly.com/question/28391940
#SPJ2
The question is incomplete. Your most probably complete question is given below:
•Linear
•Binary
Alizeh invests $10,000 in an actively managed mutual fund that has an annual expense ratio of 1.3%. The investment earns a 7% rate of return.
How much did she make in one year on her investment with the 7% rate of return?
How much does she pay in fees for her actively managed mutual fund?
At the end of the year, what’s the total value (AFTER FEES) of Alizeh’s mutual fund?
Answer:
Alizeh
The total value (AFTER FEES) of Alizeh’s mutual fund is:
$10,570.
Explanation:
a) Data and Calculations:
Investment in mutual fund = $10,000
Annual expense ratio = 1.3%
Rate of return on investment = 7%
b) Annual return on investment = $700 ($10,000 * 7%)
c) Annual fees for her actively managed mutual fund = $130 ($10,000 * 1.3%)
d) At the end of the year, the total value (after fees) of Alizeh's mutual fund:
Investment in mutual fund = $10,000
Annual return on investment = $700
Annual fees for mutual fund = ($130)
Total value = $10,570
The total amount at the end of the year is the sum of the Principal ,ROI and
the expense which is $10,570
Mutual Fund/InvestmentGiven Data
Principal = $10,000Expense ratio = 1.3%Ratet = 7%1. Let us find the ROI
= 7/00*10000
=0.07*10000
= $700
2. Let us find the fees/expense
= 1.3/100*10000
= 0.013*10000
= $130
hence the total amount at the end will be = 10,000+700+130 = $10,570
learn more about mutual funds here:
https://brainly.com/question/25300925
5.2 Caches are important to providing a high-performance memory hierarchy to processors. Below is a list of 32-bit memory address references, given as word addresses.
3, 180, 43, 2, 191, 88, 190, 14, 181, 44, 186, 253
5.2.3 You are asked to optimize a cache design for the given references. There are three direct-mapped cache designs possible, all with a total of 8 words of data: C1 has 1-word blocks, C2 has 2-word blocks, and C3 has 4-word blocks. In terms of miss rate, which cache design is the best? If the miss stall time is 25 cycles, and C1 has an access time of 2 cycles, C2 takes 3 cycles, and C3 takes 5 cycles, which is the best cache design?
Carmen printed her PowerPoint presentation at home. Her mom was angry because Carmen used 20 pieces of paper and all the color ink. What option did Carmen most likely use to print
her presentation?
Print full page slides print handouts. Print note pages or print options will give Brainliest ANSWER
Answer:
She used 1 sided and color
Explanation:
those are the options she used
Carmen printed her PowerPoint presentation at home. Her mom was angry because Carmen used 20 pieces of paper and all the colored ink. She used 1 side and color.
What is the printer?A printer is a device that receives the text and graphic output from a computer and prints the data on paper, typically on sheets of paper that are standard size, 8.5" by 11". The size, speed, sophistication, and price of printers vary.
One of the more frequent computer peripherals is the printer, which may be divided into two types: 2D printers and 3D printers. While 3D printers are used to produce three-dimensional physical items, 2D printers are used to print text and graphics on paper.
Therefore, at home, Carmen printed out her PowerPoint presentation. Carmen used 20 pieces of paper and all the color ink, which made her mother furious. She used color and one-sided.
To learn more about printers, refer to the link:
https://brainly.com/question/17136779
#SPJ2
Images, symbols, and diagrams are types of
art objects
Graphs
graphics
presentation objects
Answer:
The answer to this question is given below in the explanation section.
Explanation:
The correct answer to this question is :
Graphics
Because Graphics are the visual representation of information without text. Images, symbols, and diagrams are types of graphics. These graphics can be used in presentations to present information visually.
While other options are not correct because:
Art objects are some images or painting that is the artistic creation of aesthetic value. While graphs are the visual presentation of data and there are different presentation objects in PowerPoint such as images, symbols, text, and diagrams, etc. But it is noted that images, symbols, and diagram are not types of presentation objects but it is a type of graphics elements/objects.
when is mail merge an effective productivity tool
Answer:
When a lot of letters with the same body text need to be personalized.
Explanation:
Answer: Mail merge would be the most effective when a lot of letters with the same body text need to be personalized.
Explanation: Ape x
9.2 Code Practice: Question 2
Edit your solution from the previous array height problem by adding additional code that increases the value of the element at (0,2) by a value of 3, and then reprints the array
Expected Output
[[16, 17, 14], [17, 18, 17], [15, 17, 14]]]
[[16, 17, 17], [17, 18, 17], [15, 17, 14]]]
Answer:
height = []
height.append ([16, 17, 14])
height.append ([17, 18, 17])
height.append ([15, 17, 14])
print(height)
height[0][2] = height[0][2] + 3
print (height)
Explanation:
hope this helps!
The height problem is a sequential program and does not require loops, iteration and conditions.
The additional code segment that adds 3 to the element at (0,2) is:
height[0][2] = height[0][2] + 3
To reprint the array, we make use of the following print statement:
print (height)
So, the complete program is as follows:
height = []
height.append ([16, 17, 14])
height.append ([17, 18, 17])
height.append ([15, 17, 14])
print(height)
height[0][2] = height[0][2] + 3
print (height)
Read more about sequential programs at:
https://brainly.com/question/13893632
Some people recommend deleting social media accounts because of the troubling legal and ethical implications of social media. Do you support this position? Why or why not?
Answer:
I do not support this
Explanation:
One reason is because the benefits for social media out way the unbeneficial parts.one reason is because sites like social media have forever changed the life of many familys across the globe.
George has to present the goals of information management to his team member. What is a goal of information management?
The goal of information management is to identify information requirements for various____levels.
Answer:
Management
Credit / Resource:
This problem has already been solved, if you would like to view more about this please click the question link below.
https://brainly.com/question/5495374
AYYOOOO CAN YOU HELP A GIRL OUUTT???
Fields are data items representing a single attribute of a record. Question 2 options: True False
Answer: The answer is true
Some people argue that it is acceptable to pirate digital media be a no one really gets hurt. How would you respond to someone who made that argument?
Answer: I say that it is not acceptable to pirate digital media. I say this because it is the exact same thing as cyber bullying.
Explanation:
If your presentation uses a background, your text should _____.
be placed in bulleted lists
work well with the background
be at least 50-points
be written in paragraph form
your text should work well with the background.
It's very important for the text to be readable.
Answer:
B (work well with the background )
Explanation:
I have chosen B, to be the best solution and here is why. Since, your presentation uses a background you would want your text to be fitted well with the background of your choice. That way users can still see the text.
Which option best describes MacHack 6?
A.
It was a text-based adventure game.
B.
It was a graphical adventure game.
C.
It was a shooter game.
D.
It was an interactive chess program.
E.
It was a puzzle game t
Answer:
D. It was an interactive chess program.
Answer:it d
Explanation:
For which discipline is it most important to study computer technical support and networking?
Answer:
Studying computer technical support would contribute most to the disciplines of computer engineering and information technology.
have an amazing day! =)))
In full verbatim, a person wants to say that they admitted him to a hospital last month. He makes a mistake about the date and quickly corrects himself. How should a correct sentence look like?
What does the following loop do?
val = 0
total = 0
while (val < 10):
val = val + 1
total = total + val
print(total)
Prints the numbers backwards from 10 to 1.
Prints the sum of the numbers from 1 to 10.
Finds the average of the numbers between 1 and 10.
Prints the numbers from 1 to 10.
Answer:
Prints the sum of the numbers from 1 to 10.
Explanation:
YOU NEED BETTER INDENTATION
Total is the sum.
Each loop it's added
:)
how many of you got the right answer from this app
The admission booth at the show requires each person to enter their age. Then the following program executes (See image.): When age = 16, what action would the program execute?
A. print “16”
B. print “Student price is $8.”
C. print “14”
D. print “Student price is $14.”
the data represented by numeric whole-number values, either positive or negative, that do not have decimal points
A. Boolean
B. string
C. Float
D. integer
What is another name for repetition in programming?
A. duplication
B. replication
C. redundancy
D. iteration
All of the following are types of errors in a computer program EXCEPT
A. syntax
B. parameter
C. semantic
D. logic
17.
What is one way that programmers insert explanatory statements in their code?
A. for loops
B. compiling code
C. use comments
D. create variables
18.
Why is readable code important? Choose all that apply.
A. It is more fun to write.
B. It makes the purpose and flow of a program easier to understand and follow.
C. Anyone needing to work with the code in the future will have an easier time.
D. It will save time when it is time to update the program. (MAYBE D AS WELL) if u are allowed to select more than 2
19.
All of the following are true about debugging except
A. debugging is not a necessary process
B. it is a process of identifying and eliminating errors in a software program
C. it is essential to produce high-quality programs
D. eliminating bugs is an important part of the program development cycle
20.
The type of conditional statement that tests if a condition is true or false
A. if
B. not
C. or
D. and
24.
Which best describes a computer bug?
A. a piece of computer hardware that is out of date or has a newer version
B. a piece of computer software containing defects that prevent a program from running properly
C. a piece of computer hardware that is being used improperly
D. a piece of computer software that is out of date or has a newer version
25.
Which set of variables will make code easier to understand?
A. a, b, c
B. sum, price, count
C. xii, xix, xxi
D. x, y, z
23.
An argument is different from a parameter in that an argument
A. refers to a piece of data to be supplied.
B. is a placeholder for a constant value.
C. is the data passed into a parameter.
D. is always variable.
Answer:
B. print "Student price $8."
Explanation:
B
A technician is checking a customer's wireless network performance and has determined it was using 802.11g. The technician's recommendation is for the customer to upgrade to 802.11ac. Which of the following is the BEST reason to upgrade?
Answer:
Spped
Explanation:
Tenim tres resistors en sèrie, calcula la tensió que hi haurà a cadascuna d'elles sabent que una d'elles és de 680 Ω i les altres són de 220 Ω. El generador té una tensió de 12V.
Resposta:
Per a càrrega de 680Ω: 7,27 volts
Per a les dues càrregues de 220Ω: 2,36 volts cadascuna
Explicació:
Segons la llei d’ohms
E = IRt
E és la força electromotriu = 12V
I és el corrent total que circula al circuit
Rt és la resistència equivalent total
Com que els 680Ω, 220Ω i 220Ω estan en sèrie;
Rt = 680 + 220 + 220
Rt = 1120Ω
Obteniu el corrent total del circuit:
Recordem que: E = IRt
I = E / Rt
I = 12/1120
I = 0,0107A
Tingueu en compte que el mateix corrent flueix a través de resistències connectades en sèrie, però tensions diferents.
Obteniu les tensions individuals;
Per a càrrega de 680Ω;
V = IR
V = 0,0107 * 680
V = 7,27 Volts
Per a la càrrega de 220Ω
V = IR
V = 220 (0,0107)
V = 2,36 volts
Per tant, les tensions de les dues càrregues de 220Ω seran de 2,36 volts cadascuna
What is a prominent method for involving experts and power centers in a large-scale project where their views and expertise can be taken into account early in the project? feasibility study stakeholder process waterfall method business case
Answer:
feasibility study
Explanation:
In feasibility studies, the assessment of the practicality of a proposed project is made and the relevant factors of the project is usually being taken into account, which includes economic, technical, legal and scheduling considerations.
Various project managers use feasibility studies to know the pros and cons of getting involved in a project before they can embark on it.