Programming Reading Assignment

  1. A set of precise instructions telling a computer what to do.
  2. The higher the complexity of a program the more likely it is that the program will become faulty. It is easy for a programmer to become lost in his or her program.
  3. Programming languages help to connect the instructor with the machine. The programmer lays out instructions for a machine using a language, and this is how the language is used to create a set of instructions for the machine.
  4. The creators of JavaScript basically used the name “Java” to ride the coattails of an already well market performing language. There is apparently no relation aside from this.
  5. ECMAScript is the same as Javascript, just two different names. At one point ECMA, the company, came out and agreed a foundation for how all Javascript programs will interact with web-pages. This is now ECMAScript, the JavaScript we know today.
1 Like
  1. It’s a set of instructions that you give the computer, the data in the computers memory.
  2. Best to keep it simple.
  3. A programming language translates the instructions written in something resembling our language, in a structured way, into machine code that the computer then uses.
  4. None
  5. It is a version of javascript that gives you the rules of the language.
1 Like
  1. A program is a set of instructions.
  2. There exists complexity in programs. But at a base level programs can be very simple. As the task needed becomes larger so does the complexity of management of the program.
  3. A high level programming language is more readable. Thus making writing programs that interact with lower level programming languages easier.
  4. There is no relation between the two languages. The name JavaScript was chosen because of the rise of popularity gained by Java at the time.
  5. ECMAScript can be used interchangeably with JavaScript ECMA is a set of standards/rules defined by a standards body. They were created so all implementations of JavaScript execute Script engines that behave the same way across different platforms.
1 Like

1 Set of instructions to computer
2 Complexity should be avoided. Programs should be as simple and readable as possible.
3 Programming languages are human readable set of instruction that computer compiler can understand and translate into code that computer understand so that we can get the desired result of action from computer.
4 no relation.
5 Its a standard that javascript follows.

1 Like
  1. A program is the immaterial aspect of a computer.
  2. Complexity can increase the power of a program but can also increase the chances of losing control over the function of said program.
  3. Their function is so act as human readable/writeable set of instructions for a computer.
  4. They are similar in name only.
  5. They are two different names which could be used inter-changeably for the same language.
1 Like
  1. What is a program?
  • A set of precise instructions telling a computer what to do.
  1. What can you say about complexity in programming?
  • It is important to manage the complexity when building a program.
  1. What function do programming languages have?
  • Allows a programmer to define actions that the computer has to perform on a higher level.
  • Helps to omit details, provide convenient building blocks, allows to define your own building blocks, and makes those blocks easy to compose.
  1. What is the relationship between Java and Javascript?
  • Java is also a programming language just like Javascript however they are both different programming languages. They have similar names just because of marketing purposes and the popularity of Java back in the day.
  1. What is ECMAScript and how is it related to Javascript?
  • ECMAScript and Javascript are two names pertaining to the same programming language.
1 Like
  1. It is a set of instructions to perform a given operation.
  2. It has to be considered when writing a code as it may quickly get out of control to the point of being confusing and unreadable.
  3. Good programing language allows for easy of coding by providing building blocks that can be used to build more complex blocks.
  4. Just a name
  5. Those names can be used interchangeably.
2 Likes
  1. What is a program?

a set of precise instructions telling a computer what to do.

  1. What can you say about complexity in programming?

A program should be easy to understand or it might confuse even the person who created it.

  1. What function do programming languages have?

Helps the programmer by allowing them to talk about the actions that the computer has to perform on a higher level.

  1. What is the relationship between Java and Javascript?

None.

  1. What is ECMAScript and how is it related to Javascript?

Same as Javascript. ECMAScript and Java Script may be used alternately.

2 Likes

A set of instructions written to tell a computer what to do.

Complexity increases as more instructions are built into a program, therefore care needs to be taken so complexity is kept under control.

Programming language allows for instructions to be written in a more efficient manner than using bits, which enables the way programs are written to continually evolve and become better over time .

They are unrelated but Javascript was named to try and market it with the same success and popularity as Java.

ECMAScript is the standardization that was written to outline how Javascript should function.

2 Likes
  1. What is a program?
    A program is a set of precise instructions telling a computer what to do.

  2. What can you say about complexity in programming?
    Programming fundamental rules are simple and clear, but programs built on top of these rules tend to become complex enough to introduce their own rules and complexity.

  3. What function do programming languages have?
    Helps the programmer by allowing them to talk about the actions that the computer has to perform on a higher level.

  4. What is the relationship between Java and Javascript?
    Both have nothing to do with each other. When JavaScript was being introduced, the Java language was being heavily marketed and was gaining popularity.

  5. What is ECMAScript and how is it related to Javascript?
    It is a standard that was written to describe the way JavaScript language should work so that various pieces of software that claimed to support JavaScript were actually talking about the same language. Both terms can be used interchangeably

2 Likes

1. What is a program?

A program is a set of precise instructions that tell the computer what to do.

2. What can you say about complexity in programming?

In computer science, the computational complexity or simply complexity of a program is the number of resources required to run it. Particular focus is given to time and memory requirements. The best practice is to reduce the complexity to a minimum.

3. What function do programming languages have?

Programming languages help us to interact with the computer and instruct the computer what to do if a certain situation arises. With the help of a programming language, we can make the computer do what we want them to do.

4. What is the relationship between Java and Javascript?

There is no relation between JAVA and JS. Javascript was used as a marketing ploy to ride alongside the growing popularity of Java.

5. What is ECMAScript and how is it related to Javascript?

JavaScript is a general-purpose scripting language that conforms to the ECMAScript specification. The ECMAScript specification is a blueprint for creating a scripting language. JavaScript is an implementation of that blueprint. On the whole, JavaScript implements the ECMAScript specification as described in ECMA-262.

1 Like
  1. What is a program?
    A program is a set of instructions for a computer to execute.

  2. What can you say about complexity in programming?
    Best to keep it simple because a programs complexity can confuse even the creator.

  3. What function do programming languages have?
    Programming languages make coding more readable for human.

  4. What is the relationship between Java and Javascript?
    None

  5. What is ECMAScript and how is it related to Javascript?
    ECMAScript is a set of standard rules for Javascript

2 Likes

1.a program is a set of instructions created by a programmer to tell a computer what to do.

2.it is best to aim to keep your programming as simple as possible as complexity can spiral out of control and be unreadable and unfunctional if not kept in check.

3.programming languages function as instructions for the computer to read and execute just as humans read and understand the information given in books .

4.no relationship the similarity in names was a marketing ploy in the start but that is all.

5.ecma script is a standard that javascript follows to keep things standardized and readable for all programmers using the application.
They are interchangeable.

2 Likes

What is a program?
a set of precise instructions telling a computer what to do.
What can you say about complexity in programming?
The whole program will become your own maze.
The quality of program is also about skill of controlling complexity. I need to look for “best practices”.
What function do programming languages have?
Via programming languages the computer can follow instructions made by human.
Understanding new ways of combining words.
What is the relationship between Java and Javascript?
The similar name was inspired by marketing considerations. So they don’t have anythink related.
What is ECMAScript and how is it related to Javascript?
ECMAScript and JavaScript can be used interchangeably—they are two names for the same language. It was made to older application can work with Javascript.

1 Like
  1. What is a program?
    A program is a precise instruction for computer to carry out the job.

  2. What can you say about complexity in programming?
    Things can get messy easily in programming as it get more complex if not gauge carefully.

  3. What function do programming languages have?
    Programming language are more readable compares to 0s and 1s.

  4. What is the relationship between Java and Javascript?
    They are both completely different things. Java was named after javascript to gain popularity. A marketing strategy

  5. What is ECMAScript and how is it related to Javascript?
    They are the same language and can be used interchangeably.

1 Like
  1. A set of instructions telling a computer what to do.
  2. That you have to control it before it controls you.
  3. The function of allowing us to explain to a computer what we want it to do in a simple and coherent manner.
  4. There is none. It was just marketing.
  5. ECMAScript is the same thing as JS. ECMA just standardized it.
1 Like
  1. A set of instructions
  2. Complexity has decreased over time and it’s best to keep things simple.
  3. Programming languages make it easier for people to interact with computers
  4. Javascript piggy-backed from the heavily marketed Java language.
  5. They are the same language but given two different names.
1 Like
  1. A program is a set of instructions telling a computer what to do.
  2. Complexity can be lost in programming without care. Programming is the skill of controlling complexity.
  3. Programming languages allow the programmer to talk about the actions that the computer has to perform on a higher level.
  4. Java and Javascript are two separate programming languages with coincidentally similar names.
  5. ECMAScript is the standard of how Javascript should operate. It provides the programming syntax to Javascript. The names can be used interchangeably.
1 Like

What is a program?

A program is a set of steps that a computer
executes to complete a certain task.

What can you say about complexity in programming?

Make sure if you’re making the code in your program
more complex, that you understand what your code
is doing to avoid errors and to be able to fix
any if there are any.

What function do programming languages have?

Programming languages compile a more understandable
language for humans into a language that computers
can decode and have the ability to execute.

What is the relationship between Java and Javascript?

Javascript has nearly nothing to do with Java. The
name Javascript came about because Java was just
becoming popular at the time, so the name was
just a clever marketing scheme.

What is ECMAScript and how is it related to Javascript?

ECMAScript is the standard that described what Javascript
actually did as a language, so that people that saw the
word on websites knew that every site that used the
language was using the same language. ECMAScript
and Javascript can be used interchangeably, the
languages two words are the same thing.

1 Like
  1. Programing is the act of constructing a program.
  2. it seems complicated
  3. A programing language allows programmers the ability go give a computer actions to preform at a higher level.
  4. Java is a programing language and Java script allows you to put programs on a wed browser, other then the name there is no relation.
  5. ECMA script is standardized instructions on how to use java script and is essentially java script.
1 Like