Solution:A schema is a set of binary strings that match the template which is made up of I's, 0's and * s where * matches with either 0 or 1. The order of schema is the number of its fixed bits i.e number of bits that are either 0 or 1.
Explanation:
Given schema is: ?10? 101? and ??? 0??1
CASE 1:
FOR ? 10? 101?, number of bits that are either 0 or 1 are 5.
So order of this schema is 5.
CASE 2: FOR ???0??1, number of bits that are fixed are 2.
So order of schema is 2.