Search
 
 
 
Report
Vishal chugh asks : Find the remainder when 1*2+2*3+3*4+....+99*100 is divided by 101 
Tag : divided,remainder
Category : Quantitative Ability |  On : 2011-11-28 09:47:11
 
3000 characters remaining
Advanced Editor
 
Answers (1)
Report
30/11/2011 01:59:53
ans is ===0 (remainder) solution: i am software programmer i create a code to find 1*2+2*3+........99*100=333300/101=3300 remainder==0; the program is: package coma; public class frac { public static void main(String args[]){ int a=1,sum=0; for(int i=0;i
0
0