1. Consider the following program in Pascal

X = 2.57
X = (X + 0.06) 10
I = TRUNC (X)
X = I
X = X / 10.0

The final value of X would be





Ask Your Doubts Here

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

  • By: guest on 02 Jun 2017 01.02 am
    (2.57 + 0.06) 10 = 26.3 → .
Show Similar Question And Answers
QA->Name the translatory program which translates the high level language into machine language before running the program?....
QA->An unauthorized program which functions from inside what seems to be an authorized program, thereby concealing what it is actually doing:....
QA->An unauthorized program which functions from inside what seems to be an authorized program, thereby concealing what it is actually doing:....
QA->An unauthorized program which functions from inside what seems to be an authorized program, thereby concealing what it is actually doing:....
QA->An unauthorized program which functions from inside what seems to be an authorized program, thereby concealing what it is actually doing:....
MCQ->Consider the following program in Pascal

X = 2.57
X = (X + 0.06) 10
I = TRUNC (X)
X = I
X = X / 10.0

The final value of X would be....
MCQ->Consider the following statements : 1. In a fluid under motion, the pressure at a point is always perpendicular to the surface. 2. Pascal's law states that the pressure at a point is same in all directions. 3. Magnitude of pressure of a fluid at a point is obtained from hydrostatic law. 4. Pascal's law is applicable in the operation of a hydraulic press. Which of these statements are correct ?....
MCQ->Consider the following statements about data structures in Pascal Arrays and files are types of data structures.List structure is not a data structure in Pascal.Each element of a binary tree is called a node of the tree. Which of the above are statements correct?....
MCQ->What will be the output of the program? class Happy extends Thread { final StringBuffer sb1 = new StringBuffer(); final StringBuffer sb2 = new StringBuffer(); public static void main(String args[]) { final Happy h = new Happy(); new Thread() { public void run() { synchronized(this) { h.sb1.append("A"); h.sb2.append("B"); System.out.println(h.sb1); System.out.println(h.sb2); } } }.start(); new Thread() { public void run() { synchronized(this) { h.sb1.append("D"); h.sb2.append("C"); System.out.println(h.sb2); System.out.println(h.sb1); } } }.start(); } }....
MCQ->Consider the following statements: The bias stability of an emitter-bias amplifier circuit improves by decreasing the value of RBincreasing the value of REdecreasing the value of RBincreasing the value of RBincreasing the value of RC Which of the above statements are correct?....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use | Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions
Question ANSWER With Solution