Drone Videography Bi...
Event Services
A programmer tries to debug a code of 10,000 lines. It is known that there is a logical error in the first 25 lines of the code. What is an efficient way to debug the code?
a) Compile the entire code and check it line by line.
b) Use an interpreter on the first 25 lines of code
c) Compile the entire code and run it.
d) None of the above can be used to debug the code
Answer:
c) Compile the entire code and run it.
A programmer tries to debug a code of 10,000 lines. It is known that there is a logical error in the first 25 lines of the code. What is an Efficient and Easy Way to Debug the 1000 Lines Code
Comments