Computer Science, asked by maninderchahal4848, 1 year ago

Given ``odd = set([1, 3, 5, 7, 9])``
``squares = set([1, 4, 9, 16])``.
What is the value of ``odd ^ squares``?

Answers

Answered by lublana
0

Answer:

set([1,9])

Explanation:

We are given that

Odd=Set([1,3,5,7,9])

Squares=Set([1,4,9,16])

We have to find the value of odd\wedge squares

''odd\wedgesquares''=set([1,9])

There is, \wedge means intersection of both sets.

Therefore,

''odd\wedgesquares''=set([1,9])

Answer:''odd\wedgesquares''=set([1,9])

Answered by venkatsaidamera30
1

Answer:

b. set([3, 4, 5, 7, 16])

Explanation:

Similar questions