What is the return data type of the property accept that belongs to the Input element?

What is the return data type of the property accept that belongs to the Input element? Correct Answer string

The accept attribute is used to define the types of files that the control can select. When type is “file”, this property is a comma-separated list of MIME types that specify the types of files that may be selected. The strings “audio/*”, “video/*”, and “image/*” are also legal.

Related Questions

Which among the following options are correct? Statement 1: TMs can accept languages that are not accepted by any PDA with one stack. Statement 2: But PDA with two stacks can accept any language that a TM can accept.
Observe the following Python code?
def a(n): if n == 0: return 0 else: return n*a(n - 1)def b(n, tot): if n == 0: return tot else: return b(n-2, tot-2)
In the generation of element geometries, if dx dy represents an area element in the real element and dεdη represents the corresponding area element in the master element, then what is the expression for Jacobian je?