fbpx

There is one written paper of two hours duration carrying 100 marks and Internal Assessment of 100 marks. The paper is divided into two sections: A and B. Section A (Compulsory – 40 marks) consists of compulsory short answer questions covering the entire…

read more

//Java program to find minimum array element using recursion class ArrayClsMin { public int arrMin(int Arr[],int n) { if(n == 1) { return Arr[0]; } return Math.min(Arr[n-1],arrMin(Arr,n-1)); } } public class ArrayRec { public static void main(String args[]) { ArrayClsMin obj=new ArrayClsMin();…

read more
×