palanisamy


{ City } chennai
< Country > india
* Profession * employee
User No # 59643
Total Questions Posted # 0
Total Answers Posted # 10

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

Users Marked my Answers as Correct # 23
Users Marked my Answers as Wrong # 25
Questions / { palanisamy }
Questions Answers Category Views Company eMail




Answers / { palanisamy }

Question { CSC, 7593 }

1. What will be the output of the following programs.
a) #include
Main()
{
Int x=4;
While(x==1)
{
X=x-1;
Printf(ā€œ%dā€,x);
--x;
}
}


Answer

empty

Is This Answer Correct ?    0 Yes 0 No

Question { 2498 }

what are threads ? why they are called light weight
processes ? what is the relation between process and threads ?


Answer

thread is an execute the more process an single process

Is This Answer Correct ?    2 Yes 1 No


Question { 4194 }

What is that continue statement??


Answer

continue:

Is This Answer Correct ?    0 Yes 0 No

Question { 5445 }

write a program that accepts 3 numbers from the user. dispaly
the values in a descending order.


Answer

include
int main()
{
int a,b,c;
printf("enter the a value")

Is This Answer Correct ?    2 Yes 5 No

Question { 3061 }

is forign key will be unique key any table or not?


Answer

not

Is This Answer Correct ?    1 Yes 0 No

Question { TCS, 4048 }

can we declare a variable in different scopes with different
data types? answer in detail


Answer

ya we can declare, ex: int array b[],
char array c[]

Is This Answer Correct ?    1 Yes 3 No

Question { Wipro, 12125 }

An array name contains base address of the array. Can we
change the base address of the array?


Answer

It's not possible , address is an default we can't change
that value

Is This Answer Correct ?    4 Yes 3 No

Question { TCS, 10528 }

can we store values and addresses in the same array? explain


Answer

Not because value we can store but address is we can't store
that is default address we can't change that value

Is This Answer Correct ?    4 Yes 3 No

Question { Microsoft, 16345 }

what is the difference between NULL('\0') and 0?


Answer

NULL is an the empty value but 0(zero) is an one of the value

Is This Answer Correct ?    7 Yes 4 No

Question { TCS, 6173 }

IS it possible to define a zero sized array in c.if it is
possible how can the elements of that array can be
accessed.array index starts from zero,if it is possible to
define zero sized array how can be its first element can be
accesseed.


Answer

ya it's possible to assign , elements can be access an the
store value, this value can be store as an the address so
easily we can find that value, first element can be assigned
as example c[0]=0,

Is This Answer Correct ?    2 Yes 6 No