For real number x, int(x) denotes integer part of x.int(x) is the largest integer less than or equal...

For real number x, int(x) denotes integer part of x.int(x) is the largest integer less than or equal to x.int(1,2)=1,int(-2,4)=-3. Find the value of int(1/2)+int(1/2+ 100)+int(1/2+2/100)+....+int(1/2+99/100)

Quiz

Answer/Solution

150

Steps/Work

int (1/2) = 0
int (1/2 + 100 ) = 100
into (1/2 + 2/100) = 0
......
int ( 1/2 + 50/100 ) = 1
int (1/2 + 51 /100) = 1
.......
int (1/2 + 99/100) = 1
So 100 + 1 + 1 + .....50 times = 150
Answer:A