SOMEONE PLEASE HELP ME OUT WITH THIS!!!!!!

SOMEONE PLEASE HELP ME OUT WITH THIS!!!!!!

Answers

Answer 1

Answer:

C.

Explanation:

Answer 2

Answer:

I think its C give branliest to other guy


Related Questions

PLEASE HURRY

Jorge is using Python 3 as a calculator. Jorge wants to find the product of 321 and 408. What should Jorge type? print 321 x 408 print (321 times 408) print 321(408) print (321 * 408)​

Answers

Answer:

1. 321 x 408 print (321 times 408)

Explanation:

It is multiplication, it will create a product. So that is why.

Answer:

print (321 * 408)​

An input peripheral

a. interacts with or sends data to the computer
b. provides output to the user from the computer
c. receives data from the computer and sends to the printer
d. stores data processed by the computer

Answers

Answer:

c

Explanation:

Write a method called removeHighPrice that will go through a provided ArrayList called prices and removes the first price that is more than $5.00 and return the new ArrayList. If a price over $5 is not found, it returns the original ArrayList.

Answers

Answer:

The method written in Java is as follows:

public static ArrayList<Double> removeHighPrice (ArrayList<Double> prices){

       for(int i =0;i<prices.size();i++){

     if(prices.get(i) > 5.00){

         prices.remove(i);  

         break;

     }

 }

 return(prices);  

 }

Explanation:

This line declares the method

public static ArrayList<Double> removeHighPrice (ArrayList<Double> prices){

This line iterates through the ArrayList named prices

       for(int i =0;i<prices.size();i++){

This checks if current price is greater than 5

     if(prices.get(i) > 5.00){

If yes, the price is removed

         prices.remove(i);  

And the loop is terminated

         break;

     }

 }

This returns the ArrayList

 return(prices);  

 }

I've added as an attachment, the complete program which includes the main method

CAN SOMEONE PLEASE HELP ME WITH THIS PLEASE ?!!!!!!!!

Answers

Get feedback about your product from the restaurant

SOMEONE PLEASE HELP ME PLEASE HELP ME WITH THIS!!!!!

Answers

Answer:

The last one

Explanation:

I hope this is correct and have a great day

Answer: C

Explanation: First step in the engineering design would be to identify a problem and try to come up with a solution for it.

Using the Caesar cipher, "HELLO" is encrypted to "OLSSV" by applying a shift of 7. The number 7 is considered the __________

Answers

Answer:

The offset

Explanation:

In the question, we understand that the original text is HELLO and the encrypted text is OLSSV.

It should be noted that O replaced H, L replaced E, S replaced L and V replacement O.

This is made possible by a term refered to as offset.

The offset is used to determine the character that will replace another when it is encrypted.

7 characters after H is O; this is same for every other characters in the text.

The example given represents a simple shift cipher encryption with each letter in the original text shifted by a fixed value. Hence, the shift value of 7 used in the cipher given is called the key.

Each alphabet on the original text, HELLO is shifted by the key 7 to produce :

H + 7 alphabets gives OE + 7 alphabets gives LL + 7 alphabets gives SL + 7 alphabets gives SO + 7 alphabets gives V

This produces the encryption OLSSV, hence, with the shift of 7 known the encryption letters are each reversed by 7 to obtain the actual phrase 'HELLO'.

LEARN more :https://brainly.com/question/20504501

8.
A customer wants to use the computer only to send emails to family members. Is a fast processor
required? Why or why not?

Answers

Answer:

yes

Explanation:

the faster the processor the better the computer loads things and works faster, there's little to no latency depending on the wifi

A customer wants to use the computer only to send emails to family members. Is the required the fast processor as well as fast internet connection was to send the easily.

What is customer?

The term customer refers to the purchased the goods and the services, The customer are to fulfill the needs and the wants as the exchange of the money. The customer is the receiving the information of the product with the help of customer.

The term email refers to the part of the communication. The email are the medium of the communication as the mostly used to the marketing and the information purposes. The email are the official purposes are the used. A person was to send the email to the family was the need to the fast processor as well as the need of the internet to share the email are quickly delivered.

As a result, the email was to share the quickly with the help of the internet and the fast processor.

Learn more about on email, here:

https://brainly.com/question/14666241

#SPJ2

inserting merge fields in the letter
steps required
plz ​

Answers

Answer:

Click or tap where you want the merge field.

Choose the down-arrow under Insert Merge Field, and select a field.

Insert Merge Field menu of available fields

If you don’t see your field name in the list, choose Insert Merge Field.

Choose Database Fields to see the list of fields that are in your data source.

Choose Insert.

Answer:

Once you have a data source connected to your document, adding merge fields is a way to personalize a document with information from the data source. The merge fields come from the column headings in the data source.

WindowsmacOS

Here’s an example of how the Address Block and Greeting Line collections of merge fields might pull data from an Excel spreadsheet into a form letter.

Data pulled into mail merge fields

The Address Block and Greeting Line fields are collections of merge fields.

Note: If the merge field commands appears dimmed, click Select Recipients and choose the kind of mailing list you’re using. If you don’t have a mailing list yet, click Type New List to create your list in Word.

Explanation:

Hope it's answer you plz mark as Brainlist

CHOOSE THE CORRECT CONTINUOUS TENSES( PRESENT CONTINUOUS,PAST CONTINUOUS AND FUTURE CONTINUOUS) : 1. I saw a snake while I ____________________ in the forest. am walking was walking will be walking will walk

Answers

Answer:

Explanation:

joe biden>

how can you apply multimedia for study explain​

Answers

Answer:

This is my opinion. :-)

Explanation:

In education, multimedia applications are used as a source of information to deliver learning resources for students. Multimedia applications also used to improve the learning process and increase the interaction between students and teachers or lecturers.

Which of the following will be output data type of int +int ?

Answers

Answer:

int data type

Explanation:

Given

int + int

Required

Determine the data type of the output

I'll answer this question with the following illustration.

int x = 1

int y = 2

print(x + y)

At line 3, 1 and 2 will be added together.

[tex]1 + 2 = 3[/tex]

And 3 will be printed as integer.

Because 1 and 2 are of type integer.

Hence, when two or more integer variable are added together, the result is also an integer.

Write an algorithm and draw flowchart to print 30 terms in the following sequence
1,-2,3,-4,5,-6,7,-8,...........................upto 30 terms.

Answers

Answer:

9,-10,11,-12,13,-14,15,-16,17,-18,19,-20,21,-22,23,-24,25,-26,

27,-28,29,-30

Explanation:

It comes as positive and then as a negative number and continues in the same format.

Hope it helps....

Answer:

Explanation:

9,-10,11,-12,13,-14,15,-16,17,-18,19,-20,21,-22,23,-24,25,-26,

27,-28,29,-30

Write a simple algorithm in pseudocode that asks the user their favourite colour and then agrees with their choice, quoting the colour in the response.

Answers

Answer:

i am still a beginner in this but i hope it helps.

add scanner object;declare string FavColour;print msg to ask user for inputscan input FavColour;print msg (" your favourite colour is " + FavColour)

Which testing is an example of non-functional testing? A. testing a module B. testing integration of three modules C. testing a website interface D. testing the response time of a large file upload

Answers

Answer: D

Explanation:

What command activates the Analyze contextual tab to appear?
O inserting a table
inserting a Pivot Table
altering a chart
inserting a chart

Edgunuity?

Answers

Answer: inserting a PivotTable

Explanation:

Answer:

inserting a pivot table

Explanation:

first answer get brainiest

Answers

Answer:

This is my best solution

What is the use of consonant in QBASIC ? Answer me in short and easy answer.​

Answers

Answer:

See Explanation

Explanation:

I'll assume the question is about the use of constants in QBasic because consonants do not have any special function or usage in QBasic.

In simple terms: In QBasic, constants are used to represent elements that do not change in value during program execution.

Take for instance, you intend to use [tex]\pi[/tex] in your program.

Its value is [tex]\pi = 3.142[/tex]

So, 3.142 will always be a constant in your program. One of the ways it can be used in a program is:

10 LET PI = 3.142

The above represents a numeric constant. QBasic also have string constants.

Does magnetic tape require a laser to read data?

Answers

Answer:

No the magnetic tape requires a tape drive mechanism

Explanation:

The data in magnetic tape consists of information that has been digitized into discrete numbers by means of of a recording device which can also be able to read the recorded data on the tapes

As the magnetized tape passes under a current carrying conductor, the data on the magnetized surface can be sensed

Due to the arrangement of the magnetic tapes in their stored format, the process of retrieving information makes use of serial access such that information retrieval is slow.

a person is riding a bike and accelerating at 2.8 m/5 2 eith a force of 100 n

Answers

Given,

Force acting on the rider = 100 N

Acceleration = 2.8 m/s²

To find,

The mass of the rider.

Solution,

Let m is the mass of the rider. Using Newton second law of motion as follows :

F = ma

[tex]m=\dfrac{F}{a}\\\\m=\dfrac{100}{2.8}\\\\=35.71\ kg[/tex]

So, the mass of the rider is 35.71 kg.

You are designing an update to your client's wireless network. The existing wireless network uses 802.11b equipment; which your client complains runs too slowly. She wants to upgrade the network to run up to 600 Mbps. Due to budget constraints, your client wants to upgrade only the wireless access points in the network this year. Next year, she will upgrade the wireless network boards in her users' workstations. She has also indicated that the system must continue to function during the transition period. Which 802.11 standard will work best in this situation

Answers

Answer:

The answer is "802.11n"

Explanation:

In this question, the Wireless LAN (WLAN) connections are indicated at 802.11n.802.11n, a companion piece to the guidelines relatives 802.11, would then enhance velocity, dependability, and variety of wireless local area network (Wi-Fi network) transmitters. 802.11n

When Mark completed his research paper, he decided that he wanted to have all headings to be in bold, underlined, and 14 points. Which keyboard combination could he use to make these changes at once?

Answers

CTRL/CMD + B (BOLD)

CTRL/CMD + U (Underline)

CTRL/CMD + ] or [ (change font size)

Which blue line indicates that the library panel will be added to the adjustments panel group?
BRAIN OO
BRAIN

Answers

there is no image here

HELLLLLLLLPPPPPPPPPPPP HHHHHHHHHEEEEEEEEELLLLLLPPPPPP MEEEEEEEE
"What is the capital of Belarus?" is an example of what type of search query?
A. Boolean operator
B. HTML markup language
C. Natural language
D. Keyword phrase

Answers

Answer:

C. Natural language

Explanation:

this is because the search query uses normal letters and phrases without attaching codes

Natural language is the capital of Belarus.

What is Capital of Belarus?

As the nation's capital, Minsk enjoys exceptional administrative privileges and serves as the hub for both Minsk District and Minsk Region. With a population of 2 million as of January 2021, Minsk was the eleventh most populous city in Europe.

One of the administrative capitals of the Eurasian Economic Union (EAEU) and the Commonwealth of Independent States (CIS) is Minsk.

Minsk was first recorded in 1067 and later served as the principality's capital until it was captured by the Grand Duchy of Lithuania in 1242.

Therefore, Natural language is the capital of Belarus.

To learn more about Natural language, refer to the link:

https://brainly.com/question/12093401

#SPJ5

A new user needs access to their files in iCloud without relying on the operating system (OS). How would the user access the Apple iCloud files directly online from a Mac computer running OS X?

Answers

Answer:

Log in to iCloud.com on a browser

Explanation:

On your browser which should be a supported browser, you should log in to iCloud.com since iCloud is not supported on mac OS X earlier than mac OS X Lion 10.7.5

A user asks for a checkbox to be automatically ticked if the annual revenue field is greater than a million. Which formula to trigger a workflow would satisfy this requirement

Answers

Answer:

[tex]AnnualRevenue > 1000000[/tex]

Explanation:

First, represent the field for annual revenue with AnnualRevenue

From the question, we understand that this field must be greater than 1000000 before a certain action can be performed.

Base on the given condition, the formula that triggers this action is: [tex]AnnualRevenue > 1000000[/tex]

Further explanation is in the attachment

From the attachment, we have that:

If the condition is true, the checkbox be ticked

However, if the condition is false; the checkbox remain unchanged because no specific action is stated for this, in the question.

how please help me computer​

Answers

Answer:

Whaaaaaaaaaaatttttttttttttttt the

Explanation:

edhesive code practice 6.3

Answers

Answer:

Question 1

1 / 1 pts

For Questions 1-4 below, use the following image of a coordinate plane.

The coordinate (0, 0) on this coordinate plane is located at point:

 B

Question 2

The coordinate (6, 4) on this coordinate plane is located at point

 C

Question 3

1 / 1 pts

The coordinate (2, 8) on this coordinate plane is located at point:

 A

Question 4

1 / 1 pts

The coordinate (8, 2) on this coordinate plane is located at point:

 D

Question 5

1 / 1 pts

The ____________ keyword is used to create a function.

 def

Question 6

1 / 1 pts

The create_frame function creates the frame that holds the drawing.

Explanation:hope it helps

Discussion topic. The internet has transformed the way that large and small organizations conduct business. Discuss how the internet helps small businesses to complete with large organizations

Answers

Answer:

Internet now-s-days are helping compete the small businesses wit the large organizations to conduct businesses.

Explanation:

Internet in modern days have helped the small business to run as much as it has helped the big organization. Internet has become a business tool for all. Both small and large business take the opportunity of the internet to explore and expand their business.

Small business can take the help of internet and recruit new talents by posting online ads for their organization at a much cheaper price when compared to the large organizations.

Small business with the help of internet can trade online, They can buy raw materials and also sell their products online across borders. Internet promotes free trade.

E-commerce business are become more famous day by day. Small firms can set up e-commerce business and open up sites very conveniently and at a low price when compared to the large businesses.

Write a C++ program which displays the following shape.
Please help me out with it.

Answers

Answer:

/*

Notably, this leaves a blank line at the top, so if that shouldn't be there you can tweak it.

This was built successfully with gcc

gcc -Wall shape.cpp -lstdc++

*/

#include <iostream>

using namespace std;

int main(void){

   int w, x;

   for(w = 0; w < 16; w += 2){

       for(x = 0; x < w >> 1; x++){

           cout << "*";

       }      

       for(x = w; x < 14; x++){

           cout << " ";

       }      

       for(x = 0; x < w >> 1; x++){

           cout << "*";

       }      

       cout << endl;

   }  

   return 1;

}

Due to a blackout, power is no longer coming from the wall outlet, and your computer is now off. You do not have a UPS, and you need to remove a disc out of the DVD drive. What is the easiest method for retrieving the disc

Answers

Answer: b. Push an unbent paper clip into the hole on the front of the drive.

Explanation:

Computer DVD drives come with a hole in front of them that is not too much larger than a pin's diameter. It is called an Emergency Eject Hole.

If you find that you need to retrieve a disk and the computer is off, find an unbent paper clip and push it into that hole. The DVD drive should open up thus enabling you to retrieve your disk.

Other Questions
In a large kitchen what is meant by the partie system? Who devised this system? Match the irregular verbs with their correct Yo and I, Ella, Ustedform in the imperfect.-Ver-Ser-Irchoices in the picture The temperature outside is currently 10F. It will fall at a constant rate of 3F per hour. Which temperature will it be in 4 hours?A22FB7F-2FD-12F What is the constant of proportionality for the relationship represented by this graph? Write an equation in slope-intercept form that represents the data. Show ALL work.1.)012Sales perday(x)Daily pay ($), y10010511011511212IEquation A photographer is making an enlargement of a color portrait. If the original portrait is 11 inches by 14 inches and he wants to make the new width 14 inches, about how long should the enlarged length be? Slope of line a is . What is the equation of a line that is parallel to line a? Y+x=2 -2x+y+2=0 2x-2=y -x+y-2=0 On mountainous terrain, a semi-truck travels 2 2__3miles on 1__2gallon of fuel . How many miles can the truck travel per gallon of fuel? Use drawings or equations to show your work . In 2006, 65.2 million people subscribed to cable television. In 2013, that number had decreased to 54.2 million. Find the percent decrease in the number of cable TV subscribers from 2006 to 2013. Round to the nearest tenth of a percent. 72 marble and 75% are red can someone find the equation plz and solve it.i will give brainliest i need u guys to save my math grade lol :( The volume of one of the buildings in the downtown area is 589,824 cubic meters. The building is 8 times as tall as the radio tower on top of the building. The square base has a side that is 24 times 4 meters less than the height of the radio tower. How tall is the radio tower? Two nitrogen atoms form a diatomic molecule. Which type of bond is most likely to be formed in the case of a diatomic nitrogen molecule? A. Single BondB.Double BondC.Triple BondD.Ionic Bond Which set of statements best explains the relationship between the parts of the respiratory system? if anyone can help me, please do. Im confused. James and Dan are partners in a small company. From each years profit, James is paid a bonus of $15000 and the remainder is shared between James and Dan in the ratio of 2:3. In 1996 the profit was $ 20000. Show that Dans share was $3000. where is a tornado most likey from please helpppp i would appreciate it !!!!! What is the mass of 0.2 mole of oxygen atoms.Please answer step by step. why do biologists measure the number of trophic levels in an ecosystem?A. to check its stability and health B. To see if has any food chains C. To find new treatments for diseases D. To Make it helpful for humans