FUNDAMENTALS OF COMPUTER

COMPUTER PROGRAMMING FUNDAMENTALS

WHAT IS PROGRAMMING

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
How can code be made to be easier to read?
A
By inserting lots of line spaces
B
By using small sized characters
C
By including comments and using meaningful names
D
None of the above
Explanation: 

Detailed explanation-1: -Commenting involves placing Human Readable Descriptions inside of computer programs detailing what the Code is doing. Proper use of commenting can make code maintenance much easier, as well as helping make finding bugs faster. Further, commenting is very important when writing functions that other people will use.

Detailed explanation-2: -Refactoring improves code readability and reduces complexities. Refactoring can also help software developers find bugs or vulnerabilities hidden in their software. The refactoring process features many small changes to a program’s source code.

There is 1 question to complete.