ricky


{ City } pauri garhwal
< Country > india
* Profession * student
User No # 58505
Total Questions Posted # 1
Total Answers Posted # 13

Total Answers Posted for My Questions # 1
Total Views for My Questions # 2951

Users Marked my Answers as Correct # 72
Users Marked my Answers as Wrong # 95
Questions / { ricky }
Questions Answers Category Views Company eMail

how to run java script program

1 JavaScript 2951




Answers / { ricky }

Question { Satyam, 35347 }

what are your strengths ?


Answer

hello i am ricky dobriyal,my strength is i am self learner
and self confidence person.

Is This Answer Correct ?    3 Yes 0 No

Question { CMS, 80609 }

why should I hire u?


Answer

bcoz may be possible that i am the best compare to another
candidate

Is This Answer Correct ?    0 Yes 1 No


Question { IBM, 78216 }

will u marry me?


Answer

why not i will marry you, but first we considor on job
after then we think about it.

Is This Answer Correct ?    0 Yes 0 No

Question { CTS, 65227 }

void main()
{
for(int i=0;i<5;i++);
printf("%d",i);
}

What is the output?..


Answer

hi friend i am ricky dobriyal.
if this programe in c then this program produce error
expression syntex error.
if in c++ then it will produce o/p=5

Is This Answer Correct ?    10 Yes 9 No

Question { 28749 }

#include
void main()
{
int i=1;
printf("%d%d%d",i++,++i,i);
}


Answer

I AM RICKY DOBRIYAL
THIS ANSWER IS DEFINETLY CORRECT
221
BECAUSE COMPILER CALCULATE RIGHT TO LEFT

Is This Answer Correct ?    2 Yes 1 No

Question { TCS, 12640 }

Find the output?
void main()
{float a=2.0;
printf("\nSize of a ::%d",sizeof(a));
printf("\nSize of 2.0 ::%d",sizeof(2.0));}


Answer

hello fnd..i am ricky dobriyal

output:-

Size of a =4
Size of 2.0=8 /* because of double*/

Is This Answer Correct ?    1 Yes 1 No

Question { Wipro, 27685 }

why you want to join our company?


Answer

because i like to talk different kind of person

Is This Answer Correct ?    0 Yes 12 No

Question { 5797 }

struct node
{
int *a;
char *b;
char array[12];
};
struct node m,*n;

assign the value in *a,*b,char array[12]


Answer

/* hello i am ricky dobriyal */

struct node
{
int *a;
char *b;
char array[12];
};
struct node m,*n;
n->a=10;
n->b='5';
m.array="ricky dobriyal";

Is This Answer Correct ?    0 Yes 2 No

Question { 4228 }

writte a c-programm to display smill paces


Answer

#incude
void main()
{
int ricky_dobriyal=1;
while(1)
{
printf("%c",ricky_dobriyal);
}
}

Is This Answer Correct ?    2 Yes 1 No

Question { FirstSource, 13748 }

actually what is done at call centers..


Answer

call center provides service to their coustmer for solve
their problem

Is This Answer Correct ?    7 Yes 0 No

Question { KPIT, 15486 }

how c source file in converted to exe file


Answer

/* hello i am ricky dobriyal student of bca from simt
kashipur*/

c source file converted into exe file automatically when
you run the program

thank you..

Is This Answer Correct ?    8 Yes 24 No

Question { IBM, 39422 }

Write a program to print prime nums from 1-20 using c
programing?


Answer

/* hello i am ricky dobriyal software enginear*/
#include
#include
void main()
{
int i,j,s;
printf("prime number 1 to 20 :\n");
for(i=1;i<=20;i++)
{
s=0;
for(j=2;j {
if(i==1)
s=0;
else if(i%j==0)
s=1;
}
if(s==0)
printf("%d\t",i);
}
getch();
}

output:-1 2 3 4 7 11 13 17 19

Is This Answer Correct ?    18 Yes 27 No

Question { IBM, 39422 }

Write a program to print prime nums from 1-20 using c
programing?


Answer

sorry for above output mistake:

output :1 2 5 7 11 13 17 19

Is This Answer Correct ?    21 Yes 17 No