FUNDAMENTALS OF COMPUTER

DATABASE FUNDAMENTALS

USING THE RIGHT LEFT AND MID FUNCTIONS IN EXCEL

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
Which of these functions reverses the condition?
A
AND()
B
OR()
C
NOT()
D
NOR()
Explanation: 

Detailed explanation-1: -Python reversed() The reversed() method computes the reverse of a given sequence object and returns it in the form of a list.

Detailed explanation-2: -Return Value of reverse() in Python The reverse() function doesn’t return any value. This is because it directly modifies the original list in-place without creating a new list or space.

Detailed explanation-3: -To reverse an array in Python you can use the reverse() method directly on both, lists and arrays. Using the reverse() method is beneficial when you have a memory space constraint since it performs the operation on the same memory and doesn’t require any extra space.

Detailed explanation-4: -Python List reverse() is an inbuilt method in the Python programming language that reverses objects of the List in place i.e. it doesn’t use any extra space but it just modifies the original list.

There is 1 question to complete.