3. Write an algorithm to find Area of square?

Answers

Answer 1

A square is simply a rectangle with equal sides. As a result, the length and breadth of a square are equal. As a result, the area of a square is the product of two square sides, or in simpler terms, squares of the side.

Area = Side^{2}Area=Side

2

We use the following formula to compute the area of a rectangle after being given the length and width of the rectangle as input.

ALGORITHM:

Step 1 : Start

Step 2: Input Side

Step 3: Area = Side \times× Side

Step 4: Print area

Step 5: Stop


Related Questions

Operational level management can be supported by the systems except Select one: 01. Transaction Processing System 2. Manufacturing Information System 3. Executive support system 4. Financial management system ​

Answers

Answer:

01×3=3

=3

Explanation:

mousamyuig9uuygytyugghbhhbhhbhh

What are key objectives of DevOps at Accenture?

Answers

The key objectives of DevOps at Accenture is simply to deliver services faster, with higher quality and with security built in.

What are DevOps?

DevOps can be defined as a set of tools, processes, practices, and a cultural philosophy that are combined so as to help in automating and integrating the processes that exist between software development and information technology (IT) teams.

This ultimately implies that, the key objectives of DevOps is focused on the ability of Accenture to deliver software applications and services at high velocity, with higher quality and with security built in.

Read more on DevOps here: https://brainly.com/question/24306632

#SPJ1

Write down the importance of cooling system on your machine to cools the workpiece and avoid damage during surface grinding process:​

Answers

The importance of cooling system on the machine is to avoid the buildup of the heat on the system due to working of system because heating of the system cause friction and spars, that damage the system.

What is a cooling system?

A cooling system help in cooling the machine, because when machine runs they produce heat and friction. Cooling system reduce the excess heat of the machines.

Thus, the  importance of cooling system on the machine is to avoid the buildup of the heat on the system due to working of system because heating of the system cause friction and spars, that damage the system.

Learn more about cooling system

https://brainly.com/question/13258295

#SPJ1

You get a text. It is a reminder from your dentist’s office that you have an appointment tomorrow. It says to type “1” to confirm or “2” to cancel the appointment. You accidentally type a “3” and nothing happens. How could the input validation be improved?

Answers

Answer:

Redo the one you want

Explanation:

Redo the "1" if you are confirming the appointment

Or "2", if you do not.

Do not fret over this worse, comes to worse call your dentist back and explain you hit the 3 by mistake and then tell them your decision .

When replacing a defective switch what is necessary characteristic of a new switch

Answers

The complete question is :

When replacing a defective switch, what is a necessary characteristic of the new switch?

Select one:

a. Greater number of poles and throws than the original switch

b. The same number of positions as the original switch

C. Identical cover plate as the original switch

d. Greater current ratings than the original switch

So, according to it the correct answer is option d. Greater current ratings than the original switch.

What is a switch?

A switch is a component of physical circuitry that controls the flow of signals. A switch or toggle switch enables the opening or closing of a connection. The switch permits a signal or power to pass through the connection when it is opened. The switch cuts the circuit connection and halts the flow when it is closed.

Learn more about switches here https://brainly.com/question/14883923

#SPJ10

After Daniel performed poorly on a test, his teacher advised him to do some self-reflection to figure out how he could get a better score on the next test.

Which actions should Daniel take? Check all that apply.

analyze the content that he knows well
think about whether he should study differently
forget about the test behind him and concentrate on the next one
ask the teacher for some extra help outside of class
go out with his friends to put the poor grade behind him
study the questions he missed and think about why he missed them

Answers

Daniel gives more and more time to self-reflection and improves the mistakes he was doing in the last exam.

What is self-refelection?

Reflecting on oneself is similar to gazing in a mirror and reporting what you see. It is a method of evaluating your work habits, study style, and self. To think about something is the definition of reflection, given simply.

When Daniel didn't do well on an exam, his teacher suggested that he think about his performance to see how he may perform better on the upcoming test.

Examine the material he is familiar with. Consider whether he needs to change his study strategy. Request extra assistance from the instructor outside of class.

Examine the questions he didn't get right and consider why. Self-reflection is the process of assessing one's performance to identify any problem areas that require improvement.

Hence, daniel gives more and more time to self-reflection and improves the mistakes he was doing in the last exam.

To learn more about self-reflection refer;

https://brainly.com/question/14754364

#SPJ1

Answer:

Explanation:

a analyze the content that he knows well

b think about whether he should study differently

d ask the teacher for some extra help outside of class

f study the questions he missed and think about why he missed them

what is the function of computer?​

Answers

[tex]\huge\purple{Hi!}[/tex]

the four basic function of a computer are input, storage, processing and output.

3.12 LAB: Output range with increment of 5 Write a program whose input is two integers, and whose output is the first integer and subsequent increments of 5 as long as the value is less than or equal to the second integer. Ex: If the input is: -15 10

Answers

The INPUT code of the given programme in Java would be as given below:

In this first we are taking input of two integers j and k from the user and then performing the required operations over it

import java.util.

Scanner;  public class LabProgram {    

public static void main(String[ ] args) {  

Scanner scnr = new Scanner(System.in);        

 int i,j;        

 i  = scnr.nextInt();        

 j = scnr.nextInt();        

if(i<=j) {            

int k = i;            

while (k <= j) {                

System.out.print(k + " ");                

 k = k + 5;            

 }            

 System.out.println();        

 }        

 else{            

 System.out.println("Second integer can't be less than first.");                  

}    

}

}  

Learn more about Java Programming here:

https://brainly.com/question/18554491

#SPJ10

what was the first computer system that used color display?

Answers

Answer:

Year Event

1977 The Apple II, released in June 1977, allowed for colour display on a             CRT monitor.

Explanation:

When creating an if() statement, when are curly braces required?
A. when there is only one statement line related to the test condition
B. when there are two or more statement lines related to the test condition
C. never
D. always

Answers

Answer:

B. When there are two or more statements lines related to the test condition.

Sorry if I got it wrong.

You are preparing to communicate to an audience about analysis project. You consider the roles that your audience members play and their stake in the project. What aspect of data story telling does this scenario describes?

Answers

The aspect of data story telling does this scenario describes is audience engagement.

What is Audience engagement?

This is known to be  user engagement and it is a term that connote  the cognitive, emotional, or affective form of experiences that users do get or have with media content or any kind of brands.

Note that in the case above, the aspect of data story telling does this scenario describes is audience engagement.

Learn more about project from

https://brainly.com/question/13374052

#SPJ1

Make a String ArrayList.Then write a Java method that swaps the first and last elements.

Answers

Answer:In order to swap elements of ArrayList with Java collections, we need to use the Collections.swap() method. It swaps the elements at the specified positions in the list.

Declaration −The java.util.Collections.swap() method is declared as follows

public static void swap(List <?> list, int i, int j)

where i is the index of the first element to be swapped, j is the index of the other element to be swapped and list is the list where the swapping takes place.

Explanation:

import java.util.*;

public class Example {

  public static void main (String[] args) {

    ArrayList<Integer> list = new ArrayList<Integer>();

     list.add(10);//0

     list.add(20);//1

     list.add(30);//2

     list.add(40);//3

     list.add(50);//4

     System.out.println("Original list : " + list);

     Collections.swap(list, 4, 0); // swapping element at index 3 i.e. 50 and index 1 i.e. 10

     System.out.println("List after swapping : " + list);

  }

}


- factors to consider when buying a computers

Answers

Answer:

money

Explanation:

for working for socializing with others

1.Microsoft Word is a/an ........​

Answers

Answer:

company I believe

Explanation:

I believe

Answer:

It is a word processing software

Explanation:

Hope this helps

A set of photographs has been taken for a wedding. All the guests are to be sent digitally
stored copies through the ordinary postal service. There are fifty photographs and each
photograph is between 1.8 and 2.5 megabytes in size.
Work out the maximum storage space required for a set of photographs. State, with a
reason, a suitable medium to use for the copies to be sent to the guests.

Answers

In the case above, the maximum storage space will be 125 megabytes.

Note that:

Medium size: CD / low capacity flash memory.The Reason is because it is good for mailing and less expensive to get.

What is storage space?

This is known to be the amount of place or area a phot can occupy in terms of photography.

Note that, In the case above, the maximum storage space will be 125 megabytes.

Note that:

Medium size: CD / low capacity flash memory.The Reason is because it is good for mailing and less expensive to get.

Learn more about photographs from

https://brainly.com/question/25821700

#SPJ1

15. How many PC’s can be connected to a UPS?

Answers

Answer: Depends on the power of the computer /computers and the UPS

Explanation: For someone who had a big connected network of computers and printers we would plug the computer or server into the UPS as well as the monitor and sometimes a printer sometimes the monitor was plugged into the wall

When you get a UPS you must plug it in for a certain time could be hours or even a day.  A USP has a big battery in it and you must charge it (sometimes it comes semi-charged but you must plug it in to strengthen it. )

there are two connector wires that you affix to the battery and you must put a lot of strength into it to make it secure.

So in closing, you can get away with two like a desktop and a laptop.

Read your documentation that comes with the UPS

Choose the expression that belongs in the blank in order to ask the user the question shown.

>>> answer = input(_____)
What is your name? Juan

Answers

Answer:

"Juan"

Explanation:

If this is script, than that should be the correct argument.

identify four input devices that can convert hard copy pictures or into a digital format ​

Answers

Answer:

(a) graphics tablet

(b) scanner

(c) MICR

(d) OMR

What will happend when I got a BSOD in Windows?

Please answer this question. I'll give You 50 points for free!

Answers

Answer:In Windows OS, the Blue Screen of Death or BSOD appears after a serious system crash that indicates there is some major issue with your PC. Typically, the BSOD—also referred as STOP error — is related to critical hardware and driver misconfiguration, damage, and failure.

Explanation:

Answer:

A blue screen error (also called a stop error) can occur if a problem causes your device to shut down or restart unexpectedly. You might see a blue screen with a message that your device ran into a problem and needs to restart.

The Electronics Communications Privacy Act allows the government to have access to....?

Answers

The Electronic Communications Privacy Act allows the government to have access to a treasure trove of information regarding who you are, where you go, and what you do.

What is Electronic Communications Privacy Act?

Electronic Communications Privacy Act may be defined as a law that determines it is unlawful to wipe or apprehend communication, over wires.

This access to government is accumulated by cell phone providers, search engine operators, social networking sites, and other websites each and every day.

All such network providers track all major activities of individuals through the mode of electronic gadgets.

Therefore, it is well described above.

To learn more about The Electronics Communications Privacy Act, refer to the link:

https://brainly.com/question/14142485

#SPJ1

Algorithm to find odd integers between 1 and49 ​

Answers

Answer:

1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49.

What is the value of X when line 30 is executed in the program below:
10 X = 5
20 X = X + 5
30 X = X/5 + X
40 X = X * 5
50 X = (X - 5)/5

this is for qbasic btw

any helpis appreciated pls only correct answers

Answers

Answer:

X = 12

Explanation:

The primary value of X is 5. In line 20 X = X + 5, which is saying the primary value of X ,5, + 5, this is going to return the value of X to now become 10. Now the primary value of X in the program has changed to 10.

In line 30 X = X/5 + X, keeping in mind that the new primary value is not 5 but 10. So now line 30 is saying X = 10/5 + 10. This return the value of X to be 12.

Discuss the relationship amongst the following basic file elements: • Field. • Record. • File. • Database. • Directory.​

Answers

Answer:

describe two events from the life of the prophet that illustrate the way he treated non muslims3+15-75+375.

Explanation:

53+15-75+3756,1803+15-75+375describe two events from the life of the prophet that illustrate the way he treated non muslims

What is not a computer software?
a. web browser
b. powerpoint
c. motherboard

Answers

Answer:

Motherboard

Explanation:

Its a device in the computer that helps it run while powerpoint and web browser are just things you can do with your computer to make or create information.


What are the functions of information technology?

Answers

There are six basic functions of IT.

1. Capture: Compiling detailed records of activities.

2. Processing: Converting, analyzing, computing and synthesizing all forms of data and information.

3. Generation: Organizing information into a useful form.

4. Storage: Retaining information for further use.

5. Retrieval: Locating and copying stored data or information for further processing or for transmission to another user.

6. Transmission: Distributing information over a communication network.

Assume the existence of an interface, GUIComponent with the following methods: - open and close: no parameters, returns boolean - move and resize: accepts two integer parameters and returns void Define a class, Window, that implements the GUIComponent interface, and has the following members: - width, height, xPos, and yPos integer instance variables, with xPos and yPos initialized to 0 - a constructor that accepts two integer variables (width followed by height) which are used ti initialize the width and height instance variables - An implementation of open: that sends "Window opened" to System.out, and returns true - An implementation of close that sends "Window closed" to System.out, and returns true - An implementation of resize that modifies the width and height variables to reflect the specified size - An implementation of move that modifies xPos and yPos to reflect the new position

Answers

The implementation is as follow,

public class Window implements GUIComponent {

private int width:

private int height;

private int xPos;

private int yPos;

public Window(int width, int height) {

xPOS = 0;

yPos = 0;

this.width = width;

this.height = height;

}

public boolean open() {

System.out.printIn("Window opened");

return true:

}

public boolean close() {

System.out.println("Window closed');

return true;

}

public void resize(int wid, int hei) {

width = wid;

height = hei;

}

public void move(int ×, int y){

xPos = x;

yPos = y;

}

}

Learn more about such codes here https://brainly.com/question/14492046

#SPJ10

What is an example of a Data component within an enterprise platform?

Answers

An example of a Data component within an enterprise platform A mobile app used by potentail customers to buy product or place an order.

What is an enterprise platform?

An Enterprise Business Platforms is known to be a kind of an integrated software applications that helps and shared data which is often combined to form Enterprise Business Solutions or Apps.

Note that An example of a Data component within an enterprise platform A mobile app used by customers to buy product or place an order.

Learn more about enterprise platform from

https://brainly.com/question/25946375

#SPJ1

If x=5 and y=3 will this condition execute? if(x > y)
A. yes
B. no

Answers

Yes
Because the x bigger than the y
A. yes

because 5 > 3 is a true value, therefore if(True) will execute

The term ____ photography syndrome is often used to refer to photographers who who use zoom lenses all the time rather than prime lenses.

Answers

Answer:

The term Gear Acquisition photography syndrome is often used to refer to photographers who who use zoom lenses all the time rather than prime lenses.

Explanation:

What is wrong with this case statement -> case 2:
A. cases must be capitalized
B. cases must use a ; and not a :
C. nothing

Answers

Answer:

C: Nothing

Explanation:

Assuming this case is acting upon a switch on an integral value, there is nothing wrong with this case header.

var x = 10;

switch (x)

{

case 2:

     Console.WriteLine("The value of 'x' is 2!");

}

Other Questions
Which word is the best antonym for stalwart. a. weakb. unendingc. immobiled. enduring I also need help on 3 4 5 if some one can explain it will be really helpful And I will give 65 points NaOH + HCl H2O + NaCl The reactant side of the chemical equation has_____atom(s) each of sodium, oxygen, and chlorine. urgent help needed algebra 2 The cost of the toy is expressed by the function y = 3x + 5, where x is the number of toys. If Peter bought 8 toys, find the cost of the toys. Which event is NOT part of the process of DNA replication?1.Ribosomes are synthesized.2.Hydrogen bonds are broken.3.Nitrogenous base pairs are formed.4.A double-stranded molecule unwinds. What method involves asking numerous questions in order to get to the root cause of a problem? SolveA.A bag has 18 marbles of three different colours.There are twice as many red marbles as blueones.There are two fewer green marbles than blue ones.Form an equation to model this situation, and solveto determine the number of each color marble inthe bag.B.The perimeter of a large triangle is 237 cm.The lengths of the three sides are consecutiveintegers, Form an equation to model this situation,and solve to find the lengths of the three sides. What is the equilibrium expression for: fe3o4(s) + 4h2(g) 3fe(s) + 4h2o(g) kc = a)[fe]3 [h2o]4 / [fe3o4] [h2]4 b)[fe3o4] [h2]4 / [fe]3 [h2o]4 c)[h2o]4 / [h2]4 d)[fe] [h2o] / [fe3o4] [h2] Decades ago, developing and implementing the "right" marketing strategy was all about _________________ . In today's economy, however that emphasis has shifted to developing strategies that attract and retain customers over the long term. pls answer I will give 12 points Hi.I am thinking of choosing a relaxing activity, after studying so hard for a few months. I could watch a movie, go for lunch with some friends or go shopping-or maybe something else?What should I do? Let me know what you think!In about 80 words, write an email to Johan giving some advice. Given: E and F are supplementary and F and G are supplementary.Prove: EG When a drone manufacturer decides to shift from producing and selling high-quality, high-end drones to producing drones at the lowest possible cost, it is changing its __________. 1. Which of the following numbers isrational?A. 0.78B. 0.303003000C. 6D. 0.3841697 6. Using the discriminant, determine the value of k that will give 1 solution (i.e. discriminant equals zero) y = kx-4x + 4 SOMEBODYYY HELLLLPPPPPP so this question says What was one of the major ideas of Jacksonian democracy?A. to address the needs of common AmericansB. to develop the lifestyle of the upper classC. to address the issues of American IndiansD. to improve the conditions of white males WITCH ONEEEEE!!! Please hellpp meeee What information must be given to the Department of Health and Human Services (HHS) when an Institutional Review Board (IRB) is renewing registration Understanding that business organizations can be extremely diverse, identify and explain management strategies to promote motivation and communication Pls anyone answer 15 - 8 + - 9