Skip to main content

Seminar Topics(100)

Excellent Seminar/Paper Presentation Topics for Students


Put the desired topic name in search bar to get detail search about the topic.

1. 4G Wireless Systems
2. A BASIC TOUCH-SENSOR SCREEN SYSTEM
3. Artificial Eye
4. Animatronics
5. Automatic Teller Machine
6. Aircars
7. Adding interlligence to ineternet using satellite
8. ADSL
9. Aeronautical Communications
10. Agent oriented programing
11. Animatronics
12. Augmented reality
13. Autonomic Computing
14. Bicmos technology
15. BIOCHIPS
16. Biomagnetism
17. Biometric technology
18. BLUE RAY
19. Boiler Instrumentation
20. Brain-Computer Interface
21. Bluetooth Based Smart Sensor Networks
22. BIBS
23. CDMA Wireless Data Transmitter
24. Cellonics Technology
25. Cellular Positioning
26. Cruise Control Devices
27. Crusoe Processor
28. Cyberterrorism
29. Code division duplexing
30. Cellular Digital Packet Data
31. Computer clothing
32. Cordect WLL
33. CARBIN NANO TUBE ELECTRONICS
34. CARNIVORE AN FBI PACKET SNIFFER
35. CDMA
36. CELLONICSTM TECHNOLOGY
37. CELLULAR NEURAL NETWORKS
38. CELLULAR DIGITAL PACKET DATA
39. CIRCUIT AND SAFETY ANALYSIS SYSTEM
40. CISCO IOS FIREWALL
41. CLUSTER COMPUTING
42. COLD FUSION
43. COMPACT PCI
44. COMPUTER AIDED PROCESS PLANNING (CAPP)
45. COMPUTER CLOTHING
46. COMPUTER MEMORY BASED ON THE PROTEIN BACTERIO
47. CONCEPTUAL GRAPHICS
48. CORDECT
49. CORDECT WLL
50. CRUISE CONTROL DEVICES
51. CRUSOE PROCESSOR
52. CRYOGENIC GRINDING
53. CRYPTOVIROLOGY
54. CT SCANNING
55. CVT
56. Delay-Tolerant Networks
57. DEVELOPMENT OF WEARABLE BIOSENSOR
58. DiffServ-Differentiated Services
59. DWDM
60. Digital Audio Broadcasting
61. Digital Visual Interface
62. Direct to home television (DTH)
63. DOUBLE BASE NUMBER SYSTEM
64. DATA COMPRESSION TECHNIQUES
65. DELAY-TOLERANT NETWORKS
66. DENSE WAVELENGTH DIVISION MULTIPLEXING
67. DESIGN, ANALYSIS, FABRICATION AND TESTING OF A COMPOSITE LEAF SPRING
68. DEVELOPMENT OF WEARABLE BIOSENSOR
69. DGI SCENT
70. DIFFFSERVER
71. DIGITAL AUDIO BROADCASTING
72. DIGITAL CONVERGENCE
73. DIGITAL HUBBUB
74. DIGITAL SILHOUETTES
75. DIGITAL THEATRE SYSTEM
76. DIGITAL WATER MARKING
77. DIRECT TO HOME
78. DISKLESS LINUX TERMINAL
79. DISTRIBUTED FIREWALL
80. DSL
81. DTM
82. DWDM
83. DYNAMIC LOADABLE MODULES
84. DYNAMICALLY RECONFIGURABLE COMPUTING
85. ELECTROMAGNETIC INTERFERENCE
86. Embedded system in automobiles
87. Extreme Programming
88. EDGE
89. ELECTROMAGNETIC LAUNCHING SYSYEM
90. E BOMB
91. E INTELLIGENCE
92. E PAPER TECHNOLOGY
93. ELECTRONIC DATA INTERCHANGE
94. ELECTRONIC NOSE
95. ELECTRONIC NOSE & ITS APPLICATION
96. ELECTRONICS MEET ANIMALS BRAIN
97. EMBEDDED
98. EMBEDDED DRAM
99. EMBEDDED LINUX
100. EMBRYONICS APPROACH TOWARDS INTEGRATED CIRCUITS

Comments

Popular posts from this blog

Turbo C++ for Windows 7 64 bit

 Its a very simple guide to install Turbo C++ on Windows 7 64 bit  operating system. Follow the steps below to install Turbo C++ compiler on your windows 7 ,64 bit operating system. Note - Please let me know whether the process is working for you or if you are getting some kind of error. Step 1) Install the software DOSBOX version 0.73(Search for it in the search bar). Step 2) Create a folder on your C drive, e.g.Turbo; (c:\Turbo\) Step 3) Extract TC into the created folder(e.g. c:\Turbo\);(you can search and download it) Step 4) Run the application DOSBOX 0.73,previously downloaded and installed. Step 5) Type the following commands at the command prompt that will appear, [z]: mount d c:\Turbo\ Following this you will get a message "Drive D is mounted as local directory c:\Turbo\" Step 6) Type d: to shift to d: Step 7) Then type commands mentioned below; cd tc cd bin tc or tc.exe Step 8) In the turbo C++ go to Options\Directories\ Chang

Calculating the average of two numbers using C++

Though this site aims at understanding C language, I am writing a program for you in C++, to have a general idea about C++ too. A program in C++,to calculate the average of two numbers, which are entered by the keyboard while the execution of the program. Try to understand the program; #include &lt iostream &gt using namespace std; int main() {     float num1,num2,average,sum;     cout << "Enter the first number:";     cin >> num1;     cout << "Enter the second number:";     cin >> num2;     sum=num1+num2;     average=sum/2;     cout << "The sum of the two numbers is:"<< sum<<"\n"<<"The average of the two numbers is:" << average; return(0); } Explaination: The new file header used here in this C++ program is the #include . By this , we are asking the preprocessor to add the contents of the iostream file to our program. The program is written in the

Finding the arithmetic operators

Below is a very simple program to find the arithmetic operator. Please feel free to put a comment if need an explanation. #include #include void main()   {     float a1,a2;     char operator;     printf("\n Enter the values of a1 operator a2\n");     scanf("%f%c%f",&a1,&operator,&a2);     switch(operator)      { case '+': printf("%.2f",a1+a2); break; case '-':  printf("%.2f",a1-a2);  break; case '*':  printf("%.2f",a1*a2); break; case '/':  if(a2==0)  printf("error\n");  else  printf("%.2f",a1/a2);  break; default: printf("unknown operatotr\n"); break;      }    }