Answer: Labels (text) are descriptive pieces of information, such as names, months, or other identifying statistics, and they usually include alphabetic characters.
Values (numbers) are generally raw numbers or dates.
Explanation: Google.!
Why is the no video recording in iPhone camera
Answer:
it really does depend on what iphone you have but go to Settings > Privacy > Camera and disable the last app that was allowed access to the phone's Camera. check the camera app again and you should see the video recording access.
hope this helped!
Answer:
Wait is this a genuine question im not sure how to answer
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.
2 ways to make your computer work faster ( please help asap )
Answer:
clean up space or reboot ur computer or delete unwanted apps and files .
Explanation:
First Person Who Answers Fast As Possible Will Be Marked As Brainiest
Answer:
Save a database object Ctrl+S or Shift+F12
Open an existing database Ctrl+O or Ctrl+F12
To quit MS Access ALT+F4
Explanation:
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
Which economic philosopher you believe has the most positive effect on the United States today
Answer:
Adam Smith, the Father of Economics, has the most positive effect in the US today because he is also known for creating the concept of gross domestic product (GDP) and for his theory of compensating wage differentials.
Answer:
John Maynard Keynes (1883-1946)
History pros every so often imply John Maynard Keynes as the "goliath showcase examiner." The six-foot-six Brit recognized a lectureship at Cambridge that was eventually bolstered by Alfred Marshall, whose deftly and demand twists were the explanation behind a great deal of Keynes' work. He is particularly connected with supporting government going through and cash related course of action to mitigate the unpleasant effects of money related downturns, tragedies and impacts. During World War I, Keynes went after the credit terms among Britain and its accomplices, and was a specialist at the congruity game plan set apart in Versailles. (To scrutinize continuously about his speculations, see "Understanding Supply-Side Economics" and "Specifying Monetary Policy.") Keynes was almost gotten out before long the budgetary trade crash of 1929, anyway he had the alternative to change his fortune. In 1936, Keynes formed his unique work, the "General Theory of Employment, Interest and Money," which maintained government mediation to propel usage and contributing – and to facilitate the overall Great Depression that was fuming by then ("spend out of wretchedness," as intellectuals like to call it). This work has been regarded as the dispatch of present day macroeconomics. (To see more, see "Macroeconomic Analysis.")
What does tone of voice communicate?
O A. The sentence structure of a discussion
B. Nuances in meaning, including emotions
C. The time of day when people are talking to one another
D. Intentions expected from the audience
Answer:
B. Nuances in meaning, including emotions
Explanation:
Write an algorithm and draw a flowchart to input two numbers from the user and display the largest of two numbers
Answer:
Explanation:
Required
- Algorithm to display largest of two numbers
- Flowchart to display largest of two numbers
Algorithm
1. Start
2. Input num1, num2
3. Largest = num2
4. If num1 > num2 Then
4.1 Largest = num1
4. Print Largest
5. Stop.
See attachment for flowchart
To do this, three variables (num1, num2 and Largest) are used.
The algorithm starts by inputting values for num1 and num2; Then variable Largest is initialized to num2
If num1 is greater than num2, the value of Largest is changed to num2; else, nothing changes
Then Largest is printed.
The algorithm and flowchart which evaluates the larger of two numbers is given below and the flowchart attached :
The algorithm :
Step 1 : Start
Step 2 : Reads in two values a and b
Step 3 : Using the comparison operator, check if a is greater or b is greater
If a is greater, display a is greater, otherwise, b is greater.
Step 4 : Stop
The algorithm above gives the stepwise approach to finding the larger value. The graphical order of instruction called the flowchart is attached.
Learn more : https://brainly.com/question/25415243
Suppose you are an ad-serving company and you maintain a log of cookie data for ads you serve to the Web pages for a particular vendor (say Amazon). a. How can you use this data to determine which are the best ads? b. How can you use this data to determine which are the best ad formats? c. How could you records of past ads and ad clicks to determine which ads to send to a given IP address? d. How could you use this data to determine how well the technique you used in your answer to part c was working? e. How could you use this data to determine that a given IP address is used by more than one person? f. How does having this data give you a competitive advantage vis-à-vis other ad-serving companies?
Answer:
A
Explanation:
thethe more you have attached the more people are going to know your product so that it's going to be a long process which people can introduce to their friends
what is the purpose of the print area feature
Answer: The Print Area function in Excel allows you to print part of a spreadsheet rather than the full sheet
Explanation:
Answer:
C- Selecting specific cells and ranges to print
Explanation: ;)
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
A. Design an algorithm that takes 2 integers input from users in 2 variables, without using any other variable swap the values. Design its flow chart as well.
Answer:
The algorithm is as follows
Start Accept Input1 and Input2 Input1 = Input1 + Input2 Input2= Input1- Input2 Input1= Input1- Input2 Print Input1 Print Input2 StopSee attachment for Flowchart
Line 1 and 8 of the algorithm starts and stops the algorithm
Line 2 accepts the two integer variables (input1 and input2)
Take for instance input1 = 5 and input2 = 4
Line 3 increases input1 by input2
At this point, Input1 = 5 + 4 = 9
Line 4 subtracts input2 from input1 and saves it in input2
i.e. Input2 = 9 - 4 = 5
Note that, the value of input2 has changed to the initial value of Input1
Line 5 subtracts input2 from input1 and saves it in input1
i.e. Input1 = 9 - 5 = 4
Note that, the value of input1 has changed to the initial value of Input2
Line 6 and 7 prints the new values of input1 and input2
The flowchart does the same thing as the algorithm; the only difference is that it uses lines and shapes to depict flow of program
The flowchart was designed using Microsoft Office Word
the formula =sum(b2:b10 finds the?
Answer:
sum (addition) of all the numbers in cells b2 to b10.
Explanation:
which menu would most likely allow you to choose a font A.file B.Edit C.format D.insert
Answer:
D
Explanation:
We are required to find the menu would most likely allow you to choose a font.
The menu which would most likely allow you to choose a font is "format"
File menu: It is used to create new document or update existing document. Edit menu: It is used to edit documents. It functions includes: copy, paste, select, find, cut, undo, select all, replace etc.Format menu: This is the menu that controls the fonts in your documents. It is used apply borders, paragraphs, background, bullet points, numbers, columns. etc.Insert menu: This is used to place date, pictures, graph, page number, symbol etc in the documents.Therefore, the menu which would most likely allow you to choose a font is "format"
Read more:
https://brainly.com/question/19566768
To answer the research question "How am I going to find the information I need on the tople?" the best thing Georgia should
do first is
get on her computer to search the topic
make a list of the books she could use.
ask her teacher for specific suggestions.
make a list of relevant sources to check out
Answer:
The correct option is D)
Explanation:
To get information about a research topic the first thing to do is make a list of relevant sources.
Georgias sources would depend on the type of research she has been asked to conduct.
If it's primary research, she would collect information from:
Her own experienceHer own observationthe Information she gathers personally from other peopleIf it is secondary research, she can look at
books (hard copy, e-copy)journals (online, offline)online (blogs, videos, websites etc)Whilst looking online, it is important to stick to authoritative sources as it is possible for anyone to publish anything online.
Examples of reliable sources are:
Journals from Industry AssociationsBureaus of StatisticsGlobal Research CompaniesHigher Institutions e.t.c.Cheers!
Answer:
D
Explanation:
Edge 2021
Who developed the first
DBMS called Integrated
Data Store
Answer:
Charles Bachman developed the first DBMS called Integrated Data Store.
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..............
Help With Sims 4
So I got the latest update and my game randomly freezes and im guessing it’s form outdated cc but how can I tell what is outdated without deleting all of it help please
You should probably try removing it one by one if you dont want to get rid of all of it. it might take some time but,,,,
30 POINTS!!!
Select the correct answer.
Which term is a gestalt concept?
A. balance
B. governance
C. continuance
D. dominance
E. preference
30 POINTS!!
Type the correct answer in the box. Spell all words correctly.
Jason needs to learn a new web tool. He went through his books to understand more about it. Now he wants hands-on experience with using that tool. What would help him?
Jason can use ______ websites where workspace is provided to test the results of your code.
Answer:
online
the answer is online
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
Kair needs to change the brightness and contrast on a image she has inserted into a word document
Answer:
Kair should click the image.Right click then select "Format Picture."
Then select "picture corrections"
Answer:
adjust
Explanation:
What is basic statement made up of
Answer:
The answer is variables, constants, expressions and funcions.
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.
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
(b) Explain what is meant by a MAC address.
T
Answer:
A MAC ADDRESS is a hardware identification number that uniquely identifies each device on a network.
Explanation:
30 POINTS!!
Type the correct answer in each box. Spell all words correctly.
How are paragraphs distinguished in a website?
Paragraphs are separated using two styles: by ____ or by a ____ line space.
Answer:
paragraph or by a break line space
Answer:
Paragraphs are separated using two styles: by indentation or by a blank line space.
Explanation:
trust me
Which of the following operation is not performed by a mouse 1) left click , middle click , right click, double click
Answer:
middle click
Explanation:
hope it helps
Answer:
middle click
Explanation:
because in the middle it has a scroll
what type of data can we enter in a spreadsheet?
Answer:
Spreadsheet data is information that is stored in any spreadsheet program such as Excel or Google Sheets. Data stored in cells in a worksheet can be used in calculations, displayed in graphs, or sorted and filtered to find specific information. hope that helps love!
In a spreadsheet, we can enter numbers, text, dates and times, formulas and functions, Boolean values, currency and financial data, hyperlinks, and images/objects
Numbers: This includes whole numbers (integers) and numbers with decimal points (floating point numbers). Spreadsheets typically support mathematical calculations and formulas involving numeric data.
Text: You can enter plain text, such as names, descriptions, labels, or any other textual information.
Dates and Times: Spreadsheets often provide specific formatting options for entering and manipulating dates and times.
Formulas and Functions: Spreadsheets allow you to enter formulas and functions that perform calculations or manipulate data based on specified rules.
Boolean Values: Spreadsheets often support Boolean values (true/false) for logical operations and conditional formatting.
Currency and Financial Data: Spreadsheets often provide formatting options and built-in functions for dealing with currency and financial calculations.
Hyperlinks: You can insert hyperlinks in spreadsheets to link to external resources or other cells within the spreadsheet.
Images and Objects: Depending on the spreadsheet software, you may be able to insert images, charts, graphs, and other objects to enhance the visual representation of your data.
To learn more on Spreadsheet click:
https://brainly.com/question/10509036
#SPJ6
Who developed the first commercially
successful DBMS called Information
Management system.