Types of Languages Flashcards

To teach about what kind of languages are out there in programming.

1
Q

What is an interpreted language

A

An interpreted language is a programming language where code is executed line-by-line by an interpreter at runtime without prior compilation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is a key characteristic of interpreted languages

A

Interpreted languages do not require a separate compilation step and are executed directly by the interpreter.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is an advantage of interpreted languages

A

Interpreted languages are platform-independent and easier to debug due to runtime error reporting.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is a disadvantage of interpreted languages

A

Interpreted languages generally have slower execution compared to compiled languages.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Name three examples of interpreted languages

A

Python, Ruby, PHP

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is a compiled language

A

A compiled language is a programming language where code is translated into machine code by a compiler before execution.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is a key characteristic of compiled languages

A

Compiled languages produce platform-specific executable files and generally have faster execution.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Name three examples of compiled languages

A

C, C++, GO

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is a Just-In-Time (JIT) compiled language

A

A JIT-compiled language is a hybrid where code is compiled into machine code at runtime rather than beforehand.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is an advantage of JIT-compiled languages

A

JIT-compiled languages combine the benefits of both interpreted and compiled languages

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Name three examples of JIT-compiled languages

A

Java (via JVM), C# (via .NET), and JavaScript (in modern engines like V8)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is an assembly language

A

An assembly language is a low-level programming language closely tied to hardware architecture and uses mnemonics to represent machine code.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is a key characteristic of assembly languages

A

Assembly languages require an assembler to translate code into machine code and are highly hardware-specific.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Name two examples of assembly languages

A

x86 Assembly and ARM Assembly are examples of assembly languages.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is a scripting language

A

A scripting language is a high-level language often interpreted and used for automating tasks or writing small programs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Name three examples of scripting languages

A

Python, Perl, Bash

17
Q

What is a markup language

A

A markup language is not a programming language but is used to define the structure and presentation of data.

18
Q

Name three examples of markup languages

A

HTML, Markdown, XML

19
Q

What is a query language

A

A query language is used for querying and manipulating databases.

20
Q

Name an example of a query language

A

SQL is an example of a query language.

21
Q

What is a domain-specific language (DSL)

A

A domain-specific language is designed for specific tasks or industries and is not general-purpose.

22
Q

Name three examples of domain-specific languages

A

SQL (for databases), LaTeX (for document formatting), and MATLAB (for mathematical computations)

23
Q

What kind of language is Javascript?

A

JavaScript was an interpreted language. However, modern JavaScript engines, such as V8 used in Chrome, employ JIT compilation to enhance performance.

24
Q

Is Javascript single threaded or multi threaded?

A

Javascript is single threaded.