//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 moreWrite a program to accept a number, check whether the numbers is prime number or not. If number is prime, then display “PRIME NUMBER” or display “NOT A PRIME NUMBER”. class PrimeNum { public static void main(String args[]) { int i,f =…
read moreTuple is collection of heterogeneous objects enclosed with parenthesis (). • a= () #empty tuple • b=(10,) # Tuple with one element • c= (‘ computer’, 84 , 9875.255) # tuple with multiple data items • d= ( “ computer”,[100,200,300], ( 4,7,8)…
read moreC++ allows you to specify more than one definition for a function name or an operator in the same scope, which is called function overloading and operator overloading respectively. It is a type of polymorphism in which an operator is overloaded to…
read moreBest Online IT Courses Training – ICT Ahmedabad Learn IT Subjects and Software at Online Institute of Computer Training – ICT What’sApp: (+91) 9173040728 // Website: www.ictweb.in Programming Languages | IT Project Training | Graphics & Web Design | IT Engineering Subjects…
read moreASCII Code ASCII stands for ” American Standard Code for Information Interchange “. Below is the ASCII character table, including descriptions of the first 32 characters. Each character or a special character is represented by some ASCII code, and each ascii code…
read more