Dict() without parameters will create an empty dictionary.
Answer:
The dict() function is used to create a dictionary object in Python
The dict() function can take different types of arguments to create a dictionary object, such as a sequence of tuples, a mapping object, or keyword arguments. However, if the dict() function is called without any parameters , it will create an empty dictionary object, meaning it has no key-value pairs.
So, the given statement is true.