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 moreCount total numbers of vowel and consonants for each word in java ICSE
read morePHP Training Course Ahmedabad What is PHP? PHP is a server-side scripting language and an interpreter. It allows developers to build logic and handle data returned from a web browser. The PHP script embedded into HTML documents is served by the webserver….
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 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 more