InidBIX.com
Arithmetic Aptitude Data Interpretation
Logical Reasoning Verbal Reasoning
Sudoku Number puzzles Missing letters puzzles Logical puzzles Playing cards puzzles Clock puzzles
C Programming Java Programming
Data Structures Operating Systems Networking DATABASE Database Basics SQL Server Basics SQL Server Advanced SQL Server 2008 JAVA Core Java Java Basics Advanced Java UNIX Unix File Management Unix Memory Management Unix Process Managemnt
Aptitude Test Verbal Ability Test Verbal Reasoning Test Logical Reasoning Test C Programming Test Java Programming Test
Group Disucssion HR Interview Questions Technical Interview Questions Body Language

Exercise

"Two things are infinite: the universe and human stupidity; and I'm not sure about the universe."
- Albert Einstein

C Programming - Expressions

@ : Home > C Programming > Expressions > General Questions
1. 

In which order do the following gets evaluated
1. Relational
2. Arithmetic
3. Logical
4. Assignment

A.
2134
B. 1234
C. 4321D. 3214

2. 

Which of the following are unary operators in C?
1. !
2. sizeof
3. ~
4. &&

A. 1, 2B. 1, 3
C. 2, 4D.
1, 2, 3

3. 

Which of the following is the correct order if calling functions in the below code?
a = f1(23, 14) * f2(12/4) + f3();

A. f1, f2, f3
B. f3, f2, f1
C.
Order may vary from compiler to compiler
D. None of above

4. 

Which of the following is the correct usage of conditional operators used in C?

A. a>b ? c=30 : c=40;B. a>b ? c=30;
C.
max = a>b ? a>c?a:c:b>c?b:c
D. return (a>b)?(a:b)

5. 

Which of the following correctly shows the hierarchy of arithmetic operations in C?

A. / + * -B. * - / +
C. + - / *D.
/ * + -



© 2008-2010 by IndiaBIX™ Technologies. All Rights Reserved | Copyright | Terms of Use & Privacy Policy