Answer:
Step 1: Prepare the Cleaner
Pour a capful of car wash cleaner into a bucket and fill it a little over halfway with tap water. Car wash soap is specially designed to clean a car's exterior surfaces without stripping off wax, and it is typically sold alongside wax and car-detailing products in stores. Toss the first sponge in the bucket to let it soak up water and cleaner.
Step 2: Use the Garden Hose First
Spray water all over the car, starting at the top and working down the body of the car.
Step 3: Wash the Roof
Wash the top of the car first by squishing most of the excess water out of the sponge, then begin washing. Rinse the top as soon as you finish to ensure that the cleaning product does not dry on your car's paint. Blot the excess water off with your chamois or a terry cloth towel.
Step 4: Wash the Car's Body
Wash the car's body in sections, one panel at a time. Spray each panel with the garden hose again before washing with the sponge and cleaner. Rinse immediately after washing.If the water is not drying too fast, complete one whole side of the car before drying. If the water is drying quickly, dry each panel as soon as you finish washing.
Step 5: Wash the Wheel and Tires
Spray the wheel and tire cleaner on the wheels and tires.Using the second sponge, a brush or a rag, rub the cleaner into the tires to remove any remaining road dirt.
Step 6: Drying Your Car
Check your product's label to see if it needs to be washed off with water or buffed with a clean rag to complete the project.
A restaurant recorded the ages of customers on two separate days. You are going to write a program to compare the number of customers in their teens (ages 13 to 19).
What is the missing line of code to count the number of customers in their teens?
customerAges = [13, 3, 11, 24, 35, 25, 15, 18, 1]
countTeens = 0
for item in customerAges:
_____:
countTeens = countTeens + 1
if 13 <= item <= 19
if 13 < item < 19
if 13 <= item[0] <= 19
if 13 < item[0] < 19
Answer:
if 13 <= item <= 19
Explanation:
Edge 2021
The missing line of code to count the number of customers in their teens is if 13 <= item <= 19. The correct option is b.
What is programming?A form of computer programming language known as procedural programming describes a number of well-planned actions and processes during the course of its development.
It includes statements, functions, and commands that are organized systematically to finish a computing task or program. Its main focus is on developing procedures.
While object-oriented programming is a type of programming where the emphasis is on generating objects as opposed to actions and data or logic. Inheritance, polymorphism, abstraction, and encapsulation are its four guiding concepts.
Therefore, the correct option is b, if 13 <= item <= 19
To learn more about programming, refer to the link:
https://brainly.com/question/14368396
#SPJ2
Name the stringed instrument that's known for its haunting sound, wide pitch capability, and large numbers in the orchestra.
A. Harp
B. Violin
C. Viola
D. Clarinet
The subject is Music Technology.
Answer:
VIOLIN
Explanation:
The VIOLIN is the stringed instrument that's known for its haunting sound, wide pitch capability, and large numbers in the orchestra.
how do i get around a school related block
Answer:
try putting "uk-" or "us-" depending on where you are, you could also go through your settings and try to allow everything.
Answer:
Some schools have the option to block only on regular tabs, try going into settings and disabling the block to go on incognito tabs.
Another option would be to use a different web browser, something less known but good enough that it works and isnt blocked.
You can also find certain things on online where it tells you what websites to go to, then copy a link and paste it down into the search bar where the page will come up unblocked.
I hope this helped!
PS: If you go into certain websites, block third party cookies. ;)
Kayla wants to know whether she should set her network up as a WAN or a LAN. What are the three questions you would ask her, and how would those questions affect your recommendation?
Answer:
I would ask her: One, how large will the business be? Two, how secure she wants/needs the connection to be. And three, how much money she is willing to spend to install and/or maintain her network.
Since Kayla is just starting her business, my recommendation would be to set up her network as a LAN. A LAN is a group of computers and network devices connected together, and most often reside in one building. Kayla's business will start small, so it is not needed to set up her network as a WAN. WAN's are usually not restricted to a geographical location, and can be expanded to cover a whole country, or even a planet. A LAN would make sense in the coverage aspect, since Kayla's business has not expanded yet.
Depending on how secure she wants her network to be, she can choose whether or not she uses WAN or LAN. WAN is less secure, as it covers a large geographical area, while LAN is more secure. LAN is more secure because it covers a smaller area. I would recommend using LAN as it is better to have a secure network as a business.
Finally, Kayla needs to address the cost of setting up and maintaining a LAN or WAN. I would recommend that Kayla uses a LAN because as a starting business, it is important to allocate money properly. LAN's usually cost less to install and maintain due to it's smaller geographical radius, so it would be best to choose to set up her network as a LAN.
Explanation:
6
development with reference to Nepal.
Mention the objectives of sustainable development,
How can you relate the role of environment while can
Answer:
objective of sustainable development are:
Explanation:
1.to help in poverty alleviation
2.to conserve the environment effectively
3.to gain human development and progress
4.to use resources and means carefully
Kali, a Python programmer, is using the turtle module to write the word “hello.” Which code should she use to indicate the location to begin writing the word?
Answer:
c
Explanation:
Write 5-7 sentences about your own personal observations in which you have been part of a "filter". You might have experienced this is in your Twitter feed, specific advertisements, or your search engine results. Be specific.
Answer:
Answered below.
Explanation:
I made a search for a product on an online grocery store. The search results came in and I bought the product. On subsequent visits to the grocery store website or on browsing other sites, I had special advertisements pop up. These advertisements were suggesting products to me similar to the one I bought on the grocery store. It was a targeted advertisement that had been sent based on my recent searches and purchases on the site. So I knew that was a filter.
The First Amendment of the Constitution is one of the most important parts of the Bill of Rights. What specific rights does this amendment guarantee to every American citizen?
Answer:
The First Amendment to the U.S. Constitution protects the freedom of speech, religion and the press. It also protects the right to peaceful protest and to petition the government
Explanation:
if this answer is correct make me as brainlelist
Answer:
its guarantees the freedom of speech, religion, and the freedom of the press.
Explanation:
guess who is in the cheater cage lol
Write a program to have the computer guess at a number between 1 and 20. This program has you, the user choose a number between 1 and 20. Then I, the computer will try to my best to guess the number. Is it a 18? (y/n) n Higher or Lower (h/l) l Is it a 5?(y/n) n Higher or Lower (h/l) h Is it a 10? (y/n) y I got tour number of 10 in 3 guesses.
Answer:
This question is answered using C++ programming language.
#include<iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main(){
int num, computerguess;
char response, hl;
cout<<"Choose your number: ";
cin>>num;
srand((unsigned) time(0));
int high = 20; int low = 1; int guess = 0;
computerguess = low + rand() % high;
cout<<"Is it "<<computerguess<<" ?y/n: ";
cin>>response;
while(response == 'n'){
cout<<"Higher or Lower? h/l: ";
cin>>hl;
if(hl == 'h'){ low = computerguess+1; }
else{ high = computerguess-1; }
guess++;
computerguess = low + rand() % high;
cout<<"Is it "<<computerguess<<" ?y/n: ";
cin>>response;
}
cout<<"I got your number of "<<num<<" in "<<guess+1<<" guesses.";
return 0;
}
Explanation:
This declares num (user input) and computerguess as integer
int num, computerguess;
This declares response (which could be yes (y) or no (n) and hl (which represents high or low) as char
char response, hl;
This prompts user for input
cout<<"Choose your number: ";
This gets user input
cin>>num;
This allows the computer be able to generate different random numbers at different intervals
srand((unsigned) time(0));
This declares and initializes the range (high and low) to 20 and 1 respectively. Also, the initial number of guess is declared and initialized to 0
int high = 20; int low = 1; int guess = 0;
Here, the computer take a guess
computerguess = low + rand() % high;
This asks if the computer guess is right
cout<<"Is it "<<computerguess<<" ?y/n: ";
This gets user response (y or n)
cin>>response;
The following iteration is repeated until the computer guess is right
while(response == 'n'){
This asks if computer guess is high or low
cout<<"Higher or Lower? h/l: ";
This gets user response (h or l)
cin>>hl;
If the response is higher, this line gets the lower interval of the range
if(hl == 'h'){ low = computerguess+1; }
If the response is lower, this line gets the upper interval of the range
else{ high = computerguess-1; }
This increments the number of guess by 1
guess++;
Here, the computer take a guess
computerguess = low + rand() % high;
This asks if the computer guess is right
cout<<"Is it "<<computerguess<<" ?y/n: ";
This gets user response (y or n)
cin>>response; }
This prints the statistics of the guess
cout<<"I got your number of "<<num<<" in "<<guess+1<<" guesses.";
Help with my Nintendo DS please I now it’s not school related but I need it for my little sister
Answer:Go to settings and do factory reset!
Explanation:
What is the other name of the horizontal column graph?
graph is also known as the horlzontal column graph.
Answer:
Side Graph mabye?
Explanation:
Answer:
A bar graph.
Explanation:
A bar graph is also known as the horizontal column graph.
Which strategies for effective presentations is Ian using in his opening? Check all that apply.
using a hook in his opening
detailing the speech’s objectives
communicating all the major details of the speech
engaging with his audience by asking them questions
letting his audience know what to expect
Answer:
A. using a hook in his opening
B. detailing the speech’s objectives
E. letting his audience know what to expect
Explanation:
Opening his speech using a quotation is a strategy of using a narrative hook, or simply hook, by Ian. Giving a grand and enticing opening is what makes an audience to pay attention and listen to what the speaker has to say in his speech. So, first strategy used by Ian is using a hook in his opening.
Another strategy used by Ian is giving objective details of his speech. By outlining what he will be covering in his speech, Ian is letting his audience know what to expect from the speaker and his speech, and also gave details of his speech.
So, option A, B, and E are correct.
Answer:
A, B , E !
Explanation:
Which is the most recent version of Microsoft Windows?
Windows 10
Windows NT
Windows Service Pack 2
Windows Longhorn
Answer:
Windows 10
Explanation:
Answer:
Windows 10
Explanation:
Windows 10 was released in 2015 while other are old
Describe the history of computer in Nepal.
Answer:
The first computer brought in Nepal was IBM 1401 which was brought by the government in lease for the population census of 1972 (2028 BS). Later in 1975 (2031 BS)YantrikSarinikaran Kendra (Electronic Data Processing Centre) was established which was later called as National Computer Centre ( NCC )
Answer:
The first computer brought in Nepal was IBM 1401 which was brought by the government in lease for the population census of 1972 (2028 BS). Later in 1975 (2031 BS)YantrikSarinikaran Kendra (Electronic Data Processing Centre) was established which was later called as National Computer Centre ( NCC )
Explanation:
if this answer is correct please make as brainlelist
What are the advantages and disadvantages of top-down and bottom-up programming? How would you decide which one to use? Do you approach problems in your real life from a bottom-up or top-down approach?
Answer:
Question: What are the advantages and disadvantages of top-down and bottom-up programming?
Answer:
Top-down programming is a process of writing programming codes that contain specific instructions for a computer to carry out the instructed task. Usually, Top-down programming comes as software that enables the division of problems that are initially complex into simpler parts. An example is a kind of software developed to give loans to worthy clients. The software may be broken down further to check the bank statements of the client, calculate the earning and spending capacity of the client, Amount paid on utilities.
Advantages of Top-down programming:
1. Top-down programming makes teamwork possible as a system is divided into sub-systems which individuals can handle separately before merging the sub-systems together.
2. Checks and testing become easy.
Disadvantages of Top-down programming:
1. Breaking systems into parts may be time-consuming as there is a need for more planning before working on individual sub-systems.
2. Error could be possible.
Bottom-up programming is a software of a method of design which is opposite to what the top-down programming does as the bottom-up programming works on the sub-systems first and then combine later into a bigger system. This makes use of the existing resources with the aim of generating a bigger result.
Advantages of Bottom-up programming:
1. Adaptability - Bottom-up programming makes adaptability easier.
2. When used in a company it gives all workers the room to make a contribution towards achieving bigger results, improving operations generally.
3. It makes one start a bigger project with the available resources.
Disadvantages of Bottom-up programming:
1. Result could be affected as some workers lack the needed experience to execute some tasks successfully.
2. Lack of desired unity among workers with differences in objectives resulting to endangering the result.
Question: How would you decide which one to use?
Answer:
It depends on the picture of how the result would look like, the goal of the organization employing it, the skill-set among workers available to do the task, the nature of the task. If a larger goal is to be achieved, smaller sub-systems could be used and joined at the end to get a system meaning bottom-up programming would be used. In cases for instance where output is to be determined for instance staff salaries, the output would be broken into simpler units to allow solutions for separate units then we could use top-down programming.
Question: Do you approach problems in your real life from a bottom-up or top-down approach?
Answer:
I approach problems from a top-down approach because it allows checks and testing easy, and the act of breaking systems into sub-systems makes it easy for me to approach each sub-system with a result-oriented plan.
Answer:
Some advantages of top-down are that you can start off from what you know and figure out what you need to complete it, the advantage to bottom-up is that you can make something new . if you are starting something from scratch and you don't know what the end goal might be you would use bottom-up but if you already have an idea or the final product of what you want you would go with the top-down approach.
Hope this helpedHave a great day!What is the highest numeral in a decimal code?
A. 9
B. 5
C. 2
D. 1
Answer:
9
Explanation:
1.8, 1.9, 2.
~theLocoCoco
2. Media sharing websites let you post photos and videos to share with other people. What are the benefits and drawbacks of using these websites?
Media sharing websites let you post photos and videos to share with other people. The benefit is that we are up to date and get all the news as well as information worldwide.
What is company's website?The website of the company is all web sites which is operated by any occupied company or via any occupied company conducts the business. Any business website is a website that is designed in such a way that it can represent the identity of a business on the internet.
Company's name and fame id totally depends upon advertisement and its products and websites play an important role in order to make company popular and due to this reason company used the website or designed the website in unique and knowledgeable manner.
Therefore, Media sharing websites let you post photos and videos to share with other people. The benefit is that we are up to date and get all the news as well as information worldwide.
Learn more about website here:
https://brainly.com/question/19459381
#SPJ2
list and explain three computing devices from the 20th century
Answer:
Calculating Machine
Graphic tablet.
Touchscreen
Explanation:
Hope this helps.
Brain-List?
Answer:
1. The First Calculating Machine (Pascaline)
2. Jacquard's Loom
3. The First Pocket Calculator
Explanation:
1. Pascaline was the first calculator or adding machine to be produced in any quantity and actually used. It was deigned at about 1642-1644.
2. Jacquard Loom is an attachment for powered fabric looms
3. The first truly pocket-sized electronic calculator was the Busicom LE-120A "HANDY" It was marketed in 1971.
Two light bulbs are connected in a series circuit. You add a third bulb in a series. All three bulbs are identical. Which of the following will happen?
Answer:
The bulbs would becom dim
Explanation:
The 3rd bulb adds too much resistance that the other bulbs go dim
Users of a _____ database have access through their personal computers linked to local or wide area networks
Answer:
Company
Explanation:
A company database is a database of a firm or organization that contains the information about the firm's employees, their products, services, and as well their client's and customers' details.
This is often kept on the main database server and arranged and organized by a database administrator.
Hence, Users of a COMPANY database have access through their personal computers linked to local or wide area networks
an early type of GUI is created, which includes windows, pop-ups, icons, and menus. What year did this happen? Please help!!! quick.
Answer:
1979
Sources:
Wired
InventHelp
hope i helped :D
In which situation is coauthoring of presentations primarily utilized?
A reviewer must be able to make changes to a presentation after an author creates it.
Multiple authors must be able to simultaneously make changes to a presentation.
Multiple reviewers have to be able to view one another’s changes after they are made.
One author and one reviewer work on a presentation at different times.
Answer:
A i belive
Explanation:
Answer:
B) Multiple authors must be able to simultaneously make changes to a presentation.
Explanation:
Co indicates being part of a whole. So this means that two or more authors are working on this project simultaneously. Such as co-management; two bosses working together in an equal position.
Which of these statements about tags is false?
Group of answer choices
Their font is center-aligned by default.
They serve as the label for a row or column.
They automatically display as the first row or column.
Their font is bold by default.
Answer:
LOL i don't even know
Explanation:
which part of the brain controls the movement of muscles
Answer:
PLEASE MARK AS BRAINLIEST
Explanation:
Cerebellum
Cerebellum. The cerebellum (back of brain) is located at the back of the head. Its function is to coordinate voluntary muscle movements and to maintain posture, balance, and equilibrium.
Soft skills are more likely to be transferable than hard skills?
True or false
Answer:
The correct answer is true.
Explanation:
Examples of Soft skills are
Communication TeamworkPositive Attitude etc.These skill can be applied to any job. That is why we have said that soft skill are transferrable.
Now let look at hard skill,
Hard skill like programming in python. Making the architecture of computer. These skill can not be transferred to a new job like authoring a book.
so, hard skills are not easily transferrable.
What security concept states a user should only be given the minimum set of permissions required to perform necessary tasks
help me i dont know this i suck at it
Answer:
Compiler, High level, Low level
Explanation:
I don't know about the last 2
Kris is the project manager for a large software company. Which part of project management describes the overall project in detail?
1) Analysis report
2) Resources document
3) Scope
4) Scope creep
Answer:
Scope or 3)
hope this helps
always love to be marked brainliest
Can someone please help me out with this?
What's the question?