Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Which of the following are major concerns in choosing a programming language for

ID: 3906722 • Letter: W

Question

Which of the following are major concerns in choosing a programming language for a project? ? Programmers are more productive using a familiar language than an unfamiliar one. compilers for some langauges are faster than for others. Scrpng languages, for example, lead to a rapid compile-test cycle. a The programming language needs to be matched to the design style. For example, object-oriented design requires an object -oriented programmign langauge Some languages are better at expressing some programming concepts than others. This in turn a fects the way in which programmers think about and design their code

Explanation / Answer

Firstly, the programming language matters.It should match with the design style. Different problem or concept demands different style of programming. Depending upon the demand of a particular style administrator has to choose which type of programming language is used. For example Object oriented style demands an OOP language like C++, Java. (Option 3)

Then again if client server based OOP style is demanded Java is prefer to C++. That's why specific language becomes important. (Option 4)

Then depending upon the demand of compilation the programming laguages are tossed again. For example Python is a scripting OOP language and is much faster than Java. So if speed is the main concern, one must prefer Python to Java (Option 2)