Similar Posts

Subscribe
Notify of
9 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Banane07324
1 year ago

I think you mean programming languages.

You just use them to create programs.

Examples would be java and python

Banane07324
1 year ago
Reply to  SilentGirl186

So everything you had to use on the computer had to be created sometimes also good question.

The codes consist of “words ”

So in every programming language there are words for certain functions.

A very simple example would be that one determines the integer x=5 .

The code would be

Int x = 5 ;

And so you can also create programs with many line code that can then be executed

AlterLeipziger
1 year ago

Hello,

Java is a programming language that translates commands into the computer language.

the “computer language” is simply called a yes/no language with different places, bit for electronic circuits.
An 8-bit word is then a byte.
From this word width there are also the designations 16 bit computers up to 64 bits etc. (just the 2nd potency).

These bits in turn consist only of 0, in the electronics for voltage and 1 for voltage.

Since it becomes very unclear for us human beings to write such a sequence of 0 and 1 in such a way that the electronic circuit also makes exactly what man wants, the programming languages have been developed.

Best regards from Leipzig

ChrisCat1, UserMod Light

Computer languages are formal languages, developed for interaction between people and computers.

The computer languages are then divided into further sub-areas which are then intended for specific purposes.

On the one hand there are programming languages such as Java, C++, Python, etc.
These are for writing programs in a form that can be read for humans. This language is then translated into a version that can be read for the computer.

There are also database languages like SQL.
With database languages, users or computer programs can communicate with database systems, for example to query, modify or enter new data.

Then there are the description languages, which are used, among other things, for the award and formatting of text.
There are award languages such as HTML or XML, but also stylesheet languages such as CSS.
HTML and CSS are used, for example, for displaying websites.

Schachpapa
1 year ago

The processors can ultimately only write and read values from 0 to 255 from one memory location to another. And count a bit (add, link bits). It is difficult for a person to remember and to be unsuitable for larger tasks.

A programming language raises this small size to a higher level.

Krabat693
1 year ago

So what does programs create what?

All modern devices, from mobile phones in your pocket to PCs to smart refrigerators and lamps, use Universal Microprocessors (the CPU and GPU in your PC for example)

A program is therefore nothing but a set of instructions so that these processors have something to do.

What are computer languages?

These are just different formats in which these instructions are formulated. They are then transferred by a compiler so that your computer can understand them.

MonkeyKing
1 year ago

Computer or programming languages consist of a sequence of instructions that can be executed by a computer. Simplest example (here in Python)

print("Hello World")

This is a simple computer program and when it is executed, it displays the text “Hello World”.

A more advanced example:

for i in range(1, 101):
    print(i)

Displays the numbers from 1 to 100.

There are many different programming languages with different application purposes but in principle you can write any program with any real programming language.

The computer itself must first interpret the so-called source text, i.e. the text of the computer program. In other words, he uses a program that converts the computer program into a series of executable commands into “machine language”. The programmer usually sees nothing about it.

Anonym1212141
1 year ago

programming languages

gives what like java c# c++ and so html and others

you write codes with words and values

for example int i = 5

and there you can also write sets that can be output