FUNDAMENTALS OF COMPUTER

USING MICROSOFT EXCEL

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: -Syntax of reverse() in Python Note:-This reverse() function doesn’t return any value; it directly modifies the original list in-place means without creating a new list. This function returns the None value as it modifies the original list directly.

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.