Difference between Clone and DeepClone in Apex in Salesforce
Clone: If a list is cloned, it duplicates it and has reference. Primitive data types are supported. Sample Code: Account Account1= new Account(Name='Test1'); Account Account2= new Account(Name='Test2'); List<Account> AccountList = ....