1 instructions for a computer
2 complexity is inevitable in a serious program but the goal would be to make it as simple and modular as possible
3 a program functions a machine to execute information and calculations to a desired result
4 there is no relation between Java and JavaScript
5ECMAScript includes the rules for JavaScript so as to distinguish it from Java
1.What is a program?
Programing is the act of constructing a program-a set of precise instructions telling a computer what to do.
2.What can you say about complexity in programming?
Program can be written in complex way, but the real skill is to write it in non-complex way. The great program is subdued - made simple in its complexity.
3.What function do program 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 (providing convenient building blocks to define your own building blocks)-easier to compose.
4.What is the relationship between Java and Javascript?
It is important to note that JavaScript has almost nothing to do with the programing language called Java.
5.What is ECMAScript and how is it related to Javascript?
In practice, the terms ECMAScript and JavaScript can be used interchangeably—they are two names for the same language. ECMAScript standard is a standard document-was 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.
-
What is a program?
A program is many things.
A piece of text with a set of precise instructions telling a computer what to do.
It is also data in the computer’s memory yet it controls the actions performed on this same memory. -
What can you say about complexity in programming?
Programming is hard. The fundamental rules are simple and clear, but building a program on top of these rules tend to become complex enough to introduce their own rules and complexity. Without care, its complexity and size can grow out of control. Keeping programs under control is the main problem. -
What function do programming languages have?
Programming languages are atifical constructed languages used to instruct computers.
It allows you to do things in seconds with a computer that would take you forever by hand. It is a way to make your computer tool do things that it couldn’t do before. -
What is the relationship between Java and Javascript?
They are completely different languages. JavaScript came after and decided on this name for marketting purposes, piggybacking on earlier Java’s success. -
What is ECMAScript and how is it related to Javascript?
ECMA is the standard document that was written to describe how JavaScript should work so that the different software that claim to support JavaScript were actually talking about the same language. It is called the ECMAScript standard after the Ecma international organisation that did the standardization. ECMAScript and JavaScript are two different names for the same language.
- What is a program? Pieces of instructions to tell computer what to do.
- **What can you say about complexity in programming?**SHould not be complex
- What function do programming languages have? functions are the instructions that the human understand so that they can interact with the computer
- **What is the relationship between Java and Javascript?**Not related
- What is ECMAScript and how is it related to Javascript? This is a standard that describes how Javascript should work.
- A set of orders to the computer.
- The complexity comes with the wide brand of possibilities of what you can do with code. The way to handle it is using abstract orders or dividing the code.
- As computers are dumb, some smart people have create languages to instruct the computes.
- A part from the name, both have nothing in common and he name was choose with a criteria of marketing.
- The padronization of how Javascript should work along multiple browsers, either Javascript or ECMAScript are both terms which refers to the same object.
What is a program?
Ans: A program is a set of instructions to the computer that orders the computer to do what the programmer wants it to do. Put it more simply, it is text that are a set of orders for the computer.
What can you say about complexity in programming?
Programming itself is based on fairly simple rules and logic that provide instructions for a computer. However these rules and logic become more complex as the amount of instructions in a program increases. So, the basic instructions will have their own instructions and rules and thus the program will become more complex. Without care, a program will become more complex and this is one of the issues of programming, how to keep the program simple and less complex?
What functions to programming languages have?
Programming languages allow the programmer to talk about instructions to the computers at a higher level. It gives simple instructions and helps omit details. It allows a programmer to provide convenient building blocks that are easy to define and compose. So in this sense, the programming language are a set of instructions that the computer can easily understand.
What is the relationship between Java and Javascript?
No relation, Javascript name was given as a marketing tactic to ride on the popularity of the Java language, back in the 1990s.
What is ECMAScript and how is it related to Javascript?
They are the same. The ECMAScript is an organization that created a standardized version of Javascript, that showed how it should work.
that can be used to find out if the Softwares claiming to use Javascript are actually using it as their code can be compared with the standardized ECMAScript version
-
What is a program?
Software instructions that receive inputs and produce outputs. It’s a building of thought -
What can you say about complexity in programming?
Complexity in programming is inevitable but it can be minimized by the programmer with efficient code and syntax. -
What function do programming languages have?
Receive inputs to produce outputs -
What is the relationship between Java and Javascript?
There is no relationship besides marketing -
What is ECMAScript and how is it related to Javascript?
They are the same language
- A program is a set of instructions given to a computer to follow and excecute.
- The goal is to write code that reaches the desired outcome as simply as possible.
- They function as a way for us to better interact with a computer and make coding a program more efficient and simple for the programmer.
- They are completely unrelated. The name is the only similarity.
- ECMAScript is one in the same as JavaScript. They are the same language / set of standards with a different name.
A program is a set of instructions that tell the computer what to do.
Programs can get very complex because it is like putting your thoughts into code form. If the thoughts/code get too complex it could easily get out of control. Many programmers control complexity by adhering to a set a “best practices” which are strict rules for using a small set of well used and understood code in a program.
Programming languages function to perform computational problems way quicker than humans can!
There is no relationship between Javascript and Java other than a marketing person thought that by naming Java, Java that it could benefit from the popularity of the new language of Javascript at the time.
The Ecma International organization standardized the Javascript language which is the ECMAScript standard. So they are both the same language.
1. What is a program?
○ A set of precise instructions telling a computer what to do.
2. What can you say about complexity in programming?
○ Programs can combine simple actions to do very complicated things quickly. However, if you not careful, a program's size and complexity can grow out of control. Keeping programs under control is the main problem of programming.
3. What function do programming languages have?
○ An artificially constructed language used to instruct computers. Programs can combine simple actions to do very complicated things quickly
4. What is the relationship between Java and Javascript?
○ Javascript was introduced in 1995 as a way to add programs to web pages in the Netscape Navigator browser. Javascript has almost nothing to do with the programming language named Java. Someone thought it was a good idea to ride along the success of the Java Programming language from a marketing perspective, and named it Javascript/
5. What is ECMAScript and how is it related to Javascript?
○ The ECMAScript standard is a standards 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. ECMAScript and Javascript can be used interchangeably - they are two names for the same language.
Program:
it is many things;
it’s a piece of text;
it is a link between the man god and the machine god;
it’s a way to do simple things as quickly as possible;
it is a thought that materializes;
it is chaos, but at the same time it is the only way to get chaos under “control” when it works;
is the essence of empiricism, it is by making mistakes that you learn …
the same program can be expressed in both long and short, unreadable and readable ways;
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.
Java and Javascript have nothing to do with each other, just marketing.
ECMAScript is a standard document written
to describe the way the JavaScript language should work. And ECMAScript, the
terms ECMAScript and JavaScript can be used interchangeably — they are two
names for the same language.
-
A set of instructions for a computer to follow in order to perform a task.
-
A program combines various simple tasks to perform complex ones.
-
A programming language simplifies functions that would otherwise need to be written out in long strands of binary numbers.
-
ECMAScript is a set of standards describing how JavaScript should work.
- A program is a set of instructions for the computer to do desired tasks.
- Programming, writing the code can get long and complex to a point where it is hard to read even to a person who wrote it.
- The function of a programming language is to communicate tasks to a computer in order to create programs.
- Javascript and Java are two different, unrelated languages. Java was created purposefully with a similar name to profit from Javascripts success.
5.ECMAScrpit and JavaScript is the same thing.
- A program is a set of precise instructions telling a computer what to do.
- Program complexity is necessary to be able to design sophisticated web sites, but must be controlled to minimize bugs.
- A programming language is used to instruct computers.
- There is no relationship between Java and Javascript.
- ECMAScript is the same as Javascript. ECMAScript was developed to define more exactly how Javascript should work so that all browsers would give the same results.
- What is a program?
A program is a set of precise instructions telling a computer what to do. It can allow you to do in seconds what would take forever by hand. - What can you say about complexity in programming?
Although the fundamentals can be simple and clear, building programs on top of these rules tend to bring a lot of complexity. It is like building a maze and getting lost in that maze. A program’s size and complexity can grow out of control and can confuse even the person creating it. - What function do programming languages have?
Languages offer the function of providing efficiency and precision in the programming process. Improvements in language can offer ease and more understanding of the program and how to fix or improve on that program. - What is the relationship between Java and Javascript?
Javascript was introduced in 1995 as a way to add programs to web pages in the Netscape Navigator browser. This language has been universally adopted and made modern web applications possible (applications that can interacted with directly without doing a page reload after every action). Javascript has almost nothing to do with the programming language named Java. Java was being heavily marketed when Javascript was introduced and they tried to piggy back off that success and thus we are stuck with similar names now so far into the future. - What is ECMAScript and how is it related to Javascript?
After being adopted, a standard document was written to describe how the JavaScript language should work so that the various pieces of software that claimed to support JavaScript were actually talking about the same language which is now called the ECMAScript standard
-
A set of instructions which define, what the computer has to do. It is also the data in the computers memory, which is controling the actions performed.
-
The fundamental rules are simple, but the programs created on, will become very complex in their way. The bigger the programm will be, the bigger will be the maze you created yourself.
-
The function of a programming language is to give the computer code to perform certain actions.
-
A relation between Java and Javascript, is the identical name, but in detail they have nothing in common. It was just a trend, to name the language that way, because Java was some kind in all mouths.
-
ECMAScript and JavaScrpit are diffrent names for the same thing. But ECMAScript was named as standardization.
- What is a program?
A program is text written by a programmer that tells a computer what to do.
- What can you say about complexity in programming?
Programming can grow to be so complex, that not even the creator of the program can understand how it works. In order to keep the program running effectively, it’s best to write code as simplistically as you can.
- What function do programming languages have?
Its function is for humans and machines to communicate effectively.
- What is the relationship between Java and Javascript?
They have very little to do with each other. Javascript was called Javascript because Java was getting more renown, and the name similarity was purely for marketing purposes. Go figure.
- What is ECMAScript and how is it related to Javascript?
ECMAScript is just another name for Javascript.
- What is a program?
A program is a set of precise instructions telling a computer what to do.
- What can you say about complexity in programming?
Without care, a program’s size can grow out of control, confusing even the person who created it. Thus, keeping programs under control is the main problem with programming. The art of programming is the skill of controlling complexity.
- What function do programming languages have?
It allows a programmer to interact with a computer and direct a computer to perform certain functions.
- What is the relationship between Java and Javascript?
There is no relationship between Java and JavaScript apart from a similar name.
- What is ECMAScript and how is it related to Javascript?
ECMAScript and JavaScript are two names for the same language.
- A program is a precise set of instructions telling a computer what to do
- Programming may be hard because you have to learn languages, their rules and syntax. It is also hard because you have to think in terms of abstractions
- Prorg. lang. are used to instruct computers and they can help us to take care of many tedious and uninteresting parts, when writing programs… ready statements like arrays, loops, while, etc
- JavaScript was named in such a way to ‘‘ride’’ the wave of success Java experienced at the time, other that they are both higher level Turing complete progr. languages, but don’t have an awful lot in common
- ECMAScript and JavaScript are one and the same, they are synonyms
Computer science is not just for smart ‘nerds’ in hoodies coding in basements. Coding is extremely creative and is an integral part of almost every industry.
[Reshma Saujani]
- Programming is the act of constructing a program.
- The complexity in programming is just as much as learning a new language. Depending on the programming language the complexity differs.
- Allows us to make a set of commands that both the computer and us can understand
- There is little relationship between the two. Mainly just in name for marketing purposes.
- They are basically the same language