Asked in FirearmsShotgunsSavage Arms and J. StevensRemington Firearms
Firearms
Shotguns
Savage Arms and J. Stevens
Remington Firearms
Value of berretta mod AL2 12 gauge shotgun?
Answer

Wiki User
September 03, 2007 5:47PM
Manufactured between 1969 and 1976
Standard grade poor - 125 good - 250 Exc - 350
Competition poor - 175 good - 300 Exc - 400
This from a 2002 gun values book. Present values will be slightly higher
Related Questions
Asked in Java Programming
How do you compare 2 lists in java?

First we need to have two lists whcih we need to compare.
and try to incorporate it in below code :
import java.util.*;
public class ExampleTry {
/**
* @param args
*/
public static void main(String[] args)
{
// TODO Auto-generated method stub
List<String> al1=new ArrayList();
al1.add("a1");
al1.add("a2");
al1.add("a3");
List<String> al2=new ArrayList();
al2.add("a1");
al2.add("a2");
al2.add("a3");
al2.add("a4");
al2.add("a5");
for(Object objList:al1){
if(al2.contains(objList)){
al2.remove(objList);
}
}
System.out.println("Value in list"+al2);
}
}
Output :
Value in list[a4, a5]