1. Which of the following integer expressions is incorrect in Pascal?





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.03 am
    Two operators cannot be together.
Show Similar Question And Answers
QA->Which is the incorrect statement of the following?....
QA->‘He replied that he will come’ which is the incorrect word in the Sentence ?....
QA->Osmosis is the flow of solution from higher concentration to a solution of lower concentration through a semi permeable membrane. What is incorrect in this statement?....
QA->Who is the creator of PASCAL language?....
QA->Explain Pascal's law or also known as principle of Transmission of fluid pressure?....
MCQ->Consider the following rules about integer constant in C An integer constant must have at least one digit.An integer constant must not have a decimal point.An integer constant may be positive or negative.The default sign is positive.A maximum of one comma or blank is allowed. Which of the above are correct?....
MCQ->Consider the following in C An arithmetic operation between integer and an integer gives integer as the result.An arithmetic operation between a real and a real constant gives real constant as the result.An arithmetic operation between an integer constant and a real constant is not valid. Which of the above are correct?....
MCQ->Which of the following integer expressions is incorrect in Pascal?....
MCQ->What will be the output of the program? public class WrapTest { public static void main(String [] args) { int result = 0; short s = 42; Long x = new Long("42"); Long y = new Long(42); Short z = new Short("42"); Short x2 = new Short(s); Integer y2 = new Integer("42"); Integer z2 = new Integer(42); if (x == y) / Line 13 / result = 1; if (x.equals(y) ) / Line 15 / result = result + 10; if (x.equals(z) ) / Line 17 / result = result + 100; if (x.equals(x2) ) / Line 19 / result = result + 1000; if (x.equals(z2) ) / Line 21 / result = result + 10000; System.out.println("result = " + result); } }....
MCQ->Read the following rules for scanning Boolean expressions in Pascal The expressions are scanned from left to right.The operations are scanned in the order NOT, AND, OR.All operators (i.e., NOT, AND and OR) are scanned together.In one scanning all the operators of only one type are scanned. Which of the above 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