Sequential Search Program in JAVA
Sequential search program in java class Sequentialsearch{ void search(int a[],int x) { for(int i=0;i<11;i++) { if(a[i]==x) System.out.println(“a[“+i+”] = “+a[i]); else
Read moreSequential search program in java class Sequentialsearch{ void search(int a[],int x) { for(int i=0;i<11;i++) { if(a[i]==x) System.out.println(“a[“+i+”] = “+a[i]); else
Read moreBubble sort program in java class Bubblesort{ void sort(int a[]) { int i,temp,n; for(i=0;i<16;i++) { for(int j=i;j<16;j++) { if(a[i]>a[j]) {
Read moreFollow the steps below to install Joomla:- First install the wampserver. Download the latest version of joomla from here. Extract the
Read moreInstalling wamp server on windows Steps : Run the setup of wamp server and install it by clicking on next/finish.
Read moreConsider that you need to make your dongle work with airtel sim. Follow the instruction given below:-1. Go to the
Read moreIn JavaScript comment can be done in two ways :-1. /* this is a comment */2. // this is a
Read morei=0sum=0 while(i<=100) sum=sum+i i=i+2 print(sum)
Read moredef is_valid_sequence(dna): ”'(str) -> bool Return True if dna sequence is valid >>>is_valid_sequence(‘AAAAA’) True >>>is_valid_sequence(‘TTTTT’) True >>>is_valid_sequence(‘CCCCC’) True
Read moredef get_length(dna): ”’ (str) -> int Return the length of the DNA sequence dna. >>> get_length(‘ATCGAT’) 6 >>>
Read more