exam questions

Exam 98-381 All Questions

View all questions & answers for the 98-381 exam

Exam 98-381 topic 1 question 12 discussion

Actual exam question from Microsoft's 98-381
Question #: 12
Topic #: 1
[All 98-381 Questions]

DRAG DROP -
Match the data type to the type operations.
To answer, drag the appropriate data type to the correct type operation. Each data type may be used once, more than once, or not at all.
Select and Place:

Show Suggested Answer Hide Answer
Suggested Answer:
References: https://www.w3resource.com/python/python-data-type.php

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Viki2405
Highly Voted 4 years, 8 months ago
print((+1E10)) 10000000000.0
upvoted 9 times
...
PavanKumpatlaAccountTwo
Highly Voted 3 years, 5 months ago
Code:- ---------------------------------------------------------------------------------------------------------------- print(type(+1E10)) print(type(5.0)) print(type("True")) print(type(False)) ---------------------------------------------------------------------------------------------------------------- Output:- ---------------------------------------------------------------------------------------------------------------- <class 'float'> <class 'float'> <class 'str'> <class 'bool'> ----------------------------------------------------------------------------------------------------------------
upvoted 7 times
...
lombanamabel
Most Recent 4 years ago
>>> print(type(+1E10)) <class 'float'> >>> print(type(5.0)) <class 'float'>
upvoted 2 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...