What is software profiling? Why is it useful?

What will be an ideal response?

Software profiling means determining certain parameters of your program when it executes. These include the most time consuming segments of the program, the execution frequency of each line (or function) and function call graphs. It is used to identify that segment of the code in the program which spends the most time executing.

Computer Science & Information Technology

You might also like to view...

The function that accepts pointers to two C-strings and an integer argument that indicates how many characters to copy from the second string to the first is

a. strcpy b. strncpy c. copystring d. strintcpy e. None of these

Computer Science & Information Technology

Use the merge algorithm to merge the contents of the two sorted arrays named values1 and values2 into a third array named results

What will be an ideal response?

Computer Science & Information Technology