A man walks from 9.15 to 5.15 from monday to friday and 9.00 to 12.00 on saturday.Each day 0.45 min lunch. How much time he walks in a week
11 30663A started at 9.00 am with 6 mph and B started at 9.30 am with 8mph in the same direction. At what time they will meet?
6 25023In a company 3/5 of people know shorthand 1/4th know typing and 1/5 know both. What fraction of people do not know both?
14 32860A company requires 11,500 strength.present employees are 200 women , men and 6500 unmarried To reach the target how many women required to maintain the same ratio?
5 21684What is the time required to punch 1500 cards of 50 column each at the rate of 10,000 punches per hour?
13 22402Perimeter of the back wheel = 9 feet, front wheel = 7 feet on a certain distance the front wheel gets 10 revolutions more than back wheel . what is the distance?
5 10984Two circles , one circle is inscribed and another circle is outscribed over a square. What is the ratio of area of inner to outer circle.
5 13061main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?
7 27123main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
10 19581#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
4 20296Post New Ramco Interview Questions
Sqlite database save data in which storage?
How to include variables in double-quoted strings in php?
What is weblogic application server?
Give me an example of a job where you had to work as a team
what is synchronization? : Java thread
How do I start windows defender manually?
What is the difference between charge card and credit card?
How do you calculate errors in excel?
Why ide is recommended for use while programming with php?
What is autowired in spring boot? : Spring Boot
What are the options in sap when it comes to fiscal years?
my table having data like this year month revenue 2011 jan 100 2011 feb 200 2011 mar 150 like this i want My report 2011 jan 100 2011 feb 100+200=300 2011 mar 300+150=450 like this for this where we specify the condition how will specify? pls ans me pls...
What is constant in c++ with example?
What are the benefits of using the aggregate method in linq?
when to use ArrayList and when to use HashMap in webApplication.