Computer Science, asked by banerjeesubhojit92, 6 months ago

what is output for - min( hello world)​

Answers

Answered by lorithkarthikeyan
0

Answer:

The method min() returns the smallest of its arguments: the value closest to negative infinity. x − This is a numeric expression. y − This is also a numeric expression.

Explanation:

Answered by anindyaadhikari13
0

Required Answer:-

Correct Question:

  • Write the output of - min("hello", "world")

Answer:

  • Output is blank if print statement is not used.

  • If the códe goes like - print(min("hello","world")), then the output is - hello

Explanation:

  • In alphabetical order, words goes like - hello, world. So, min("hello","world") prints "hello".
Similar questions