[quote=“ivan, post:1, topic:3056, full:true”]
Welcome to the discussion about the reading assignment about programming.
Leave your answers to the questions below in this thread. If you have any questions or you want to discuss something connected to the assignment feel free to do it in this thread as well, but please everything to the topic.
-
What is a program?
A program is a set of precise instructions telling a computer what to do. It is a piece of text typed by a programmer; it is the directing force that makes the computer do what it it does. It is data in the computer’s memory and controls the actions performed on the same memory. -
What can you say about complexity in programming?
Programming is a complex, tedious, and frustrating task. This is so because computers are dump-by themselves, they do nothing. It is the programmer who has to use abstract thinking to instruct the computer what to do. The fundamental rules of programming are simple and clear but programs built using these rules tend to become complex that they introduce their own rules and complexity. -
What function do programming languages have?
Programming languages are artificially constructed languages used to INSTRUCT COMPUTERS. -
What is the relationship between Java and JavaScript?
Java and JavaScript are not the same. Java was a programming language already in use when JavaScript was introduced. Java and JavaScript have similar name because of marketing reasons. When JavaScript was being introduced, the Java language was being heavily marketed and was becoming more popular. That is why someone thought that it was a good idea to ride on the success of Java, thus leading to similar names. -
What is ECMAScript and how is it related to JavaScript?
When JavaScript was introduced, it was meant to add programs to web pages in the Netscape browser. It was, however, adopted by all other major graphical web browsers. After its adoption by these web browsers, a standard document was written to describe the way the JavaScript should work so that the various pieces of software that claimed to support JavaScript were talking about the same language. This is referred to as the ECMAScript, named after the ECMA International organization that carried out the standardization. ECMAScript is related to JavaScript in that they are two names for the same language and can be used interchangeably.