Monday, 29 October 2012

SecurityGuard in Distributed System Environment IEEE seminar reports and ppt


ABSTRACT
IEEE Article: Security Events Monitoring in Distributed Systems Environment
Author: Kufel, L.
GlaxoSmithKline Poznan University of Technology, Poznan Poznan
Volume: PP , Issue: 99 

THE DETECTION AND FOLLOWING OF HUMAN LEGS BY INDUCTIVE APPROACHES FOR MOBILE ROBOT IEEE SEMINAR REPORTS AND PPT

Abstract

IEEE Paper:  The Detection and Following of Human Legs Through Inductive Approaches for a Mobile Robot With a Single Laser Range Finder 
Author(s): Woojin Chung
Hoyeon Kim ;  Yoonkyu Yoo ;  Chang-Bae Moon ;  Jooyoung Park
Volume: 59 , Issue: 8

A novel hybrid cryptobiometric authentication scheme for ATM based banking applications IEEE Seminar reports and ppt

Subject: ATM using fingerprint IEEE Seminar reports and ppt 

Abstract

Crypto-Biometric authentication scheme for ATM banking systems
The fingerprint image is enhanced and then encrypted using 128 bit private key algorithm
The proposed scheme is fast and more secure
Computer simulations and statistical analysis are presented
Introduction
Biometrics based authentication is a potential candidate to replace password-based authentication
Cryptography provides the necessary tools for accomplishing secure and authenticated transactions

HYBRID FILTERS IEEE Seminar reports and ppt

ABSTRACT

IEEE Name :A Study of a Hybrid Filter
 Authors: Ostroznik, S.
Hidria d.d, Ljubljana, Slovenia
Bajec. P, Zajec. P.

This paper presents results of a comparative study of two possible hybrid filter topologies, comprised of a passive and active stage, which can be implemented in any general dc supply distribution system. The main filter task is to mitigate current dynamics in the dc distribution system in order to prolong the operational life of delicate dc supplies, i.e., fuel cells, and to reduce the electromagnetic interferences between sensitive electronic circuits connected to the distribution net.
The active stage is incorporated into the passive part in order to:
 1) improve its insufficient attenuation in the low-frequency range and
2) source or sink any surplus energy flow between the dc source and load in case of low frequency current dynamics.
Two active stage topologies are proposed, analyzed, and evaluated in detail:
1) an active filter based on a single-leg inverter and
 2) an active filter based on an electronic smoothing inductor.

Sunday, 28 October 2012

microprocessor 8085 program for division of 2 8it numbers

Problem
microprocessor 8085 program for division of 2 8it numbers
Program with opcode


ADDRESS LOOP MNEMONICS OPCODE
4200
LXI H 4500 21
4201

0
4202

45
4203
MOV A,M 7E
4204
MVI C,00 0E
4205

0
4206
INX H 23
4207
MOV B,M 46
4208 LOOP 1: CMP B B8
4209
JC LOOP2 DA
420A

11
420B

Micro processor 8085 program Program for multiplication of two 8 bit numbers

PROBLEM
Micro processor 8085 program Program for multiplication of two 8 bit numbers..

Full program with Opcode

VHVG
ADDRESS  LOOP MNEMONICS OPCODE
4200
MVI A 00 3E
4201

00
4202
MVI C 00 3E
4203

00
4204
LXI H 5000 21
4205

00
4206

50
4207
MOV B,M 46
4208
INX H 23
4209 LOOP1:  ADD M 86
420A
JNC LOOP2 D2
420B

0E
420C

42
420D
INR C 0C
420E LOOP2: DCR B 05
420F
JNZ LOOP1 C2
4210

09
4211

Tuesday, 2 October 2012

Mg university cse sem 7 Computer Graphics previous year question paper


Java program for Public Chat

AIM
Write a program for implement Public chat using JAVA

PROGRAM

//publicchatC.java

import java.io.*;
import java.net.*;
import java.awt.*;
import java.awt.event.*;
public class publicchatC extends Frame implements ActionListener
{
TextArea txt1,txt2;
Button btn;
String msg;
PrintWriter pw;
Socket s;
public publicchatC()
{
   setLayout(new GridLayout(3,1));
   txt1=new TextArea();
   btn=new Button("Send");
   txt2=new TextArea();
   add(txt1);
   add(btn);
   add(txt2);
   txt1.setText("");
   txt2.setText("");
   btn.addActionListener(this);
   addWindowListener(new WindowAdapter()
   {
      public void WindowClosing(WindowEvent e)
      {
       setVisible(false);
      } 
  
   });

}

public void setConnection()
{

   try
   {
      s=new Socket("localhost",6969);
      BufferedReader br=new BufferedReader(new InputStreamReader(s.getInputStream()));
      pw=new PrintWriter(s.getOutputStream());
      while(true)
      {
      
         msg=br.readLine();
         txt2.append("Rec:"+msg+"\n");
       
      
      }
    }
   catch(Exception e)
   {
    System.out.println(e);
   
   }

}

public void actionPerformed(ActionEvent ae)
{
  try
  {
  
      
     if(ae.getSource()==btn)
     {
      msg=txt1.getText();
      txt2.append("Send:"+msg+"\n");
      pw.println(msg);
      pw.flush();
     }
   }
 
   catch(Exception e)
   {
    System.out.println(e);
   
   } 

}


public static void main(String args[])throws Exception
{
  publicchatC obj=new publicchatC();
  obj.setSize(300,300);
  obj.setVisible(true);
  obj.setConnection();

}
}