InterviewSolution
| 1. |
In Julia, Do You Find Any Other Function Or Tool Similar To The @time? Which One You Prefer And Why? |
|
Answer» toc () and tic() are the other functions that ONE can put equal to @TIME. However, they are not preferred by many programmers. The BIGGEST reason for this is memory allocation problem. Both these functions consume more memory and can thus affect the performance up to a certain extent. With more memory, compatibility and performance related issue can COMMONLY be seen. toc () and tic() are the other functions that one can put equal to @time. However, they are not preferred by many programmers. The biggest reason for this is memory allocation problem. Both these functions consume more memory and can thus affect the performance up to a certain extent. With more memory, compatibility and performance related issue can commonly be seen. |
|