Answer: some advantages are making sure you’re informed about things going on in the world and connecting with you’re friends or even talking to family members. I hope this answered you’re question!
Explanation:
The term citizenship means that citizens in a country:
A. are required to vote in every national election.
B. have certain rights, duties, and responsibilities.
c. must complete the naturalization process.
D. have to have been born in the country.
Answer:
Its B.
Explanation:
I think
Answer:
B: Have certain rights, duties, and responsibilities.
Explanation:
I got it right.
Does white space have visual weight? Yes or No
Answer:
no. (more info below)
Explanation:
white space appears to have no visual weight because it's seen as empty. Every body put in the room will appear to be heavier because of the volume surrounding it.
hope this helped!
Answer:
no
Explanation:
it's because it appears to be empty.
Darla is going to start writing the HTML code for a web page. What would she
start with?
A. Header
B. Closing tag
C. Opening tag
D. Title
Answer:
(C) Opening Tag
Explanation:
HTML code is contained in an opening and closing tag. To start writing code you need to first type in the opening tag.
Darla can be able to start with Opening tag. Check more about HTML code below.
What are tags in HTML?An HTML tag is known to be a part of made up language that is often used to show the start and also the ending of an HTML element that can be found in any HTML document.
Conclusively, for Darla to be able to start writing the HTML code for a web page, she needs an Opening tag for it to start.
Learn more about HTML code from
https://brainly.com/question/24051890
#SPJ5
list two use of a word processor software.
Explanation:
the Word processor is used to for
* Editing of documents
*Formatting of documents
*Creation of documents
*Saving documents
Give two reasons why mobile internet may not be available everywhere.
Answer:
Mobile Internet is dependant on cellular signal. Many countries, e.g. in Africa, don't have any coverage at all. Furthermore, mobile data might also not be available in the mountains as there are no cell towers and the rough terrain usually either blocks the signal entirely or weakens it significantly.
A speed limit sign that says "NIGHT" indicates the _____ legal speed between sunset and sunrise.
Answer:
Maximum
Explanation:
Speed limits indicate the maximum speed you are legally allowed to drive.
30 POINTS!!
Drag the tiles to the correct boxes to complete the pairs.
Match each design principle with its description.
Answer:
1. dominance
2. proportion
3. contrast
4. unity
5. gradation
Answer:
s
Explanation:
When checking for a no-start concern, you notice that an engine has no spark. Technician A says to turn on the ignition (engine off) and, using a DMM, find out how much battery voltage is available at the negative terminal of the ignition coil. Technician B says the DMM reading should fluctuate, indicating that the primary coil current is being turned on and off. Who is correct?
A. Neither Technician A nor B
B. Both Technicians A and B
C. Technician B
D. Technician A
Answer:
Option(C) is the correct answer to the given question.
Explanation:
Since overall the On-Board Diagnostics of the level 2 the computer systems need to evaluate the cause of the engine failures .The malfunction significantly increases in the fuel consumption, so that we can detecting the error code in the vehicle.
If we starting the engine as well as by using the DMM, we'll see how much battery voltage it is at the negative ignition coil node.If the spark module is faulty and no ignition coils can fire so all the engines are working that's why all the other option are incorrect .differentiate between analogue and digital devices
Answer:
In analog technology, a wave is recorded or used in its original form. So, for example, in an analog tape recorder, a signal is taken straight from the microphone and laid onto tape. ... In digital technology, the analog wave is sampled at some interval, and then turned into numbers that are stored in the digital device.
Explanation: Got it from google. hehe
Write code using the range function to add up the series 99, 98, 97,...
1 and print the resulting sum.
Expected Output
4950
Answer:
This program is written in python;
Comments are used for explanatory purpose;
Take note of indentations (See picure attachment)
Program starts here
#Initialize Sum to 0
sum = 0
#Iterate from 99 to 1 using range function
#The iterating variable i starts from 99 and ends at 1 with a difference of -1
for i in range(99, 1, -1):
sum+=i
#Display Result
print("Expected Output: ",sum)
#End of Program
What is basic statement made up of
Answer:
The answer is variables, constants, expressions and funcions.
Always accept a job offer before discussing its salary and benefits.
Please select the best answer from the choices provided
This question is incomplete because the options are missing; here is the complete question
Always accept a job offer before discussing its salary and benefits.
Please select the best answer from the choices provided:
True
False
The correct answer to this question is False
Explanation:
Salary and benefits are considered to be the way you are paid for your job and the time you spent on it. Also, salary might vary depending on the complexity of the job, possible risk, knowledge or preparation required, among others. Because of this, the salary and benefits must adjust to the type of job, time, effort, risks, among others. Thus, you should never accept a job before discussing its salary and benefits as you might end being underpaid or you might not receive enough benefits or compensation for the job, which will lead to dissatisfaction.
Answer:
false !!
Explanation:
features of action files
Answer and explanation:
An ".action" file is a file written in Xcode and used by the Automator program, whose function is to create automations in macOS. Action files contains specific actions that can be combined with other actions to create an automated process.
This type of file is used to automate tasks in macOS, usually with Finder (file manager) or another program.
Action files are especially useful for repetitive tasks, such as creating sequential batch folders, editing images, or deleting files.
ram is also called __________________________________________________
Answer:
Alternatively referred to as main memory, primary memory, or system memory, RAM (random-access memory) is a hardware device that allows information to be stored and retrieved on a computer. RAM is usually associated with DRAM, which is a type of memory module.
Explanation:
Which method will successfully launch the Spelling and/or Grammar Checker dialog box?
Click the Review tab on the ribbon; in the Proofing group, click on the Spelling & Grammar button.
Press the F7 key on your keyboard.
Right-click a word that is marked with a spelling or grammar error, and select Spelling or Grammar from the menu list.
All the above statements are correct.
Answer:all of the above
Explanation:
I got it correct
The correct is D. All the above statements are correct which All the above statements are correct.
To check your spelling and grammar, select the Review tab and then Spelling & Grammar.
What program is used in the word to check the spelling?Spell checking is a unique function in Microsoft Word that lets you check your work for grammatical and spelling errors. A software program that detects misspelled words in a document is what spell check essentially is.
Grammar checkers are a great tool for people who aren't writers or are very technical. These apps help users become more fluent in the English language by pointing out their flaws. Your writing will be reviewed by Grammar Checker Tools to ensure that it is accurate and error-free.
Select Spelling & Grammar from the Review tab. In the event that Word discovers a potential error, the Spelling & Grammar dialog box will launch with red text for spelling mistakes and green text for grammatical mistakes.
Thus, the ideal selection is option D.
Learn more about the Spelling and/or Grammar Checker here:
https://brainly.com/question/16798012
#SPJ2
Create a variable ‘temp’ and assign the value in Celsius. Display the message ‘It’s extremely hot day today!’ if the temperature is greater than 40oC otherwise, displays ‘It’s not too hot!
Answer:
This code is written using C++
Comments are used for explanatory purpose
Program starts here
#include<iostream>
using namespace std;
int main() {
int temp;
//Prompt user for input
cout<<"Enter temperature (in Celcius): ";
//Check if input is acceptable
while(!(cin>>temp)) {
cout << "That was invalid. Enter a valid digit: "<<endl;
cin.clear(); // reset the failed input
cin.ignore(123,'\n');//Discard previous input
}
//Check if temp is greater than 40
if(temp>40) {
cout<<"It's extremely hot day today!";
}
else{//If otherwise
cout<<"It's not too hot!";
}
return 0;
}
//End of Program
In 1838 after pressuring the Cherokee to sign treaties giving up their lands, the federal government
forced Cherokee resistors to adopt the lifestyle of white settlers.
O realized that it could not legally take land from unwilling Cherokee
O sent the US Army to force Cherokee resistors to march west.
filed a lawsuit against the Cherokee Nation to force its removal
The correct answer is C. Sent the US Army to force Cherokee resistors to march west.
Explanation:
In 1835 the U.S. government persuaded traditional Indian tribes including the Cherokee to sign a treaty that established the Cherokee would leave their land in exchange for money and other benefits. This treaty was signed by those that represented a minority in the tribe, and therefore it did not represent the opinion of all the tribe.
Additionally, after this treaty the government made the Cherokees leave their land and move to the Indian territory in the West. This was possible because the government sent the US Army, also, this forced displacement had a great negative effect in the tribe not only because they had to leave their land, but also because many died in the process.
Answer:
its C
Explanation:
I got 100 on my Quiz
Using substitution what is the value for x for the equations 2x+y=-3 and
y=4x+6? *
X3
x=3/2
O
x=0
Answer: x = -3/2
Explanation:
Hi, to answer this question we have to solve the system of equations:
2x +y =-3
y=4x+6
Substituting y=4x+6 in the first equation:
2x + (4x+6) =-3
Solving for x:
2x +4x+6 =-3
2x+4x =-3-6
6x =-9
x =-9/6
x = -3/2
In conclusión, the value of x is -3/2.
Feel free to ask for more if needed or if you did not understand something.
1-the principle of recycling applies only to open systems
True/False
2-It is important that measurements be consistent in engineering because
A-There is only one established system of measurement available
B-there is one unit that is used to measure weight, length and distance
C-engineers often work together internationally and replicate each others' results
Answer:
The answer to this question can be described as follows:
In question 1, the answer is False.
In question 2, Option C is correct.
Explanation:
Recycling seems to be the concept of organizing life by making use of as little resources as possible. The recycling approach enables us to live and reconstruct in modules that are closed, it use everywhere not only in the open system. Measurements must be accurate in engineering because engineers often operate independently globally and repeat the findings of one another.40 POINTS!!!
Drag the tiles to the boxes to form correct pairs.
Match the image manipulation techniques to their description.
Answer:
desaturation is 2nd one.
contrast is the first
saturation is the third
brightness is last
Explanation:
:) Please make me brainliest!
Match the image manipulation techniques to their description.
makes the image visible from the background - contrastmakes the image black and white - desaturationincreases color intensity - saturationadds light to objects in the image - brightnessWhat is a dictionary entry?A dictionary entry refers to the collection of information provided to understand the meaning of a word in a given context. This word of meaning will differ from context to context sometimes.
Image manipulation technique refers to a technology that is used to change the actual image by utilizing the tool in order to make the image clear and brighter.
This technique includes contrasting the background with a dark and light combination, adding brightness to the image, setting the pixels to eliminate the chances of the blurred image,s and so on.
Learn more about the dictionary, here:
https://brainly.com/question/1199071
#SPJ2
HOW DO I TURN THE CAPS LOCK OFF???? PLEASE HELP IT WONT STOP!!!!
Answer:
Press the caps lock key
Explanation:
what is the purpose of document inspector
Answer:
to remove any metadata that should be private
Explanation:
Got it right on edg.
write a paragraph on plastic and pollution within 100 words
Plastic is everywhere nowadays. People are using it endlessly just for their comfort. However, no one realizes how it is harming our planet. We need to become aware of the consequences so that we can stop plastic pollution. Kids should be taught from their childhood to avoid using plastic. Similarly, adults must check each other on the same. In addition, the government must take stringent measures to stop plastic pollution before it gets too late.
Plastic has become one of the most used substances. It is seen everywhere these days, from supermarkets to common households. Why is that? Why is the use of plastic on the rise instead of diminishing? The main reason is that plastic is very cheap. It costs lesser than other alternatives like paper and cloth. This is why it is so common.
Secondly, it is very easy to use. Plastic can be used for almost anything either liquid or solid. Moreover, it comes in different forms which we can easily mold.
Furthermore, we see that plastic is a non-biodegradable material. It does not leave the face of the Earth. We cannot dissolve plastic in land or water, it remains forever. Thus, more and more use of plastic means more plastic which won’t get dissolved. Thus, the uprise of plastic pollution is happening at a very rapid rate.
Most importantly, plastic pollution harms the Marine life. The plastic litter in the water is mistaken for food by the aquatic animals. They eat it and die eventually. For instance, a dolphin died due to a plastic ring stuck in its mouth. It couldn’t open its mouth due to that and died of starvation. Thus, we see how innocent animals are dying because of plastic pollution.
In short, we see how plastic pollution is ruining everyone’s life on earth. We must take major steps to prevent it. We must use alternatives like cloth bags and paper bags instead of plastic bags. If we are purchasing plastic, we must reuse it. We must avoid drinking bottled water which contributes largely to plastic pollution. The government must put a plastic ban on the use of plastic. All this can prevent plastic pollution to a large extent.
Answer:
Plastic is everywhere nowadays. People are using it endlessly just for their comfort. However, no one realizes how it is harming our planet. We need to become aware of the consequences so that we can stop plastic pollution. Kids should be taught from their childhood to avoid using plastic. Similarly, adults must check each other on the same. In addition, the government must take stringent measures to stop plastic pollution before it gets too late.
Uprise of Plastic Pollution
Plastic has become one of the most used substances. It is seen everywhere these days, from supermarkets to common households. Why is that? Why is the use of plastic on the rise instead of diminishing? The main reason is that plastic is very cheap. It costs lesser than other alternatives like paper and cloth. This is why it is so common.
Secondly, it is very easy to use. Plastic can be used for almost anything either liquid or solid. Moreover, it comes in different forms which we can easily mold.
Furthermore, we see that plastic is a non-biodegradable material. It does not leave the face of the Earth. We cannot dissolve plastic in land or water, it remains forever. Thus, more and more use of plastic means more plastic which won’t get dissolved. Thus, the uprise of plastic pollution is happening at a very rapid rate.
The first time a user launches the PowerPoint program, which view is shown allowing the user to access recent
presentations or create new presentations based on templates?
Answer:Click file, go to NEW then you can choose the template you would like to use to create your presenation.
Explanation:
Answer:
It might be edit view
Explanation:
Explain what will happen if we continue to use fossil fuels at the rate we are now and what impacts it will have on the planet.
Answer:
At the point when non-renewable energy sources are singed, they discharge carbon dioxide and other ozone depleting substances, which thusly trap heat in our air, making them the essential supporters of an Earth-wide temperature boost and environmental change. At the point when we consume oil, coal, and gas, we don't simply meet our vitality needs—we drive the current an unnatural weather change emergency also. Non-renewable energy sources produce huge amounts of carbon dioxide when consumed. Carbon discharges trap heat in the air and lead to environmental change.
Select the correct answer.
Florence is switching jobs. Her previous company worked on Java. The new company works on .NET. Which educational option can help Florence cope with the new programming language at the new job?
A. bachelor’s degree
B. high school degree
C. external training
D. masters degree
Answer:
I GO FOR OPTION D
Explanation:
BECAUSE THE OPPORTUNITIES ARE MORE FOR MASTER DEGREE THAN COMPARED TO OTHERS..AND EASY TO GET A JOB ACCORDING TO ME..AND MASTER DEGREE AT HIGH LEVEL UNIVERSITY MAKES MORE EASY TO GET A JOB..
HOPE YOU LIKE THAT
30 POINTS!!
Ruslan works in an advertising agency. He has been tasked with developing a poster for a sunglasses campaign. The poster is supposed to be put up on a highway billboard.
What file format should he use to create a high-resolution picture?
A. JPEG
B. PNG
C. TIFF
D. GIF
E. PSD
Answer:
c. TIFF..............
Which of the following is NOT a group on the Slide Master tab?
A. Edit Master
B. Styles
C. Edit Theme
D. Background
styles is not a group on the slide master tab
Answer: Edit theme Select and customized the colors, fonts
Explanation:
What framework provides a simple API for performing web tasks?
(blank) is a framework that provides a simple API for performing web tasks,
Answer:
Prototype is a framework that provides a simple API for performing web tasks.
Explanation:
Prototype is a JavaScript framework that aims to ease up the development of dynamic web applications. It basically take out the complexity out of the client-side programming.
Following are some salient features of Prototype:
1) Applies useful methods to extend DOM elements and built-in types.
2) Provides advance support for Event Management.
3) Provides powerful Ajax feature.
4) Built-in support for class-style OOP.
5) Not a complete application development framework
Answer:
Prototype is a framework that provides a simple API for performing web tasks
Which increases the rate of soil formation?
Answer: Increased temperature increases the rate of chemical reactions, which also increases soil formation. In warmer regions, plants and bacteria grow faster, which helps to weather material and produce soils. In tropical regions, where temperature and precipitation are consistently high, thick soils form.
Explanation: Hope this works
They are created from rocks (the parent material) by weathering and erosive forces of nature. Parent material is broken down by a variety of factors, including water, wind, gravity, temperature change, chemical reactions, living things, and pressure variations.
What are the factor involving in the formation of soil?Parent materials' rate of weathering and, consequently, soil characteristics like mineral composition and organic matter concentration are influenced by temperature and precipitation.
Faster plant and bacterial growth in warmer climates aids in the weathering of materials and the formation of soils. Thick soils develop in tropical areas where the temperature and precipitation are both constantly high.
Therefore, The rate of chemical reactions is accelerated by rising temperature, which also accelerates soil formation.
Learn more about soil formation here:
https://brainly.com/question/19554237
#SPJ2