infomax
info_max
info max
All of these
It returns the size of the variable in bits
It returns the size of the variable in bytes
It returns the size of the variable in kilobytes
It returns the number of elements in an array
C compiler supports octal integer constant.
C compiler supports hexadecimal integer constant.
C compiler supports binary integer constant.
C compiler supports decimal integer constant.
What will be the output of the following code?
int a = 10, b = 20;printf("%d", a + b);
30
1020
10+20
Compiler error
getchar()
gets()
scanf()
cin.get()
final
constant
const
static
What is the output of the following code?
int a = 10, b = 5;printf("%d", a / b);
5
2
0.5
15
float, double
short int, double, long int
float, double, long double
double, long int, float
A number
A special symbol other than underscore
Both of the above
An alphabet
-3.4e38 to 3.4e38
-32767 to 32768
-32668 to 32667
-32768 to 32767
*
&
%
#
volatile
true
friend
export
float
real
int
double
main(){ int a, b; a=b=4; b=a++; printf("%d %d %d %d", a++, --b, ++a, b--);}
5 3 7 3
Syntax error
5 4 5 3
6 2 6 4
* / % + - =
= * / % + -
/ * % - + =
* % / - + =
print("Hello World");
echo("Hello World");
printf("Hello World");
None of these
void
endl
switch
put together the file and functions that are required by the program
translate the instructions into a form suitable for execution by the program
load the executable code into the memory and execute them
allow the user to type the program
main function arguments
main arguments
Command-Line arguments
Parameterized arguments
Find the output of following code :
int main() { int i=-2; printf (“-i=%d”,-i); return b; }
–i=2
i=-2
–i=-2
–i=+2
int a = 5;printf("%d", a == 5);
0
1
Undefined
Binary operator
Unary operator
Ternary operator
All of the above
AT & Ts Bell Laboratories of USA in 1972
AT & Ts Bell Laboratories of USA in 1970
Sun Microsystems in 1973
Cambridge University in 1972
_infomax
3infomax
infomax_ica
infomax123
float_int, keyword, A1
ANSI, ascii, cpu
valid, variable, name
None of the above
print()
input()
char
4
Depends on the system
What will be the output of the following program?
int main() { int x=5; printf(“%d %d %d”,x,x<<2,x>>2); }
1 20 5
5 1 20
5 20 1
20 1 5
Keywords can be used as variable names
Variable names can contain digits
Variable names do not contain blank spaces
Capital letters can be used in variable names.
no of students
7th
myName
Algorithm
Flow-Charts
Procedural
Object Oriented
Logical Operator
Conditional Operator
typecast
Ternary
What is the output of the following code:
int x = 5;
printf("%d", x++);
6
A
B
ADA
C++
//
/
/*
The basic data type of C
Qualifier
Short is the qualifier and int is the basic data type
All of the mentioned
2 bytes
4 bytes
8 bytes
1 byte
char > int > float
int > char > float
char < int < double
double > char > int
8
int my_num = 100,000;
int my_num = 100000;
int my num = 1000;
int $my_num = 10000;
16
link, load, code, compile and execute
code, compile, link, execute and load
code, compile, link, load and execute
compile, code, link, load and execute
-4
-2.8
+2.8
+3
What will be the output of the following code segment?
int x = 24, y = 39, z = 45;z = x + y;y = z - y;x = z - y;printf("\n%d %d %d", x, y, z);
24 39 63
39 24 63
24 39 45
39 24 45
world
addition23
test-name
factorial
Assignment Relational Arithmetic
Arithmetic Relational Assignment
Relational Arithmetic Assignment
Assignment Arithmetic Relational
Addition, Division, Modulus
Addition, Modulus, Division
Multiplication, Substration, Modulus
Modulus, Multiplication, Substration
Either True or False
is less than or is more than
is equal or less or more