Oncard applet execution time (write operation)
My Java card applet store on Java card blocks with length 192 bytes (just byte arrays) without encryption . Total block count is 200. All blocks are allocated before with operator new. Off-card application could write at once any block count to card. For example it could write 10 blocks, and in this case there are required 10 calls to applet.
There is some statistics of time, which is required to write different count of such blocks:
Call count | Total time(sec) | Average timefor each call(sec)
1750.29
2790.33
90350.38
153740.48
What could be the reason why more calls take more time? May be it is some Java Card features?
p.s. In case of read operation time is approximately the same for any call count

