What is the key difference between 'delegatecall' and 'call' in Solidity?
-
A
delegatecall executes the callee's code in the caller's storage context, while call executes in the callee's own context
-
B
delegatecall transfers Ether while call only transfers data
-
C
delegatecall is cheaper in gas than call for all operations
-
D
delegatecall requires the callee to be a verified contract