Answer:
no seishsssssssssssssssssssss
c = 1 sum = 0 while (c < 10): c = c + 2 sum = sum + c print (sum)
Answer:
35
Explanation:
The loop runs 5 times with the following values of c: 1,3,5,7,9 at the start of the iteration, and 2 higher at the end. So the values that get added to sum are: 3,5,7,9,11, hence sum = 3+5+7+9+11 = 35.
Always look carefully at the last iteration of a loop. At the last iteration, when c equals 9, it is still valid to make another iteration. However, 11 gets added to the sum.
\(\huge \boxed{\sf 35}\)
c = 1, sum = 0
(The loop runs)
1 < 10, c = 1 + 2, sum = 0 + 3
c = 3, sum = 3
3 > 10, c = 3 + 2, sum = 3 + 5
c = 5, sum = 8
5 > 10, c = 5 + 2, sum = 8 + 7
c = 7, sum = 15
7 > 10, c = 7 + 2, sum = 15 + 9
c = 9, sum = 24
9 > 10, c = 9 + 2, sum = 24 + 11
c = 11, sum = 35
(The condition is false and the loop ends)
11 > 10, print sum
I need this answer right away!
What is a responsive HTML5 framework? What are the benefits? Which HTML5 frameworks are currently available?
Which HTML5 frameworks did you research? Include features,benefits and costs. How could this responsive framework be used in your project work?
Answer:
Foundation.
Bootstrap. 2.1 Resources.
Metro UI.
jQuery Mobile.
Sencha Touch.
Ionic.
HTML KickStart.
Semantic UI
Explanation:
program a macro on excel with the values: c=0 is equivalent to A=0 but if b is different from C , A takes these values
The followng program is capable or configuring a macro in excel
Sub MacroExample()
Dim A As Integer
Dim B As Integer
Dim C As Integer
' Set initial values
C = 0
A = 0
' Check if B is different from C
If B <> C Then
' Assign values to A
A = B
End If
' Display the values of A and C in the immediate window
Debug.Print "A = " & A
Debug.Print "C = " & C
End Sub
How does this work ?In this macro, we declare three integer variables: A, B, and C. We set the initial value of C to 0 and A to 0.Then, we check if B is different from C using the <> operator.
If B is indeed different from C, we assign the value of B to A. Finally, the values of A and C are displayed in the immediate window using the Debug.Print statements.
Learn more about Excel:
https://brainly.com/question/24749457
#SPJ1
select the problem-solving strategy network administrator is likely to use
The problem-solving strategies a network administrator is likely to use are:
try things that have worked beforecheck the manualsask others who might know what the problem isWhat is Problem Solving?This refers to the term that is used to describe and define the steps and strategies that a person makes use of in order to solve a problem and this usually involves troubleshooting,
Hence, it can be seen that for a network admin with a random network related problem, he would likely follow the steps above.
Read more about problem solving here:
https://brainly.com/question/23945932
#SPJ1
write a code palindrome in python
Answer:
def is_palindrome(string):
reversed_string = string[::-1]
return string == reversed_string
Answer:
Explanation:
Palindrome Program A string is called a palindrome string if the reverse of that string is the same as the original string. For example, radar , level , etc. Similarly, a number that is equal to the reverse of that same number is called a palindrome number. For example, 3553, 12321, etc.
Simon has created a diagram that defines classes used in an object-oriented program. What type of diagram has he constructed?
A(n) is a type of UML diagram that directly maps to object-oriented classes.
Answer:
class diagram
True/False: not is evaluated first; and is evaluated next; or is evaluated last.
Is the answer True or False
HELP PLS THIS IS DUE TODAY!!!
what should you do if you find information you think is fake
If you find that an information is fake, do the following:
Fake news is information that is incorrect or misleading and is presented as news. Fake news is frequently intended to harm a person's or entity's reputation or to profit from advertising income.
The term "news" refers to information regarding current occurrences. This can be delivered through a variety of channels, including word of mouth, printing, postal networks, radio, electronic communication, and the testimony of event watchers and witnesses. News is frequently referred to as "hard news" to distinguish it from soft media.
Learn more about fake information:
https://brainly.com/question/14318617
#SPJ1
Floor joists are part of the floor system, carry the weight of everything inside a room, including walls, furniture, appliances, and even people.
True
False
Floor joists are part of the floor system, carry the weight of everything inside a room, including walls, furniture, appliances, and even people is a true statement.
What Are Floor Joists?The load is then transferred to vertical structural components by floor joists, which are horizontal structural members that span an open area, frequently between beams. These floor joists, which are a component of the floor system, support the weight of the walls, the furniture, the appliances, and even the people who use the space.
Floor joist spacing is typically 16 inches on center, however this might change based on building regulations and the specifications of the construction in the blueprint.
Hence, Floor joists aid in distributing a structure's load. The wood fibers at the bottom of the joist experience what is known as tension when weight is applied to the floor and the joist. Compression of the top fibers aids in equally distributing the strain.
Learn more about Floor joists from
https://brainly.com/question/29506379
#SPJ1
. Write a program to calculate the square of 20 by using a loop
that adds 20 to the accumulator 20 times.
The program to calculate the square of 20 by using a loop
that adds 20 to the accumulator 20 times is given:
The Programaccumulator = 0
for _ in range(20):
accumulator += 20
square_of_20 = accumulator
print(square_of_20)
Algorithm:
Initialize an accumulator variable to 0.
Start a loop that iterates 20 times.
Inside the loop, add 20 to the accumulator.
After the loop, the accumulator will hold the square of 20.
Output the value of the accumulator (square of 20).
Read more about algorithm here:
https://brainly.com/question/29674035
#SPJ1
Use the drop-down menus to complete statements about audio file formats.
The most common file format for consumer storage and playback is ___
The __ audio file was originally used on Apple computers.
The main audio format used in Microsoft Windows is __
Answer: 1. .mp3 2. .aiff 3. .wav
Explanation:
I got it right
Answer:
.mp3
.aiff
.wav
Explanation:
hope this helps :)
Select the best answer for the question.
5. To save time, Carlos is estimating the building as one large room for purposes of calculating heat loss. This is called
A. envelope.
B. full space.
C. design.
D. wall-less.
i need help with project i dont know how to code and it is a console application using c#
The Program based on the information will be:
using System;
class Program {
static void Main(string[] args) {
Console.Write("Enter your name: ");
string name = Console.ReadLine();
Console.WriteLine("Hello, " + name + "!");
}
}
How to explain the programWhen you run this program, it will display the message "Enter your name: " on the console.
The user can then type in their name, and press Enter. The program will read the user's input using the Console.ReadLine() method, store it in the name variable, and then display the message.
Learn more about Program on
https://brainly.com/question/26642771
#SPJ1
9
Type the correct answer in the box. Spell all words correctly.
Which attribute specifies a web address (URL) for a link?
Frank is writing a blog. In the blog, he wants to redirect his readers to his previous blog for reference. He needs to append a URL of the previous blog.
He can use the
attribute, which specifies the web address for a link.
m. All rights reserved.
Reset
Next
Answer:
In a link or web address, a blue font with an underline underneath or a websites logo can attribute to an web address/link
Write a program that uses two input statements to get two words as input. Then, print the words on one line separated by a space. Your program's output should only include the two words and a space between them.
Hint: To print both words on one line, remember that you can concatenate (add) two phrases by using the + symbol. Don't forget that you'll need to add a space between the words as well.
Sample Run
Enter a word: Good
Enter a word: morning
Good morning
word1 = input("Enter a word: ")
word2 = input("Enter a word: ")
print(word1 + " " + word2)
I hope this helps!
What feature allows a person to key on the new lines without tapping the return or enter key
The feature that allows a person to key on new lines without tapping the return or enter key is called word wrap
How to determine the featureWhen the current line is full with text, word wrap automatically shifts the pointer to a new line, removing the need to manually press the return or enter key.
In apps like word processors, text editors, and messaging services, it makes sure that text flows naturally within the available space.
This function allows for continued typing without the interruption of line breaks, which is very helpful when writing large paragraphs or dealing with a little amount of screen space.
Learn more about word wrap at: https://brainly.com/question/26721412
#SPJ1
Assuming the user types the sentence
Try to be a rainbow in someone's cloud.
and then pushes the ENTER key, what will the value of ch be after the following code executes?.
char ch = 'a';
cin >> ch >> ch >> ch >> ch;
(in c++)
The value of ch will be the character entered by the user after executing the code.
What is the value of ch after executing the code?The code snippet cin >> ch >> ch >> ch >> ch; reads four characters from the user's input and assigns them to the variable ch. Since the user input is "Try to be a rainbow in someone's cloud." and the code reads four characters, the value of ch after the code executes will depend on the specific characters entered by the user.
In conclusion, without knowing the input, it is not possible to determine the exact value of ch. Therefore, the value of ch will be the character entered by the user after executing the code.
Read more about code execution
brainly.com/question/26134656
#SPJ1
Print a message telling a user to press the letterToQuit key numPresses times to quit. End with newline. Ex: If letterToQuit = 'q' and numPresses = 2, print:
You can find in the photo. Good luck!
Multiple Choice: We have been assigned the task of developing a software testing tool (tester) that can assess reachability of statements in a program. Namely, given a program and a statement x in the program (line in the code), the tester should produce a sequence of inputs that demonstrates that the program can reach statement x, or declare that statement x is not reachable under any input sequence. What should we respond to the manager who assigned this task
Answer:
A. There is no algorithm to decide whether this can be done or not.
Explanation:
We should respond to the manager who assigned this task that there is no algorithm to decide whether this can be done or not. This is because there are many unknowns with the program that is provided. There are various programming languages and each one has its own structure and requirements in order to test them. Also, each function is created differently with different inputs that are necessary and different algorithms used. It is impossible to design a single algorithm that works to test every single provided program. That is why testers have to create custom test cases for each function.
ITIL 4: Which of the following TRUE with respect to Practices in ITIL®?
A Practices are independents activities outside SVC
B: practice is just a new name given for process
C: practices support multiple activities within Value chain
D: every practice is tightly linked to a specific activity within value chain
Answer:
m
Explanation:
it would be c cause i take the test
The option that is true with respect to Practices in ITIL is that its practices support multiple activities within Value chain.
What are ITIL practices?ITIL is known to be the background of all the best methods used for delivering IT services.
Conclusively, the key element in the ITIL SVS is known to be the Service Value Chain as it uses an operating model for service delivery. Its practices aids the use of different activities within Value chain.
Learn more about Practices from
https://brainly.com/question/1147194
Question 7 of 25 How does modularity make it easier for a programmer to fix errors in a program? A. It is easier to edit a module rather than an entire program B. It makes the errors affect the entire program C. It allows the programmer to debug an entire program instantly D. It eliminates errors altogether,
The way that modularity make it easier for a programmer to fix errors in a program is A. It is easier to edit a module rather than an entire program.
What is the modularity about?Modularity is the practice of breaking a program down into smaller, more manageable parts or modules. Each module is designed to perform a specific task, and these modules can be combined to create a larger program. By dividing a program into modules, a programmer can make the program easier to understand, maintain, and update.
One of the key benefits of modularity is that it makes it easier to fix errors in a program. When a program is broken down into modules, each module is responsible for a specific task, making it easier to isolate the source of an error.
In addition, because each module is designed to perform a specific task, it is often easier to edit a module than to edit an entire program.
Read more about modularity here:
https://brainly.com/question/11797076
#SPJ1
Answer:
A. It is easier to edit a module rather than an entire program.
Explanation:
Perform the following for each 8 bit binary addition:
add the two binary numbers
interpret all there 8 bit binary numbers as a signed number (2’s complement)
interpret all three 8 bit binary numbers as unsigned numbers
Binary Number
Signed Decimal Value
Unsigned Decimal Value
Number 1
01111001
Number 2
00011110
Sum
Binary Number
Signed Decimal Value
Unsigned Decimal Value
Number 1
00011011
Number 2
00010100
Sum
Binary Number
Signed Decimal Value
Unsigned Decimal Value
Number 1
11110110
Number 2
10000011
Sum
Answer:
Where are options?
Explanation:
What is the correct command to shuffle the following list? import random people= ["Peter", "Paul", "Mary', 'Jane'] O shuffle (people) Opeople.shuffle() random.shuffle (people) random.shufflelist(people)
Answer:
import random
people = ["Peter", "Paul", "Mary", "Jane"]
random.shuffle(people)
Explanation:
Which of the following if statements uses a Boolean condition to test: "If you are 18 or older, you can vote"? (3 points)
if(age <= 18):
if(age >= 18):
if(age == 18):
if(age != 18):
The correct if statement that uses a Boolean condition to test the statement "If you are 18 or older, you can vote" is: if(age >= 18):
In the given statement, the condition is that a person should be 18 years or older in order to vote.
The comparison operator used here is the greater than or equal to (>=) operator, which checks if the value of the variable "age" is greater than or equal to 18.
This condition will evaluate to true if the person's age is 18 or any value greater than 18, indicating that they are eligible to vote.
Let's analyze the other if statements:
1)if(age <= 18):This statement checks if the value of the variable "age" is less than or equal to 18.
However, this condition would evaluate to true for ages less than or equal to 18, which implies that a person who is 18 years old or younger would be allowed to vote, which is not in line with the given statement.
2)if(age == 18):This statement checks if the value of the variable "age" is equal to 18. However, the given statement allows individuals who are older than 18 to vote.
Therefore, this condition would evaluate to false for ages greater than 18, which is not correct.
3)if(age != 18):This statement checks if the value of the variable "age" is not equal to 18.
While this condition would evaluate to true for ages other than 18, it does not specifically cater to the requirement of being 18 or older to vote.
For more questions on Boolean condition
https://brainly.com/question/26041371
#SPJ8
Your cousin gets a weekly allowance, but he always seems to be out of money anytime you buy snacks or go out to watch a movie. You recommend he create a budget, but he says, “No way! That would take so much effort, and I don’t think it’d work anyways! It’s not worth it.” What do you tell him to convince him that a budget could help?
Answer:
If you want to have more fun with your money, you need a budget. A budget is not a boring thing that tells you what you can't do. It's a smart thing that helps you do what you want to do. Here's how:
- A budget helps you save up for the things you really want, like a trip to Hawaii, a new laptop, or a debt-free life. It also helps you deal with the things you don't want, like a broken car, a hospital bill, or a late fee.
- A budget helps you stop wasting money on the things you don't care about, like snacks you don't eat, movies you don't watch, or subscriptions you don't use. It also helps you find ways to save more money on the things you do care about, like groceries, utilities, or entertainment.
- A budget helps you feel more relaxed and happy about your money. Instead of always stressing about running low on cash or owing money to someone, you can have a clear view of your finances and make smarter choices. You can also enjoy spending money on the things you love without feeling guilty or anxious.
- A budget helps you build good money skills that will last a lifetime. By learning how to budget, you will become more responsible, disciplined, and organized with your money. You will also learn how to prioritize your needs and wants, and how to balance your spending and saving.
So don't think of a budget as something that limits your fun. Think of it as something that enhances your fun. A budget is not a problem. It's a solution.
do clocks have cell's?
Create a file named network.py. The file should be created in the same directory as health_checks.py, i.e., scripts. If you are not present in the scripts directory, navigate to the scripts directory first and then create the file.
Answer:
There is a distinction between where the script exists, given by __file__, and the current working directory (usually the place from which the script was invoked), given by os.getcwd(). It is not entirely clear from the question wording which one was intended, although they are often the same.
The Python code that you can run on your system to create the network.py file in the scripts directory is explained in solution.
Here's a Python code snippet that will create the network.py file in the scripts directory:
import os
# Get the current working directory
current_directory = os.getcwd()
# Check if the current directory is 'scripts'
if not current_directory.endswith('scripts'):
# Navigate to the 'scripts' directory
scripts_directory = os.path.join(current_directory, 'scripts')
os.chdir(scripts_directory)
# Content of the 'network.py' file
network_py_content = """
# Your network.py file content goes here
# You can define your network-related functions and classes in this file.
"""
# Create and write to the 'network.py' file
with open('network.py', 'w') as file:
file.write(network_py_content)
print("File 'network.py' has been created in the 'scripts' directory.")
To use this code, copy and paste it into a Python script (e.g., create_network.py), and run it.
The script will create the network.py file in the scripts directory if you are not already present in that directory.
Learn more about Python code click;
https://brainly.com/question/33331724
#SPJ3
what is the purpose of sprint review
Explain the difference between OSI Model and TCP/IP Model
The difference between OSI Model and TCP/IP Model is that OSI Model is generic while is CP/IP model is a standard protocols.
What are the differences in the model above?OSI model is known to be generic in nature and it is one that is protocol independent standard. It also acts as a means of communication gateway that exist between the network and end user.
While the TCP/IP model is known to be one that uses standard protocols in the time at which the Internet was created. It is regarded as communication protocol, that helps in the connection of hosts in course of a network.
Learn more about OSI Model from
https://brainly.com/question/22709418
#SPJ1
What are the challenges of giving peer feedback in peer assessment
Answer:
There can some challenges when giving and receiving peer feedback in a peer assessment. Some people can be harsh in their assessments of your work. Some students cannot take that and because of that it can cause them to question a lot of their work. People can also be wrong when it comes to the assessment