9. Read the function conv() given below
conv(int t)
{
int u;
u=5/9 * (t-32);
return(u);
}
What is returned
(a) 15 (b) 0 (c) 16.1 (d) 29
Answers were Sorted based on User's Feedback
Answer / ankush deshmukh
0 is the answer
The division of 5/9 is 0.5
Then 0.5*(t-32) is -31.5
So roundup of this is 0.
| Is This Answer Correct ? | 2 Yes | 0 No |
Find out the list of roles which gives access to GUI activities? thanks in advance
What is the difference between an EXE and a DLL?
3 Answers ABC, Hykin Solutions, Infoedge, Infosys, Polaris,
Fortran cannot have value by reference True or False?
I want to pass .pdf files as OlE Object to crystal report through VB6. Please any one guid me...
if try is followed by finally block what happen to exception occured in try block
3 Answers Professional Access,
Bonjour, svp je veut voir comment envoyer un mail en java et comment changer le droit d'accé d'un fichier en java: de lecture en lecture/écriture et merci d'avance ;)
What is the meaning of client-server application. The purpose of Client-Server Application. with description.
List and explain any five built in functions for Lists data type in python
What does this useful command line do? tasklist /m "mscor*"
Given: coordinates of rectangle-> left bottom and right top points. the rectangles create a hole.Find the maximum area of the hole. eg. 4 rectangles create a hole in between. find its area.
A good website has the following conditions It should be interactive. It should contain at least 20 images. Title cannot be null and should contain at least 10 letters other than spaces and hyphen (-). The keywords should contain atleast three among the following list : "design", "Graphics", "lovely", "beautiful", "amazing" and "mesmerising" Write a method: boolean isGoodWebsite(boolean isInteractive, int numOfImages, String title,String keywords[]) isInteractive whether the site is interactive or not numOfImages Number of images on the website title Title of the website keywords Array of keywords in the website.
How do i find out the number of parameters passed into function?