Programming Reading Assignment

a piece of text that a programmer writes for the computer to do

It can get very complex use best practices

helps programmers command the computer

None

ECMAScript were the standardizers of Javascript.

1 Like

What is a program?
a set of precise instructions telling a computer what to do.

What can you say about complexity in programming?
programming is fundamentally
tedious and frustrating; hard.

What function do programming languages have?
the function to instruct computers.

What is the relationship between Java and Javascript?
no relationship at all.

What is ECMAScript and how is it related to Javascript?
ECMAScript is a standard document written to describe the way the JavaScript language should work so that the various
pieces of software that claimed to support JavaScript were actually talking
about the same language.
the terms ECMAScript and JavaScript can be used interchangeably—they are two
names for the same language.

1 Like
  1. What is a program?

A program is a way of instructing a computer exactly what to do in order to executed the task that you want to be executed

  1. What can you say about complexity in programming?

The fundamentals of programming are simple but when a creator builds on top of this, if not enough care is put into programming, the code can become confusing and convoluted even up to a point where the creator does not understand what is being coded.

  1. What function do programming languages have?

It makes it easier and more accessible for setting tasks to be done by the machine instead of the traditional reading through ones and zeros

  1. What is the relationship between Java and JavaScript?

Mistakenly seen as synonymous which is just disguised as a marketing by ORACLE, the creaters of Java. They are not the same. Java is a programming language and Javascript is an interpreted scripting language. This simply means that Java code has to be compiled which means the code written is run on a whole on a machine, whereas Javascript is interpreted through web browsers and does not compile on and run on a computer as code.

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

ECMAScript is the basics of Javascript which are standardizes for ease of use and application throughout the internet. Standardized by the ECMA.

1 Like
  1. What can you say about complexity in programming?
    best to remove complexity in progrmaming
  2. What function do programming languages have?
    they allow computers to do simple calculaations a lot more rapidly than humans
  3. What is the relationship between Java and Javascript?
    Javascript is a programming language that allows for non-static interactions with a web-page. Java is a different programming language that was successful during the rise of Javascrip, and they decided to piggy back off the name.
  4. What is ECMAScript and how is it related to Javascript?
    ECMAScript is the standards decided upon for Javascript. The two terms can be used interchangeably.
1 Like
  1. What is a program?
    A set of rules.
  2. What can you say about complexity in programming?
    It is important to keep code well organized so it can be readable and understandable in the future.
  3. What function do programming languages have?
    Read instructions to interpret and input and create an output.
  4. What is the relationship between Java and Javascript?
    There is no relation.
  5. What is ECMAScript and how is it related to Javascript?
    ECMAScript standardizes JavaScript.
1 Like
A program is a set of instructions telling a computer what to do with setting out the rules and whilst it is data in the computer's memory, it controls the actions of the computer.

The fundamental rules of programming are simple. However, when you build on top of those rules, the complexity increases.

The primary function of programming languages is to give instructions to a machine. It is a set of data controlling a set of data.

The only relationship Javascript language has to Java is they both share a similar name. The creators of Javascript decided to use this name due to marketing reasons.

ECMAScript is a standard provided by the Ecma International organization. ECMAScript and Javascript are the same language.
1 Like
  1. What is a program?
  • A set of instructions for the computer
  1. What can you say about complexity in programming?
  • Code should be written as simple and easy to understand as possible
  1. What function do programming languages have?
  • Programming languages are human-readable instructions for the computer. The compiler translates the set of instructions to machine-readable code.
  1. What is the relationship between Java and Javascript?
  • nothing really. JS is for web applications and Java is for mobile applications mostly. Only the name sounds similar
  1. What is ECMAScript and how is it related to Javascript?
  • ECMAScript and JavaScript are two different names for the same “thing”
1 Like
  • What is a program?
    A set of instructions telling a computer what to do.

  • What can you say about complexity in programming?
    The rules are simple and clear but programming can become hard as the program becomes more complex…

  • What function do programming languages have?
    A good programming language helps the programmer by allowing them to talk about the actions that the computer has to perform on a higher level.

It helps omit details, provides convenient building blocks (such as while and console.log), allows you to define your own building blocks (such as sum and range), and makes those blocks easy to compose.

  • What is the relationship between Java and Javascript?
    No relation, they are different programming languages.

  • What is ECMAScript and how is it related to Javascript?
    It is a different name for the same language.

1 Like
  1. Many things: A piece of text, the directing force that makes a computer do what it does, data in the computers memory, yet it controls the actions performed on that same memory. A program is a building of thought. Costless to build, weightless, and it grows easily as we type.
  2. The art of programming is the skill of controlling complexity - it is easy to get out of hand.
  3. Taking care of uninteresting details for us. Allows the programmer to talk about the actions that the computer has to form on a higher level. Helps omit details, provide convenient building blocks, allows you to define your own building blocks, and makes those blocks easy to compose.
  4. Java was only created with that name as a marketing technique and has almost nothing to do with Javascript.
  5. They are two different names for the same language. ECMAScript was named by ECMA International Organization who did the standardization.
1 Like
  1. A set of precise instructions telling a computer what to do.
  2. Java Script can be written in a complex or simple manner as long as the desired results are met with the program’s execution.
  3. Programming languages serve to simplify the automatization of certain uninteresting/mundane functions.
  4. Nothing but a bad marketing decision to attempt to ride the coat-tails on the wave of success that Java was experiencing at the time, and now Java Script is kind of just stuck with it.
  5. Ecma is the standardization of the JavaScript language that websites have agreed upon in order that they may communicate amongst each other successfully.
1 Like
  1. A piece of code that works like a set of instructions telling a computer what to do.
  2. It is good to use best practices to keep programs under control. The goal of good programmer is to reduce complexity.
  3. It is about human-computer interaction. They enable human beings to understand machine code in syntax.
  4. They share the same name but have do not have a lot in common. Javascript used the word java for marketing purposes.
  5. EMCAScript are Javascript refer to the same lanuage. Thi standard is set by ECMA organization.
1 Like
  1. A program is a precise set of instructions that tell the computer what to do.
  2. The complexity of a program is the beast that must be controlled so that the programmers and the program dont get lost or confused as to what the end output is.
  3. The functions of the programming language is to allow the performance of actions on the computer at a higher level.
  4. JavaScript was the marketing ploy to ride the coat tails of the programming language of Java, resulting in everyone just calling the language JavaScript.
  5. ECMAScript is the standard set for software claiming to support JavaScript.
1 Like
  1. What is a program?

A program is code consisting of statements and expressions that are executed from top to bottom, providing the computer with a set of instructions.

  1. What can you say about complexity in programming?

Making a computer perform a specific task can be complex. Writing the program to make the computer execute a specific task can also be complex. However, a key component of good programming is to manage complexity of the code and consequently the program. Using the tools provided by a programming language and applying meaningful thinking on how to write and structure the program’s code helps to control the overall complexity of a program and allows the computer to perform complex tasks.

  1. What function do programming languages have?

A programming language is an artificially constructed language that enables a programmer to write code that instructs the computer how to perform a particular task. Put simple, it enables the programmer to communicate with the computer in a way that is manageable and understandable for the human and thus makes it possible to write instructions for even highly complex tasks that can be understood and executed by the computer.

4.What is the relationship between Java and JavaScript?

The largest overlapping between those two languages is the term “Java”. With regard to other areas, they share little to no similarities.

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

ECMAScript is a programming language standard for JavaScript in order to ensure interoperability of different software claiming to support JavaScript. In practice, the terms ECMAScript and JavaScript can be used interchangeably.

1 Like
  1. A set of precise instructions telling a computer what to do.
  2. The fundamental rules of a program should be simple
    and clear.
  3. A good programming language helps the programmer by allowing them to
    talk about the actions that the computer has to perform on a higher level.
    It helps omit details, provides convenient building blocks (such as while and
    console.log), allows you to define your own building blocks (such as sum and
    range), and makes those blocks easy to compose.
  4. No relationship.
    5.They are the same language in two different names. ECMAScript was the standard version of Javascript.
1 Like
  1. A prgramm is list of instructions to make a computer do (compute) what you want.
  2. Simplicity is always better.
  3. Programming languages translate human understandable commands in computer/machine language commands.
  4. Almost nothing.
  5. ECMAScript is a standard for JS.
1 Like
  1. What is a program?
  • Are instructions that input into a computer
  1. What can you say about complexity in programming?
  • Programs are complex and can quickly grow out of control
  • The best approach to programming is to follow best practices
  1. What function do programming languages have?
  • Programming use codes to accomplish a specific task. It takes in data, process it, and return a result
  1. What is the relationship between Java and Javascript?
  • JavaScript has no relation to the programming language Java.
  1. What is ECMAScript and how is it related to Javascript?
  • ECMAScript and JavaScript the same. ECMAScript is the standard document that differentiate the JavaScript language from Java programming
1 Like
  • 1 A program is a set of instructions, telling your computer, or application what to do
  • 2 It seems that the art of programming is the skill of controlling complexity.
  • 3 The author calls it " taking care of the uninteresting details" wich i interpret as expressing rather complex processes with simple and easily understandable commands.
  • 4 According to the article almost none. Choosing the name JavaScript was a marketing trick to take advantage of the popularity of Java at teh time of JS´launch.
  • 5 ECMA - and JavaScript are the same thing
1 Like
  1. What is a program?
    A program is a structured set of commands in a language that can be used to interact with a computer.
  2. What can you say about complexity in programming?
    Keep things simple, structured, clean, reuse code and short. Otherwise programs can become really unclear, expecially is others should work on the same code.
  3. What function do programming languages have?
    They translate human language into machine language.
  4. What is the relationship between Java and Javascript?
    None
  5. What is ECMAScript and how is it related to Javascript?
    ECMAScript and JavaScript can be used interchangeable. They are two
    names for the same language.
1 Like
  1. What is a program?
    A set of instructions
  2. What can you say about complexity in programming?
    It is a term that includes many properties of a piece of software, all of which affect internal interactions.
  3. What function do programming languages have?
    It is a program fragment that knows how to perform a defined task. For example a function may be written that finds the average of three supplied numbers. Once written, this function may be used many times without having to rewrite it over and over.
  4. What is the relationship between Java and Javascript?
    JavaScript can be used to monotonous things like creating animation in HTML. Java is typically used for all server-side development, while creating client-script things for tasks just as JS validation and interaction.
  5. What is ECMAScript and how is it related to Javascript?
    It is a general purpose programming language standardised by ECMA. It is a JS standard meant to ensure the interoperability of webpages across different web browsers.
    It’s commonly used for client-side scripting on the world wide web. It’s also increasingly used for writing server applications and services using Node.js.
1 Like

1.What is a program?
a piece of text typed by a programmer, it is the driving force, it is data in the computer’s memory but controls the actions in this memory.

2.What can you say about complexity in programming?
The complexity in programming is a double edge sword. Although we want our programs to run very complex actions, it is also necessary to keep the code as simple and easy to read as possible so that we do not fall trapped in our own maze.

3.What function do programming languages have?
A very important function that more modern programming languages have is to make code easy to read. Along with that, they help the computer execute commands by taking into account predetermined conditions.
It allows the programmer to talk about the actions that the computer has to perform.

4.What is the relationship between Java and JavaScript?
The relationship of Java to JavaScript starts at the name, since Java was being heavily marketed at the creation of JavaScript, the name was provided so that JavaScript could ride on the success of Java. Other than this fact it has almost nothing to do with the Java and only shares similarity in that they are both programming languages.

5.What is ECMAScript and how is it related to JavaScript?
ECMAScript is a standard that allowed JavaScript to be adopted beyond Netscape and allowed everyone that claimed to support JavaScript to actually be talking about the same language. JavaScript and ECMAScript can be used interchangeably since they are the same thing.

1 Like