Answer:
The answer to this question is given below in the explanation section. The correct option is shows the interrelationship between all parts of the solution.
Explanation:
The correct option for this question is that the benefit of modeling is to show the interrelationship between all parts of the solution.
Because, in modeling, you define all the parts of the system and interconnection and interrelationship between these parts. It will help in understanding the model and the behavior of the model for certain events or inputs. Modeling helps-in communicating solutions to clients, developers etc.
Modeling helps in building an early prototype of a system or of product.
Modeling also provides a graphical representation of a solution with symbols. it is the structure of modeling of something and it is not a benefit of modeling. Modeling does not predict outcomes to problems in absence of inputs. Modeling does not help in creating tasks it helps in understanding the structure of the system.
What is Hypertext Transfer Protocol?
Answer:
an application layer protocol for distributed, collaborative, hypermedia information systems.
Explanation:
In Word, tables can be styled much like text can.
True
False
Answer:
True
Explanation:
There are many formatting options from color, size, and many more.
Hope this helps!
X = 0
end = int(input("Pick a number: "))
for num in range(1, end, 2):
#missing line
print(x)
X 10.
This program should print the sum of all the ODD numbers between 1 and the user's number pick the "end" variable)
Write the missing line that will make that possible.
I think its print(1 + end) but If its wrong can I please have feedback cause I'm struggling with this 1.
The missing line would be x+= num
This means that every time a number is selected from the range it is added to the value of x.
What is the quickest way to remove all filters that have been applied to a worksheet?
Answer:
Click the Filter button in the Sort & Filter group.
Explanation:
Quizlet
Question #1 Math Formula The code below is repetitious. What is the output of this program? num = = 3 num = num + 1 num = num + 1 num = num + 1 print(num) Output:
Answer:
6.0
Explanation:
WILL MARK BRAINLIEST PLZ ANSWER I BEG
Answer:
Professional programmers do not make syntax errors
Explanation:
how to create a code in pyton to ask the user to enter the number of switches and calculate the possible outcomes that can come from those many numbers of switches(on/off). Please help me with this
amount = int(input("How many switches? "))
if amount == 0:
print("There are no outcomes for 0 switches")
else:
print("With {} switch(es), there are {} outcomes.".format(amount, 2**amount))
guys my (R) key just bwoke and I have to copy and paste it every time I want to use it so now I'm talking in this nasty UwU voice... like the wide is every long and wuff like I can't evennnnn ahAHHAHAAAHAhahaHHAHh help please I don't know what to dooooooo like I can't even spell my own name like who am I now audwee
Answer:
Copy (Ctrl+c) Paste (Ctrl+v) Cant you click the rubber thing under the key you broke hoped i helped
Explanation:
Answer: then use a new keyboard or suffer with the UwU WHatS tHiS
Explanation:
A database record can best be described as:
А
a collection of data about a limited topic, organized into rows and columns.
B
a collection of data that can be sorted and searched using search algorithms.
С
a category of information in a table.
D
a collection of information consisting of one or more related fields about a specific entity.
Answer:
The answer to this question is given below in the explanation section
Explanation:
The correct option to this question is D.
A database record can be best described as the collection of information consisting of one or more related fields about a specific entity. Because a database record represents a record about a specific entity for example a student record studying in a school. A student is a specific entity in the database and it has one or more related fields, for example, name, class, courses in which enrolled etc.
others options are not correct because:
A: a database record is a collection of data about a specific entity and it is not about a limited topic.
B: all database records can be sorted and searched using search algorithms but it is not necessarily because you can search data sometimes using quarries etc.
C: a database record is not a category of information in a table but it is a collection of one or more related field about a specific entity.
Answer:
c
Explanation:
my school blocked a lot of gaming websites.. do you have any good games that are unblocked???
Answer:
Well, it depends some systems are more strict... Krunker wasn't blocked now it is for a different district. But, the Google Doodle games are never blocked. Try the Ghost Game 2016 from Google... Or the Snake Game, or Pac Man. There are a few others like Solitaire. Browse the Google Doodles.
Hope this helps!
Answer:
cliker heros and cool math games are some
Explanation:
Create a summary of no less than 125 words of a show that would NOT go over well with television producers because it is targeted to people in the least desirable groups. Include the title of the show, the main characters, and a description of the show's premise. Explain why this show would NOT go over well with television producers.
Answer:
Follows are the solution to this question:
Explanation:
Its Mid is also an American drama about a Kentucky-based middle-class family who've been struggling to live in an impoverished house, home and earn children on even a daily basis. Mike and Frankie, both live in Orson, Indiana, were mid-aging adults. Users got three kids named Axl, Sue, and Brick. Michael was its owner of a local quarry as well as Frankie, the seller of a motorcycle. It was great for Scriptwriters since it is related to America's many households, a middle and upper-class family. Despicable is an American dramedy about an impoverished and unstable Chicago family.
It among participants is Frank, Gallagher's dad, but Fiona, their household's oldest son, as she actual mom Monica goes up and down as she likes. The other five children of Gallagher are Lips, Yan, Debbie, Lori, and Liam.
Frank is an alcoholic, but Fiona works very hard and provides for her sisters and brothers. It is not used for scriptwriters, because it is related to the poor and victims of abuse of drugs, which aren't considered "wanted." Since that concerns an "unwanted" listeners, its show was indeed a success.
what do you call the two parts of lift that go down a mine
Complete the sentence.
use only apps acquired from app stores.
PLEASE HELP
Answer:
that's a hard one maybe u should email ur teacher bc the punctuation on that is fine and it's not an incomplete sentence
4.5 Code Practice
Write a loop that inputs words until the user enters STOP. After each input, the program should number each entry and print in this format:
#1: You entered _____
When STOP is entered, the total number of words entered should be printed in this format:
All done. __ words entered.
Sample Run
Please enter the next word: cat
#1: You entered cat
Please enter the next word: iguana
#2: You entered iguana
Please enter the next word: zebra
#3: You entered zebra
Please enter the next word: dolphin
#4: You entered dolphin
Please enter the next word: STOP
All done. 4 words entered.
In python 3:
i = 0
while True:
word = input("Please enter the next word: ")
if word == "STOP":
break
i += 1
print("#{}: You entered {}".format(i, word))
print("All done. {} word(s) entered.".format(i))
I hope this helps!
The program is an illustration of loops.
Loops are used to perform repetitive operations.
The program in Python, where comments are used to explain each line is as follows:
#This gets input for the first word
word = input("Please enter the next word: ")
#This initializes count to 0
count = 0
#The following iteration is repeated until the user enters "STOP"
while word != "STOP":
#This prints the word entered
print("You entered",word)
#This increments count by 1
count += 1
#This gets input for the next words
word = input("Please enter the next word: ")
#This prints the count of all words
print("All",count,"words entered!")
At the end of the program, the number of valid inputs is printed.
Read more about similar programs at:
https://brainly.com/question/18283451
A company gives you a document to review. This document lays out the strengths and weaknesses of a proposed business venture. It also evaluates the venture's potential for success. Which option best describes this document you are reviewing?
Feasibility analysis
Project prototype
System model
Requirements document
Answer:
The answer to this question is given below in the explanation section. However, the correct option for this question is Feasibility analysis.
Explanation:
The correct option for this question is feasibility analysis. Because in a feasibility analysis document, you can specify the weakness, strength, strategy, and plan for a specific business venture. This document also represents the validation and evaluation of the business venture that you are going to start or proposed. Basically, a feasibility document represents a feasibility study of the practicality of a proposed project or system.
Other options are not correct because:
A project prototype is a tool that can be used to get early feedback from customers/clients on what you are going to be developing. The system model represents the model or abstraction of the system while the requirement document is used to communicate the aims of a project/program/product or service in a clear, concise way to ensure all stakeholders are on the same page.
What is required to utilize Excel Online?
A) local administrative account
B) product key for Excel
C) Office 365 user account
D) compact disc version of Excel
Answer:
A.) Office 365 user account
Explanation:
Answer:C
Explanation:
hey yall i need help with email plz explain to me what happened
Answer: Oh looks like they disabled it :/ you should wait a little while so they can fix it I’m guessing
Explanation:
Answer:
Hi, I can try to help you.
I am on the software development club of my high school, and I also attended a summer camp at Google's headquarters. The steps below are written by me.
Explanation:
I have lots of experience with computers and Google. Generally, this problem usually happens when there's too much happening with your google account. This could happen from too many devices being logged into your account, or from sending/receiving a very large amount of messages. One common thing that happens is that there can be too many cookies and your computer cache may become full.
I recommend taking these steps:
1. Make sure you're not logged into your account on too many devices. If you are, for example, logged into the account on an iPad, iPhone, Macbook air, and a Mac, then you need to log out of the account on the devices you're not using at the time.
2. Clear your browsing history and cache. On a Macbook, just go to the top bar and click "History." Then, click "Show Full History" and then click "Clear Browing Data and Cache." This can resolve the issue.
3. If the issue is not resolved, restart your computer. This helps by rebooting your computer, and often you just need to restart it to resolve the issue.
4. If that hasn't worked, then I recommend that you wait. Generally, Google will unfreeze your account in a couple hours or so. If the above steps don't work, I recommend just waiting it out.
I hope this helps! If you feel this helped, feel free to give me Brainliest. :)
the first generation of computers used vaccum tubes .Why were they replaced by the transistors
What will be the output of the following program? Assume the user responds with a 3.
answer = input ("How many shirts would you like? ")
priceShirt = 4.00
intNumberShirt = float(answer)
moneyDue = intNumberShirt * priceShirt
print ("You owe $" + str(moneyDue))
You owe $ 12.0
An error occurs.
You owe $12.0
You owe $ moneyDue
If the user responds with 3, the output will be:
You owe $12.0
Answer:
You owe $12.0
Explanation:
Hello, need help with coding, I'll give brainliest if you can get this right, thank you!
What will be the output of the following program? Assume the user responds with a 5.
answer = input ("How many hamburgers would you like? ")
priceBurger = 3.00
intNumberBurgers = float(answer)
moneyDue = intNumberBurgers * priceBurger
print ("You owe $", moneyDue)
You owe $ moneyDue
An error occurs.
You owe $15.0
You owe $ 15.0
The output will be:
You owe $ 15.0
the hardware device that allows the user to see the results after processing is the monitor,scanner,webcam,Camara
Answer:hey
Explanation:
A device is one that is an external device and includes Printer, monitor, keyboard, and scanner. The input device includes the mouse and other point devices.
The camera is also an input device, a web-cam is a external device. The external device that lets the user see the output or the result on the screen is monitor.Hence the option A is correct.
Learn more about the device that allows the user to see the results.
brainly.com/question/25756373.
Robert gets home from school at 3 p.M. His mom has to leave for her shift at work at 3:15 and she wants him to watch his baby brother until his dad comes home from work at 6 p.M. Robert wants to go downtown to hang out with his friends. What should he do?
Answer:
He should stay at home to take care of his baby brother.
Explanation:
Robert should not go downtown to hang out with his friends because of the following;
=> Robert should be obedient: Robert should be obedient to his mum since Robert's mum asked him to stay with his baby brother, he should do just that.
=> Taking the baby out to hangout with his friend or leaving the baby behind might poses great danger or harm to his baby brother: ones family comes first, the protection or safety of his baby brother should come first before thinking about pleasure. Even if the baby is not his brother the first thing is safety and protection for the baby before pleasure. That is the reason we are humans.
Which of the following planets most likely has the coldest surface temperature?
A. Venus
B. Mars
C.
Saturn
D. Mercury
Answer:
Saturn because it is not that close to the sun
Answer:
Saturn.
I'm dumb i misread the question
Explanation:
stniop eerf lol guess what it says
Answer:
boop free points lolololol
Explanation:
Which selling method is most likely to irritate potential customers? A. Running a trade fair booth B. Cold calling C. Running a flea market booth D. Telemarketing to people who are interested in the product.
Answer:
B
Explanation:
Answer: B. Cold Calling
Explanation:
In business, cold calling means to contact people who haven't actually proved to be interested in their products/services. A salesperson may try cold calling to try and convince the person to be. This may be irritating to potential customers because instead of finding it out for themselves, the salesperson is shoving information down their throats.
I hope this helped!
Good luck <3
If you can’t see the Assets panel, which of these three buttons do you press?
A) Plugins
B) Assets
c) Layers
Answer: B
Explanation:
Beth wants to add information to her PowerPoint presentation that is hidden from her audience and only she will
see. Which feature should she use?
Notes pane
Title slide
Normal view
Slide Sorter view
Mark this and return
Answer:
She should use Notes pane
Explanation:
Notes pane is for notes only the creator will see.
Answer:
A. Notes Pane
Explanation:
4. How could you apply some of the ideas, principles, or structures of coding to fields of study, industries, or tasks outside of creating computer programs? Propose at least one way to use "coding" or creating programs outside of computer science and explain how it uses coding-related concepts.
Answer:
a production plant
Explanation:
"Coding" brings with it a linear way of thinking and problem solving, where one step needs to be taken before moving on to the next step. This can be applied to a wide range of real-life scenarios and industries. For example, a production plant starts with an initial input, that input is taken and used in a set of instructions (method), those instructions take that input and create a new output. Once the new output is created it is then passed on to another set of instructions that takes that output as an input to create a new output. Just like a computer program, a power plant repeats this process in order to a fully working and realized product.
Help ASAP!!Choose all the basic elements of algorithms. A.Selection B.Loops C.Flow Charts D.Sequencing E.Combinations F.Iteration
Answer:
b c d
Explanation:
Answer:
A, C, E, F
Explanation:
Just took the test
Which of the following is not expected of employees’ oral communication skills in the workspace
Answer:
Yes, choose C since it's not an oral requirement, but a written one.
The oral communication skills in the workspace should not involve writing.
The information regarding oral communication skills is as follows:
Active listener.Clarification.Asking open-ended questions.In this, the communication could be done in a clear way.The appropriate language should be used.Also, the laws & regulations should be communicated.Therefore we can conclude that the oral communication skills in the workspace should not involve writing.
Learn more about the communication here: brainly.com/question/12349431