Pop Quiz 6 Flashcards
The number of algorithms used by most analytics professionals is
A. 3
B. 4
C. 12
D. 39
12
According to the 2013 & 2015 Rexer Analytics surveys, the most widely used algorithms include:
A. Genetic algorithms and survival analysis
B. Various proprietary algorithms
C. Regression and Cluster Analysis
Regression and Cluster Analysis
In Python, which function adds a new element to a list?
A. List.add()
B. List.append()
C. List.insert()
D. List.concatenate()
List.append()
What python code defines a new function?
A. Def listprnt(myList): print(myList)
B. New listprnt(myList): print(myList)
C. Function listprnt(myList): print(myList)
D. Proc listprnt(myList): print(myList)
Def listprnt(myList): print(myList)
One difference between Python and Java is that:
A. Java ends each line with a semicolon (;)
B. Python ends each line with a semicolon (;)
C. Python code always includes a function called “main”
Java ends each line with a semicolon (;)