Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

Ask C/C++ Expert


Home >> C/C++

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.

C/C++, Programming

  • Category:- C/C++
  • Reference No.:- M91547733

Have any Question?


Related Questions in C/C++

Question 1find the minimum and maximum of a list of numbers

Question: 1. Find the Minimum and Maximum of a List of Numbers: 10 points File: find_min_max.cpp Write a program that reads some number of integers from the user and finds the minimum and maximum numbers in this list. Th ...

There are several ways to calculate the pulse width of a

There are several ways to calculate the pulse width of a digital input signal. One method is to directly read the input pin and another method (more efficient) is to use a timer and pin change interrupt. Function startTi ...

Project - space race part a console Project - Space Race Part A: Console Implementation

Project - Space Race Part A: Console Implementation INTRODUCTION This assignment aims to give you a real problem-solving experience, similar to what you might encounter in the workplace. You have been hired to complete a ...

1 implement the binary search tree bst in c using the node

1. Implement the Binary Search Tree (BST) in C++, using the Node class template provided below. Please read the provided helper methods in class BST, especially for deleteValue(), make sure you get a fully understanding ...

What are the legal requirements with which websites must

What are the legal requirements with which websites must comply in order to meet the needs of persons with disabilities? Why is maximizing accessibility important to everyone?

Assign ment - genetic algorithmin this assignment you will

ASSIGN MENT - GENETIC ALGORITHM In this assignment, you will use your C programming skills to build a simple Genetic Algorithm. DESCRIPTION OF THE PROGRAM - CORE REQUIREMENTS - REQ1: Command-line arguments The user of yo ...

Why do researcher drop the ewaste and where does it end

Why do researcher drop the ewaste and where does it end up?

Software development fundamentals assignment 1 -details amp

Software Development Fundamentals Assignment 1 - Details & Problems - In this assignment, you are required to answer the short questions, identify error in the code, give output of the code and develop three C# Console P ...

Assignment word matchingwhats a six-letter word that has an

Assignment: Word Matching What's a six-letter word that has an e as its first, third, and fifth letter? Can you find an anagram of pine grave. Or how about a word that starts and ends with ant (other than ant itself, of ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As