Compute the area of a circle

Assignment Help C/C++ Programming
Reference no: EM13879218

Problem 1

Compute the area of a circle. The user must enter the radius of the circle. Use the following formula for area A = 3.14 R2

PROGRAME . 02

Write a program that will solve for the power dissipation of a resistor when the voltage across the resistor and the current in the resistor are known. The relationship for power dissipation is:  P=I x R

Where

P = Power dissipated

I = resistor current.

 V= resistor voltage.

PROGRAME . 03

Write a program that calculates the memory size of variable of different data type?

PROGRAM 4

Develop the program that will convert the temperature from degree Celsius to degree Fahrenheit. User input the temperature in Fahrenheit. The relation is 1)  Develop the program that will convert the temperature from degree Celsius to degree Fahrenheit. User input the temperature in Fahrenheit. The relation is F= (5/9)*C - 32

PROGRAM 5

Run the following program step-by-step using "F8 key" and see the output on the output window. Observe that how the escape sequence works.

PROGRAM 6

Write a program which calculates the roots of Quadratic equation.

Where

X1= (-b+(b*b-4*a*c) / (2*a)

X2= (-b -(b*b-4*a*c) / (2*a)

PROGRAM 7

(a) Execute the following code step-by-step using "F8 key" and observe how the integer variables are declared, initialized and modified in the program.

PROGRAM 8

Are the following expression are true or false.

(i)      1>2

(ii)    'a'<'b'

(iii)    1= =2

(iv)   '2' = = '2'

PROGRAM 9

Rewrite the following statement using the unary operator. Also write a program; using

modulus operator.

(i)   a = a + 1

(ii)  a = a - 1

(iii) b + = 1

(iv) b - = 1

PROGRAM 10

Write a program that determines whether an integer is even or odd and negative or positive. Make use of modulo operator. 

PROGRM 11

Write a Mark Sheet program that accepts the marks of the different subjects from the user. Calculate total marks, percentage and grade.

If    per<60 and per >50 then Grade is "C"

If    per<70 and per >60 then Grade is "B"

If    per<80 and per >70 then Grade is "A"

if    per >80 then Grade is "A+"

if    per<50 then prints FAIL

PROGRAM 12

Write a program that finds the maximum number from three input numbers?

PROGRAM 13

Create a program in which the user selects name of the figure and program presents the formula that is used for calculating its area. Use a rectangle, triangle, circle, and parallelogram as the figure choice?

PROGRAM 14

With the help of for, while and do- while loop generate the following series

Natural numbers from 1 to 10 

(b)Even numbers between 1 and 20.

 c)Odd numbers between 1 and 20

PROGRAM 15

Write a program using for loop which inputs an integer and prints its factorial

PROGRAM 16

Write a program that will calculates the sum of first 100 natural numbers?

PROGRAM. 17

Write a prog. That prints out the larger of two numbers entered from the keyboard. Use a function to do the actual comparison of the two numbers. Pass the two numbers to the function as arguments, & have the function return the answer with return().

PROGRAM 18

(a). State the advantage of creating your own header file. Explain how you may call your header file from a c++ program.

(b). Write a program to make your own  a header file name mystuff.h in which the function of addition, subtraction, multiplication, division is included & then write a program that uses the same header file & performs the function accordingly.

PROGRAM. 19

 Write Functions to evaluate:

a) sinh-1  x = ln( x +  ((x2+1) )

b) cosh-1 x = ln( x +  ((x2+1) )

PROGRAM. 20

Write a program that contains macro, that evaluate the volume of the sphere

Where v= 4/3(( * r * r * r))

PROGRAM. 21

Write a program, that overload the Sub (subtraction) function?

PROGRAM. 22

Write a program, to calculate the average of the marks of 10 students?

PROGRAM. 23

Write a program to find the maximum and minimum value in array?

PROGRAM. 24

Write a program that will add the two matrix of the same order?

PROGRAM. 25

Write a program to find the smallest of a one dimensional array. Declare & initialize the

array in the main () & pass the array to a function which returns the smallest elements of the array. Also find the size of array in the main () & in the function to which array is passed.

PROGRAM 36

What will be the output of the following program.

PROGRAM 27

Write a program that returns three value from the function.

QUESTION 28

 What is different between the near and far pointer

QUESTION 29

What mathematical operation that can be performed on the pointers.

QUESTION 30

 int i , j;

 int *p = &i, *q;

 p= &j;

 What will be the output of the following :

 (i)     &*&i      

 (ii)   *&*&j

 (iii)   **&p

PROGRAM 31

If

int arr[] = { 2, 39, 14,36};

int *ptr = arr;

write a program to study the difference between

++*ptr ,   *ptr++,     (*ptr)++,       ++ptr,       ++*ptr++.

PROGRAM 32

Study the following code & make changes wherever necessary. Also study the scope resolution (::) operator & try to understand how variables are access when they are declared globally & when they are declared locally.

Reference no: EM13879218

Questions Cloud

People sometimes do unspeakably evil things : Why do ordinary people sometimes do unspeakably evil things?Your paper must be 2-3 pages of content.  Please cite all of your referenced material.
Identify authoritative literature address inventory pricing : Identify the authoritative literature addressing inventory pricing. Define "net realizable value" as used in the phrase "lower-of-cost-or-net realizable value."
Choose one of the psychological disorders : Choose one of the following psychological disorders: Substance abuse Major depression Bipolar disorder
Determining the overall pressure drop : The parallel galvanized-iron pipe system of Fig delivers water at 20°C with a total flow rate of 0.036 m3/s. If the pump is wide open and not running, with a loss coefficient K = 1.5, determine (a) the flow rate in each pipe and (b) the overall pr..
Compute the area of a circle : Develop the program that will convert the temperature from degree Celsius to degree Fahrenheit. User input the temperature in Fahrenheit. The relation is 1)  Develop the program that will convert the temperature from degree Celsius to degree Fahrenhe..
Sale proceeds was credited to the investment account : The total of the sale proceeds was credited to the investment account.
How much would transportation costs change : Draw a network diagram of the optimal shipments. Include in the diagram the optimal quantities, unit transportation costs, and fixed supplies and demands.
What is the difference between a horn and halo effect : What is the difference between a horn and halo effect?
How does m and s report its inventories in statement : How does M&S report its inventories in the statement of financial position? In the notes to its financial statements, what three descriptions are used to classify its inventories?

Reviews

Write a Review

C/C++ Programming Questions & Answers

  Write a c program that multiplies user entered number

Write a C program that multiplies user entered number till product of these numbers reach 1000. Which means the number that is entered multiplies itself until it reaches 1000.

  Const int num_years

How do you get this program to get both player input and then display results(As described on bottom) #include  const int NUM_YEARS=15;//The number of years const int NAME_SIZE=32;//The max size of the player name string

  Prepare a program that uses at least two functions

Prepare a program that uses at least two functions that can be called from your main.

  Using powerpoint, word, visio or any other graphical editor

Using Powerpoint, Word, Visio or any other graphical editor that allows you to create shapes and arrows, create a simple flow chart  that provides the functionality for this pseudocode: Write "Enter the price in dollars: " Input Price

  How does the federal control the quantity of money

How does the Federal control the quantity of money (money supply) to increase inflation andlevel of employment using monetary base as an instrument when the economy is currently belowfull employment? Please explain all possible cases. Please show gra..

  Describe the class structure of c++ programming

Describe the class structure of C++ programming. What are the key contents of classes

  1 write a c program to display the following sum4 812162024

1. write a c program to display the following sum4 812162024 ...4042. write a program that will convert us dollar

  Computes the final price for a sales transaction

Create a C program that contains a function that computes the final price for a sales transaction and return that value to a calling method.

  Write a program that accepts as input a string variable

Write a program that accepts as input a string variable called strFirstName, then another string variable called strLastName, and an integer variable called intAge.

  Write a program that reads an array with wind-tunnel test

write a program that reads an array with wind-tunnel test data then allowss the user to enter a flight-path angle. If the angle is within the bounds of the data set, the program should then use linear inteerpolation to compute the corresponding coeff..

  Create if-then statement with single alternative decision

Create the If-Then statement (or a flowchart with a single alternative decision structure) which assigns 20 to  variable y and allots 40 to variable z if variable x is greater that 100.

  In competitive tournament

In competitive tournaments, it is common for all the players or teams to play in a series of matches in order to determine a single winner of the entire tournament. However, a number of different tournament formats exist. Here, we will concern our..

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd