pushpendra kumar lachoriy


{ City } gwalior
< Country > india
* Profession * software developer
User No # 85752
Total Questions Posted # 0
Total Answers Posted # 4

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 22
Users Marked my Answers as Wrong # 9
Questions / { pushpendra kumar lachoriy }
Questions Answers Category Views Company eMail




Answers / { pushpendra kumar lachoriy }

Question { State Bank Of India SBI, 7732 }

who was the present cheif governor of reserve bank of india


Answer

mr. Subba rao is the cheif governor of reserve bank of india

Is This Answer Correct ?    0 Yes 0 No

Question { 3902 }

What are local and global variables?


Answer

local variable:-its uses inside the function that is these variable exist inside the function and other fu no access out side the main function.
while global variables are variables and which are declared both sides of function inside and outside that is globally.all functions can access out of main function.

Is This Answer Correct ?    1 Yes 0 No


Question { 10061 }

which of 'arrays' or 'pointers' are faster?


Answer

array is faster than pointer because accessing array elements
by pointers always faster.there is used one array and more pointer.we know pointer is a "value at address".
so pointers stores only address of variable but arrays are stores similar data types.

Is This Answer Correct ?    10 Yes 1 No

Question { 6152 }

void main()
{
int x=25,y=32;
clrscr();
x=x++ + y++;
y=++x + ++y;
printf("%d%d",x,y);
}


Answer

if you put the values x=25 and y=32 so both values will be simply added because there will proceed clrscr() command .
so write answer is 57 ,61.

Is This Answer Correct ?    11 Yes 8 No