Delegatecalldelegatecall is a low level function similar to call.When contract A executes delegatecall to contract B, B's code is executed with contract A's storage, msg.sender and msg.value.Common Call: When we call B's function from A, B's code is executed with contract B's storage. x in A is still 0.Delegatecall: When we call B's function from A, B's code is executed with contract A's storage. x in A will be 1.So we get a method to update the contrac...