• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer
projectsgeek

ProjectsGeek

Download Mini projects with Source Code, Java projects with Source Codes

  • Home
  • Java Projects
  • C++ Projects
  • VB Projects
  • PHP projects
  • .Net Projects
  • NodeJs Projects
  • Android Projects
    • Project Ideas
      • Final Year Project Ideas
      • JSP Projects
  • Assignment Codes
    • Fundamentals of Programming Language
    • Software Design Laboratory
    • Data Structure and Files Lab
    • Computer Graphics Lab
    • Object Oriented Programming Lab
    • Assembly Codes
  • School Projects
  • Forum

ProjectsGeek

Help Desk project Web based System

July 6, 2013 by ProjectsGeek Leave a Comment

Help Desk project Web based System

The help desk project provides users with the answers they need for their technical issue. By bringing Help Desk Process to the digital medium and onto computers, finding what you are looking for has never been easier.

Using a web-based Help Desk Process solves problems with expansion and usability over large geographic areas. It also allows field techs or even clients themselves to retrieve up to the minute information regarding their query. Modern Help Desk Process also provides a tracking system, to actively monitor a certain problem area.

The Advanced help desk software was created to deliver a professional help desk management product to service oriented companies. This software have been proven to make customer support up to 3 times faster with half the amount of man power at the same time ensuring the customers are billed correctly. Building up on all of the standard Help desk software available in the market this product achieves superior performance using advanced technologies like AJAX and SQL Server 2008.

Purpose

It is internal project of a software company developed for the sake of Customer to get solved from his problem and also to get the feedback from the customer regarding the problems solution

Scope

This system is an intranet based application can be used with in the organization.

 Help Desk project Web based System Snapshot

tips page
contact us page
product guidelines page
registration Page
feedback page
home page

 Download Help Desk project Web based System 

Help desk Abstract  Click Here
Help desk Project Code  Click Here
 Project Report Download  Click Here

Other Projects to Try:

  1. Help Desk Management System Project
  2. HR Help Desk System Project using Java
  3. Web based Mail Service Client project
  4. Web Based Reporting System Project
  5. Web Based Resource Management System

Filed Under: .Net Projects Download Tagged With: .Net Projects Download

Bubble Sort Code in C Language

July 6, 2013 by ProjectsGeek 1 Comment

Bubble Sort Code in C Language

Write a program in C to sort n integers using bubble sort. Program should ask for number of Elements for sorting and then user need to enter numbers. At the end program should process these numbers and print the result.

Bubble Sort code should have options for both ..

  • Ascending Order sorting
  • Descending Order Sorting

Bubble sort is the most basic and simple algorithm for sorting.It uses loop for sorting numbers,As the number to be sorted increases time to sort also increases.

Algorithm Bubble Sort

Bubble Sort Code in C

Bubble Sort Code

#include <stdio.h>
#include<conio.h>

void main()
{
int array[100], n, i, j, swap;
clrscr();

printf(“Enter number of elements\n”);
scanf(“%d”, &n);

printf(“Enter %d integers\n”, n);

for (i = 0; i < n; i++)
scanf(“%d”, &array[i]);

for (i = 0 ; i < n – 1 ; i++)
{
for (j = 0 ; j < n – i – 1; j++)
{
if (array[j] > array[j+1]) /* For decreasing order use < */
{
swap = array[j];
array[j] = array[j+1];
array[j+1] = swap;
}
}
}

printf(“Sorted list in ascending order:\n”);

for ( i = 0 ; i < n ; i++ )
printf(“%d\n”, array[i]);

getch();
}

 

Other Projects to Try:

  1. Quick sort using recursion
  2. Display Numbers in Ascending Order C language
  3. Mobile User Information Project
  4. Assembly Language Codes
  5. Prims algorithm Code in C Language

Filed Under: Uncategorized

Matrix Operations in C Language

July 6, 2013 by ProjectsGeek Leave a Comment

Matrix Operations in C Language

Write a Matrix Operations program in C to compute addition or subtraction or multiplication of two matrices. Use functions to read, display and add or subtract or multiply the matrices.

Matrix Operations in C Code

 

#include<stdio.h>
#define ROWS 3
#define COLS 3

void readmatrix(int matrix[ROWS][COLS]);

void DisplayMatrix(int matrix[ROWS][COLS]);

void AddMatrices(int matrix1[ROWS][COLS], int matrix2[ROWS][COLS], int result[ROWS][COLS]);

void SubtractMatrices(int matrix1[ROWS][COLS], int matrix2[ROWS][COLS], int result[ROWS][COLS]);

void MultiplyMatrices(int matrix1[ROWS][COLS], int matrix2[ROWS][COLS], int result[ROWS][COLS]);
void main()
{

int md[ROWS][COLS], nd[ROWS][COLS];
int rs[ROWS][COLS];
int ch;
clrscr();
while(1)
{

printf(“Please select operation you wish to do\n”);

printf(“1. Enter fresh input, new matrices\n”);
printf(“2. Add two matrices\n”);
printf(“3. Subtract second matrix from first\n”);
printf(“4. Multiply first matrix to the second\n”);
printf(“5. Exit \n\n”);
printf(“Your Choice: “);
/* Read user’s choice into activity */
scanf(“%d”, &ch);

switch(ch)
{
case 1:

printf(“Please enter first matrix\n”);

readmatrix(md);

printf(“Please enter second matrix\n”);

readmatrix(nd);
break;
case 2:
AddMatrices(md, nd, rs);

printf(“The sum of two the matrices is\n”);

DisplayMatrix(rs);
break;
case 3:
SubtractMatrices(md, nd, rs);

printf(“The difference of the two matrices is\n”);

DisplayMatrix(rs);
break;
case 4:
MultiplyMatrices(md, nd, rs);

printf(“The product of the two matrices is\n”);

DisplayMatrix(rs);
break;
case 5: exit(0);

}
}
getch();

}

void readmatrix(int matrix[ROWS][COLS])
{
int i, j; 

printf(“Please enter a %d * %d matrix\n”, ROWS, COLS);

for(i = 0; i < ROWS; i++)
{
for(j = 0; j < COLS; j++)
{
scanf(“%d”, &matrix[i][j]);
}
}

}

void DisplayMatrix(int matrix[ROWS][COLS])
{
int i, j; 

for(i = 0; i < ROWS; i++)
{
for(j = 0; j < COLS; j++)
{
printf(“%d\t”, matrix[i][j]);
}

printf(“\n”);
}

}

void AddMatrices(int md[ROWS][COLS], int nd[ROWS][COLS], int rs[ROWS][COLS])
{
int i, j; 

for(i = 0; i < ROWS; i++)
{
for(j = 0; j < COLS; j++)
{
rs[i][j] = md[i][j] + nd[i][j];
}

}
}

void SubtractMatrices(int md[ROWS][COLS], int nd[ROWS][COLS], int rs[ROWS][COLS])
{
int i, j; 

for(i = 0; i < ROWS; i++)
{
for(j = 0; j < COLS; j++)
{
rs[i][j] = md[i][j] – nd[i][j];
}

}
}

void MultiplyMatrices(int md[ROWS][COLS], int nd[ROWS][COLS], int rs[ROWS][COLS])
{
int i, j, k; 

for(i = 0; i < ROWS; i++)
{
for(j = 0; j < COLS; j++)
{
rs[i][j] = 0;

for(k = 0; k < COLS; k++)
{
rs[i][j] = rs[i][j] + (md[i][k] * nd[k][j]);
}
}

}
}

 

Other Projects to Try:

  1. Operations on matrices like addition, multiplication, saddle point, magic square ,inverse & transpose
  2. Matrix Operations in C Language
  3. Matrix operations in c language
  4. Matrix Operations with Pointers
  5. Sparse Matrix Operations Code using C Langauge

Filed Under: Uncategorized

String Operations in C Language

July 6, 2013 by ProjectsGeek Leave a Comment

Simple String Operations in C Language

Write a Simple String Operations program in C to perform String operations on strings using library functions

  • Concatenate a string S3 to string S2.
  • Copy a string S3 to another string S2.
  • Find the length of a given string
  • Compare two strings S2 and S3.

Simple String Operations Code

#include <stdio.h>
#include <string.h>
#include<conio.h>
#define MAXLEN 120
void main()
{
char string1[MAXLEN], string2[MAXLEN]; 
char result[MAXLEN]; 
int choice,activity;
int comparison;
clrscr();
while(1)
{

printf(“Enter your choice :\n”);

printf(“1. Enter the strings\n”);
printf(“2. To concatenate a string S2 to string S1\n”);
printf(“3. To find the length of a given string\n”);
printf(“4. To compare two strings S1 and S2.\n”);
printf(“5. To copy a string S2 to another string S1.\n”);
printf(“6. Display S1 and S2.\n”);
printf(“0. Exit \n\n”);
printf(“Your Choice: “);

scanf(“%d”, &choice);

switch(choice)
{

case 1:

printf(“Please enter first string (maximum length %d) \n”, MAXLEN – 1);
flushall();
gets(string1);

printf(“Please enter second string (maximum length %d) \n”, MAXLEN – 1);
flushall();
gets(string2);
break;
case 2:
strcat(string1, string2);

printf(“S1 now is :\n%s\n”, string1);

break;
case 3:
printf(“Please select a string to find length of\n”);

printf(“1. S1\n”);
printf(“2. S2\n”);
printf(“3. New string\n”);

scanf(“%d”, &activity);

switch(activity)
{
case 1:
printf(“The length is %d\n”, strlen(string1));

break;
case 2:
printf(“The length is %d\n”, strlen(string2));

break;
case 3:
printf(“Please enter new string (maximum length %d) \n”, MAXLEN – 1);
scanf(“%s”,result);
printf(“The length is %d\n”, strlen(result));

break;
}
break;
case 4:
comparison = strcmp(string1,string2);

if(comparison < 0)
{
printf(“S1 is lexicographically equal to S2\n”);

}
else if (comparison < 0)
{
printf(“S1 is lexicographically smaller than S2\n”);

}
else
{
printf(“S1 is lexicographically greater than S2\n”);

}
break;
case 5:
strcpy(string1, string2);

printf(“S1 is now :\n%s\n”, string1);

break;
case 6:
printf(“S1 is now :\n%s\n”, string1);
printf(“S2 is now :\n%s\n”, string2);
break;
case 0: exit();

}
printf(“\n\n”);
}
}

 

Other Projects to Try:

  1. Bitwise Operations using C++
  2. String Operations with Pointers
  3. String Operations in C Program
  4. string operations such as Copy, Length, Reversing, Palindrome, Concatenation
  5. Matrix Operations in C Language

Filed Under: Uncategorized

E-Post Office mini project

July 5, 2013 by ProjectsGeek 10 Comments

E-Post Office mini project in Asp.Net

E-Post Office is the postal service Online portal . It sells Postcards, Packets, Stamps, and Cartons and has services like courier etc.This portal has many products and services which can be ordered, that are also available in a normal branch.

E-Post Office is expanded permanently through new products and services in order to offer a product portfolio corresponding to the market. Private customer and business customers can order the selected products of the postal service online quickly and comfortably. E-Services offer new flexibility through e-Packet, the PICKUP order for packages over the Internet as well as the online forwarding order and storage order. For the case of the absence or the move, one can let delegate here the after shipment of the postal service at another address or store the letter shipments. The customers can register themselves and can be served individually.

Administrator of the website is the main user of portal. When the user types in the URL of the website, a Welcome page is shown which has a menu on the left hand side, a banner at the top and any related links to other sites. This site contains an online catalog for the user.

Functional components of the E-Post Office mini  project

Registration Page: In case user is not registered, then registration screen should be available

Letter Order Page: This page  will show different types of letter, which can be ordered, online. Provide an image for each type of letter. On selecting any one of the Letter type, user is shown the columns for the quantity to be entered.. After entering the quantity, price is automatically set by the system based on the product price data. On adding to catalog, kindly check the inventory and take appropriate action.

Catalog Information Page This page contains the information about the orders for the user. It gives total value of the order together with individual items ordered. The validation about user’s credit is made. Credit information can be kept in the database for the sake of simplicity.After order is placed, inventory is updated and shipment entry is made in the database. Once the shipment is done, shipment status is updated.

Stamps and Stamps Order Page This page will show all the types of Stamps with their values and minimum quantity that should be ordered. If possible, provide the image of each of the stamp types. On selecting any one of the Stamp type, user is shown the columns for the quantity to be entered. After entering the quantity, price is automatically set by the system based on the product price data. On adding to catalog, kindly check the inventory and take appropriate action.

Contact Information Page– Contact information regarding the office addresses with phones and faxes are provided on this screen.

E-Post Office mini project 1

 E-Post Office mini project Snapshots

E-Post Office order page
E-Post Office shipping page
E-Post Office home screen
E-Post Office purchase menu
E-Post Office registration
E-Post Office login page

 Download E-Post Office mini project

E-Post Office Abstract  Click Here
 E-Post Office Project Code  Click Here
 Project Report Download  Click Here

Other Projects to Try:

  1. Property Selling online portal mini project
  2. Hospital management System mini project
  3. Shopping Cart mini project in Asp.Net
  4. HTML mini projects with source code free download
  5. 100+ .Net mini Projects with Source Code

Filed Under: Uncategorized Tagged With: .Net Projects Download

Shopping Cart mini project in Asp.Net

July 5, 2013 by ProjectsGeek 16 Comments

Shopping Cart mini project in Asp.Net

Shopping cart is a very important feature used in e-commerce to assist people making purchases online, similar to the US English term ‘shopping cart’.The business-to-consumer aspect of electronic commerce (e-commerce) is the most visible business use of the World Wide Web. The primary goal of an e-commerce site is to sell goods and services online.

E-commerce is fast gaining ground as an accepted and used business paradigm. More and more business houses are implementing web site providing functionality for performing commercial transactions over the web. It is reasonable to say that the process of shopping on the web is becoming commonplace.

Existing System

  • In existing system shopping can done in a manual way, the customer has to go for shopping, and then he is having the possibility to choose the products what ever he wants.
  • It is a time consuming process.
  • Thus, the system has to be automated.

Problems in Existing System

  • In Existing System the Customer is completely depending on the manual process for buying the products.
  • Manual process is a time consuming factor. And when customer approaches for a manual shopping directly, actually he/she does not have an idea about things like, price range, items, etc.,
  • The time which has been spent by the customer in manual shopping can equates to multiple number of shopping. As customer can sit at home and browse in a fraction of seconds.
  • Thus we need to change to a system like “Online Shopping “.

Proposed System

  • Sends receipt to customer
  • Accommodates up to four types of shipping
  • Allows owner to predefine sales tax based a specific state
  • Tracks purchases even if user clicks the back button
  • Tracks each customer by Shopper ID (SID) (does not use cookies)

 Shopping Cart mini project Snapshots

Shopping cart user Interface
Shopping cart new registration
Shopping cart sales person login
Shopping cart add produ

Simple systems allow the offline administration of products and categories. The shop is then generated as HTML files and graphics that can be uploaded to a web space. These systems do not use an online database.

  • A high end solution can be bought or rented as a standalone program or as an addition to an enterprise resource planning program. It is usually installed on the company’s own web server and may integrate into the existing supply chain so that ordering, payment, delivery, accounting and warehousing can be automated to a large extent.
  • Other solutions allow the user to register and create an online shop on a portal that hosts multiple shops at the same time.
  • Open source shopping cart packages include advanced platforms such as Interchange, and off the shelf solutions as Avactis, Satchmo, osCommerce, Magento, Zen Cart, VirtueMart, Batavi and PrestaShop.

Download Shopping Cart Mini Project

Shopping cart Abstract  Click Here
 Project Code Download  Click Here
 Project Report Download  Click Here

Other Projects to Try:

  1. Online Shopping System project Java
  2. E-Gift Shoppy Project with Source Code
  3. Online Shopping System using PHP
  4. 100+ Free Java mini projects with Source Code
  5. Budget Planner-Mini Project in .Net

Filed Under: Uncategorized Tagged With: .Net Projects Download

  • « Go to Previous Page
  • Page 1
  • Interim pages omitted …
  • Page 93
  • Page 94
  • Page 95
  • Page 96
  • Page 97
  • Interim pages omitted …
  • Page 135
  • Go to Next Page »

Primary Sidebar

Tags

.Net Projects Download Android Project Ideas Android Projects Angular 2 Assembly Codes C # Projects C & C++ Projects C++ Projects Class Diagrams Computer Graphics Database Project Data Mining Projects DataScience Projects Datastructure Assignments Download Visual Basic Projects Electronics project Hadoop Projects Installation Guides Internet of Things Project IOS Projects Java Java Interview Questions Java Projects JavaScript JavaScript Projects java tutorial JSON JSP Projects Mechanical Projects Mongodb Networking Projects Node JS Projects OS Problems php Projects Placement Papers Project Ideas Python Projects seminar and presentation Struts

Search this Website


Footer

Download Java Project
Download Visual Basic Projects
Download .Net Projects
Download VB Projects
Download C++ Projects
Download NodeJs Projects
Download School Projects
Download School Projects
Ask Questions - Forum
Latest Projects Ideas
Assembly Codes
Datastructure Assignments
Computer Graphics Lab
Operating system Lab
australia-and-India-flag
  • Home
  • About me
  • Contact Form
  • Submit Your Work
  • Site Map
  • Privacy Policy