How is a value list created?

by the user typing in values for the list
by the list pulling values from another table
by the list pulling values from the same table
by the user linking the list to another database

Answers

Answer 1
B I hope this helps!!!!
Answer 2

Answer:

A

Explanation:

edge


Related Questions

With _________, users will receive recommendations for items liked by similar users.

Answers

Answer:

Collaborative filtering

Explanation:

Collaborative filtering is an algorithms family in which there are various ways to determine the same users or items also there are various ways to determine the rating depending upon the same users rating

Therefore as per the given situation, the above is the answer

Hence, the same is to be considered

Why do numA and numB have the same scope in the subtract function?

def subtract(numA, numB):
return numA - numB

def divide(numC, numD):
return numC / numD

answer = subtract(24,6)
print (answer)
____________________
CHOICES
Only the subtract function can use or change the values of numA and numB.
numA and numB are both numeric.
numA and numB are similar names.
numA is passed the value 24 and numB is passed the value 6.

Answers

Answer:

Only the subtract function can use or change the values of numA and numB.

Explanation:

'scope' is about the parts of your program where a variable "exists", ie., can be used.

The other statements are factually true, but do not apply to the question.

Only the subtract function can use or change the values of numA and numB. So, the correct option is A.

What is Substract function?

In subtraction, the minuend is the primary number (from which a number must be subtracted) and the subtrahend is the second number (the number which is to be subtracted). The difference is the resultant number. In mathematics, the "minus" (-) operator is positioned in between the minuend and the subtrahend.

Use the minus symbol to carry out a basic subtraction operation (-). This is the simplest subtraction formula in Excel: =number1-number2. For instance, to subtract 10 from 100, write the equation below, which gives the answer of 90: =100-10. The values of numA and numB can only be used or modified using the subtract function.

Therefore, the correct option is A.

Learn more about Subtraction, here:

https://brainly.com/question/2346316

#SPJ2

In the following code snippet, what are the local variables of the function modByTwo?

function addFive(x){
var five = 5;
var result = x + five;
return result
}

function modByTwo(x){
var result = x % 2;
return result;
}


result and x


x only


five, result and x


result only

Answers

Result is the local variable because it can only be accessed and determined by the main functions which are addFive and modByTwo. A local variable is a variable that can only be accessed by its scope. Remember to like if this helped

In the following code snippet, the local variables of the function modByTwo are the result and x. The correct option is a.

What are local variables?

A local variable is one that can only be accessed from within a certain section of a program. These variables are often declared or defined within a subroutine and are local to that routine.

Local variables can alternatively be thought of as parameters that have values. The duration of the program's execution is reflected in a global variable. When the function is called, a local variable is created, and it is removed after the function has run its course. All the program's functions have access to it at all times.

One particular sub-program of a bigger main program declares a local variable. The values of local variables will be stored in RAM while this sub-program is running.

Therefore, the correct option is a, result, and x.

To learn more about local variables, refer to the link:

https://brainly.com/question/16978529

#SPJ2

How many bit make a byte .​

Answers

Answer:

It is easy .8 bits.You have to note this

Answer: 8

1 byte = 8 bit

First time using this site so be mindful if I make any mistakes
For Micro Econ AP I am having a problem with this one question
It goes:
In what ways do households dispose of their income? How is it possible for a family's persoal consumption expenditures to exceed its after-tax income?

Answers

Answer:

Okay... Well

I will. help you out dear

Dora has inserted a text box into a Word document that she is formatting. Which strategy will not format text boxes? Create a link between two text boxes. Set the height and width of the text box. Add background images to the text box. Link the text box to another document.​

Answers

Answer:

D. Link the text box to another document.​

Explanation:

A text box is an object that you may add to your page that allows you to place and enter text wherever in it. The correct option is D.

What is a text box?

A text box is an object that you may add to your page that allows you to place and enter text wherever in it. Content boxes may be handy for attracting attention to a certain text and also for moving text about in your document.

Dora has inserted a text box into a Word document that she is formatting. Therefore, the strategy that will not format text boxes is strategy will not format text boxes.

Hence, the correct option is D.

Learn more about Text Box:

https://brainly.com/question/13812028

#SPJ2

Adam has created a document for publishing and needs to ensure that no changes can be made. He has accessed the
Developer tab and is using the Restrict Editing task pane. Which option should Adam choose?

Formatting Restrictions

Editing Restrictions

Start Enforcement

Track Changes

Answers

Answer:

formatting restricions

Explanation:

i took the test

Answer:

B) Editing Restrictions

Explanation:

By enabling this and leaving it as the default setting, the document is now read only and cannot be edited.

Samantha is looking for a lens that is lightweight and small, making it easy to transport. She doesn’t care about the lens being interchangeable nor does she need to zoom as she prefers to move physically closer to her subjects. She wants a simple lens that has the ability to produce a natural perspective. What kind of lens is likely best for Samantha?

Select one:
a. micro
b. zoom
c. telephoto
d. prime

Answers

Answer:

The correct option is;

d. Prime

Explanation:

A prime lens is a unifocal, or fixed-focal-length lens and it is referred to as the opposite of a zoom lens

The maximum aperture of ranges from f2.8 to f1.2, which are fast and have a creamy rendering of light that are out of focus, and also provide crispy image details, by making the most use of the light available and provide distinct combination of foreground and background images in pictures that give a crisp and visually pleasing appearance.

Which of the components of the box model is transparent and does not take a background color? content padding border margin

Answers

Answer:

the answer is

ও d- margin

Explanation:

⁂ just did the cumulative exam review, hope this helped ☺

Margin is the component of the box model which is transparent and does not take a background color. Thus, the correct option is D.

What is background color?

The background color is, in most of the cases, displayed in the form of an RGB triplet or a hexadecimal code of colors. The three separate pairs of different numbers which are given in the command, represent the different set of color values of the RGB spectrum. The first value in this set stands for the red color, the second color stands for the green color and the last one stands for the blue color.

The background style of the content, padding, and border areas of a box model are specified by the background property of the generating element of the system. Margin backgrounds are the elements which are always transparent in color.

Therefore, the correct option is D.

Learn more about Background color here:

https://brainly.com/question/14928554

#SPJ2

What is bill Gates passion?

Answers

Computing. He makes software design and that revolves around computing

tO CrEaTe ToiLeT. Sorry, the real answer is to change the world via technology, and to keep on innovating.

I hope this helps, and Happy Holidays! :)

What is the missing line of code?
class vehicle:


self.model = strModel
self.color = strColor

def __str__(self):
return self.model + ' ' + self.color

Answers

Answer:

def__init__(self,strModel,strColor):

The missing line of the given code is as follows:

Class vehicle: def__init__(self,str Model,str Color).

What is the significance of programming code?

The significance of programming code may be determined by the fact that it implies a computer finishing the commands that are given by the user over and over again. As a result of this, people do not have to do the task repeatedly.

When it comes to using string commands in python, the sequence of characters inside either single quotes, double quotes, or triple quotes leads to their assignment to a variable. This variable more frequently relies on the instruction given by the user in a specific period of time.

Therefore, the missing line of the given code is well mentioned above with respect to python and code programming.

To learn more about Python programming, refer to the link:

https://brainly.com/question/26497128

#SPJ3

Which feature in PowerPoint is used to correct common capitalization and text formatting issues but can also be modified for more robust and personalized corrections?

Grammar Checker
Insights
Spelling Checker
AutoCorrect

Answers

Answer:

AutoCorrect: D on edge

Explanation:

Answer:

D.AutoCorrect

Explanation:

a software function that automatically makes or suggests corrections for mistakes in spelling or grammar made while typing.: a computer feature that attempts to correct the spelling of a word as the user types it The iPad boasts an autocorrect system that will try to figure out what you mean to type even when you don't quite tap the right keys.

Your friend told you that your favorite celebrity couple split. What is the best media form to use?
a
Wiki
b
Social Network
c
Infotainment site
d
Forum

Answers

Answer:

b

Explanation:

I think social network is the first source of every update of reality even wiki gets info from social network

Answer:a)wiki

kalo salah maaf ya

How can you place a paragraph of text in a box smaller than the text content, and add a scroll bar?
You can do this by using the __ property and setting it to ___.
(First blank: Border, Margin, Overflow.)
(Second Blank: Auto, hidden, scroll)

Answers

Answer:

I think it's overflow and hidden.

Explanation:

Answer:

You can do this by using the  overflow  property and setting it to  hidden .

Explanation:

what could happen if I break copyright law in the future​

Answers

um i’m pretty sure you could go to jail and you would have to pay fines
youd pay fine. amount depends on the situation. you could also potentially face time in prison

Which file is usually the first file to be displayed when you navigate to a website?

A. Starter.html
B. Home.html
C.index.html
D. Template.html

Answers

Home. HTML is the first file to be displayed

Provide an example by creating a short story or explanation of an instance where availability would be broken.

Answers

Incomplete/Incorrect question:

Provide an example by creating a short story or explanation of an instance where confidentiality would be broken.​

Explanation:

Note, the term confidentiality refers to a state or relationship between two parties in which private information is kept secret and not disclosed by those who are part of that relationship. Confidentiality is broken when this restricted information is disclosed to others without the consent of others.

For instance, a Doctor begins to share the health information of a patient (eg a popular celebrity, etc) with others such as his family members and friend

s without the consent of the celebrity.

Which of the following is an example of data an Earth-observing satellite would collect?
studying ocean and land changes

monitoring the movement of ships

tracking signals between different points on Earth

studying weather patterns

Answers

Answer:

A

Explanation:

Hopefully this helps

Type the correct answer in the box. Spell all words correctly.
What does Clara create that programmers can use to write code?
Clara works in a software development company. Her boss identifies that she has strong problem-solving skills. Clara’s boss places her on the planning team to create____ for programmers.
This is for Edmentum final! thanks

Answers

Answer:

design documents

Explanation:

Usually, in a software development company or information technology (IT) department, software is developed through a team effort. Such teams have programmers and various other professionals, such as software developers and engineers. These professionals perform parts of the entire software development process. For example, the programmer is not the only person in a team who can formulate a solution to a problem. Many times, software developers and system analysts do this. They create design documents for the programmer to follow. Based on these design documents, a programmer writes the code for the program.

(This is for photography segment exam btw)

Who created the first known photograph?

A. George Eastman
B. Ansel Adams
C. Joseph Niepce
D. Louis Daguerre

Answers

Answer:

C. Joseph Niepce

Explanation:

C is correct for sureee

this is very simple i just need someone to type out this for me

Answers

Answer:

#27

2i , -2i, i, -i            i^2 = -1

1(x - 2i)(x + 2i) 1(x-i)(x+i)

x^2 +2x-2x -4.2i x^2 -xi-xi -i

(x^2 + 4)      x^4 + 1

x^2 +x^2 +11x

x^4 +5x^2 +4

+4+2+2+-1

*This was not simple for me

What is the "middle" value for the "vertical-align" property based on?
a) a line's x-height
b) the height of the age
c) the shortest element on a line
d) the number of elements on a line

Answers

Answer: a) a line's x-height.

Explanation: The middle of the parent element is calculated by taking the x-height, halving it, and adding it to the baseline. Therefore, the "middle" value for the "vertical-align" property must be also based on the line's x-height.

True or false binary code is a base ten system

Answers

Answer:

false it is a two base system

what is hardware ? Name the four functional hardware of a computer system Define each of them with the help of a diagram​

Answers

Answer:

There are four main computer hardware components that this blog post will cover: input devices, processing devices, output devices and memory (storage) devices. Collectively, these hardware components make up the computer system.

What are movies filmed before 1990's?

Answers

Answer: Once Upon a Time in the West (1968) PG-13 | 165 min | Western. ...

Cinema Paradiso (1988) R | 155 min | Drama. ...

Blade Runner (1982) R | 117 min | Action, Sci-Fi, Thriller. ...

2001: A Space Odyssey (1968) G | 149 min | Adventure, Sci-Fi. ...

Apocalypse Now (1979) ...

Chinatown (1974) ...

Stardust Memories (1980) ...

Le Notti Bianche (1957)

Explanation:

what is not a type of application software

Answers

Windows nt is not a type of application software.

The image below shows an encoding for a black and white pixel image. The first two
bytes of the data (circled in red) are used to encode the width and height of the
image. What is the best term for this type of "data about the data"? Explain why it is
necessary to include this data in the encoding.

Answers

Answer:

where is the image i need the image

Explanation:

plz hurry i'm timed Which type of essay presents one side of an argument to convince readers to support it?

a descriptive essay
an expository essay
a narrative essay
a persuasive essay

Answers

Answer:

persuasive

Explanation:

Persuasive essay

Hope this helps

What social media profession entails determining how and in what way an organization will create and maintain a social media presence?
social media strategist
social media marketer
social media manager
social media specialist

Answers

Answer:

i believe the answer is b.

Explanation:

Answer:

(a) strategist

Explanation:

its the proven answer on my test

aquatic life zone such as acorans and their bays, estuaries, coastal wetlands, shorelines, coral reffs and mangrove forests?

Answers

Answer:

Iajajkwbwiw whw

Explanation:

Bshsiwiqnqiaowpwownsbbsdk akakwjnwkwnwkwnwoqknanamamalamkakakskwkwkwnwmw.

I hope u liked my answer. Thank u

Other Questions
Which unit abbreviation is a measurement of force?A. m/sB. m/s2C. ND. N/s Some cells have multiple dendrites and/or axons. What advantages does this have for the nervous tissue? I WILL GIVE BRAINLIEST IF YOU ANSWER THIS BY 12/20/20. In the space below, write a 300-word essay describing the political career of Eugene Talmadge. The essay should include the impact Talmadge had on Georgia. At the end of the essay, BE SURE TO INCLUDE A LIST OF ALL THE SOURCES USED TO GATHER INFORMATION ABOUT EUGENE TALMADGE. WORTH 20 POINTS PLZZZ HELP WILL GIVE BRANLIEST PLZZZA toaster transforms P energy into Q energy.What do P and Q most likely represent? P represents electrical energy, Q represents thermal energy P represents thermal energy, Q represents electrical energy P represents chemical energy, Q represents radiant energy P represents radiant energy, Q represents chemical energy Stacy is sending packages of candy to troops that are stationed overseas. Each package weighs the same amount, and each costs $13.87 to ship. She sends 3 packages in all. If Stacy gives the postal worker $45.00, how much change should she receive? what is the difference of 2/4 and 1/3? (04.03 LC)Which type of insurance covers homes, land, and other structures?A. CollisionB. HealthC. LiabilityD. Property 1. Les pommes et les bananes sont des _____. (food category)2. Le poulet et le boeuf sont de la ______. (food category)3. Est-ce que vous aimez les _____ gazeuses?4. Vous mangez les ptes dans ______.5. Est-ce que tu as _______sucre? Non, je n'ai pas _________sucre.6. Tu n'aimes pas ma robe? Mais ___________ j'aime ta robe!7. Vous n'aimez pas les lgumes? ___________ , je dteste les lgumes!8. Est-ce qu'il y a _________ caf? Non, mais il y a _______eau.Follow the example below and use the list of food items to compose complete sentences in French. Use the verb manger.Modle: Moi, j'adore les lgumes. Je mange des pommes de terre et de la laitue.Apples, beef, cakes, cherries, chicken, chocolate9. Eux, ils adorent les fruits.10. Nous, nous adorons la viande.11. Ils adorent le sucre.You are very polite. When asked if you do not like something, say that yes, you do, but give a logical excuse, such as that you are not hungry or not thirsty.12. Vous n'aimez pas le fromage?13. Vous n'aimez pas le jus de fruit?You are done being polite. You want to be honest. When asked if you do not like something, confirm that you don't. Answer with complete sentences.14. Tu n'aimes pas le lait?15. Elle n'aime pas le jus de fruit?Translate the following sentences:16. She sets the table with a plate, a knife, a fork, and a glass.17. We have some bread, some salt, and some pepper.18. I eat cereal for breakfast. Most Incas belonged to which social class? Which pair of triangles below can be shown to be similar using AA similarity?350700890677670249164049075082063054 What are some things about the Shang Dynasty, Mesopotamia, Ancient Egypt, and Indus River Valley's Government? In a mixed market economy, money goes to the government in the form of __________.A. rentB. taxesC. loansD. interest You weigh a gallon of liquid in science class and learn that it is approximately 7.3 pounds. You pass the liquid to the next group, and then realize that your teacher wanted an answer in kilograms, not pounds. Complete the explanation of how you can adjust your answer without weighing the liquid again. Then give the weight in kilograms. If necessary, round your answer to the nearest tenth. How is a numeral different from a number? A house cost $185,500 in 2000. By the year 2015, the value was $132,000. What was the growth rate as a percent for that 15-year period? Suppose that three out of five voters support a candidate. If 1,240 voters support the candidate, how many voters participated in the election in all? Round your answer to the nearest whole number. SRRY IK LAST QUESTION FOR REAL THIS TIME 20 POINTSPLEASE HELP!Find the slope of the line that passes through the pair of points.(4, 4), (6, 4) Is this a function?:/ If 45.0 mL of ethanol (density =0.789g/mol) initially at 6.0C mix with 45.0 mL of water (density =1.0 g/mol) initially at 28.0C in an insulated beaker, what is the final temperature of the mixture, assuming that no heat is lost? (CetOH =2.42 J/G C)