Format cell, alignment: rotation of text in a cell to a specific degree
The answer would be Tim Berners- lee
Answer:
Conditional formatting will enable her to highlight the records with sales in excess of 100.
Explanation:
On the ribbon home button select conditional formatting. A menu will open to select highlight type.Next select a conditional operator. You can select an operator from that menu or define your own custom rule.Next select column to apply rule on and specify color coding(green) for matched results.Press Ok and close window. Now all the cell with sale in excess will be highlighted in the color coding specified earlier(green).
Answer:
subset([],[]).
subset([X|L],[X|S]) :-
subset(L,S).
subset(L, [_|S]) :-
subset(L,S).
Success:
subset([1,3], [1,2,3]).
subset(X, [1,3,4]). % error handling to compare sets in a given order
Fail:
subset([2,1], [1,2,3]). % compares in a different order from the first.
Explanation:
The function "Subset" in the source code above accepts two sets, then checks if the first set is a subset of the second. The code returns true if the condition is met.