Upload folder using huggingface_hub
Browse files
data.csv
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
input,output
|
| 2 |
+
Kindly compute the value of log₂16,4
|
| 3 |
+
Kindly compute the value of log₂32,5
|
| 4 |
+
Kindly compute the value of log₂1,0
|
| 5 |
+
Kindly compute the value of log₂128,7
|
| 6 |
+
Kindly compute the value of log₂64,6
|
| 7 |
+
Linear search has a better run time than Binary search,False
|
| 8 |
+
Binary search has a run time of O(log n),True
|
| 9 |
+
O(n) represent logarithmic time,False
|
| 10 |
+
Match Big-O notation with its meaning: O(n),linear time
|
| 11 |
+
Match Big-O notation with its meaning: O(1),constant time
|
| 12 |
+
Match Big-O notation with its meaning: O(log n),logarithmic time
|
| 13 |
+
Match Big-O notation with its meaning: O(n log n),loglinear time
|
| 14 |
+
Match Big-O notation with its meaning: O(C),exponential time
|
| 15 |
+
Match Big-O notation with its meaning: O(n),polynomial time
|
| 16 |
+
The runtime for the assignment statement below is O(n): int x = 404;,False
|
| 17 |
+
The run time for conditionals is,O(1)
|
| 18 |
+
The run time for the loop below is O(n): for(int i = 0; i < n; i++) { // do something },O(n)
|
| 19 |
+
The run time for the program below is____ [grader function],O(1)
|
| 20 |
+
The run time for the program below is____ [forwardBack function],O(n)
|
| 21 |
+
"In the field of Algorithm Analysis, we only care about the best case run time",False
|
| 22 |
+
The nested loop below runs in O(n²) time: for(int i = 0; i < n; i++) for(int j = 0; j < n; j++),True
|
| 23 |
+
This course - CMPS2131 has a final exam.,True
|
| 24 |
+
Algorithm Analysis _____ + data structures = programs,algorithms
|