1. write a function to convert a decimal no. to Roman no.  (10 marks)
2. Design a elevators system for 50 storied hotel.
      condition are... at least one left should be available on ground
flore. Min. time is expected ot reach the any floore...  (5 marks)
3. Design all the test case for function
    String  stringReverse("i am a good boy") -------> out put is (boy
good a am i) ;
4. Do the boundary level and partition equivalence testing for the
following specification.
       below 18 years  too young to get insured
       between 18 to 30 both inclusive get insured with 20% Discount.
       above 30 get insured.
5.  output
       a = 10;
       b=a+++a;
   what is a and b ?   a = 11 and b=20
6. foo(int x)
   {   if(x>0)
          foo(--x);
       printf("%d",x);
   }
  int main()
   { foo(5);
   }
output = 0,0,1,2,3,4,5
7. char m[16]="MicroSoft";
     a = 2 ; will the folloing code will compile if yes then output?
    Printf("%d%d",(a+3)m,m(2)????) some thing like but the answer was
"sf"
8. one network objective quetion.. which layer is responsible for the
reliable delivery of packets..
    Transport Layer
9. one mathematical quetion on realibilty is 90% and MTTF(mean time to
failure) = 200 days. if
   it would be 95%. and 5 day for repair.. then what MTTF
   {a.200 b.205 c. 500 d.700 }
10. Output of Sql query
     Translate((Replace(Ltrim(Rtrim("$$JUNK##"),#),
$)JU,**),*,'trouble');

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to