Q:
What was considered to be the first scripting language?
Q:
Which concept of a scripting language is a memory address paired with a symbolic name (or identifier) which contains a value?
Q:
Which three (3) of the following are scripting languages? (Select 3)
Q:
Which Scripting language is a task automation and configuration management framework from Microsoft?
Q:
Which is an example of how scripts are commonly used today?
Q:
Bash is a scripting language developed for use with which operating system?
Q:
What scripting concept is widely used across different languages to process a set of instructions over and over again until a specified condition is met?
Q:
Which Python command would print out “Hello World”?
Q:
Why does Python often takes fewer lines of code to accomplish a task than C or Java?
Q:
How many spaces must be used to indent a block of code in Python?
Q:
What will Python do when it encounters the hash character “#”?
Q:
What will be printed by this Python code block? pi=3.14159pi=int(pi)print(pi)
Q:
True or False. In the Python statements below Example1=”3″ Example1 is a string variable type.
Q:
What will be printed by this Python code block? pi=”3″ pi3=3*pi print(pi3)
Q:
Question 15 How many times will the following Python for loop be executed assuming UNMembers is a list of the 193 members of the United Nations General Assembly? for country in UNMembers: print(country)
Q:
What is one good reason to write your own function in Python?
Q:
Which two (2) of these Python libraries provide useful graphics and visualization functions? (Select 2)
Subscribe
0 Comments
Find Questions in This Page: "CTRL+F"