Font size
WorksheetsComputer Programming Languages
Total questions: 17
Worksheet time: 12mins
What are programming languages that link to each other?
JavaScript
HTML
CSS
R
Python
The (a) language cooperates with CSS and JavaScript to make websites.
Which of these programming languages is for developing both desktop and web applications?
Python
JS
Java
R
If I were to create an application, which 2 languages would I use?
SQL
Python
JS
HTML/CSS
The language that has 6 primitives, is in the following. Which one is it?
Python
JavaScript
HTML/CSS
R
(a) is most used for building web applications. However, it is a general-purpose language similar to Python, so it has many other applications like data analysis, prototyping, and proof of concepts.
Which languages do you prefer?
Ruby
JS
Python
HTML
Other....
The following block for loop is for the _ programming language:
x <- c(2,5,3,9,8,11,6)
count <- 0
for (val in x) {
if(val %% 2 == 0) count = count+1
}
print(count)
(a)
A famous database language is (a)
The language that creates webpages and has cooperates with JS is.....
JS
HTML
CSS
Python
A brief description for Python is....
Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Python's simple, easy to learn syntax emphasizes readability and therefore reduces the cost of program maintenance. Python supports modules and packages, which encourages program modularity and code reuse.
Python is used to create databases and store information for apps, and uses clauses like SELECT and CREATE TABLE
Python is used to animate webpages, make drawing and animations, make simple games, and has 6 primitives.
Choose the languages that can make some sort of application.
SQL
JS
Python
Ruby
HTML
If I were to create a web application, what 2 languages may I use?
Ruby
Python
CSS
JS
SQL
The whole point of those (a) languages, is to create future apps in the web.
Which of these is a general purpose language?
JS
Ruby
HTML
JS
The following code is Python:
dec = 344
print("The decimal value of", dec, "is:")
print(bin(dec), "in binary.")
print(oct(dec), "in octal.")
print(hex(dec), "in hexadecimal.")
True
False
The following code is R:
def get_numbers_stack(list) stack = [[0, []]] output = [] until stack.empty? index, taken = stack.pop next output << taken if index == list.size stack.unshift [index + 1, taken] stack.unshift [index + 1, taken + [list[index]]] end output end
True
False
