Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Give a fast way to multiply a number by 7

Answers were Sorted based on User's Feedback



Give a fast way to multiply a number by 7..

Answer / shivangi

Hi Tejonath
What is your logic in your answere.Its absolutely correct.
I'm asking is there any generic way to do this?could you
please reply here or answere me to
verma_shivangi@yahoo.co.in

Is This Answer Correct ?    4 Yes 9 No

Give a fast way to multiply a number by 7..

Answer / siva

Hi Tejonath
What is your logic in your answere.Its absolutely correct.
I'm asking is there any generic way to do this?could you
please reply here or answere me to gvsivannarayana@yahoo.com

Thanks&Regards
siva..

Is This Answer Correct ?    4 Yes 11 No

Give a fast way to multiply a number by 7..

Answer / anveshbanti

void main()
{
int a=i;
printf(enter i value");
scanf("%d",&i)
int res=i*7;
printf("result is " res);
}

Is This Answer Correct ?    2 Yes 19 No

Give a fast way to multiply a number by 7..

Answer / mani

n=n*7;

Is This Answer Correct ?    9 Yes 47 No

Give a fast way to multiply a number by 7..

Answer / atul sharma

(x<<2)-1

Is This Answer Correct ?    15 Yes 89 No

Post New Answer

More C Interview Questions

What is array within structure?

0 Answers  


which is the best antivirus and how to update it

7 Answers   Infosys,


What is array of structure in c?

0 Answers  


exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above

0 Answers  


What is printf () in c?

0 Answers  


When should the const modifier be used?

0 Answers  


void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }

3 Answers  


What does sizeof return c?

0 Answers  


write a function to find whether a string is palindrome or not and how many palindrome this string contain?

2 Answers   Aptech,


which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}

4 Answers   TCS,


Find errors (1) m = ++a*5; (2) a = b ++ -c*2; (3)y = sqrt (1000);

5 Answers  


What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }

2 Answers  


Categories