https://www.youtube.com/watch?v=oCtwOV1G5fQ Informatics Practices for CBSE by ICT: A Comprehensive Training Institute in Ahmedabad If you’re navigating the world of CBSE (Central Board of Secondary Education) and looking to excel in Informatics Practices, you’ve come to the right place. Informatics Practices is a critical…
read morePHP Developer Training in Ahmedabad | ICT The PHP Course Training in Ahmedabad at ICT is one of the leading PHP Training Institute. We cover all core and advanced PHP programming topics to necessary for creating Web applications. ICT’s PHP training program…
read moreAdvanced Java Script Training JavaScript Full Course by ICT Ahmedabad. Kickstart your career by learning javascript full course, JavaScript is a scripting language used to develop web pages, allows developers to create a dynamic and interactive web page to interact with visitors…
read moreThere 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 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