You are viewing our Forum Archives. To view or take place in current topics click here.
Importance of quality code?
Posted:

Importance of quality code?Posted:

Rookie_MoDDeR
  • Ladder Climber
Status: Offline
Joined: Jan 18, 201113Year Member
Posts: 328
Reputation Power: 16
Status: Offline
Joined: Jan 18, 201113Year Member
Posts: 328
Reputation Power: 16
What is the importance in good quality code which includes subjects such as stability and robustness?
#2. Posted:
speed
  • Winter 2017
Status: Offline
Joined: Jun 11, 200914Year Member
Posts: 9,897
Reputation Power: 3160
Motto: "I'l no I grew up to fast speed I no u will be little famous" - Famous_Energy
Motto: "I'l no I grew up to fast speed I no u will be little famous" - Famous_Energy
Status: Offline
Joined: Jun 11, 200914Year Member
Posts: 9,897
Reputation Power: 3160
Motto: "I'l no I grew up to fast speed I no u will be little famous" - Famous_Energy
This reads like something off of a homework assignment, but whatever.

Quality code is everything. If your program crashes every time you run it, or is functionally unable to do what it is supposed to do, you lose users, and as a result, money.

Stability and robustness go hand in hand. Programs which account for every possible case (robustness) are less likely to throw exceptions, and crash.
#3. Posted:
Rookie_MoDDeR
  • Ladder Climber
Status: Offline
Joined: Jan 18, 201113Year Member
Posts: 328
Reputation Power: 16
Status: Offline
Joined: Jan 18, 201113Year Member
Posts: 328
Reputation Power: 16
Yeah it is a homework assignment, but thank you for giving me an outline of the importance of coding. Very helpful
#4. Posted:
kpempire
  • Challenger
Status: Offline
Joined: Jan 20, 201410Year Member
Posts: 115
Reputation Power: 4
Status: Offline
Joined: Jan 20, 201410Year Member
Posts: 115
Reputation Power: 4
SPEED wrote This reads like something off of a homework assignment, but whatever.

Quality code is everything. If your program crashes every time you run it, or is functionally unable to do what it is supposed to do, you lose users, and as a result, money.

Stability and robustness go hand in hand. Programs which account for every possible case (robustness) are less likely to throw exceptions, and crash.


This pretty much sums it up quite well. I'd also mention that internal commentary makes your code easier to read and understand by another program, as the majority of the time in the workplace. The person maintaining your code a few months down the line, won't be you and it could be the first time they've ever seen it. Internal commentary helps a lot. A-Level computing.
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.