Question Set

1. Which of the following are Logical operators in C#.NET? && || ! Xor %






Ask Your Doubts Here

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

Comments

Show Similar Question And Answers
QA->Who, on the basis of logical reasoning rejected all existing religions and at the same time established a new religion called ‘Aananthamath’?....
QA->The annual average rate of net plant production is highest in which forests?....
QA->There is no net transfer of energy by the particles of the medium in which waves?....
QA->In which plan was the objective of self-reliance and zero net foreign aid declared?....
QA->Which state has the largest net irrigated area?....
MCQ->Assertion (A): C allows the use of logical operators, AND, OR, NOT.Reason (R): C has logical operators as well as bitwise operators like AND, OR etc.

....
MCQ->Which of the following are Logical operators in C#.NET? && || ! Xor %....
MCQ->In a C expression using assignment operators, relational operators and arithmetic operators, the hierarchy of operations (in the absence of parenthesis) is....
MCQ->Which of the following statements are correct about the C#.NET code snippet given below? if (age > 18 && no < 11) a = 25; The condition no < 11 will be evaluated only if age > 18 evaluates to True. The statement a = 25 will get executed if any one condition is True. The condition no < 11 will be evaluated only if age > 18 evaluates to False. The statement a = 25 will get executed if both the conditions are True. && is known as a short circuiting logical operator.....
MCQ->What will be the output of the program? #include<stdio.h> int main() { int i=4, j=-1, k=0, w, x, y, z; w = i || j || k; x = i && j && k; y = i || j &&k; z = i && j || k; printf("%d, %d, %d, %d\n", w, x, y, z); return 0; }....
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