Skip to main content

Candidate Elimination Algorithm in Kannada | VTU Machine Learning Lab Pr...

Comments

Post a Comment

Popular posts from this blog

Write a program for error detecting code using CRC-CCITT (16- bits).

import java.io.*; import java.util.*; public class CRC   {   public static void main(String args[]) { Scanner s=new Scanner(System.in); System.out.println("Enter the no of bits : "); int   n=s.nextInt(); int data[ ]=new int[n]; System.out.println("Enter the data bits : "); for(int i=0;i<n;i++) data[i]=s.nextInt(); System.out.println("Enter the no of divisor bits : "); int m=s.nextInt(); int divisor[ ]=new int[m]; System.out.println("Enter divisor bits : "); for(int j=0;j<m;j++) divisor[j]=s.nextInt(); int len=n+m-1; int div[ ]=new int[len]; int rem[ ]=new int[len]; int crc[ ]=new int[len]; int src[ ]=new int[len]; for(int i=0;i<data.length;i++) div[i]=data[i]; System.out.println("Dividend after appending zero"); for(int i=0;i<div.length;i++) System.out.print(div[i]); System.out.println(); for(int j=0;j<div.length;j++) rem[j]=div[j]; rem=divid...

Write a program on datagram socket for client/server to display the messages on client side, typed at the server side.

Sender import java.util.*; import java.net.*; public class Sender {   public static void main(String args []) throws Exception { System. out .println( "sender " ); DatagramSocket ds = new DatagramSocket(); Scanner s = new Scanner(System. in ); System. out .println( "enter the message" ); while ( true ) { String msg = s .nextLine(); InetAddress ip =InetAddress. getByName ( "127.0.0.1" ); DatagramPacket dp = new DatagramPacket( msg .getBytes(), msg .length(), ip ,3000); ds .send( dp ); } } } Receiver import java.util .*; import java.io.IOException ; import java.net.*; public class Receiver {   public static void main(String args []) throws Exception { byte [] buf = new byte [1024]; System. out .println( "receiver " ); DatagramSocket ds = new DatagramSocket(3000); while ( true ) { DatagramPacket dp = new DatagramPacket( buf ,1024); ds .receive( dp ); ...