Gina has created a banking database. she wants to index the account opened date field. why would she do that?
A. to create a new record
B.to decrease the overall search time
C. to sort that field
D. to create a link to another table ​

Answers

Answer 1

Answer:

to decrease the overall search time

Answer 2

Answer:

The answer is B. To decrease the overall search time

Explanation:

I got it right on the Edmentum test.


Related Questions

If you choose a color for your text that is similar to your background color, you will not have a strong
A sans serif
B scheme
C spectrum
D contrast

Answers

Answer:

D

Explanation:

contrast means two different things and without contrast the words would blend in

Answer:

The answer you are looking for is contrast. You often want your text to pop out from the background. using coral on top of hot pink would bring out a terrible contrast, whereas Cornflower blue and tan would bring out a very vivid contrast.

What is a compiler? O a tool used to integrate multiple software programs O a tool used to extract a single software program from an integrated collection of programs O a computer software application that translates binary computer machine language into a computer programming language a computer software application that translates a computer programming language into a binary computer machine language O


Please Help I'm testing!!!! ILL MARK YOU BRAINLIEST TO WHOEVER HELPS ME​

Answers

Answer:

Here is an explanation if this helps this is what i know :)

Explanation:

a program that converts instructions into a machine-code or lower-level form so that they can be read and executed by a computer.

Answer:

It is C on Edge, or a computer software application that translates binary computer machine language into a computer programming language

Explanation:

A compiler is "a program that converts instructions into a machine-code or lower-level form so that they can be read and executed by a computer."

C would be correct because you are translating machine code, or binary language, into code that can be executed by a computer, or a computer programming language.

What feature allows you to access previous copies of a document on OneDrive?

Answers

Answer:

go to downloads and find drives

Explanation:

Which of the following are examples of the good use of indentation and line breaks?
Choose all that apply.
the use of line breaks to
separate segments of code
the use of indentation to create segments of code that are easy to identify
the omission of line breaks so that code can be written without any interruption
the use of indentation that hides segments of code
ANSWER: A & B

Answers

A and B

bro trust me....

Answer:

A and B i got it right thanks to the guy above me

Explanation:

How many dlcs in total were in each black ops game (including dlc weapons) answer for 25 whole points

Answers

Answer:

... ......................... ...............

you did the same<3<3

Project: Math Tutor Program with Error Handling
image of a man sitting on a branch he is about to cut off

Sawing off the branch you are sitting on can only end badly (Imagery supplied by photoschmidt/iStock via Getty)
Unlike the man in the picture, you already know how to plan for and handle errors before they happen. You know how to create and use lists. You know how to use loops. You are going to put these abilities to work in this project. You are going to write a program to help young children with their arithmetic skills.

Objectives
Plan and create a program to practice math facts with error handling.

Your Goal
Your users are young children learning their arithmetic facts. The program will give them a choice of practicing adding or multiplying.

You will use two lists of numbers.

numA = [4, 1, 6, 10, 2, 3, 7, 9, 11, 12, 5, 8]

numB = [2, 12, 10, 11, 1, 3, 7, 9, 4, 8, 5, 6]

If the user chooses adding, you will ask them to add the first number from each list. Tell them if they are right or wrong. If they are wrong, tell them the correct answer.
Then ask them to add the second number in each list and so on.

If the user chooses multiplying, then do similar steps but with multiplying.

Whichever operation the user chooses, they will answer 12 questions.

Write your program and test it on a sibling, friend, or fellow student.

Errors
Think about the types of errors a user can make. Add at least one kind of error handling to your program.

What to Submit
Save your program with a .txt extension. You cannot upload a .py file.
Before you turn your project in, read the rubric.

I need this to be original work

Answers

Answer:

finished = False

numA = [4, 1, 6, 10, 2, 3, 7, 9, 11, 12, 5, 8]

numB = [2, 12, 10, 11, 1, 3, 7, 9, 4, 8, 5, 6]

while True:

 pick = input("Would you like to practice addition (+) or multiplication (*)?")  

 

 if pick == "+":

   for o, k in zip(numA, numB):

     ans = input(f"What is {o} + {k}?")

     

     if ans == str(o + k):

       print('Correct!\n')

     else:

       print(f"Incorrect! The correct answer was {o + k}\n")

   finished = True

 

 elif pick == "*":

   for o, k in zip(numA, numB):

     ans = input(f"What is {o} * {k}?")

     

     if ans == str(o * k):

       print('Correct!\n')

     else:

       print(f"Incorrect! The correct answer was {o * k}\n")

   finished = True

 

 else:

   print('Incorrect Input!')

 

 if finished:

   print('Thanks for playing!')

   break

Explanation:

aduhhhh

What is the location used by users to configure delegate access on their own mailboxes?

O Backstage view > Account Settings

O Backstage view > Permissions

O Inbox > Permissions

O Calendar > Permissions

Answers

Answer:

Backstage view > Account Settings

The delegate access for the mail can be granted with the change in the account settings from the backstage view.

What is delegate access?

Delegate access is given as the feature in the Outlook that has been used for the sharing of the folder in the mail. The delegate access has been considered as the access to someone else on one behalf.

The location used by the user that enables him with the delegate access to their mail by settings of backstage view followed to account settings. Thus, option A is correct.

Learn more about delegate access, here:

https://brainly.com/question/16930004

#SPJ2

Can anybody answer these please hurry

Answers

Answer:
All of the above

Explanation:
Their size was very HUGE; While the computers were very EXPENSIVE to operate and used a great proportion of ELECTRICITY it caused the computers to generate a lot of HEAT which would cause the MALFUNCTIONS.

Which data type can store decimal or fractional numbers?
A. boolean
B. Integer
C. Chat
D. Floating point

Answers

The answer is A. Boolean

Answer:

♡ madeline here ♡

its a! have a great day

stay safe & be yourself

✧・゚: *✧・゚:・゚✧*:・゚✧・゚

Explanation:

Because it manages all other software the computer which software is most important

Answers

Answer: second option: Operating system...

An operating system is the most important software that runs on a computer. It manages the computer's memory and processes, as well as all of its software and hardware. It also allows you to communicate with the computer without knowing how to speak the computer's language.

Hope this helps... Stay safe and have a Merry Christmas!!!!!!! :D

Answer:

i believe it is os because with out a os the computer can not function software wise

__________ sourcing is a technique in problem-solving where the problem is shared with many people so that the people can offer potential solutions.

Answers

Answer:

crowd (crowdsourcing)

Explanation:

1. What is output to the screen by the following code?
int n = 10;
while (n > e)
n--;
System.out.print (n%4 +
");
a. 2103210321
b. 21032 103 2
C. 1032 1032 10
d, 103210321
e. 1230123012

Answers

Answer:

C will be your answer because i love you you like

Explanation:

Robin wants to make a database of all of the software on a laptop. Which of the following should be left off of the list?

A.
a program that edits photos

B.
the camera on the laptop

C.
an app for sharing photos

D.
a program that organizes photos

Answers

Answer:

B, I believe

Explanation:

Since software is code and hardware is something physical, the camera  would not be on the list.

Give an idea of a law u would like to create

Answers

I would like to create a law where parents can’t take your stuff or control my life when I’m 18

I would create a law that anyone who would do something against God's laws, would be put in jail for a week. Then, be asked if they would like to accept Jesus as their savior, and turn from their sins.

This is just my idea :)

God bless

Describe the software development process in brief

Answers

Answer:

There are a variety of software development processes depending on the project i.e the type of software in question will determine the choice of the software engineer:

1. Rapid application development: This model allows iterative designs and development.

2. Spiral development: In this model the project is divided into separate independent modules.

3. Waterfall Model: This is a sequential development approach

4. V Model: This is an extension of the waterfall model etc

Explanation:

In  software engineering, a software development process is the way toward separating software development work into unmistakable stages to improve plan, product management, and project management. It is otherwise called a software development life cycle (SDLC). The strategy may incorporate the pre-definition of explicit expectations and antiquities that are made and finished by a project team to create or keep an application.

The library Wi-Fi kiosk requires a symmetric connection to the Internet. Which WAN technology would probably be the least expensive option if the kiosk is within 0.75 miles of the telephone distribution office?

Answers

Answer:

The answer is IP-sec.

Explanation:

0.75 miles of range is a low distance for a WAN (Wide Area Network) so a point-to-point WAN tehcnology such as IP-sec or SD-WAN can be preferred. But the least expensive option would be choosing IP-sec as specified in the question.

I hope this answer helps.

9.4 Code Practice
The question is in the photo because this would’ve been too long to type and this is in Python

I need this kinda asap!

(Sorry for asking a lot and I’m sorry if the photo is hard to see I tried my best to get everything)

Answers

I've included my code in the picture below. Best of luck.

Which of the following industries utilize computer science?
1. Agriculture
II. Government
III. Music
IV. Healthcare
V. Art
VI. Film

Answers

Answer:

All of them

Explanation:

Agriculture uses it for data and crop yields

Government uses it for economy, and other things like PRISM(Their surveillance)

Music uses it for audio editing and touch-ups

Healthcare uses it for databases and medical science

Art can use it! There is an AI that can paint paintings that look amazing with strokes and everything, and they look just like a human painting.

Film uses it lots, for CGI, animation, data, and countless other things.

almost every industry uses computer science in one way or another.

The span was so long, the height so great, and the enterprise likely to be so costly, that few thought of it as something begun in earnest. . . . But Science said, "It is possible," and Courage said, "It shall be!" . . . . And so this Bridge is a wonder of science.


—Opening Ceremonies of the

New York and Brooklyn Bridge,

Seth Low


Which phrase from the excerpt is a fact that supports the opinion that the bridge is “a wonder of science”?


“the span was so long, the height so great”

“Science said, ‘It is possible’”

“something begun in earnest”

Answers

Answer:

"the span was so long, the height so great"

Explanation:

Just did on Edge 2020 and got it right.

Answer:”the span was so long, the height so great”

Explanation:

which statement is true? O A Future games will be more context oriented. OB. Future games will be more product driven. Future games will incorporate nominal technologies. O D. The development process of future games will focus on products and genres. Which statement is true​

Answers

Answer:

B

Explanation:

QUESTION IN PIC HELP

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

In this question, there are four div tags that are given with the style of z-index.

To implement these div tags with z-index style in HTML, the code is given below:

<!DOCTYPE html>

<html>

<head>

<style>  

div {position: absolute;}

#container div {

 background-color: lightblue;

 border: 1px solid #333333;

 width: 100px;

 height: 100px;

 opacity: 0.5;

}

</style>

</head>

<body style="position:absolute">

<h1> z-index</h1>

<div id="container">

 <div style="top:20px;left:20px;z-index:1;">z-index 1</div>

 <div style="top:40px;left:40px;z-index:10;">z-index 2</div>

 <div style="top:60px;left:60px;z-index:0;">z-index 3</div>

 <div style="top:80px;left:80px;z-index:100;">z-index 4</div>

</div>

</body>

</html>

In this code, four div tags are implemented with their z-index. When will you run this code, you will see the div tag with the lowest z-index show behind all other div tags, and the div tag with the highest z-index overlap all other lowest z-index div tags. The div tag that is the highest z-index value overlap all others.

Therefore, the div tag with the highest z-index will actually be seen.The correct option to this question is:

<div style="z-index:100;"></div>

       

Ivan wants to have code in a game that will make it possible to change the speed of a swimmer in the game. Which of these does Ivan need?

A.
a Boolean value

B.
output

C.
a variable

D.
a database

Answers

Answer:

C. Variable

Explanation:

I hope it helps

why is it important to prevent financial loss

Answers

Answer:Typically, loss prevention is seen as a cost to the business, because it involves expenditure – of time, energy, and sometimes money. However, loss prevention strategies that are carried out effectively and efficiently will not only protect your bottom line, but can help your businesses run more smoothly, too.

Explanation:

HOWARD!!!!!! THE PHONE IS RINGING!!!!!!!!!
Here's a crazy idea MA ANSWER IT!!!!!!!!!
That's Howard and his mom, Debbie Wolowitz from the big bang theory

Answers

Answer:

i am confused

Explanation:

Answer:

okay...

Explanation:

If you had a circuit with a voltage of 228 and a resistance of 13,the current would be ____ amps. (ROUND TO TWO DECIMALS PLACES) hint....using V=IR Rewrite the question to solve for I.

Answers

Sidjej skjssj delete 229 decimal v=

What is a set of guidelines for the writing and design of documents called

Answers

Answer:

Style guide

Explanation:

Given that a Style Guide is a set of guidelines, rules, or strategies for the writing and design of various documents. It involves the execution of an arrangement and uniformity of document contents accordingly. It can be used for both general and particular publications. It is sometimes referred to as a style manual.

Hence, in this case, the correct answer is STYLE GUIDE.

Which of the following is the biggest benefit to pursuing a career as a videographer?


higher salary

greater independence

potential for advancement

sower stress

Answers

Answer:

greater independence and potential for advancement

Answer:

greater independence

Explanation:

Why were people more likely to pay attention to the surroundings in the stone
age days?​

Answers

Answer:

cause every stinking thing wanted to kill them and they were exposed to the elements

Explanation:

:P happy to help hope it does

write any four commandments of Computer ethics​

Answers

Answer:

Thou shalt not use a computer to harm other people

Thou shalt not interfere with other people's computer work

Thou shalt not snoop in other people's computer files

Thou shalt not use a computer to steal

Thou shalt not use a computer to bear false witness

Thou shalt not appropriate other people's intellectual output

Explanation:

What are the best ways to conduct research for a presentation? Check all that apply.


ask a friend

go to the library

talk to an expert

search the Internet

visit with a neighbor

Personally I think it is C and D,
but Edge probably has something
else to say. :P

Answers

Answer:

confident

Explanation:

and some more add-ons:

A short intro

Poster presentation

Practice your delivery

simple and strong convey

Eye contact

and

last but not least *keep smiling*

The best ways to conduct research for a presentation? is to

Go to the library.Talk to an expert Search the Internet.

Why is it vital to conduct a research presentation?

It is one that gives a person the ability to stand for their science. When a person stands for their field of interest, it helps researchers in other disciplines, to be more aware.

Note that by doing the above steps, such as Talking to an expert, one van be able to conduct research for a presentation.

Learn more about presentation from

https://brainly.com/question/24653274

#SPJ2

Other Questions
5x+0(x+y)-3y+14-3(y-x)=Answer please Where were the first public schools in Texas established? a. Austin b. San Antonio c. Huston d. Dallas Please select the best answer from the choices provided A B C D _______ are chemicals that are essential to all cellular activity, helping the body convert carbohydrates and fats into energy.A) Amino acidsB) Fatty acidsC) vitamins why is aperham lencion why is this python code giving me problems?This is having the user input a decimal number and the code has to round it up to the 2nd decimal place. This code is giving me problems, please fix it.num3 = int(input("Please input a decimal number:")num3 = int(round(num3, 2))print ("your decimal rounded to the 2nd decimal place is:", x) PLEASE HELP!!adding and subtracting complex numbers 1-) (12-3i)+(7+3i)2-). (12+4i)-(3-7i) Is 30/50 equivalent to 3:5 When you chew a saltine cracker, you might detect a slightly sweet taste as starchbreaks down into...?A.sucrose.B.lactose.C.maltose.D.glucose. what are parts of a flower? For the function f(x)=13x, as x gets bigger, does f(x) increase or decrease? Drew gets married in January of 2019 and provides support for his stepdaughter, Melissa, who is 26 years old. Melissa does not earn any income in 2019 since she is a full-time graduate student. Which of the following is true regarding Melissa as a qualifying relativea. Melissa qualifies based on her age of 26b. Melissa qualifies based on her earned incomec. Melissa qualified because there is no age limit on qualifying relativesd. Both B and C are correct Give me your favorite Marvel character, and 3 reasons why. Don't answer if you have no clue what I'm talking about. "Uterine family" is the phrase Margery Wolf uses to describe the family a woman makes by having children though they are not officially recognized as members of the same lineage.a. Trueb. False HELP PLEASEEE Rules of the game 3/4 x 14? PLZZZ HURRY fill in the blanks of why orphan elephants are able to return to the wildi ready Please heeeeeeeeeeeeeeeeeeeeeeeeeelp Ahrends Corporation makes 46,000 units per year of a part it uses in the products it manufactures. The unit product cost of this part is below: Direct materials $14.30 Direct labor 23.90 Variable manufacturing overhead 3.00 Fixed manufacturing overhead 28.30 Unit product cost $69.50 An outside supplier has offered to sell the company all of these parts it needs for $6700 a unit If the company accepts this offer, the facilities now being used to make the pert could be used to make more units of o product that is in high demand. The additional contribution margin on this other product would be $424,000 per year f the part were purchased from the outside supplier, all of the direct labor cost of the part would be avoided. However, $28.40 of the fixed manufacturing overhead cost being applied to the pert would continue even if the part were purchased from the outside supplier. This fixed manufacturing overhead cost would be applied to the company's remaining products. Required:What is the maximum amount the compeny should be willing to pay an outside supplier per unit for the part if the supplier commits to supplying all 53,000 units required eoch year? What were the main reasons for U.S.involvement in the war? How did eventsin Russia in 1917 lead the United States toenter the war? John is standing on a set of bleachers and throws a baseball into the air. the baseball lands on the field. the height of the ball, in meters, is modeled by the function shown in the graph. what's the average rate of change of the height of the ball from the point when John throws it to its maximum height?