Answer this crossword for brainliest and 15 points

Answer This Crossword For Brainliest And 15 Points

Answers

Answer 1

Answer:

I like ur cut G

Explanation:


Related Questions

Plz I’ll mark Brainliest
When programming, why should you frequently save your work?
O
to check for errors

O so your work won't get lost if you have a computer problem

O to distinguish your
project from other projects

O to keep your categories separated logically

I’m leaning toward B.

Answers

Answer:

It's B cuz if somehow the power went off your work won't be saved. So it's best to save your work frequently.

Micheal is the project manager in a company. He wants his organization to use technology for higher revenue and productivity. What should Micheals company do?

Answers

Answer:

For higher revenue, the mamagement of income, discounts and all financial matters whereby the use of technology can help by installing a

BUSINESS APPLICATION

For which tasks would Excel be useful? Check all that apply.
creating charts or graphs
bringing data together
writing an essay
scheduling appointments
Istoring financial data
analyzing data to draw conclusions

Answers

Answer:

Creating charts or graphs

Bringing data together

Storing Financial data

Explanation:

Excel is great at creating charts and graphs

Also good at compiling data

You wouldn't necessarily want to type an essay in excel, so not for writing an essay

You cannot schedule appointments through excel, although I guess if you really wanted to you could organize them in excel

Excel is fine for storing financial data, you can even manipulate it in the program

You cannot draw conclusions using excel directly, although you can organize data in such a way using excel that it makes it easy to identify trends and such for you to draw your conclusions

Answer: A B E F

Explanation:

Jim lost his job due to the replacement of robots in a manufacturing factory. As an ethical practice, what should the manufacturing factory do?

As an ethical practice, the manufacturing factory should provide alternative ____
to Jim.

Answers

An alternative
“position”

What is a feature of Print Preview?

Fit to Document
Fit to Margin
Fit to Page
Fit to Size

Answers

Answer: I think it would be fit to size

Explanation:

when I had a test with this question I guested fit to page and got it wrong so my next guess would be fit to size.

When a recipient responds to a meeting request, which statement most accurate descries what occurs?
O The meeting is confirmed, and the time is shown as Busy on the recipient's calendar.
O The meeting is confirmed, and the time is shown as Free on the recipient's calendar.
O The meeting request is removed from the inbox, the meeting is confirmed, and the time is shown as Busy on
the recipient's calendar.
O Nothing occurs because a recipient does not need to respond to a meeting request.

Answers

Answer:

I believe the answer is: O Nothing occurs because a recipient does not need to respond to a meeting request.

Explanation:

Well, it's true. I've got a response from a meeting request and it was irrelevant, so nothing would be happening.

Sorry for the delayed response, hope this helps :)

The meeting request is removed from the inbox, the meeting is confirmed, and the time is shown as Busy on the recipient's calendar. Thus, option C is correct.

What happens when one can request for meeting on Microsoft Outlook?

Upon acceptance of a meeting request on Microsoft Outlook, the schedule is added to your calendar, and the time period is displayed as busy, while the email invite is deleted from your email.

The following steps are required when it is desired to retain meeting requests and store them within the email or a subfolder for future references

1) Click on the Tools menu

2) Click on Options in the Tools Menu

3) Click E-mail Options in the Options menu

4) Click on Advanced E-mail Options  and

5) Uncheck the Delete meeting request from Inbox when responding.

The meeting request is removed from the inbox, the meeting is confirmed, and the time is shown as Busy on the recipient's calendar. Nothing occurs because a recipient does not need to respond to a meeting request.

Therefore, The meeting request is removed from the inbox, the meeting is confirmed, and the time is shown as Busy on the recipient's calendar. Thus, option C is correct.

Learn more about meeting request on:

https://brainly.com/question/2931702

#SPJ6

Activity Compare and contrast the features of the four computer career fields. Write a paragraph on each and specify how the four career options differ from each other, and explain how they are similar to each other. For your research, you can browse through the Bureau of Labor Statistics ​

Answers

Answer:

Socratic app it will be over in

Which of the following lines correctly defines a String variable

A. String s = aplus;
B. s = "aplus";
C. String s = "aplus";
D. String = "aplus";
E. String;

Answers

Answer:

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

Explanation:

The correct answer to this question is C i.e. String s = "apluse";

The rule or syntax of declaring string in any programming language is given below:

String variable-name = "yourString";

For declaring string variable, first, you write "String" that is a keyword of a programming languages for declaring string variables, such as int before the variable name for declaring integer variable. Then, you need to write a meaningful name of the string as a variable. After string variable name, you need to put the equal operator and then write the string in double quotation("") marks and after that put the instruction terminator that is ";".

So, according to this syntax, option C is correct.

While other options are not correct because:

In option a, string is not encapsulated in double quotation. Option B does not have varaible type such as String and Option E does not have variable name and its value also. So, only option C is correct and all other except C are incorrect.

Use the drop-down menus to complete statements that describe SmartArt categories.


Information that does not need to be shown sequentially can be displayed as a_
A _shows a continuous process.


The way various elements in a system interconnect can be shown as a_


A _ displays different elements according to importance or size.
i did this because we don't have a lot of answers for computer classes I know the answers no need to answer

Answers

Answer:

List, Cycle, Relationship, Pyramid.

Explanation:

100%

High-performance video graphics cards often use ________ memory.
GDDR6

GDDR5

GDDR4

GDDR3

Answers

Answer:

GDDR5

Explanation:

Information posted online can be deleted in some cases, but why would it be difficult to know if it is really gone?
It can always come back on to your account because of common computer errors.
It is impossible to know if it has been copied or contained in a screenshot by others.
For many social media services deleting does not remove it, just makes it invisible.
It is illegal in most countries to delete certain personal information online.

Answers

Answer:

b

I need I Brainliest

This is using python.
Assuming all the variables are non-zero.

Which lines of code will assign the discriminant the value b2−4ac? Select 2 options.


discriminant = bb - 4ac

discriminant = b * b - 4 * a * c

discriminant = b ^ 2 - 4ac

discriminant = b ** 2 - 4 * a * c

discriminant = b ^ 2 - 4 * a * c

Answers

Answer:

discriminant = b * b - 4 * a * c

discriminant = b ** 2 - 4 * a * c

Explanation:

The operands are correct and in the right order (for python).

** is the operand for squaring something.

* is the operand for multiplying something.

- is the operand for subtracting something.

Let's take a look at these examples individually.

discriminant = bb - 4ac. You have to use the * sign so the computer understands that you're trying to multiply two objects together.

discriminant = b * b - 4 * a * c. This example works because it's using the * where it's appropriate.

discriminant = b ^ 2 - 4ac. In python we don't use the ^ sign. To use exponents, we use **. Also, there is no * sign in between 4, a, and c.

discriminant =  b ** 2 - 4 * a * c. This example works because it uses the ** and * sign where appropriate.

discriminant = b ^ 2 - 4 * a * c. This example uses the ^ sign and python does not support it.

SOMEONE PLEASE HELP ME OUT !!!!!!

Answers

Answer:

not completly sure but i believe its the one that says inform the coach of where the goalies weak area...

Explanation:

PLEASE HURRY!!!
Look at the image below

Answers

Answer:

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

Explanation:

In this question, the given code is :

def divide(numA,numB):

  quotient = numA/numB

  return quotient

#the main part of your program that calls the function

numC=40

numD=5

answer=divide(numC,numD)

print("Quotient", answer)

print (numA)        

The variable numA scope is local to divide function.

Because you can not access this variable outside of the divide function. All other variables such as numB and quotient also local variables of the divide function. These variables can not be accessible outside the divide function.

who is the impostor​

Answers

Red is sus. I saw him vent!!!!!!!!!
The imposter is Yellow he is always sus

Answer the crosswords for brainliest and 30

I really need help here get 30 points and brainliest

Answers

Answer:

6:width

Explanation:

what kind of crossword computer srry i did not mean take ur points I don't use them

WNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOW

Answers

Answer:

yes.

Explanation:

Use the table and the drop-down menus to order the
steps.
Click on the New tab.
Click on the Save or Save As tab.ha
Click on the Blank workbook image.
Type data into the columns and rows.
Create file name and choose location of file.

Answers

Answer: 2, 6, 3, 4, 7

Explanation:

Answer:

2

6

3

4

7

Explanation:

The concept of "plug and play" is demonstrated by which of the following
scenarios?

Answers

Answer:

Farah has completed a post-secondary education program and is now ready to begin working, without additional training, on her first day .

Explanation:  HoPe ThIs HeLpS

What is a good way to become a game developer without spending a lot of money?

Answers

Answer:

Codes

Explanation:

learn the codes first. when you're already expert, you'll find ways from there.

write a program to print the smallest number among three numbers ​

Answers

Answer:

min(a_list)

sort(a_list); a_list[0]

if this is cheating use conditionals, PYTHON

Which of the following is an example of revolving credit?
O Auto loan
O Mortgage
O Credit card
O Student loan

Answers

Answer:

A credit card - all others are loans

Explanation:

Credit card has been considered as the example of revolving credit. Thus, option C is correct.

What is a debit card?

A debit card has a payment card that can be used in the place of cash to make purchases. It deducts money just directly from the consumer's checking account when it has been used. Debit cards would allow you to spend money by drawing on the funds you have deposited at the bank. Credit cards has allow you to borrow money just from the card issue up to a particular limit.

Individuals who has been qualify for the installment loans are able to borrow the predetermined sum of the money that has been disbursed in one lump sum and has the repayable over time. These loans has typically have fixed interest rates and regular monthly payments that are the same every month.

Installment loans could  be advantageous because they help build credit and enable the achievement of a number of significant goals, such as the home ownership, but they may or can also be the detrimental because they may be associated with high fees and interest rates and they missed payments will lower credit score.

Therefore, Credit card has been considered as the example of revolving credit. Thus, option C is correct.

Learn more about credit card on:

https://brainly.com/question/30940802

#SPJ7

Mathematics and computer science share the concept of recursion.
You wrote a program to find the factorial of a number using recursion.
5! =

Answers

5! is equal to 120.

5 * 4 * 3 * 2 * 1 = 120

Answer: 5

Explanation: got it right on edgen

Help, please! I will mark as brainliest

Answers

Answer:

Change line 7 to:

for( int i=0; i < names.length; i++)

Last element in the array is one less than the length, ie:

stArr1.length - 1

To print every other value, you replace index++ with index += 2

Explanation:

Not only should you change the <= into <, but also i should start at 0, not 1. The first element of an array has index 0.

Bank of America sends out customer surveys to all of its customers asking them about the services they offer. What type of research are they performing?

Answers

Answer:

Market research

Explanation:

Market research: The term "market research" is described as a process of describing the viability of a new product or service via specific research that is being conducted directly with the different potential customers. Therefore, market research allows a specific company to discover or identify the target market and receive opinions and some other feedback from various consumers regarding their interest associated with the service or the product.

In the question above, the given statement represents market research.

Track Ball
which past of the computer is responsible
for processing informatfón and making calculation​

Answers

Answer:

central processing unit

When entering a function or formula in a cell, which is the first character
you must type? *
1 poil
the equals sign (=)
the plus sign (+)
a comma (1)
the letter f

Answers

Answer:

B

Explanation:

How many 1000-Watt lights can be plugged into a standard 120-Volt, 15-Amp outlet? (Hint: W/V=A) *

Answers

Answer:

There are up to 12 lights and or plugs on that circuit. A 1000w HPS or Metal Halide light takes 9 amps at 120 volts so you can only run one on a wall outlet circuit. A standard dryer outlet is 220 volts and 30 amps so you can power up to six 1000 watt lights on that circuit.

Question is on the picture thank you

Answers

I've included the spin and main method. I also included the public class. You can just ignore everything besides the spin method.

Which method is used to edit a function that has been created and inserted into a cell?
O Double-click the cell containing the function, and make amendments to the function within the cell.
O Click the cell containing the function, and click in the Formula Bar to make amendments to the function.
O Click the cell containing the function, and click on the fx symbol to the left of the Formula Bar to launch the
Function Arguments dialog box where amendments can be made.
O All of the above methods can be used to edit a function that has already been inserted into a cell.

Answers

Answer:

ITS D

Explanation:

I got on excel and tested all of them.

(they all work)

The methods used to edit a function is that all of the above listed methods can be used to edit a function that has already been inserted into a cell.

What is computer function?

The functions of a computer is known to be any kind of  task that a system does. It can be taking data or processing, etc.

Conclusively, Note that all of the above listed options can be used as a method in the editing of a function that has already been inserted into a cell as they are all correct.

Learn more about function from

https://brainly.com/question/179886

Other Questions
billy followed a chipmunk into meadow meeting a bearded gnome. when they heard Toby speak the magic words when they were on the slave ships when they were free in Africa when they were tired of working on the plantations 11. What did the ability to fly symbolize for the slaves on this plantation, and why was it important to How many sig figs does 602 200 000 000 000 000 000 000 molecules have ? Explain At cultutral arts day each session lasts 4/5 hours. The principal has set aside 3 hours for the sessions. Determine the number of sessions that can be sheduled for each student The 4th term as a G.P is 384 and3rd term is 96 find the first term. HURRY PLEASE HELP Four students are discussing the benefits and problems associated with using nuclear energy as alternative energy source. Which student has the strongest argument about using nuclear energy? A. Nuclear power plants pollute the environment and causes cancer in populations that use nuclear energy instead of traditional electricity. B. Nuclear power plants provide more energy than traditional coal plants; however, nuclear power plants also produce more greenhouse gases. C. Nuclear power plants run a high risk of nuclear meltdown killing all the organisms in a 20 mile radius. D. Nuclear power plants provide more energy than traditional coal plants and these plants do not produce greenhouse gases. In 2014, of fatal traffic accidentsinvolved alcohol.7%56%22%31% Why do gases released by incinerators cause problems Cardiac muscles, one of the three major types of muscles, is found in the walls of the heart. Which one of the following statements is not related to the cardiac muscles?(a) These muscles show rhythmic contraction and relaxation throughout life.(b) They do not work according to our will, so they are involuntary muscles.(c) They are non-striated, multinucleated and branched muscles.(d) The contraction and relaxation of the heart muscles help to pump and distribute blood to different parts of the body. Leaving this account and making a new one, I might use this one sometimes. Bye. define hypogeal germination and Epigeal germination help me 20 POINTS MATH please help me with honors chem I will give brainliest answer Someone be as kind as to offer some help? Use the elimination method to solve the system of equations. Choose the correct ordered pair -x+5y=-44x+3y=16Will give brainiest. Can you typically see a NEW MOON? __________ Jayden paid a total of $155 to purchase 5 books from a book club. Each book cost the same amount. The total cost included a shipping and handling fee of $15. What was the price of each book? 3. A merchant sold a pen for $6.90, thereby making a profit of 15% on the cost to her. Calculate: a. the cost price of the pen to the merchant to the nearest cent. b. the selling price the merchant should request in order to make a 25% profit instead. What is the point-slope form of a line that has a slope of 3 and passes through point (1, 4)?y minus 4 = 3 (x minus 1)1 minus y = 3 (x minus 4)y 1 minus 4 = 3 (1 minus x 1)1 minus y 1 = 3 (4 minus x 1) 6. Even when matter goes through a physical or chemical change the matter cannot be ____ or ___. Humans have found that we can eat the space cow, and it's delicious! There are no laws currently in place protecting the environment of Planet Z. What would happen to the populations of both the Space Cows and the Vaderians if humans began to hunt for Space Cows on Planet Z?Will it increase or decrease and why?