Coderbyte Report _ Purvi Majoka

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 5

You can share this report by copying the URL above Save PDF

Assessment Report
Python Test 29th April (Placement)

Purvi Majoka Scores


purvimajoka1998@gmail.com
Joined on April 29, 2023 Scores Average Qualifying Final
58% 75% 40%
SCORES
SKILL RATINGS Coding challenges × 50% 17%

SCORECARD
Multiple choice × 50% 63%
CHALLENGE SOLUTIONS
MULTIPLE CHOICE ANSWERS
Open-ended N/A

Cheating Overall
Likely
Pasted code Likely

Plagiarism Not detected

Leaving tab None

AI detection Get early access

Skill ratings Learn more about these ratings

Python3 Data Structures Algorithms


Intermediate Intermediate Beginner

Scorecard

Algorithm skills Code quality Python3 skills Recommendation

Private notes to share with your team...


Challenge solutions You can share this report by copying the URL above Save PDF all
Expand

Assessment Report Binary Converter Cheating likely


Pasted: 1 time
Python Test 29th April (Placement) Run solution Medium

10/10
Purvi Majoka
purvimajoka1998@gmail.com Python3

Joined on April 29, 2023 Video


India

SCORES
SKILL RATINGS AB Check
Cheating not detected
SCORECARD Run solution Easy

CHALLENGE SOLUTIONS
0/10
MULTIPLE CHOICE ANSWERS
Python3
No video recordings

Palindrome
Cheating not detected
Run solution Easy

7/10

Python3

Video
India

Array Addition I
Easy Challenge started, but not submitted

Python3

Video
India

Multiple choice answers


1. Python is a / an -

× interpreted language

2. Which is not a mutable data structure.

✔ Bytes

3. An iterator object has the following method(s) defined inside it

✔ __iter__ and __next__ both


4. We can directly iterate over an iterable.
You can share this report by copying the URL above Save PDF
× True

Assessment Report 5. Which of the following code will generate an error?


Python Test 29th April (Placement)
✔ list(10)

Purvi Majoka 6. Which code will give the following output?


purvimajoka1998@gmail.com Output- The addition of 10 and 20 is 30
Joined on April 29, 2023 a=10
b=20
c=a+b
SCORES
✔ print(f‘The addistion of {a} and {b} is {c}’)
SKILL RATINGS
SCORECARD
7. List is hashable.
CHALLENGE SOLUTIONS
✔ False
MULTIPLE CHOICE ANSWERS

8. Which of the following is not a sequence type?

✔ Dictionary

9. Which of the following is not a run time error?

× Value Error

10. pyplot is a library

✔ False

11. To check for null values in a dataset we can use heatmap

× False

12. Which function is used to check for the null values in a numpy array?

× np.isna() and np.isnull() both

13. A module is not the part of builtin namespace

× NO ANSWER

14. What is the correct hierarchy of upcasting in a numpy array?

✔ Int- float- complex – string – object

15. Seaborn is an extended version of matplotlib.

✔ True

16. Dictionary support(s)

× Slicing

17. The extension of intermediate code in Python is


✔ .pyc
You can share this report by copying the URL above Save PDF
18. Which of the following functions can convert the non-ASCII characters as we?

Assessment Report ✔ casefold()


Python Test 29th April (Placement)
19. Which of the following types is unhashable?

Purvi Majoka ✔ List


purvimajoka1998@gmail.com
Joined on April 29, 2023 20. Which of the following statement is False?

SCORES × hash() is an integer value that never changes.

SKILL RATINGS
21. A dictionary should be a hashable item always.
SCORECARD
CHALLENGE SOLUTIONS ✔ True
MULTIPLE CHOICE ANSWERS
22. Set is mutable.

✔ True

23. Which is True about range()?

✔ range object is an iterable.

24. for loop can be used for indefinite iterations.

× True

25. In case of a nested loop inner break statement can not terminate the outer loop.

× True

26. Which of the following functions can be used for bivariate or multivariate analysis?

✔ nunique() and corr() both

27. A pandas data frame is a 2-D structure

✔ True

28. A list is stored in a continuous memory location

× True

29. A .py file can be used as a python script and a module too.

✔ True

30. Which of the following does not contain the duplicate values.

✔ Set and Frozenset both

31. What will be the output of the following code snippet?


a = [1, 2, 3]
a = tuple(a)
a[0] = 2
print(a)
You can share this report by copying the URL above Save PDF

× NO ANSWER
Assessment Report
Python Test 29th April (Placement) 32. What will be the output of the following code snippet ?
a = [1, 2, 3, 4, 5]
sum = 0

Purvi Majoka for ele in a:


sum += ele
purvimajoka1998@gmail.com print(sum)

Joined on April 29, 2023


✔ 15

SCORES
33. What will be the type of the variable sorted_numbers in the below code snippet?
SKILL RATINGS
numbers = (4, 7, 19, 2, 89, 45, 72, 22)
SCORECARD sorted_numbers = sorted(numbers)
print(sorted_numbers)
CHALLENGE SOLUTIONS
MULTIPLE CHOICE ANSWERS ✔ List

34. What will be the output of the following code snippet?


a = "4, 5"
nums = a.split(',')
x, y = nums
int_prod = int(x) * int(y)
print(int_prod)

✔ 20

35. What will be the output of the following code snippet?


a = [1, 2, 3, 4]
b = [3, 4, 5, 6]
c = [x for x in a if x not in b]
print(c)

× [5, 6]

Help Center Blog Privacy Terms Contact What's New

You might also like