Thursday, July 29, 2010

What is the difference between DROP,DELETE and TRUNCATE.

What is difference between TRUNCATE & DELETE?


TRUNCATE is a DDL command and cannot be rolled back. All of the memory space is released back to the server.


DELETE is a DML command and can be rolled back.


Both commands accomplish identical tasks (removing all data from a table), but TRUNCATE is much faster.




TRUNCATE : You can't use WHERE clause


DELETE : You can use WHERE clause




Truncate: Drop all object's statistics and marks like High Water Mark free extents and leave the object really empty with the first extent.


Delete: You can keep object's statistics and all allocated space.

1>TRUNCATE is a DDL command whereas DELETE is a DML command.

2>TRUNCATE is much faster than DELETE.

Reason:When you type DELETE.all the data get copied into the Rollback Tablespace first.then delete operation get performed.Thats why when you type ROLLBACK after deleting a table you can get back the data(The system get it for you from the RollbackTablespace).All this process take time.But when you type TRUNCATE it removes data directly without copying it into the Rollback Tablespace.Thatswhy TRUNCATE is faster.Once you Truncate you cann't get back the data.


3>You cann't rollback in TRUNCATE but in DELETE you can rollback.TRUNCATE removes the record permanently.

4>In case of TRUNCATE Trigger doesn't get fired.But in DML commands like DELETE .Trigger get fired.

5>You cann't use conditions(WHERE clause) in TRUNCATE.But in DELETE you can write conditions using WHERE clause.


truncate is ddl command.its faster than delete as it doesnt  have go through the rollbacks etc.truncate being a ddl is  auto commit.we can only truncate the whole table(cant use  where clause).once table is truncated we cant rollback the  changes.when a table is truncated the memory occupied is  released.that id the water mark is adjusted.  delete is a dml command and can be rolled back.is slower  than truncate as it is dml has to go through rollback  segments etc.we can use where clause with delete.when a  table is deleted memory occupied is not released ans also  the water mark is not adjusted. 


What is the difference between DROP,DELETE and TRUNCATE.

Drop and Truncate are DDL With Drop Command we can remove entire Table or columns from database. With Truncate we can remove the records in the table by keeping table structure.

Drop and Truncate are AutoCommit.

By using Delete command we can remove rows in the table but its not autocommit

DELETE
Delete is the command that only remove the data from the table. It is DML statement. Deleted data can be rollback. By using this we can delete whole data from the table(if use without where clause).If ew want to remove only selected data then we should specify condition in the where clause
SQL>delete from employee;(this command will remove all the data from table)
SQL>delete from employee where employee_name='JOHN';(This command will remove only that row from employee table where employee_name is JOHN');

DROP:
Drop command remove the table from data dictionary. This is the DDL statement. We can not recover the table before Oracle 10g. But Oracle 10g provide the command to recover it by using the command (FLASHBACK)

TRUNCATE:
This is the DML command. This command delete the data from table. But there is one difference from ordinary delete command. Truncate command drop the storage held by this table. Drop storage can be use by this table again or some other table. This is the faster command because it directly drop the storage



--
http://www.venkatmails.blogspot.com/

Venkat Mails, Fun , Cool pictures, Fun messages, Sardar Jokes, Quotations Moral stories Fun stories

http://www.venkatmails.blogspot.com/

What is host file?


What is host file?


The hosts file is a computer file used in an operating system to map hostnames to IP addresses. This method is one of several system facilities to address network nodes on a computer network. On some operating systems, the host file content is used preferentially over other methods, such as the Domain Name System (DNS), but many systems implement name service switches to provide customization. Unlike DNS, the hosts file is under the control of the local computer's administrator.[1]




The hosts file is a plain-text file and is traditionally named hosts.


The short answer is that the Hosts file is like an address book. When you type an address like www.yahoo.com into your browser, the Hosts file is consulted to see if you have the IP address, or "telephone number," for that site. If you do, then your computer will "call it" and the site will open. If not, your computer will ask your ISP's (internet service provider) computer for the phone number before it can "call" that site. Most of the time, you do not have addresses in your "address book," because you have not put any there. Therefore, most of the time your computer asks for the IP address from your ISP to find sites.




If you put ad server names into your Hosts file with your own computer's IP address, your computer will never be able to contact the ad server. It will try to, but it will be simply calling itself and get a "busy signal" of sorts. Your computer will then give up calling the ad server and no ads will be loaded, nor will any tracking take place. Your choices for blocking sites are not just limited to blocking ad servers. You may block sites that serve advertisements, sites that serve objectionable content, or any other site that you choose to block.


Location of HOST File:

Windows 95/98/Me c:\windows\hosts

Windows NT/2000/XP Pro  c:\winnt\system32\drivers\etc\hosts

Windows XP Home c:\windows\system32\drivers\etc\hosts

Linux: It present in /etc folder




--
http://www.venkatmails.blogspot.com/

Venkat Mails, Fun , Cool pictures, Fun messages, Sardar Jokes, Quotations Moral stories Fun stories

http://www.venkatmails.blogspot.com/

How to swap two variables, without using third variable ?

How to swap two variables, without using third variable ? Hi this question was asked in my interview.  Ans is :  a=a+b; b=a-b; a=a-b;  Any other solution? a=a*b/(b=a); b=(a+b)-(a=b); use xor to swap  a = a^b b= a^b a= a^b Ans is :  a=a*b; b=a/b; a=a/b; 

--
http://www.venkatmails.blogspot.com/

Venkat Mails, Fun , Cool pictures, Fun messages, Sardar Jokes, Quotations Moral stories Fun stories

http://www.venkatmails.blogspot.com/

What is the Difference Between http and https?

What is the Difference Between http and https?

http is hyper text transfer protocol which is responsible for transmitting and receiving information across the Internet where as https is secure http, which is used exchanging confidential information with a server, which needs to be secured in order to prevent unauthorized access.



HTTP is Hyper Text Transport Protocol and is transmitted over the wire via PORT 80(TCP). You normally use HTTP when you are browsing the web, its not secure, so someone can eavesdrop on the conversation between your computer and the web server.

HTTPS (Hypertext Transfer Protocol over Secure Socket Layer, or HTTP over SSL) is a Web protocol developed by Netscape and built into its browser that encrypts and decrypts user page requests as well as the pages that are returned by the Web server. HTTPS is really just the use of Netscape's Secure Socket Layer (SSL) as a sublayer under its regular HTTP application layering. (HTTPS uses port 443 instead of HTTP port 80 in its interactions with the lower layer, TCP/IP.) SSL uses a 40-bit key size for the RC4 stream encryption algorithm,new-age browsers use 128-bit key size which is more secure than the former, it is considered an adequate degree of encryption for commercial exchange.HTTPS is normally used in login pages, shopping/commercial sites.

Although it may be encrypted does not mean its safe, there are tools out there to decrypt the information being sent over the wire, although its more difficult to do so.


--
http://www.venkatmails.blogspot.com/

Venkat Mails, Fun , Cool pictures, Fun messages, Sardar Jokes, Quotations Moral stories Fun stories

http://www.venkatmails.blogspot.com/

Tables vs DIV Tags: What's the Difference? Which is Better?

Tables vs DIV Tags: What's the Difference? Which is Better?

Jump into CSS with both feet and don't look back.

Tables were never meant for layout, that's just the way Web sites were developed from the start because they could control layout easier than early CSS and early browsers were VERY hard to make CSS work in.

Building sites using CSS over tables has many advantages:

1. Easy to make sitewide positional and styling changes in one file instead of making a change on 1000 different pages using tables, for example.
2. Reduces the amount of code used to display a page, improving load times, reducing bandwidth, costing you less money (you are allowed specific amounts of bandwidth in your hosting package).
3. CSS helps sites work across many different mediums such as PDAs, Web browsers, and mobile phones.
4. You can easily switch layouts (as described earlier).
5. Future editions of Web browsers will support CSS standards changes.
6. Search engine spiders can get through your site from your CSS text-based navigation.

While you are at it, build your sites using Server-side Includes as well so you can make content changes in one place (the include file) and layout changes in one place (the style sheet).

Lastly, yes, use tables to tabular data.

Hope that helps.


Over the last several years, developers have moved from table-based website structures to div-based structures. Do developers know the reasons for moving to div-based structures?

However, it's a matter of personal preference. That doesn't mean there's anything wrong at all with making a different choice.

Difference Between <Div> tag and <Table> tag

In my opinion, Div tag has a lot of advantage compare to table in terms of page loading speed, crawling your page and SEO friendly. However, tables will make object appear aligned the same in all browsers.

Advantages of Using the <Div> Tag

1.Easily to maintain and organize the site.
2.Webpage with Div tag tends to load faster than table mainly because of less code.
3.It will decrease the code and code to content ratio decreases, Thus, the content is found more easily to bots.

Advantages of <Div> Tag from SEO perspective

Using Div tag is very good for SEO because while you use Tableless layout then you are separating structural and presentational (html and CSS).

tabletagvsdivtag

As you can see from the above example, the table-based structure contains more code than the div-based structure by a ratio as much as 2:1.

Another drawback to tables is that they make it harder to separate content from design. The border, width, cellpadding and cellspacing tags are used in about 90% of all websites that use tables. This adds code to the HTML that should instead go in the CSS.

More lines of code will slow down the development and raises maintenance costs. There's a limit to how many lines of code a programmer can produce per day, and excess code is more complicated for others to understand.

Besides, more lines of code mean larger file sizes, which mean longer download times. A large code base probably has more bugs.

Disadvantages of Using the <Div> Tag

Using a div for structure can make a page more fragile when content is pushing the DIV to its limit. It can also force columns to fall under each other. But this is usually only happen for older browsers like IE6, I often encounter this issue when changing the whole web layout for my company site.




--
http://www.venkatmails.blogspot.com/

Venkat Mails, Fun , Cool pictures, Fun messages, Sardar Jokes, Quotations Moral stories Fun stories

http://www.venkatmails.blogspot.com/

Friday, July 9, 2010

Final Year Project List ECE, ICE , CSE, IT, EEE, Mech

In this post you can find the Final year project lists for for various branches such as ECE, ICE , CSE, IT, EEE, Mech. For any queries regaurding project feel free to leave a comment.

Embedded Projects:

1. DIGITAL COMBINATION LOCK
2. SAFETY GUARD FOR THE BLIND (PROXIMITY BASE)
3. LIGHT CONTROLLED DIGITAL FAN REGULATOR
4. LOW-COST ENERGY METER USING ADE 7757
5. HOME AUTOMATION AND SECURITY CONTROL INTERFACE WITH TELEPHONE
6. LINE TRACKING ROBOT/MOUSE
7. REMOTE CONTROLLED STEPPER MOTOR
8. ULTRASONIC SWITCH
9. DEVICE SWITCHING USING PASSWORD
10. SPEED CHECKER FOR HIGHWAYS
11. ULTRASONIC PROXIMITY DETECTOR
12. ULTRASONIC MOVEMENT DETECTOR
13. VEHICLE SEED MEASUREMENT CONTROL PC BASED
14. SMART CARD FOR ENTRY EMPLOY
15. SECURITY ACCESS CONTROL SYSTEM
16. RADAR SYSTEM
17. PRI-PAID ENERGY METER
18. PRI-PAID CAR PARKING SYSTEM
19. ULTRASONIC DISTANCE METER
20. DATA SECURITY SYSTEM
21. DESIGN OF A BUS STATUS IDENTIFICATION SYSTEM
22. CALLING NUMBER IDENTIFICATION USING CALCULATOR
23. OPTICAL REMOTE SWITCH
24. LOAD PROTECTOR WITH REMOTE SWITCHING
25. DIGITAL WEIGHT ACCUMULATOR
26. REMOTE CONTROLLED LAND ROVER
27. TELEPHONE ANSWERING MATCHING
28. AUTO CAR PARKING
29. AN INTELLIGENT AMBULANCE CAR WHICH CONTROL TO TRAFFIC LIGHT
30. WATCHMAN ROBOT
31. SUN SEEKER
32. AUTO BRAKING SYSTEM
33. TOUCH SCREEN
34. DTMF REMOTE CONTROL SYSTEM
35. AUTOMATIC RAILWAY CROSSING GATE CONTROLLER
36. HOME SECURITY SYSTEM WITH SENDING MESSAGE ON OUR CELL PHONE
37. FASTED FINGER FIRST
38. MOBILE CONTROL ELECTRICAL APPLIANCES
39. RF CONTROL ELECTRICAL APPLIANCES
40. MIND READER
41. DIGITAL COMBINATION LOCK
42. SAFETY GUARD FOR THE BLIND
43. DIGITAL SPEEDOMETER
44. RADIO CONTROLLED REMOTE CONTROL
45. MICRO PROCESSOR-BASED DC MOTOR SPEED CONTROL
46. 31/2 DIGIT VOLTMETER WITH LED
47. 31/2 DIGIT VOLTMETER WITH LCD
48. 31/2 DIGIT THERMOMETER
49. DTMF 5-CHANNEL SWITCHING VIA POWER LINE
50. DEVICE SWITCHING USING PASSWORD
51. LASER-BASED COMMUNICATION LINK
52. VOICE & DATA COMMUNICATION WITH FIBER LINK
53. BUDGET DIGITAL OSCILLOSCOPE
54. WIRELESS HOME SECURITY
55. BEND STOP FILTER
56. A VERSATILE FUNCTION GENERATOR
57. DIGITAL DOOR BELL
58. TRANSFORMER LESS 12V DUAL POWER SUPPLY
59. INFRARED BURGLAR ALARM WITH TIMER
60. AUTOMATIC VOLTAGE STABILIZER USING AUTO TRANSFORMER
61. DIGITAL CODE LOCK
62. TELEPHONE CALL METER
63. EMERGENCY LIGHT USING CFL
64. WIDE RANG SQUARE WAVE GENERATOR
65. 1 HZ CLOCK GENERATOR
66. REMOTE MUSICAL BELL
67. ELE. TELEPHONE DEMONSTRATOR
68. TELEPHONE CALL COUNTER
69. LED VOLTMETER FOR CAR BATTERY
70. QUALITY FM TRANSMITTER
71. DIGITAL VOLUME CONTROL
72. 99.99 SEC. STOP-CLOCK
73. MULTIPURPOSE DIGITAL COUNTER
74. VERSATILE ON/OFF TIMER
75. SUPER SIMPLE TRIANGULAR TO SINE WAVE GENERATOR
76. DIGITAL FAN REGULATOR
77. TEMPERATURE DISPLAY
78. FREQUENCY GENERATOR
79. SOUND LEVEL INDICATOR FOR STEREO SYSTEM
80. SINGLE-GATE SQUARE WAVE GENERATOR
81. QUICK 741 AND 555 TESTER
82. REGULATE DUAL POWER SUPPLY
83. SENSITIVE FM TRANSMITTER
84. LIGHT CONTROLLED DIGITAL FAN REGULATOR
85. MOVING MESSAGE DISPLAY EPROM BASE
86. PROGRAMMABLE DIGITAL TIME SWITCH
87. PROGRAMMABLE DIGITAL TIMER CUM CLOCK
88. REMOTE CONTROL AUDIO PROCESSOR
89. HEART BEAT MONITOR
90. AIRPLANE DIRECTION INDICATOR
91. VOICE TRANSMITTER IN POWER LINE AND SWITCHING
92. A SINGLE-CHIP TIMER WITH DIGITAL CLOCK AND CALENDER
93. IMPEDANCE METER
94. REMOTE AUDIO LEVEL INDICATOR
95. MULTICHANNEL TOUCH SWITCH
96. SAW TOOTH WAVE GENERATOR
97. TEMPERATURE CONTROLLED FAN
98. 1 HZ MASTER OSCILLATOR
99. REMOTE TV TESTER
100. CORDLESS INTERCOM
101. REMOTE CONTROLLER ED LAND ROVER –A DIY ROBOTIC PROJECT
102. DIGITAL WEIGHT ACCUMULATOR
103. IR- TO- RF CONVERTER
104. FM RECEIVER USING CXA1619
105. HEAT SENSITIVE SWITCH
106. TRANSISTOR TESTER
107. AUTOMATIC SCHOOL BELL
108. DIGITAL STOP WATER
109. INFRARED INTERRUPTION COUNTER
110. AUTOMATIC ROOM LIGHT CONTROLLER: In this project we use object counter circuit with, auto light on when any body enter in the room and counter display any number, when all the person left the room and counter shows a 0 number on display then only light is off two rays of sensor is install in the door.

PC INTERFACE PROJECTS

1. PC TO PC COMMUNICATION USING IR/FIBER OPTIC CABLE
2. PWM CONTROL OF DC MOTOR USING C++
3. COMPUTERIZED ELECTRICAL APPLAINCE CONTROL
4. DATA ACQUISITION CARD FOR P.C.
5. SIMPLE ANALOGUE INTERFACE FOR P.C.
6. P.C. BASED FUNCTION GENERATOR
7. PC BASED SUN SEEKER
8. COMMUNICATION BETWEEN PC'S USING IR, LASER
9. SIMPLE RELAY AND SENSOR INTERFACE FOR P.C.
10. P.C. BASED DIGITAL CLOCK
11. INTERFACE YOUR PC WITH LIGHT AND FANS
12. P.C. BASED VISITOR COUNTER
13. P.C. BASED TOKEN NUMBER DIS PLAYER
14. PC BASE TRANSISTOR LEAD IDENTIFIER
15. PC BASED STEPPER MOTOR CONTROLLER
16. PC BASED DC MOTOR SPEED CONTROLLER
17. P.C. BASED 7-SEGMENT ROLLING DISPLAY
18. PC. BASED DC MOTOR SPEED CONTROLLED
19. PC BASED ROBOTIC ARM
20. P.C. BASED TIMER
21. P.C. BASED MULTILEVEL CAR PARKING

MICROCONTROLLER BASED PROJECTS

1. FASTEST-FINGER-FIRST USING 89C51
2. MICRO PROCESSOR BASED REVERSIBLE D.C. MOTOR CONTROL
3. MOVING MESSAGE DISPLAY 8085 MICROPROCESSOR
4. PC16F84- BASED CODED DEVICE SWITCHING SYSTEM
5. STEPPER MOTOR CONTROL USING 89C51
6. MIC-89C51 MONITORING SYSTEM
7. MANUAL AT 89C51 PROGRAM
8. AT 89C2051 BASED COUNTDOWN TIMER
9. MICRO CONTROLLER BASED CODE LOCK USING AT 89C2051
10. LCD FREQUENCY METER USING 89C2051
11. CALLER ID UNIT USING MICRO-CONTROLLER
12. PIC 18 F 84 MICRO-CONTROLLER BASE CODE DEVICE SWITCH SYSTEM
13. MICROPROCESSOR-BASED HOME SECURITY SYSTEM
14. STEPPER MOTOR CONTROL USING 89C51 MICRO-CONTROLLER
15. MICRO CONTROLLER BASED TEMPERATURE METER
16. MICRO CONTROLLER BASED HEARTBEAT MONITOR
17. RS232 ANALOG TO DIGITAL CONVERTER USING AT89C51 MCU
18. ULTRASONIC RANGEFINDER USING PIC MICRO CONTROLLER
19. CALLER- ID UNIT USING MICRO CONTROLLER
20. MICRO CONTROLLER BASED PATHFINDER
21. MICRO CONTROLLER BASED ROBOT.
22. MICRO CONTROLLER MOVING MESSAGE DISPLAY
23. MICRO CONTROLLER BASED RELAY SWITCHING
24. MICRO CONTROLLER AUTO DIALER USING GSM.
25. MICRO CONTROLLER BASED WATER LEVER INDICATOR
26. MICRO CONTROLLER BASED WIRELESS HOME AUTOMATION
27. MICRO CONTROLLER BASED RADAR SYSTEM
28. MULTI CHANNEL INFRA RED CONTROL 4 different point 89c2051 micro controller in transmitter and receiver, using infra red technique.
29. MOVING MESSAGE DISPLAY : 89c51 micro controller Led matrix,
30. Digital clock with alarm: using 89c51 micro controller
31. TRAFFIC LIGHT WITH DOWN COUNTER : all the four sides of the road with one side counter display using 89c51 micro controller circuit.
32. ULTRASONIC DISTANCE METER USING MICRO CONTROLLER
33. PRE-PAID CAR PARKING SYSTEM
34. MULTILEVEL CAR PARKING BY MCU
35. MICRO CONTROLLER TEMPERATURE METER
36. ANALOG TO DIGITAL CONVERTER USING AT89C51 MCU
37. INFRARED REMOTE CONTROL SYSTEM
38. ULTRASONIC MOVEMENT DETECTOR
39. MICRO CONTROLLER BASED TACHOMETER
40. MCU BASED VISITOR COUNTER
41. PWM CONTROL OF DC MOTOR USING 89C51
42. AN INTELLIGENT AMBULANCE CAR WHICH CONTROL TO TRAFFIC LIGHT
43. PRE-PAID ENERGY METER
44. MICROC CONTROLLER BASED LINE FOLLOWER OR TRACING ROBOT
45. AUTOMATED WALKING ROBOT CONTROLLED BY MCU
46. AUTO BRAKING SYSTEM
47. AUTOMATIC RAILWAY CROSSING GATE CONTROLLER

ROBOTIC & ELECTOR-MECHANICAL CONTROL BASED PROJECTS

1. ROBOTIC ARM INTERFACING WITH PC/MCU/ IR/RF
2. HYDRAULIC LIFT
3. LINE FOLLOWER OR TRACING ROBOT
4. AUTOMATED WALKING ROBOT
5. DIGITAL SPEED MEASUREMENT SYSTEM FOR AUTOMOBILE
6. LIFT CONTROL USING PC AND MCU
7. ESCALATOR LIFT USING PC & MCU
8. PATH FINDER MOBILE ROBOT
9. MULTILEVEL CAR PARKING LIFT USING MCU
10. AUTOMATIC RAILWAY CROSSING GATE CONTROLLER
11. AUTO REJECTION + CONVEYOR BELT SYSTEM
12. AUTO JACK MACHINE
13. AUTO BRACK SYSTEM FOR AUTOMOBILE
14. PADDLE CONTROLLED WASHING MACHINE
15. HYDRO ELECTRICITY
16. WIND ELECTRICITY
17. ELECTRICITY FROM SPEED BRAKER
18. SOLAR SUN SEEKER
19. ROBOTIC CRANE WITH UP/DOWN & CIRCULAR MOTION

Computer science Projects:

  1. Development of a feature-rich, practical online leave management system (LMS)
  2. Development of a practical Online Help Desk (OHD) for the facilities in the campus
  3. Development of an auto-summarization tool
  4. Development of an agent-based information push mechanism
  5. Development of a feature-rich, practical online on-request courses coordination system (ORS)
  6. Development of an online Library Management System (LiMS)
  7. Development of an online Sales and Inventory Management System (SIMS)
  8. Development of a feature-rich, Employee Transfer Application
  9. Development of a feature-rich, Resume Builder Application
  10. Development of a safe and secure Internet banking system( Java based) OR Banking System in Visual Basic( Stand Alone)
  11. Development of a feature-rich, practical online intranet knowledge mgmt system for the college (KMS).
  12. Development of a feature-rich, practical online application for the Training and Placement Dept. of the college
  13. Development of a Repository and Search Engine for Alumni of College (RASE)
  14. Development of a split screen application for the data entry of the shipments.
  15. Development of a Campaign Information System
  16. Development of an e-Post Office System
  17. Development of a Lost Articles and Letters Reconciliation System
  18. Student Project Allocation and Management with Online Testing System (SPM)
  19. Development of a user friendly ,feature-rich, practical Online Testing System (OTS).
  20. Development of a feature-rich, practical Resource Management System (RMS)
  21. Development of a feature rich, practical online Tickets reservation system for Cinema halls.
  22. Development of a feature rich, practical Time table generation system for a college.
  23. Development of a user friendly ,feature-rich, practical Appraisal Tracker
  24. Development of Effort Tracker System
  25. Development of a feature-rich, practical "Web Enabled Estate Agent"(WEEA)
  26. Development of a Web Based Mail Client
  27. Development of a work flow based Complaint Management System (where the complaints are received through emails)
  28. Development of an application for receiving orders for printing digital photographs
  29. Development of a work flow based purchase request approval system
  30. Development of a Defect Tracking System (DTS)
  31. Development of a Product Master Maintenance system
  32. Development of a Recipe Management System
  33. Development of a feature-rich Employee Separation System (E-Separation System)
  34. Development of a Miles Acquisition System (MAS)
  35. Development of a Network packet sniffer
  36. Development of a Web Based Meeting Scheduler
  37. Development of an Employee Cubicle Management System
  38. Development of a web based Stationery Management System
  39. Development of an Online Course Portal for a campus
  40. Development of an Online Auctioning Shop for a campus/organization
  41. Solving system of linear equations using parallel processing
  42. Design and development of Point Of Sale [ POS ]
  43. Design and development of Speed Cash System [ SCS ]
  44. Development of a feature-rich, practical Online Survey Tool (OST)
  45. Development of a Web/Email based Search Engine
  46. Development of a web-based Recruitment Process System for the HR group for a company
  47. Development of a Budget Approval System
  48. File system simulation
  49. Development of a Network Print Spooler
  50. Development of a HTTP Caching Proxy Server

University: Final Year Project For ECE Department

For Abstract and full details of this project please leave a comment here if you want any of the project. I have full procedure along with design and block diagram of the below projects. I got it through some university.

  1. mega644 JTAG Debugger
  2. Ultrasonic Haptic Vision
  3. Haptic appointment manager
  4. 3D ultrasonic mouse
  5. 3D scanner
  6. Gesture Recognition Based on Scratch Inputs
  7. LED Sensor Keyboard
  8. Touchpad/Infrared Music Synthesizer
  9. Programmable Synthesized Guitar
  10. Der Kapellmeister
  11. IR harp
  12. Digital Receipts System
  13. ODB-II Automotive data interface
  14. Traction control system
  15. ACL Research: Foot Acceleration Sensor
  16. Fart Intensity Detector
  17. Dual-Channel Mobile Surface Electromyograph
  18. Tissue Impedance Digital Biopsy
  19. GPS Data Logger with Wireless Trigger
  20. Self-Adjusting Window Shade
  21. Weather Canvas
  22. Autonomous Self-parking car
  23. Holonomic Drive Vehicle with Stochastic Evolution
  24. Ball Picker Robot
  25. Balance Bot
  26. Snake arm Multiple PID motor controller
  27. Electric Etch
  28. POV display
  29. POV display
  30. Alarm clock with speech synthesis
  31. Blackout game
  32. ESD Foam Touch Controlled Brick Blaster
  33. NES emulator
  34. Laser Audio Transmitter
  35. Voice Tuner
  36. Wireless music player
  37. Multi sensor Data Transmission
  38. Heliostat (MP4)
  39. Wii Conductor
  40. Tic Tac Toe with CMOS Camera
  41. Robot Plotter

Few list of Offshore Software Development Projects

.NET PROJECT TITLE

  1. Virtual Job Search Engine generation and maintenance
  2. Virtual job mailer system
  3. I-Connect Streaming Media Chronicles
  4. Quality centric task mapper
  5. Global Solutions for wiki management (GSWN)
  6. North East west south global unified Reporting utility ( NEWS GURU)
  7. Integrator â€" A progressive Immensity populating mailer
  8. Community portal for social networking and synthesis.
  9. Performance analysis of production engine by logs ( PALEL ).
  10. Deployed sustaining software enhancement Defect chronicle tracker. â€" Error Log
  11. Semantic Web Service on Query Based System for Automatic invocation
  12. voice diffusion System
  13. Privacy preserving data mining system
  14. Network signature based on intrusion detection system
  15. Web content adaptation
  16. Distributed middleware for web services using advanced secured system
  17. Dynamic load Balance for Distributed mobile mining.
  18. Mining prefecting and caching for network storage System
  19. Real Syndicate feeding and Analysis of Data
  20. Classified maintenance and process control system using SOA
  21. Video Synthesis and monitoring System
  22. Banyan Trade Capture System
  23. Graphical Models and Animation Synthesis and control System
  24. Advertisement Tracking System Using SOA
  25. Wireless Medium Control and monitoring Process
  26. Infrared communication and enhancement process
  27. Global Product development and control system
  28. E-Blotter for mobile shop management Tool
  29. Mobile Shop Maintenance System Using Desktop Application
  30. Open Source Data Feeding System Using Web 2.0
  31. Management Information Maintenance process using AJAX Tool Kit
  32. Web Portal Real Time Operational Client Relationship Management System
  33. Unveils Strategic framework for client relationships and monitoring system
  34. Web Portal Real Time Operational cognitive Content Management System
  35. Information Barrier and Control Program Implementation
  36. Procuring Information and reconciliation maintenance system
  37. Information Control System Using .Net
  38. Mortgage controller and Trade Capture System
  39. Dynamic Demand Resource management Framework using Web 2.0
  40. Multi-Million Dollar maintenance Using WLS Algorithms
  41. White Labeling System
  42. Semantic Web Service on Query Based System for Automatic invocation
  43. Integration of Data source for answering Semantic Web Service
  44. Work In Progress management System
  45. I-Recruit monitoring System
  46. Chit-chat generation and discussion analysis Process
  47. Eblotter management and code endeavour control system
  48. Aurora system for job mailer and scheduler Networks
  49. Security oriented chat scheduler for heterogeneous Distributed system
  50. Real-time Blog generation and control access and denial system
  51. Global Assets management system using makespan constraint in uncertain environment
  52. Automatic Image processing system using web 2.0
  53. Information Streaming process and security control system using SOA

JAVA Project Titles

  1. DDos (Distributed Denial of Service) Using Throttle Algorithm
  2. LAN Monitoring System using Throttle Algorithm
  3. Load Balancing Using Proxy Server
  4. MANET-Global Connectivity for Mobile IPv6-based Ad Hoc Networks
  5. Analysis Of Web Page Viewing From Customer And Performance Enhancement(Web-mining)
  6. SHORT-TIME BAND-WIDTH TARIFF INCREASE FOR ADAPTIVE APPLICATIONS
  7. Cryptography and Stenographer
  8. Inventory Deluxe
  9. Proxy Server
  10. Supervising Secret key agreement in a level based hierarchy
  11. Secured Data Communication using algorithm (or) BSF Encoding Decoding
  12. Smart Communication Suite
  13. Transliteration
  14. Model Management
  15. Media streaming
  16. Medical Diagnostic System
  17. Right protection for catero logical data

Final Year Computer / Electrical / Electronics Project Topics / Suggestions : Some Ideas

Final Year Computer / Electrical / Electronics  Project Topics / Suggestions : Some Ideas 

 Here is a huge list of project suggestion for final year project (BE computer).I have collected them from various sites.

-------------------------------------------------------------

Online Index Recommendations for High-Dimensional Databases Using Query Workloads
Efficient and Secure Content Processing
Controlling IP Spoofing through Inter domain Packet Filters
Rough sets based Search Engine for grid service discovery
Trustworthy Computing under Resource Constraints with the DOWN policy
Credit Card Fraud Detection using Hidden Markov Model
Hba: Distributed Metadata Management for Large cluster-based storage system
Minimizing file download time in Stochastic Peer-to-Peer networks
Statistical Techniques for detecting Traffic anomalies through Packet Header Data
The Effect of Pairs in Program Design Tasks
Rate Allocation and Network Life Time Problems
Distributed cache updating for the Dynamic source routing protocol
An Adaptive Programming Model for Fault-Tolerant Distributed Computing
Face Recognition Using Laplacian faces
Predictive Job Scheduling in a Connection Limited System using Parallel Genetic Algorithm
Digital Image Processing Techniques for the Detection and Removal of Cracks in Digitized Paintings
A Distributed Database Architecture for Global Roaming in Next-Generation Mobile Networks
Noise Reduction by Fuzzy Image Filtering
Online Handwritten Script Recognition
ODAM: An Optimized Distributed Association Rule Mining Algorithm
Structure and Texture Filling-In of Missing Image Blocks in Wireless Transmission and Compression Applications
Workflow Mining: Discovering Process Models from Event Logs
An Agent Based Intrusion Detection, Response and Blocking using signature method in Active Networks
A Novel Secure Communication Protocol for Ad Hoc networks [SCP]
ITP: An Image Transport Protocol for the Internet
Hybrid Intrusion Detection with Weighted Signature Generation over Anomalous Internet Episodes(HIDS) /
Incremental deployment service of Hop by hop multicast routing protocol
Network border patrol: preventing congestion collapse and promoting fairness in the Internet
Location-Aided Routing (LAR) in Mobile Ad Hoc Networks
Neural Networks for Handwritten character and Digits /
Selective Encryption of Still Image /VB,C
An Acknowledgment-Based Approach For The Detection Of Routing Misbehavior In MANETs
Neural Network-Based Face Detection /
Homogenous Network Control and Implementation
XML Data Stores: Emerging Practices
XTC: A Practical Topology Control Algorithm for Ad-Hoc Networks
A near-optimal multicast scheme for mobile ad hoc networks using a hybrid genetic algorithm
Mobile Agents In Distributed Multimedia Database Systems
Wireless Traffic Viewer Using Mail Client Server
Monitoring And Managing The Clusters Using JMX
Peer-To-Peer Messaging
Mobile Information Provider
Mobile Bank WAP
Video Steganography Using Mobile Simulation
Network Traffic Anomaly Detector
ERP for Leather Company
Online Web shop
Online Fashion Studios
ERP for Small Business
Bulk Billing System
SN Java Project Titles Language
Optimal Multicast Routing in Mobile Ad-Hoc Networks Java
Homogenous Network Control and Implementation Java
Performance Evaluation of RMI Java
Network Component for XML Migration Java
A Secure Routing Protocol for mobile Ad-hoc Network Java
Retrieving Files Using Content Based Searching and presenting it in Carousel view Java
An Acknowledgment-Based Approach for the Detection of Routing
Misbehavior in MANETs Java
Java Network File Sharing System Java
Image Transformation using Grid Java
Java Visual Editor with Compiler Java
Embedding In Video Steganography Java
Genetic Algorithm Based Train Simulation Using Concurrent Engineering Java
Image Rendering For Grid Technology Java
Scalable Wireless AD-HOC Network Simulation Using XTC Java
ATM Networks For Online Monitoring System Java
Network Border Patrol Preventing Congestion Collapse Java
Shortest Node Finder In Wireless Ad-Hoc Networks Java
TCP/IP Pocket Controlling Monitor Java
Network Security System In DNS Using Ad-Hoc Networks Java
E-Mail Server Using Multithreaded Sockets Java
Integrating Speech Engine With Web Navigator Java
XML Enable SQL Server Java
Network Analyzer Java
Public Key Validation for DNS security Extension Java
Java Productivity Aids Java
Image Water Marking
Call Center Management System ASP Net
Online Shopping ASP Net
Textile Web Services ASP Net
Auction System ASP Net
Online Quiz ASP Net
Online Bank ASP Net
Online Voting System ASP Net
Securing Image URL ASP Net
Web Services ASP Net
Smart Knowledge Provider ASP Net
Online Book Shop ASP Net
Electronic Fund Transfer ASP Net
Work Flow Management System ASP Net
Online Customer Care ASP Net
CVS Root File Changing Utility
C# MP Compressor
Convolution Filters Using Image Processing
Database Schema Comparison Utility C#
Displacement filters, including swirl using GDI+
Edge Detection Filters
Flood Fill Algorithms in C# and GDI+
Genetic Algorithms and the Traveling Salesman Problem using C# and ATL COM
Hiding binary data in HTML documents
Hiding Messages in MIDI Songs
Hiding messages in the Noise of a Picture
Image Processing
Windows Management Instrumentation WMI Implementation
Image Processing for Bilinear Filters and Resizing
Image processing for HSL color space
Image Processing for Per Pixel Filters using GDI+
Multithreaded Chat Server
Reading and Writing AVI files using steganography
Steganography for Hiding Data in Wave Audio Files
TCPIP Chat client server Using C#
Neural Networks for Unicode Optical Character Recognition
Using Trigonometry and Pythagoras to Watermark an Image
Library Management System
Steganography for FTP through a Proxy Server
Artificial intelligence network load balancing using Ant Colony Optimization
Neural Networks for Handwriting Detection System Using Brain Net VB

Net
Library Management system
Windows Management Instrument (WMI) Net
Wallpaper Changer Utility
Win Application for Word Processing
Screen capture Utility
HTML Editor
Image Converter
Internet History Viewer
Smart Mail Transfer Protocol
Windows Multi File Search utility
Message Digest
FTP Explorer
Convolution Filter
Find and Replace utility
Apartment Management System
Computerized Information Software
Employee Management System
Hotel Management System
Human Resources Management System
Inventory System
Membership Management System
Patient Care System
Send SMS To Cell Phone Through SMTP Mail
Trainee Management System
Cryptographically Using Secure Server/Client Protocol
Intrusion Detection Prevention And Trace back Systems
Neural Network for Recognition of Handwritten and Digits

_______________________________________________________
1. Design of Intranet Mail System
2. Mirroring
3. Development of a Distributed Systems Simulator for Event Based Middleware
4. A Smart phone Application to remotely a PC over the internet
5. Network Protocol Verification Using Linear Temporal Logic
6. Virtual Routing Network Emulation Frame Work
7. A Multihoming Solution for effective load balancing
8. Implementing a Linux Cluster
9. Improving the efficiency of Memory Management in Linux by Efficient Page
10. Replacement Policies.
11. Experimenting with Code Optimizations on SUIF (Stanford University Intermediate Format)
12. Intranet Caching Protocol
13. A DBMS with SQL Interpreter
14. Developing an Organically Growing Peer to Peer Network
15. Analysis of Routing Models in Event Base Middlewares
16. Analysis of Event Models in Event based Middle ware
17. Integration of Heterogeneous Databases Into XML Format with Translator
18. Information Management and Representation Using Topic Maps
19. Face Recognition Using Artificial Neural Networks
20. Video Conferencing with Multicast Support
21. Collaborative Span Filtering Using Centralized Incrementally Learning Spam Rules
23. Hierarchical Data Back Up
24. Automated Generation of Cycle Level Simulators for Embedded Processors.
25. Mini Projects By M.Techs
26. Fingerprint Image Enhancement
27. Dept Library Management System
28. Linux Kernel Enhancement
29. Cloth Animation & Dynamics.
30. Linux Kernel (Memory Management)
31. Image Steganography
32. Web Enabled Opinion Poll System For NITC
33. Application Of Bayesian Networks To Data Mining
34. Triple crypt Using Vector Displacement Algorithm
35. Network Analysis
36. Feed Forward Neural Networks
37. IP Sniffer
38. Project Management System
39. Cryptographic Engine
40. Fault-Tolerant TCP
41. Enhancing The Algorithms
42. 2 mail
43. Mini Projects by B.Techs ( Currently reports are not available )
44. Time Table Information System
45. Online Library System
46. Implementing an interface for transliteration
47. Simulation of the IA64 Instruction Set Architecture
48. Simple FTP Client
49. Text Editor for Linux Platform
50. Exam Server
51. Online Bulletin Board
52. Project Server
53. Developing GUI for IP Tables Configuration
54. Academic planner
55. Online Election Software for Hostel Election
56. Performance Evaluation of Routing Algorithm using NS2
57. Alumni Software
58. Bandwidth management Tool
59. Implementation of Scalar Optimizations
60. Online Banking
61. Distributed Workgroup File Indexer
62. Managing Linux Distributions
63. Network Sniffer
64. Simulating Routing Algorithms in Java
65. A Tool For Network Auditing(ping and Port Scanning, TCP/IP Finger printing
66. An alternative semantics for error and exceptional handling
67. Online Counseling software
68. Web application
69. Instant messenger system
70. course home page generator
71. Web application
72. An Interpretor for lambda calculus with some extensions
73. course home page generator
74. Probabilistic Techniques for cache replacement
75. Implementation of Download wizard for simultaneous downloads
76. Online Share Trading
77. Online Counseling
78. Transfer Program in Java Using Protocols like FTP,SMB,HTTP,SSH
79. Transfer Program in Java Using Protocols like FTP,SMB,HTTP,SSH
80. Using Genetic Algorithms for testcase generation for finite state machines
81. A study of the Linux Operating system, Development of useful System programs
82. subsequently implementing a GUI Providing a certain useful functionality
83. Online Shopping
84. Text to Speech conversion
85. Hostel elections voting software
86. Code optimization: Implementation of scalar optimizations
87. A Web based academic monitoring system
88. To output the timing schedule
89. Code optimization: Implementation of scalar optimizations
90. Online Objective test
91. Performance Evaluation of Routing Algorithm using NS2
92. IA64 ISA Simulation
93. Text to Speech conversion
94. Auction simulator using agents
95. Customizing Proxy Web server
96. Auction simulator using agents
97. Implementation of cryptographic protocols in oblivious signature based envelope (OSBE to handle cyclic policy interdependency)
99. NITC Student information system
100. Implementation of the gaming software
101. Online Library Management system
102. Project Server
103. My SQL Administrative tool kit
104. Error handling for syntax analysis
105. Online Student Registration
106. Final Project by M.Techs ( currently reports are not available)
107. Operating system enhancements to prevent the misuse of system calls.
108. Type systems and applications to safety.
109. Spatial and temporal database (queries for retrieving data)
110. Adaptive distributed event model.
111. Improving TCP performance in adhoc networks.
112. Model checking for protocol verification.
113. Type systems and it's application to safe and efficient code.
114. Exact functional context matching for web services.
115. A new methodology for representation of TCP performance in TCPSF.
116. Adaptive event based middleware architecture.
117. Intelligent agents.
118. Optimizing pattern matching algorithm in intrusion detection.
119. Information retrieval from textual corpus.
120. Direction queries in spatio-temporal databases.
121. Secure routing.
122. Audio processing of movies.
123. Final Projects By MCA ( currently reports are not available)
124. Secure Conferencing System
125. Web based Linux Administration
126. Wireless Search Engine
127. Hostel Election Software
128. Performance Enhancement of HTTP using improved TCP Functionalities
129. Adding Functionalities to Libpcap
130. Performance Evaluation of an Efficient Multicast Routing Protocol
131. Development of an OS Framework for a MIPS Simulator
132. Secure Mail Server
133. Development of an OS Framework for a MIPS Simulator
134. Development of an OS Framework for a MIPS Simulator
135. Academic per-to-peer Network
136. Secure Mail Server
137. Distributed System simulator for Publish-Subscribe Model
138. Data Integration
139. Web based Linux Administration
140. Interface for Mobile Phone and PDA using J2ME
141. Distributed System simulator for Publish-Subscribe Model
142. Distributed System simulator for Publish-Subscribe Model
143. Contact Reminder
144. Direct Information System
145. Course Home Page Generator
146. Campus Online Help Desk
147. Online Class Register
148. Mail Server Utility
149. Hostel Election Software
150. Collaborative Web Browsing
151. Web based Application for Multiple Clients
152. Testing Tool
-------------------------------------------------------------

1. Scalable infrastructure for index based information extraction over large document collections
2. Efficient inference algorithm for large state space graphical model
3. Information Extraction in Diverse Setting
4. Anomaly Detection
5. Information Retrieval in Resource Constrained Environments
6. Dynamic Data Dissimination in Resource Constrained Environment
7. Using Multiple Decomposition Methods and Combining a Multitude of Experts
8. Using a multitude of experts in time series forecasting
9. Forecasting
10. Matchmaking algorithms for Semantic Web Services
11. To Coordinate Collaborative Software Development Based on SDLC Models
12. Collaborative Platform for Open Source
13. Feedback Based Self-Configuring Systems
14. Towards Evaluating Lexico-Semantic Networks
15. Semantic Searching using NLP techniques
16. Word Sense Disambiguation Engine for Multiple Languages
17. Marathi Sentence Generation from UNL.
18. Automating News Gathering and Classification
19. RFID Data Management
20. RFID Data Management
21. Performance Analysis of Telephony Routing Protocols
22. Load Sensitive Routing algorithm and its application in traffic engineering
23. Energy Efficient Event Reliable Transport in Wireless Sensor Networks
24. Inter-operability of IEEE 802.11 with IEEE 802.11e
25. Intelligent Car Transportation System (IntelliCarTS)
26. Design and Implementation of WiFiRE protocol
27. Design and Implementation of WiFiRE protocol
28. Design and implementation of PSTN/VoIP gateway with inbuilt PBX.
29. Extending Shikav to support animation of networking protocols
30. Formal Specification and Verification of WiFiRe
31. Performance Analysis of WiFi-Re(Wireless Fidelity - Rural Extension)
32. Design and Implementation of PSTN to VoIP Gateway in built Asterisk PBX
33. Optimized and delay sensitive service provisioning over SLiT networks
34. Detecting and Blocking Skype
35. Design of an Infrastructure using WiFi for Road Naviation
36. Approximation Algorithm for Facility location and related problems
37. Wireless Security
38. Context Aware Service Oriented Architecture
39. Web Monitoring for Lightweight Devices
40. Web based Named Entity Recognition
41. Learning relevance order over graphically linked objects
42. Exploiting Local Regularities in Text Segmentation using Conditional Random Fields
43. Statistical Learners for Information Extraction:An Empiricial Approach
44. Recurring Functional Sites in Protein Structures detected with allowance for Substitution of Amino Acids.
45. Web Monitoring for Lightweight Devices
46. Compression in Flash-based Databases
47. Topology-Aware Failure Diagnosis For Distributed Enterprise Systems.
48. Object-level Partitioning of Applications
49. Power Aware duty scheduling in Wireless Sensor Networks
50. Building Cluster Environment For Interactive Users.
51. Overload Control of Web Services with SEDA
52. P-AODV: Extension of AODV for Partially Connected Ad Hoc Networks
53. Hybrid Mechanism for Enhancing the Performance of Streaming Service in D-T MA
54. WiMax MAC over WiFi PHY for rural communication
55. A Contention Window Differentiation Mechanism for providing QoS in 802.11
56. Video over variable bandwidth links
57. Improving RFID System to read the tags efficiently
58. RFID Security
59. Object-level Partitioning of Applications
60. On supporting Design evolution and treaceablity
61. Improve Forecasting Performance Using Decomposition and Combining
62. Using Multitude of Time Series Forecasting Models to ImproveForecast
63. Short Term Load Forecasting
64. Integrated Case Based Reasoning And Rule Based Reasoning for Insurance
65. Hybrid Model Based Reasoning in Finance
66. Efficient Causality Tracking in Optimistic Distributed Simulation
67. Publish-Subscribe systems for P2P Networks
68. Secure Routers
69. DNS based Multihoming
70. Indian Internet Tomography
71. Performance Study of Infiniband Based Cluster
72. Optimal Router Buffer Size
73. Why Disks fail in India and what can be done about it
74. Estimating latencies and buffer requirements in multimedia networks
75. Receiver feedback based rate adaptation of multimedia sources.
76. Statistical models for Information Extraction from webpages
77. Tools for comparative analysis of extraction algorithms
78. Aggregate queries on uncertain results of data integration systems
79. Improving performance of large scale data integration systems
80. Forecasting using Neural Networks
81. Forecasting using Genetic Algorithms.
82. Enterprise Application Integration
83. Use of wavelets in Forecasting
84. Information Extraction
85. Visual Layout Driven Information Extraction from Websites
86. Information Extraction using a Database
87. Deduplication and Soft matching
88. Entity Recognition on the Web
89. Middleware for group communication in hybrid network.
90. A Collision-free tag reading mechanism for RFID Network with Mobile Readers.
91. Mitigating the Reader Collision Problem in RFID Networks with Mobile Readers
92. Performance Analysis of Telephony Routing over IP
93. An Efficient OSPF Based Load Sensitive Routing Algorithm.
94. Performance Analysis of IEEE 802.16 MAC
95. VoIP over wireless network
96. Measurement Based Performance Characterization of Software Servers
97. Quality of Service Provisioning in IEEE 802.11 Wireless LANs
98. Fine-grained symmetric multiprocessor software architecture for TCP/IP stack on the UNM platform
99. Embedded Real Time Systems
100. Vehicle Driver Rating System
101. Image Classification Using Neural Networks and Fuzzy Logic
102. Dynamic Topology Extraction for Component Based Enterprise Application Environments
103. Database In Smart Cards
104. Low Bit Rate Speech Coding
105. Code Generation for Lazy Functional Languages
106. Spectral methods for Graph Partitioning
107. QOS Architecture for Mobile Nodes
108. Digital video browser and multimedia content search
109. XML agents in Smart Cards
110. Computational Geometry in Drug Design
111. Pure Optical router for Optical routing without electronic intervention
112. FPGA implementation of 802.11 MAC.
113. 3D View Morphing
114. Learning Paths for Information Extraction
115. Application of Geometric invariants in finding structural properties in biological molecules
116. Content Cognizant data dissemination
117. Autonomic Computing and Self Healing Systems
118. NOT AVIALBLE Data Mining
119. QoS in Wireless Networks
120. NOT AVIALBLE Data Mining (title yet to be decided)
121. Building VoIP over DEP Network
122. Secure Update Semantics in XML databases (Area)
123. Hardware - Software Codesign using hierarchical Finite State machines
124. Design and Deployment of a Transfer Control Protocol over Asymmetric Satellite Networks
125. Semi Automatic generation of properties for verification
126. Protein prediction.
127. Streaming in Networks
128. NOT AVAILABLE DEP networking (title yet to be decided)
129. Information Retrieval
130. Information Theoretic Text Similarity Measurement Using Approximate Word Sense Disambiguation
131. Chaos based Encryption for a Structured Video Codec
132. Synchronization Specifier and Presenter for Authoring System
133. Tackling the exposed node problem in IEEE 802.11 MAC
134. Design and Deployment of a Reliable File Transfer Protocol over Asymmetric Satellite Networks
135. Robust HTML to DOM conversion and applications
136. Detection of recurring patterns in protein structure by superimposition and geometric hashing
137. QoS based Routing Algorithms in Internet
138. Object Based Video Segmentation
139. Reconfigurable Packet Classifier
140. Design and Evaluation of an IEEE 802.11 Based Dual MAC for MANETs
141. Optimizing the evaluation of complex similarity predicates on large datasets
142. Dynamic Adaption of DCF and PCF mode of IEEE 802.11 WLAN
143. Information Hiding Using Fractal Encoding
144. Verification of Communicating Reactive State Machines
145. Dynamic Slicing of Programs
146. Semi Supervised Information Extraction Using Hidden Markov Mode
147. Slicing of Synchronous Programs
148. Fast Algorithms for the Modified Discrete Cosine Transform
149. Video Streaming in Wireless Environments
150. Design and Implementation of Traffic Engineering Extensions for OSPF
151. Route Repair in Mobile Adhoc Networks
152. Design of Multi-threaded Label Distribution Protocol for MPLS Emulator
153. Filter Object Framework for MICO - Static Model
154. DSP Based Virtual Private Network
155. Design and Implementation of RSVP-TE over MPLS Emulator
156. TAX: Tree Algebra for XML Implementation
157. Filter Object Framework for MICO - Dynamic Model
158. A Reconfigurable Scheduling Co-Processor
159. A Hybrid Approach to Semi-Supervised Learning
160. Interactive Deduplication using Active Learning
161. Security Issues in Mobile Agents
162. Filter Object Framework for MICO - Dynamic Model
163. Multi-threaded Label Distribution Protocol for MPLS Emulator
164. Traffic Engineering Extensions to OSPF
165. Development of basic TGREP simulator
166. Development of QoS enhancement in VOIP applicationDevelopment of QoS enhancement in VOIP application
167. Building a Distributed Computing Environment in KreSIT
168. Development of an API for using SMS as transport layer.
169. Voice message transfer using Personalised Repository based Speech-Coding techniques
170. Telematic Application - Global Position Aware Vehicle
171. Framework for cascading Payments in P2P
172. Implementation of Virtual Private Database (VPDmechanism for POSTGRES.)
173. Implementation of an ASP based Supply Chain Management System
174. Development of Orchestration Server based on BPEL4WS standard (tentatively named as "ORCSERV").
175. Development of LBX: Low-Bandwidth X
176. Development of Thin LINUX desktop with or without X
177. Source code management (like Rational Clearcase)
178. Grid Computing
179. Linux Clustering
180. A leave planner
181. A software life cycle maintainer
182. Developing wireless components
183. Congestion Window Control
184. Implement SIP call control for voice Telephony.
185. Implement Registration Server and Presence Server for SIP.
186. Implement security framework for P to P file system
187. GNUTELLA client for LINUX
188. Matchmaking website
189. Productivity Enhancement tool for Animation industry
190. Web-based presentation of Soil-biotechnology (SBT)
191. Implementation of Soil-biotechnology(SBT)
192. Semantic WEB
193. E-Commerce related project
194. User Interfaces for Web Applications
195. Exploring XUL as a GUI development kit
196. Business Card Manager
197. PCI Interface to Wireless LAN
198. GUI Front-end for Postgres
199. Low cost affordable raid storage
200. Optimization on postgres optimizer
201. Embedded Systems for Automobiles
202. Document Manager
203. WorkFlow Management System
204. Characterization of JVM
205. Performance Evaluation and Modeling of Servlet Containers
206. MAC Layer Scheduling in Ad-hoc Networks

-------------------------------------------------------------
1. Granite Business management system
2. Virtual classroom
3. Dijkstra algorithm for shortest path
4. Implementation of BPCS-Steganography
5. Job portal
6. Pragmatic general multicast
7. Log browser
8. Online matrimonial system
9. Online health care system
10. Factory management system
11. T-Blogger
12. Online bug tracking and customer support system
13. Online call logging and customer support system
14. E-Banking transaction system and portal for bank officials and customer
15. Online book shop management system
16. Advance vehicle and highway management system
17. Acturial projection system
18. Developing port scanning and detection system
19. Development of simple IP subnet calculator tool
20. College management system
21. Library management system
22. Tax management system
23. Payroll information system
24. Medical management system
25. Vehicles with Intelligent Systems for Transport Automation
26. Advanced public bus transportation system for India
27. Automatic Medicine Announcement System
28. Intelligent Multi-sensor System for Control of Boilers and Furnaces
29. Dedicated Short range road side communication for vehicles
30. Accident prevention system for hairpin bend zone
31. Sequential switching for industrial application
32. RFID based car parking system
33. Intelligent Greenhouse
34. RFID reader enabled mobile with environment alert and mobile tracking
35. Active Learning Methods for Image Retrieval
36. Remote Switching Control System for Home Appliances
37. Real native and persistent layer for Java & .Net
38. Global Insurance Management System
39. A Smart System for Remote Monitoring of Patients and SMS Messaging upon Critical Condition
40. Role Based Access Control
41. Rich Internet Application Using Flux Frame for Managing Workflow in healthcare domain
42. Effective Monitoring of Web navigation using Code Check
43. Customer Support Protocol
44. Online Employee Time Management System
45. Insurance Management System
46. Development of Customer relationship Management System to increase Sales
47. Intelligent Call Routing & Management using IVR in Asterisk Server
48. Human Age Estimation
49. An Intelligent Dictionary Based encoding Algorithm for data compressing for High Speed Transformation Over Internet
50. Motion Detecting System
51. Project Management System
52. Process Monitoring System
53. Web Based help desk
54. Honey Pots- A Security System to Identify Black Hat Community in Networks
55. Water Marking Relational Databases Using Optimization technique
56. Quantum Key Distribution for 3rd party authentication
57. OMR Sheet Reader
a) Multi player strategy game: Project ideas on Visual basic,Java,Database
b) You can develop a speech reponse application using some hardware interface using the Microsoft SAPI SDK
c) You can develop a Microsoft Word like application in VB ( a text editor basically)
d) Timetable generation (user will input subjects, faculty times, class room times) : User will also input subject seriality and topics to be taken for the week
e) CD library management
f) Admission procedure
g) Online passport registeration
h) You can develop a LAN administrator tool (socket programming comes easy in VB) which will monitor application on a LAN and provide functions
i) Voice Mail Systems
j) Computer Telephony Integration
k) Interfacing alphanumeric LCD x using VB
l) Registry Editor
m) NAT
n) honeypots
o) Creation of a DMZ
p) Creation of a sniffer and a port scanner
q) GSM
r) Library Management System
s) Hotel Management System
t) Examination result according to the classes
u) Ice cream parlour management system
v) Pizza hut - account management system
-------------------------------------------------------------

1. E-Campus
2. ERP/CRM
3. Virtual University
4. Flexible Network Monitoring Tool Based on a Data Stream Management System
5. Remote Service Monitor.
6. Desk FM Monitor
7. Verifying Delivery, Authorization and Integrity of Electronic Messages
8. A Utility-Based Incentive Scheme for P2P File Sharing in MANETs
9. Java Dynamic Data Viewer
10. E-learning
11. Satellite Image Processing.
12. Color Image Segmentation
13. File System Workload Analysis
14. E-form Application for Employee Management Using Hibernate Vs JDBC
15. E-Job Card and Timesheet Using Hibernate Vs JDBC
16. IP Spoofing Detection Approach (ISDA) for Network Intrusion Detection System
17. CSI-KNN-based Intrusion Detection System
18. Host Based IDS
19. Voice Over IP
20. Online Video/Audio Conference
21. Anomaly Detection/One-Class Classification Algorithm
22. Anomaly Detection/One-Class Classification Algorithm
23. Intranet Based Email System
24. Automatic Java Media Manager
25. Session Initiation Protocol (SIP) in Java
26. Effective Decision Tree Algorithm
27. A Hackers Approach to Improve the A.I. Behind CAPTCHA
28. Advanced Computer Cluster Architecture
29. Fair and dynamic Bandwidth Distribution Architecture
30. Network based Gaming Server.(NGS)
31. Code Database Servers-A Centralized Compiler Architecture
32. Code Review Tool Using Existing Third Party Implementations
33. Web Application Server Development Using SMS
34. Data Recovery In Ext2 files system and Adding secure deletion to your favorite file System
35. All in One Steganography
36. Design considerations for computer-telephony application programming interfaces and related components
37. Services in Converged Network (Value-Added Services)
38. Peer To Peer Secure Internet Telephony (SIP)
39. Model Checking of Software Components: Combining Java Pathfinder and Behavior Protocol Model Checker
40. Effectively Tuning and Optimizing the Database
41. Soundbox: A Graphical Interface to Digital
42. Directory Retrieval Using Voice Form Filling Online
43. Polyphonic Wizards
44. Incorporating Quality Considerations into Project Time/Cost Tradeoff Analysis and Decision Making.
45. Enhance the Email Performance Through SMTP- New Approach
46. ETHEREAL System
47. Load Balancer in client-server architectures
48. Without packet Reordering dynamic load balancing
49. Without Load Balancing in MANET: Single Path Routing Vs. Multi Path Routing
50. Push Vs Pull: Quantative Comparison for Data Broadcast
51. Graphical Search Engine
52. GSM Based LAN Monitoring
53. Image Restoration
54. Information Retrieval SMS Server
55. LAN Based Bit Torrent
56. Quicklook approach to IDS
57. Generating Windows Presentation Foundation using templates
58. Bypassing Vista USA and correctly launching interactive process from a windows service.
59. CAPTCHA
60. AntiSqlFilter-Blocking SQL Injection Hacker Attacks
61. Java SIP Signaling Comptroller
62. A Text Watermarking Algorithm based on Word Classification and Inter-word Space Statistics & Multi word features
63. Multicast Application and Approach to Security issues using key management
64. Webcam Image Tracker.
65. Human Head Internal Rendering with Mouth and Text To Speech Synthesizer
66. Hybrid Constraint Satisfaction Problem Solver
67. Hybrid Query Expansion
68. Web Based Artificial Intelligence Simulations
69. Circular Target Detection and Pattern Detection
70. Web Attacks Alerter Using Feature Extraction and SNORT
71. Grid Extension Framework for Large Scale Parallel Financial Modeling
72. Investigating Correlation-Based Fingerprint Authentication Schemes for Mobile Devices Using the J2ME technology
73. Secure Mobile Banking & Security Issues
74. Efficient Way To Capturing and sending images and videos from mobile to PC and Vice-Versa
75. Barcode Capture and Recognition for EAN Barcodes Using Cell phone Camera
76. Interactive Multiplayer Mobile Games Using Bluetooth
77. Treating Patients Diabetes Using Mobile and PC
78. Mobile Based Software Inspection
79. Enterprise Mobile Service Platform Using JMS & J2ME
80. A Secure Mobile Agent System Model Based on Extended Elementary Object System
81. Direct Manipulation Technique for Wireless Networking
82. GPRS Traffic Performance Measurements
83. J2ME end-to-end security for M-commerce.
84. Robust Distributed Speech Recognition using Speech Enhancement
85. Hybrid wireless-optical broadband access network (woban): prototype Development and Research challenges
86. Quality of Resilience as a Network Reliability Characterization Tool
87. Handover Keying and its Uses
88. New Adversary and New Threats: Security in Unattended Sensor Networks
89. Wireless Data Traffic Decade of Change
90. Dimensioning Network Links: A New Look at Equivalent Bandwidth
91. Media Handling for Multimedia Conferencing in Multihop Cellular Networks
92. Risk Homeostasis and Network Security
93. Network Anomaly detection and classification via opportunistic sampling.
94. Self-addressable Memory-Based FSM: a Scalable Intrusion Detection Engine
95. Accurate Anomaly Detection Through Parallelism
96. Counting Bloom Filters for Pattern Matching and Anti-evasion at the Wire Speed
97. A Simple and Efficient Hidden Markov Model Scheme for Host-Based Anomaly Intrusion Detection
98. Parallelizing XML Processing Pipelines via Map Reduce
99. Application of Mobile Agent Systems to First Responder Training With Flexibility
100. Advance IP Traceback Scheme
101. An Efficient Algorithm for Virtual-Wavelength-Path Routing Minimizing Average Number of Hops
102. Multi-input Fuzzy Logic Controller for Brushless dc Motor Drives
103. On the Performance of Ad Hoc Networks with Multiuser Detection, Rate Control and Hybrid ARQ
104. Two-Rule-Based Linguistic Fuzzy Controllers
105. A Unified Log-Based Relevance Feedback Scheme for Image Retrieval
106. The Impact of Loss Recovery on Congestion Control for Reliable Multicast
107. Dynamic Location Strategy for Hot Mobile Subscribers in personal Communications
108. Simulation-based Comparisons of Tahoe, Reno, and SACK TCP
109. Network Simulation Creator and Animator/NAM Enhanced Simulation Animation (NS2)
110. MobiNet: A Scalable Emulation Infrastructure for Ad Hoc and Wireless Networks
111. A Robust Spanning Tree Topology for Data Collection and Dissemination in Distributed Environments
112. Estimating Ridge Topologies with High Curvature for Fingerprint Authentication Systems
113. Generation of Reliable PINs from Fingerprints
114. Physical Implementation and Evaluation of Ad Hoc Network Routing Protocols using Unmodi ed Simulation Models
115. A Visualization and Analysis Tool for NS-2 Wireless Simulations: iNSpect
116. Impact of Node Mobility on MANET Routing Protocols Models
117. Dynamic Signature Verification Using Discriminative Training
118. A Fingerprint Orientation Model Based on 2D Fourier Expansion (FOMFE) and Its Application to Singular-Point Detection and Fingerprint Indexing
119. A Signal Processing Module for the Analysis of Heart Sounds and Heart Murmurs
120. A Framework for Distributed Key Management Schemes in Heterogeneous Wireless Sensor Networks
121. Ann Based Control Patterns Estimator For UPFC Used In Power Flow Problem
122. UPFC Simulation and Control Using the ATP/EMTP and MATLAB/Simulink Programs
123. A Simulation Analysis of Routing Misbehaviour in Mobile Ad hoc Networks
124. Simulation Study of BlackHole Attack In MANET: Detection and Prevention
125. Secure Internet Connectivity for Dynamic Source Routing (DSR) based Mobile Ad hoc Networks
126. Maximum Confidence Hidden Markov Modeling for Face Recognition
127. A Statistics Based Design of MAC Protocols with Distributed Collision Resolution for Ad Hoc Networks
128. Power Flow Control with UPFC
129. Scalable Urban Network Simulator
130. Control Setting of Unified Power Flow Controller Through Load Flow Calculation
o managing cash and bank accounts
o General Accounting
o Cost Accounting No multivariate analysis in the activities of the organization
o The chart of accounts, a tool for cost accounting and analysis of multidimensional
o Financial statements and reports from the organizations
o The data warehouse & data mining in the multivariate analysis of financial and accounting information for managing an organization.
o assist in the monitoring, budgeting and financial controlling
o simulation in forecasting systems aid decision making
o Study of "computer literacy" in organization and business Systems

o XML as a tool for integrating information systems
o Studies of quality criteria for information systems management using the approach of TQM
o Design, development of integrated information systems
o The security of information systems in organizations
o Connections vs. Graph Web and accessibility of information
o Design, Development and Implementation of Information Systems such as ERP / MRP / BI: IT systems help to:
• Expertise: SE
• Decision making: DSS
• Management costs: (Standard, ABC)
• Personnel Management: Payroll / salaries / fees (status, contract), social security, insurance (life, health … etc), working time asset management
• Commercial Management
o management of stocks and stores: Cas …
o Management of sales (wholesale and retail)
o Order Management and Procurement
o management of billing
o customer management (CRM)
No vendor management (CRM)
o management of logistics / supply
o management of marketing information
o bar codes and computer systems sales
o Modeling and Optimization in the supply chain (SCM) The implementation of WLAN in organizations and institutions
o VoIP and Wlan: a solution of the future in the landlocked country?
o streaming over WLAN: an opportunity for optimizing bandwidth in a mobile environment
o A comparative study of the prioritization of packets vs. streaming in optimizing bandwidth for multimedia applications
o Study of the responsiveness and interactivity for Internet companies
o Appropriation of ICT in strengthening marketing and sales capabilities: competitiveness,
o ICT and creativity
o The ICT & Competitiveness
o ICT and the effectiveness
o ICT and efficiency
o Studies of open access infrastructure in regional integration and their impact on the economies of countries
o Future developments on multimedia networking web: the case of TV on the Web / mobile phones.
o The standard transmission of VoIP and Video on the Live network
o The educational games Multimedia
o The standards of 3G/4G mobile telephony
o Impact of Technology on 3G/4G integration of information systems Iimplémentation payments by electronic cards in eCommerce.
o Design and development of application of the eCommerce payment électroniquedans
o The electronic payment cards, smart monney
o The security of electronic payments
o The computer systems and electronic payment

o Electronic banking: Opportunities and Challenges
o Legal and Tax Aspects of eCommerce
o eBanking and its evolution into the m-Banking
o The challenges of nomadism in eBanking
o The e / m-commerce and inter-operability systemic convergence technology.
o tele-clearing interbank electronic exchanges
o The electronic signature and legal challenges of eCommerce
o Internet eXchange Point (IXP) and its impact in the management of Internet resources
o E-Marketing, a new Eldorado of the conquest of markets
o The intranet: an EDI system effectively and efficiently in the enterprise
o Intranet and Supply Chain Management (SCM)
o Intranet and financial management (ERP)
o Intranet and staff management (HRM)
o Intranet: the headquarters of the Economic Intelligence (Business Intelligence-BI) and technological convergence.
o Role of Intranet / Internet in disseminating information in real time (Real time systems)
o The ATM (Automatic Teller Machines) in the banking
o Post Service (ATM and POS) and customer service
o Internet service business strategy
o Study on the role of countries of the region in the production of web content
o Challenges and opportunities to appropriate ICT
-------------------------------------------------------------

Consumer-oriented devices and services
Mobile TV and IPTV
Consumer-oriented e-commerce
Smart and digital homes
Wearable devices
Smart consumer appliances
Speech enable appliances
Consumer accessibility appliances and services
Economics of security and protection
Knowledge for global defense
Security in network, systems, and applications
Trust, privacy, and safeness
Business continuity and availability
Cryptography and algorithms encryption
Rapid Internet attacks and network
Applications and network vulnerabilities
System advanced paradigms
Data-centered information systems
User-centric information systems
Pervasive and ubiquitous systems
Mobile learning and communications
Open and distance education systems
Management and control
Digital telecommunications management
Control and monitoring systems
Measurement and management systems
Human/Machine interface and man-in-the-loop control
Energy and power systems control
Self-monitoring, self-diagnosing, self-management systems
Digital analysis and processing
Digital information processing (Voice/Data/Video)
Computer graphics and animation
Virtual reality/3D graphics/Games
Computer modeling/simulation
Graphic/Image/Photo/Hand-writing analysis and processing
Pattern recognition / Computer vision
Natural language processing / robust processing
Speech recognition and processing
Mobile devices and biotechnologies
Robotics/Mobile devices/ Mobile networks
Handled and wearable computing and devices
Vehicular navigation and control
Nanotechnologies/Systems-on-the-chip works-on-the-chip/ Haptic phenomena
Biotechnologies/Bioinformatics/Biometrics/Biomedical systems
Computational biochemistry
Biological data management
Software robustness for digital society
Software as a service
Software specification and design methodologies
Software development and deployment
Programming languages and supporting tools
Patterns/Anti-patterns/Artifacts/Frameworks
Agile/Generic/Agent-oriented programming
Neuronal networks/Fuzzy logic/Temporal logic/ Genetic Algorithms
Reasoning models/Model checking/Modular reasoning/
Program verification/validation/correctness
Embedded and real-time systems
Consumer-oriented digital economics
Online consumer decision support & advertising
Semiotic engineering of online services
Human factors in computer systems
Personal information management
Consumer trust in digital society
Interaction in smart environments
Mobile consumers and interactive spaces
Hedonic and perceived digital quality
Usability, aesthetics, and accessibility
Multimodal and interactive interfaces
Intelligent user interfaces
Government services in the context of digital society
ICT support for collaboration
EKNOW: Information and knowledge management
Knowledge data systems
Linguistic knowledge representation
Knowledge acquisition, processing, and management
Cognitive science and knowledge agent-based systems
Knowledge modeling and virtualization
Context-aware and self-management systems
Imprecision/Uncertainty/Incompleteness in databases
Geographic and spatial data infrastructures
Information technologies
Optimization and information technology
Business process integration and management
Information management systems
Information ethics and legal evaluations
On-demand business transformation
Informational mining/retrieval/classification
Multi-criteria decision theory
Organizational information systems
e-Business, e-Science systems
Decision support systems
Zero-knowledge systems
Expert systems
Tutoring systems
Digital libraries
Databases and mobility in databases
Industrial systems
TELEMED: Telemedicine and eHealth
Telemedicine software and devices
Virtual telemedicine
Wireless telemedicine
Electronic imagery and visualization frameworks
Color imaging and multidimensional projections
Personal, adaptive, and content-based image retrieval imaging
Imaging interfaces and navigation
Medical image processing
Computer vision and resolution
Telemedicine and tele health
Tele pathology and digital imaging
Tele cardiology
Tele rehabilitation
Clinical telemedicine
Internet imaging localization and archiving
Video techniques for medical images
Remote medicine and Internet
Safety in telemedicine
Telemedicine portals

1. INTRUDER ALARM SYSTEM
2. FACE DETECTION USING HSV (BY PERFORMING SKIN SEARCH OF INPUT IMAGE)
3. WIRELESS AUDIENCE POLLING SYSTEM
4. MANAGE PRISONS (CONTROLLING CRIME)
5. PATIENT MONITORING
6. AUTOMATIC AND DYNAMIC GENERATION OF RANDOM IMAGES
7. OPTIMIZATION TECHNIQUES FOR NETWORKS USING COGNITIVE APPROACH
8. SYNCHRONISED TELE MEDICINE USING WAP
9. MULTI-LINGUISTIC PEOPLE SEARCH
10. ATM USING FINGER PRINTS
11. GSM BASED WIRELESS DISTRIBUTED ENERGY BILLING SYSTEM
12. MECHANISMS FOR TEMPORAL PARTITIONING IN THE COMMUNICATION SYSTEM OF AN INTEGRATED ARCHITECTURE AND ASSESSMENT OF PERFORMANCE
13. DATA GUARD - THE ULTIMATE PROTECTOR
14. CONTENT AUTHENTICATION OF DIGITAL IMAGES USING FRAGILE AND SEMI-FRAGILE WATERMARKING TECHNIQUES
15. WEBCAM BASED HUMAN TO MACHINE INTERACTION (WEBCAM MOUSE)
16. VIDEO MINING PATTERN RECOVERY VS. PATTERN RECOGNITION
17. CODE-X FOR SECURE TRANSACTION MANAGEMENT IN A MULTI CLIENT / SERVER TERRA FIRMA
18. RELATIONAL DATA OBFUSCATION
19. TCP MODELLING FOR CONGESTION CONTROL
20. Q-ROUTING IN DYNAMIC NETWORKS USING MOBILE AGENTS
21. SPARE BAND WIDTH ALLOCATION USING RESOURCE MANAGEMENT CELL
22. TOUCH SCREEN BASED SMS IN REAL TIME ENVIRONMENT
23. Development of a user friendly ,feature-rich, practical Appraisal Tracker.
24. Development of a split screen application for the data entry of the shipments.
25. Development of an Interest Calculation system for a retail bank
26. Development of an agent-based information push mechanism
27. Development of a feature-rich, practical online application for the Training and Placement Dept. of the college.
28. Development of a Defect Tracking System
29. Development of a Miles Acquisition System (MAS)
30. Development of a feature-rich, practical online leave management system
31. ONLINE LEAVE MANAGEMENT SYSTEM
32. ONLINE ON-REQUEST COURSES COORDINATION SYSTEM (ORS)
33. BIDDERS' ANALYSIS SOFTWARE FOR A TENDER

BTECH MCA MINI PROJECTS TITLES 2010



JAVA NETWORK BASED PROJECTS

1. REMOTE APPROACH FOR EFFECTIVE TASK EXECUTION AND DATA ACCESSING TOOL
2. ACTIVE SOURCE ROUTING PROTOCOL FOR MOBILE NETWORKS
3. EXCESSIVE DATA ACCUMULATION FREE ROUTING IN ENLARGE NETWORK
4. REALISTIC BROADCAST PROTOCOL HANDLER FOR GROUP COMMUNICATION
5. MULTICAST LIVE VIDEO BROADCASTING USING REAL TIME TRANSMISSION PROTOCOL
6. ADAPTIVE SECURITY AND AUTHENTICATION FOR DNS SYSTEM
7. EVALUATING THE PERFORMANCE OF VERSATILE RMI APPROACH IN JAVA
8. DYNAMIC CONTROL FOR ACTIVE NETWORK SYSTEM
9. EFFECTIVE PACKET ANALYZING AND FILTERING SYSTEM FOR ATM NETWORK
10. MULTI SERVER COMMUNICATION IN DISTRIBUTED DATABASE MANAGEMENT
11. MESSAGING SERVICE OVER TCP/IP IN LOCAL AREA NETWORK
12. EXPLICIT ALLOCATION OF BEST-EFFORT PACKET DELIVERY SERVICE
13. LOGICAL GROUP NETWORK MAINTENANCE AND CONTROL SYSTEM
14. REDUCTION OF NETWORK DENSITY FOR WIRELESS AD-HOC NETWORK USING XTC ALGORITHM
15. DISTRIBUTED NODE MIGRATION BY EFFECTIVE FAULT TOLERANCE

CORE JAVA PROJECTS

1. TOOL FOR BUG TRACKING AND SYSTEM ANALYSIS
2. USER FRIENDLY FRAME BUILDER ENVIRONMENT FOR JAVA SWING
3. ARIFICIAL INTELLIGENCE BROWSER USING JAVA SPEECH API
4. HUB FOR JAVA COMPILATION AND ERROR CHECKING
5. SCATTERED SYSTEM FOR AIRCRAFT MAINTAINENCE
6. MAIL-EXCHANGER USING MULTI TASKING SOCKET
7. DATA SECLUSION IN AUDIO FILES
8. SECURE DATA HIDDING AND EXTRACTION USING BPCS
9. XML BASED GUI TESTING TOOL
10. WRONG METHOD CALL IDENTIFIER
11. JAVA MUSICIAN USING JAVA SOUND API
12. DYNAMIC SIGNATURE VERIFICATION USING PATTERN RECOGNITION
13. BULK SMS GATEWAY – INTEGRA
14. DATA MNIMIZATION AND STORAGE USING XML ENABLE SQL SERVER
15. RETRIVING FILES USING CONTENT BASED SEARCH

J2EE WEB APPLICATIONS

1. DEVELOPMENT OF A FEATURE-RICH, PRACTICAL RESOURCE MANAGEMENT SYSTEM (RMS)
2. E-AUCTION BIDDING AND WATCHING
3. DEVELOPMENT OF A WEB-BASED RECRUITMENT PROCESS SYSTEM FOR HR GROUP OF COMPANY
4. DESIGN AND IMPLEMENTATION OF WORK PLANNER FOR STAFF SCHEDULING
5. DEVELOPMENT OF A WEB BASED CHANGE REQUEST TRACKER SYSTEM
6. MULTI-TIER INTERNET COMPUTING USING JAVA TECHNOLOGY
7. CORPORATE COURSE PLANNING SCHEDULE MANAGEMENT
8. INTERACTING BANKING SYSTEM WITH MOBILE
9. GLOBAL ADVANCED WEB RATING SYSTEM
10. MULTISERVER MAINTENANCE FOR UNIVERSITY MARK DISTRIBUTED SYSTEM
11. IT DOMAIN NAME SYSTEM MAINTENANACE
12. VIRTUAL CLASS ROOM
13. ONLINE WEB SHARE MARKETING SYSTEM
14. ONLINE EXAMINATION SYSTEM
15. GLOBAL INSURANCE MANAGEMENT SYSTEM
16. CITY MAPPING GUIDE
17. GLOBAL JOB PORTAL MANAGEMENT
18. GAS AGENCY MANAGEMENT
19. MOBILE PROXY SERVER IMPLEMENTATION
20. ON-LINE MOBILE VOTING
21. XML ENABLED CROSS DATA MIGRATION


1. CARGO MANAGEMENT

2. CRM FOR AIRLINE INDUSTRY

3. DISTRIBUTED MANAGEMENT SYSTEM

4. E-CARE HELP DESK

5. FLOW WELL AUTOMATION SYSTEM

6. WEB MAILING SYSTEM

7. RESOURCE AND OUTSOURCING

8. CORPORATE RECRUITMENT SYSTEM

9. NETWORK BANKING

10. PROJECT STATUS INFORMATION SYSTEM

11. Secure Stock Exchange System Using Web services

12. TELECOMMUNICATION

13. H.R CONSULTANCY

14. SECURABLE NETWORK IN 3 PARTY PROTOCOLS

15. MULTI TASKING SOCKETS

16. MOBILE EMERGENCY SERVICES

17. BUG TRACKING

18. COMPUTER ASSISTED HUMAN RELATIONS TRACKINGT

19. NET SURVEY SIMULATION

20. ROUTING SIMULATOR

21. AJAX ENABLED ONLINE ORDER PROCESSING SYSTEM

22. BSNL

23. COLLEGE ATTENDANCE SYSTEM

24. DATA CENTRIC KNOWLEDGE MANAGEMENT SYSTEM

25. COMMERCE

26. SOFTWARE METRICS ANALYSIS AND VISUALISATION TOOL

27. HEALTH CENTER MANAGEMENT SYSTEM

28. ONLINE SHOPPING

29. ONLINE EXAMS

30. MOBILE BANKING

31. E-ATTENDANCE

32. E-POST OFFICE

33. CONTENT MANAGER


MINI PROJECT TITLES 2010
DOTNET MINI PROJECT TITLES 2010

1. EXPORT TRACKING SYSTEM
2. ONLINE INTELLIGENCE QUOTIENT TEST
3. A COPERNICOUS MEDICAL SOLUTION
4. DIGITAL ENVELOPES
5. DOWNLOAD ACCELERATOR
6. FINGER PRINT
7. KNOWLEDGE MANAGEMENT
8. Multi-threaded Segmented Download Accelerator using Plug-in Architecture
9. SECURITY FOR POCKET PC
10. STUDENT RESULT PROCESSING
11. TAX NET
12. WAREHOUSE EXECUTOR
13. XML SIGNATURES

ADO.NET WINDOWS APPLICATIONS

1. ACTUARIAL PROJECTION SYSTEM
2. ADVANCED VEHICLE AND HIGHWAY SYSTEMS (AVHS)
3. AUTOMATIC PRAYER TIME VIA SMS
4. BUILDING CONSTRUCTION: COST ESTIMATE SYSTEM
5. CLIENT/SERVER COMPUTING EXAMINATION RESULT INFORMATION SYSTEM
6. DEVELOPING IP ADDRESS MANAGEMENT TOOL (IP MANAGER)
7. DEVELOPING PORT SCANNING DETECTOR PROGRAM
8. DEVELOPMENT OF A SIMPLE IP SUBNET CALCULATOR TOOL
9. ENCRYPTION: SECURE COMMUNICATION USING PUBLIC KEY INFRASTRUCTURE VIA TCP/IP NETWORK PROTOCOL
10. FINANCIAL ANALYSIS DATABASE SYSTEM FOR INVESTMENT DECISION
11. NETWORK PROBLEM NOTIFICATION VIA SMS
12. INVENTORY CONTROL MANAGEMENT
13. VOICE RECOGNITION USING NEURAL NETWORKS
14. UNIVERSITY ADMISSION SYSTEM
15. GENERIC PROJECT MANAGEMENT PORTAL
16. DISPENSARY MANAGEMENT SYSTEM
17. MULTI THREADED SERVER
18. INTRANET MULTI CLIENT CHATTING
19. FINGER PRINT BASED EMPLOYEE ATTENDANCE SYSTEM
20. IMAGE PROCESSING
21. REAL TIME NOSE BRIDGE TRACKING IN PRESENCE OF GEOMETRIC CHANGES
22. TEXT FILE HIDING IN AUDIO(WAV) FILES USING LOWBIT ENCODING STEGNOGRAPHY
23. DISTRIBUTED NETWORK PROCESSOR UTILIZATION
24. REMOTE EXPLORER AND TASK MANAGER FOR CONTROLLING NODES IN LOCAL AREA NETWORK
25. BACKUP AND RECOVERY SCHEDULER AUTOMATION MANAGEMENT
26. NETWORK LOAD BALANCING
27. MULTIPLE FILES PROTECTOR WITH PASSWORD PROTECTION AND CRYPTOGRAPHY SECURITY USING TRIPLEDES ALGORITHM
28. ENHANCED LICENSE MAKER FOR SOFTWARE PROTECTION
29. CYBER EYE
30. TCP-IP BASED PROCESS MONITOR AND CONTROLLER FOR BOTH LOCAL AND REMOTE MACHINES
31. XML CODE EDITOR WITH SYNTAX CHECKER AND SYNTAX COLORING
32. COLLEGE MANAGEMENT SYSTEM
33. MEDICAL MANAGEMENT SYSTEM
34. PAYROLL INFORMATION SYSTEM
35. HOSPITAL MANAGEMENT SYSTEM
36. LIBRARY MANAGEMENT SYSTEM
37. TAX MANAGEMENT SYSTEM
38. DIGITAL IMAGE PROCESSING TECHNOQUES

WEB APPLICATIONS ASP.NET

1. DEVELOPMENT OF A FEATURE-RICH, TRAINING PORTAL APPLICATION
2. DEVELOPMENT OF A FEATURE-RICH, RESUME BUILDER APPLICATION
3. DEVELOPMENT OF A WEB-BASED RECRUITMENT PROCESS SYSTEM FOR THE HR GROUP FOR A COMPANY
4. WEB BASED REWARD POINTS MANAGEMENT SYSTEM
5. ONLINE DISCUSS-FORM
6. DEVELOPMENT OF A FEATURE-RICH, PRACTICAL ONLINE ON-REQUEST COURSES COORDINATION SYSTEM (ORS)
7. REAL-ESTATE MANAGEMENT SYSTEM
8. DESIGN AND DEVELOPMENT OF INSURANCE AGENT'S SAMURAI
9. DEVELOPMENT OF A FEATURE-RICH, PRACTICAL ONLINE SURVEY TOOL (OST)
10. DEVELOPMENT OF A REPOSITORY AND SEARCH ENGINE FOR ALUMNI OF COLLEGE (RASE)
11. DEVELOPMENT OF WEB BASED DOCUMENT VERSION CONTROLLER
12. DEVELOPMENT OF A WEB BASED MEETING SCHEDULER
13. IMPLEMENTATION OF A SIMPLE DEVICE MEDIATION APPLICATION OF A NETWORK MANAGEMENT SYSTEM
14. MULTILEVEL MARKETING MEASUREMENT SYSTEM
15. DESIGN AND DEVELOPMENT OF EQUITY TRADING PORTFOLIO MANAGER
16. DEVELOPMENT OF A CAMPAIGN INFORMATION SYSTEM
17. DEVELOPMENT OF A PRACTICAL ONLINE HELP DESK (OHD) FOR THE FACILITIES IN THE CAMPUS
18. DEVELOPMENT OF A FEATURE-RICH, PRACTICAL ONLINE APPLICATION FOR THE TRAINING AND PLACEMENT DEPT. OF THE COLLEGE.
19. DEVELOPMENT OF A FEATURE-RICH, PRACTICAL RESOURCE MANAGEMENT SYSTEM (RMS)
20. DATABASE ENTERPRISE MANAGER
21. ONLINE JOB PROVIDER AND SEARCH PORTAL WITH ONLINE EXAM MAINTENANACE
22. ONLINE TERMINAL MANAGEMENT SYSETM
23. ONLINE INFORMATION ON WAP
24. CUSTOMER SERVICE PORTAL FOR TOURISUM AND TRAVELS MANAGEMENT
25. HUMAN RESOURCE MANAGEMENT SYSTEM
26. GLOBAL WEB RATING SYSTEM
27. MAILS MANAGEMENT USING SMTP MAIL SERVER
28. ONLINE WEBMART SYSTEM FOR JEWELLERY
29. ONLINE MATERIAL REQISATION, COLLECTION AND STOCK HANDLING MANAGEMENT PORTAL.
30. BSNL SEARCH SERVICE SYSTEM FOR CUSTOMERS AND PILLAR MANAGEMENT FOR SERVICE ENGINEERS.
31. RECURSIVE URL DOWNLOAD MANGER
32. ONLINE BOOK SHOP MANAGEMENT SYSTEM
33. E-BANKING TRANSACTIONS SYSTEM WITH PORTAL FOR BANK OFFICIALS AND CUSTOMERS.
34. ONLINE CALL LOGGING AND CUSTOMER SUPPORT SYETM
35. ONLINE BUG TRACKING AND CUSTOMER SUPPORT SYSTEM
36. FACTORY MANAGEMENT SYSTEM
37. T-BLOGGER
38. ONLINE HEALTHCARE SYSTEM
39. ACCOUNT INFORMATION SYSTEM
40. ONLINE MATRIMONIAL SYSTEM