write a qbasic program to find the
circumference of a circle with radius 3

Nepali only

Answers

Answer 1

Cls

Let R = 3

Let A = 22 / 7 * R * R

Let C = 2 * 22 / 7 * R

Print "AREA= "; A; "SQ CM"

Print "CIRCUMFERENCE= "; C; "CM"

End


Related Questions

suggest me anime genre : adventure ecchi​

Answers

HUMAGUSHIE that’s is the genre of ADVENTURE ECCHI

b. Differentiate Operation System from other software. give me 4-5 sentences pls.

Answers

Answer:

An operating system or OS is system software that manages computer hardware, software resources, and provides common services for computer programs. All operating systems are system software. Every desktop computer, tablet, and smartphone includes an operating system that provides basic functionality for the device while on the other hand The System software is a type of computer program that is designed to run a computer’s hardware and application programs it controls a computer’s internal functioning, chiefly through an operating system. It also controls peripherals devices such as monitors, printers, and storage devices.

Explanation:

PLSS HELP ASAP ILL GIVE BRAINLIEST THANKS

Answers

Answer:

I think division I am not sure

Explanation:

but hope that helps

Box. Atleast thats what my class calls it.

What is the difference between asset allocation and diversification

Answers

Answer:

Asset allocation refers to the percentage of stocks, bonds, and cash in your portfolio. In contrast, diversification describes the spreading of your assets across the various asset classes within each of those three allocation buckets to further reduce risk.

Explanation:

Your computer has a software problem. Which of the following will NOT help you fix your 3 issue?

A- remove all media from drives
B- run anti-virus software
C- reinstall the operating system
D- install pirated software ​

Answers

Answer:

D- install pirated software ​

Explanation:

Installing pirated software (depending on where you get it from) will most likely cause more harm than help.

what do other people think of e.t
in the movie E.T

Answers

Answer:

I think E.T is funny

Explanation:

A programmer wants to determine whether a score is within 10 points of a given target. For example, if the target is 50, then the scores 40, 44, 50, 58, and 60 are all within 10 points of the target, while 38 and 61 are not.

Which of the following Boolean expressions will evaluate to true if and only if score is within 10 points of target ?

Answers

Answer:

(target - 10 ≤ score) AND (score ≤ target + 10)

Explanation:

(target - 10 ≤ score) AND (score ≤ target + 10).

What are Boolean expression?

A logical assertion that can only be TRUE or FALSE is known as a Boolean expression. As long as both sides of the expression have the same fundamental data type, boolean expressions can compare data of any kind.

Oracle OLAP evaluates this expression by comparing each value of the variable actual to the fixed value 20,000.

Unless parentheses indicate a different evaluation order, operators with equal priorities are evaluated from left to right. When the truth value has been determined, the evaluation is stopped.

Therefore, (target - 10 ≤ score) AND (score ≤ target + 10).

To learn more about Boolean expressions, refer to the link:

https://brainly.com/question/13265286

#SPJ6

How Powerpoint is useful in education aspect?

Answers

Answer:

(Hope this helps can I pls have brainlist (crown)☺️)

Explanation:

PowerPoint may be a useful tool in the classroom for presenting content and encouraging student learning. PowerPoint may be used to present graphics that would be difficult to bring to class otherwise. PowerPoint may be a useful tool in the classroom for presenting content and encouraging student learning.

It improves learning by giving pupils a greater comprehension of the subject and inspiring them. It meant that technology-based instruction had a considerable favourable impact on students' grades. Analyses revealed that the experimental group students outperformed the control group.

Question 14 of 20
"Businesses around the world all need access to the same data, so there
needs to be one type of information system that is designed to offer it." Why
is this statement false?
O A. This statement is false because there already is only one type of
information system.
B. This statement is false because the data that the Internet
produces is never the same.
1
O C. This statement is false because different businesses have
different information needs.
O D. This statement is in fact correct; this is where the field of
information technology is heading.
SUBMIT

Answers

Answer:

This statement is false because there already is only one type of

information system.

Activity Sheet 2
A.Illustrate how to create the object below using draw and modify commands.​

Answers

Answer:

Vjfxfffccvvvvvv

Explanation:

Hgvjhgxxgyjjbvccjkn Hugh bună vvvvhg un www buukbbchfcvbvc. Hggvhhvbhchgx

25 POINTS!!! 3 OPTIONS!!
Democratic governments may put financial and regulatory pressure on unsupportive media outlets but offer supportive media outlets _____. Select 3 options.

A. unfavorable coverage

B. negative publicity

C. preferential access to information

D. lucrative contracts

E. favorable regulatory decisions

Answers

Answer:

C. Preferential Access to Information

D. Lucrative Contracts

E. favorable regulatory decisions

Explanation:

Edge 2021

The democracy govenment may put financial and regulatory pressure by

preferential Access to Informationlucrative Contractsfavorable regulatory decisions.What is a democratic government ?

The democratic government is the form of the government in which the power is given to the people to decide or to deliberate and form the legislation.

It allows for the selecting of the governing officials and puts the financial and the regulatory pressure on the unsupported media outlets.

Find out more information about democratic governments.

brainly.com/question/26622333

If Maya wants to access a view that would control multiple slides within a presentation, which view should she utilize?

*it's A. Master view edg

Answers

Answer:

a. Master view

Explanation: is correct. post protected.

What does the value 0.5 specify in the following code?rgba(123,12,11,0.5)

Answers

The last number in the code?

What is the output of the following program? (Show your work)

int x = 3, y = 2;
System.out.println("x = " + y);

x = 5 + y * 7 % 3;


y = x - y * x - 3 / 2;


System.out.println("x = " + x);
System.out.println("y = " + y);

Answers

Answer:

x = 2

x = 7

y = -8

Explanation:

int x = 3; (here the variable of type int called x is declared and given the value 3)

int y = 2; (here another variable of type int called y is declared and given the value 2;

System.out.println("x = " +y ); (this instruction will print the value of y in the console terminal but deceivingly saying that the value belongs to x variable. So whoever reads will read "x = 2" instead of "x = 3" which would be the correct value associated with x.

x = 5 + y * 7 % 3; (here the value of x is changed from 3 to 5 + y * 7 % 3. What this means is that the first value of y (2) is multiplied by 7 and then get the mod of division 14 / 3 which is 2. Then added to 5. So the final result is 7 which is now the new value of x)

y = x - y * x - 3 / 2 (same as the above but for the value of y: here - 2 is multiplied by 7 and - 3 is divided by 2. Now we have 7 - 14 - 1.5 which is -8.5 but since you specified the variable type was an int and not double or float, then the program ignores significant numbers, so it ignores the .5 or whatever comes after the point instead of rounding it. PS: [So for instance if the result was 8.9, the value printed would be 8])

System.out.println("x = " + x); (prints the new value of x but this time it does not deceive the reader)

System.out.println("y = " + y); (prints the new value of y, and the letter y is shown in the screen for the first time with the correct value associated)

please help me i will mark as brainliest​

Answers

Answer:

1 True

2 True

3 False

4 True

5 True

— hope I helped you

Dom is a software developer who likes to tweak his computer's OS to make it work the way he wants it to. The OS he is most likely to use is _____.

A. Mac
B. Linux
C. MS-DOS
D. Windows

Answers

Answer:

Linux

Explanation:

Linux-based operating systems are open-source, and open-source software can be modified. Mac, MS-DOS, and Windows are all closed-source means we can't see the source code hence we can't modify it.

I hope this helps <3

A processor's speed is measured in megahertz (MHz), or millions of instructions per second; and gigahertz (GHz), or billions of instructions per second. Which processor is faster?

options:

3.8 GHz


3.8 MHz

Answers

Answer:

3.8 GHz

Explanation:

GHz (gigahertz, or billions of pulses per second).

The faster processor speed can be 3.8 GHz. The first option is correct.

What is speed?

The speed of any moving object is the ratio of the distance covered and the time taken to cover that distance.

A processor's speed is measured in megahertz (MHz), or millions of instructions per second; and gigahertz (GHz), or billions of instructions per second.

The billions of instructions per second is greater than millions of instructions per second.

Thus,  3.8 GHz is faster.

Learn more about speed.

brainly.com/question/7359669

#SPJ2

suggest any complete anime......?​

Answers

Plastic love and maybe your lie in April?

Which statement is true with respect to Java?

A.
Java programs are not compiled, only interpreted.

B.
Intermediate bytecode is created by the JIT.

C.
Bytecode is platform independent.

D.
The JVM creates object code after compiling.

Answers

Java is a high level programming language.

The true statement is (c) Bytecode is platform independent.

First, java programs are compiled and interpreted

This means that (a) is not true

Secondly Just-In-Time (JIT) does not create intermediate bytecodes, and Java virtual machine (JVM) does not create object codes.

However, java programs are compiled to an instruction set for the JVM; this instruction set is referred to as the byte code.

And the byte code is platform-independent.

Hence, the true option is (c)

Read more about java programming language at:

https://brainly.com/question/2266606

Answer:

C) Bytecode is platform independent

Explanation:

Just got it right on ASU

Why is this happening when I already uploaded files to my drive?

Answers

Answer:

u have to upload it to your drive first

Explanation:

Can anyone lend me a computer?

Answers

Answer: No

Explanation:

Answer:

no

Explanation:

write the importance of software In computer ​

Answers

Answer:

Microsoft word, Excel, Access, Power point, Microsoft windows...........

Explanation:

Good things to keep track of about people in your Career Network include: a. contact information, including how to spell their name. b. how you came to know them (introduced by a friend, at a career fair, search on LinkedIn, etc.). c. notes about your last interaction and plans for your next interaction. d. only a and b above e. all of the above

Answers

Answer:

mi pareceres que es la B

Explanation:

Hoá học 9 giải hộ mềnh vơiz:))

Answers

Answer:

sorry di ko alam

Think about the different costs for magazine ads. Why do you think it would cost more to have an ad placed on the front or back of the magazine instead of having it inside?

Answers

People or businesses usually buy ads to promote what they’re trying to sell. Since the front and back of the magazine is what people see the most (rather than some random page on the inside), it is expected that an ad on one of the covers would cost more since those surfaces get many more viewers on average.

Hope this helps!

A two-dimensional array of ints with 4 rows, has been created and assigned to a2d. Write an expression whose value is the total number of ints that could be stored in the entire array.

Answers

Arrays are used to represent data in rows and columns

The expression that represents the number of int the array can store is 4c

From the question, we have:

The number of rows is given as: 4The number of columns is unknown; assume the number of columns to be c.

Also from the question, we understand that the array is of integer type.

So, the number (n) of int the array can store is the product of the rows and the columns

i.e.

[tex]\mathbf{n = Rows \times Column}[/tex]

So, we have:

[tex]\mathbf{n = 4\times c}[/tex]

Multiply

[tex]\mathbf{n = 4c}[/tex]

Hence, the expression that represents the number of int the array can store is 4c

Read more about arrays at:

https://brainly.com/question/14664712

Digital photography occurred in what age?

Answers

Answer:

The history of digital photography as we know it began in the 1950s. In 1951, the first digital signals were saved to magnetic tape via the first video tape recorder. Six years later, in 1957, the first digital image was produced through a computer by Russell Kirsch.

What areas does ABET provide accreditation?
students
programs
institutions
teaching staff
industries

Answers

It is a form of quality assurance for programs in the areas of applied and natural science, computing, engineering, and engineering technology. Our accreditation is recognized globally as evidence that a program meets the standards set by its technical profession.

"We are a nonprofit, non-governmental agency that accredits programs in applied and natural science, computing, engineering and engineering technology." - ABET

Que compone una maquina Rube Goldberg (operadores mecánicos- maquinas simples – mecanismos)

Answers

Answer:

dominoes, fans, PVC pipe, magnets, duct tape, marbles, cups or bowls, miniature toy cars, paper towel tubes, string.

------------------------------------------------------------------------------------------------------------

dominó, abanicos, tubos de PVC, imanes, cinta adhesiva, canicas, tazas o cuencos, carros de juguete en miniatura, tubos de toallas de papel, cuerdas.

Explanation:

If you clean your camera’s lens incorrectly, what might you damage?

Group of answers:

1. the aperture port
2. the outer coating
3. the inner coating
4. the battery port

Answers

Answer:

2. the outer coating

Answer:

Its number 2 the outer coating

Explanation:

Other Questions
This is the album cover I just made lmk what you think Find the value of a/b when a=$13. 93 and B=0. 07Thank you. Mansa Musa went on Hajj in 1324. What made hispilgrimage significant1.2.3. 1. in you own opinion, do you believe that some historical events in our country (Philippines) written by historians are not accurate? explain2. the Spaniards ruled the Philippines for more than 3 centuries. Is there any good contribution they gave to our country? If yes, give at least one contribution they gave to us that we are still applying at present. illustrate it Find the missing measure A 12.0 L helium balloon is inflated in an air-conditioned store at 21.0C. Assuming that the pressure remains constant, how large is the balloon when it is taken outside on a hot day at 40.0C? Think about the things you do on a regular basis. What values are reflected in your daily activities? 10 to the 2 power in fraction form Hormones perform important functions within the reproductive system. During puberty, secondary sex characteristics develop. Which hormone is responsible for the development of these characteristics in the female? estrogen progestin progesterone testosterone. How does social norms affect social relationship? Correct punctuation "ergonomic and easy-to-use," furniture is the specialty of this office supply store. 3. About 31% of the people who come to the park bring a dog. One third of people who come to the parkexercise. Which group of people represents a larger percent of the people coming to the park NEED HELP!!! ANSWER THESE 5 QUESTIONS FOR 25 POINTS!!!! PLEASE ANSWER!! I WILL GIVE YOU BRAINEST1. Jerome explains to his doctor that because he spends a lot of time at his desk, he makes sure that his chair supports good posture. But when he is home, he spends his time on an old, squishy couch that offers very little support. He figures that since he spends most of his time at work, he does not need to worry about his home furniture as much. How would Jeromes doctor MOST likely reply?A. Jeromes thinking is correct since he spends most of his time at work.B. Jerome should bring his chair from work home with him on the weekend.C. If Jeromes standing posture is good, he does not have to worry about his seated posture.D. Sitting properly is important in all contexts, so Jerome should consider his seating at home.2. Guillermo has decided that he wants to be healthier, so he starts jogging. He has been at it for a week, but he is getting frustrated because he cannot run very far without getting out of breath. He is beginning to think that this is not a good exercise for him since he is not very good at it. What BEST explains why Guillermo is struggling?A. He probably does not have good form when he is exercising.B. He likely has heart or lung problems that he was not aware of.C. He does not have much endurance since he is new to exercise.D. He is just not good at jogging and needs to try something else.3. Which is the BEST example of the kind of mechanics that are studied in sports biometrics?A. the average attendance at a sporting eventB. how a new sport becomes popular in a communityC. the movement of the wrist when hitting a tennis ballD. the median height of the most successful hockey goalies4. Ewan had a resting heart rate of about 110. What does this indicate?A. His heart rate is perfectly average.B. He probably has a high metabolism.C. He needs to work on raising his resting heart rate.D. His heart rate is high and could indicate a problem.5. Why is acceptance an important part of building a healthy lifestyle?A. Exercise will probably not change much in your life.B. Healthy lifestyles often create a lot of disappointment.C. If you understand your limitations, you are less likely to be frustrated.D. Finding the energy to exercise can be hard, so you should limit your goals.PLEASE NO LINKS A diver breathes a heliox mixture with an oxygen mole fraction of 0.050. What must the total pressure (in atm) be for the partial pressure of oxygen to be 0.21 atm? Tessa wants to install a zipline between two trees. The zipline will be strung between the trees at points 42 feet and 3 feet high. Suppose the trees are 60 feet apart. What is the length of the zipline to the nearest tenth of a foot create your own thesis which term refers to the mix of nations, economies, and cultures? Perform the operations indicated choose the correct answer 14+29 Formen equipos de tres integrantes y realicen un proyecto en el que expresen mediante una ecuacin lineal el tiempo que demoraran en reunir 10000 pesos para fundar la Sociedad Cultural Digital, si saben que los meses que tienen 31 dias sus padres donan un tercio de la cantidad total para el ahorro, mientras que en los de 30 dias logran ahorrar dos tercios de la cantidad final. En cuantos meses podrn reunir la cantidad deseada Interview two members of the family or any close relatives/household members. 2. Let them think and identify a situation in the current crisis where relationship with family, friends and others was put to a test. 3. Let them discuss how they deal with it.4. Listen carefully while they are sharing their experiences. 5. Observe respect, sensitivity and confidentiality while doing the activity.6. Write your gathered information using the format below on a sheet of paperincluding your answers to the processing questions after. Processing Questions:1. How was the activity for you? 2. How do you describe the manner your family or household members handled their situation? 3. Is it something that you can emulate? Why or why not?