What is the outcome of the line of code "cout<<abs(-
16.5);"?
1) 16
2) 17
3) 16.5
Answers were Sorted based on User's Feedback
Answer / shailaja
the outcome of this code is 16.5
bcz it will return the absolute value of parameter.
| Is This Answer Correct ? | 18 Yes | 6 No |
Answer / prabakaran
1)16
because abs() is used to calculate the absalute value of
integer only,so it convert the floating point value -16.5
into -16,and
calculate tha abs() value
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / d n gavade
abs() function returns absolute value of given arguments in
integer form because its return type is integer.
so answer will be 16.
if it is fabs() then only we get answer in float,double.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / arash s
16
just read what is "absolute" and u will know why.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / nathusingh rathod
Right answer for this question is 16. Had there been fabs
then result would have been 16.5 but as there is only abs()
so it will return integer value i.e 16.
| Is This Answer Correct ? | 1 Yes | 0 No |
how to write a java program for an output ****0 ***01 **012 *0123 01234
Explain the advantages of inheritance.
This program numbers the lines found in a text file. Write a program that reads text from a file and outputs each line preceded by a line number. Print the line number right-adjusted in a field of 3 spaces. Follow the line number with a colon, then one space, then the text of the line. You should get a character at a time and write code to ignore leading blanks on each line. You may assume that the lines are short enough to fit within a line on the screen. Otherwise, allow default printer or screen output behavior if the line is too long (i.e., wrap or truncate). A somewhat harder version determines the number of spaces needed in the field for the line numbers by counting lines before processing the lines of the file. This version of the program should insert a new line after the last complete word that will fit within a 72-character line.
what is polymorphism?
DIFFRENCE BETWEEN STRUCTURED PROGRAMING AND OBJCET ORIENTED PROGRAMING.
What is constructor overloading in oop?
What is the difference between class and structure?
can we create and enter the data & hide files using programmes ?
What is the full form of oops?
In c++ there is only virtual destructors, no constructors. Why?
What is difference between function overloading and overriding?
What is encapsulation process?