Tuesday 12 April 2011

Pert Chart

Pert chart is one of important component of design phase required by almost all project, External examiner do give their emphasis on ER diagrams,Pert chart, Gantt Chart.This charts does enhances your black book contents and one score marks with an elegant designs phase. 
Sample Pert-chart:


Pert Chart
Today i provide you with Pert Chart .sdr file, I assume that you have some knowledge about pert chart and its making, one can easily edit this sdr as per their requirement.


Click here Pertchart.sdr 
See also : Gantt chart


Predecessor Table For Pert chart one can use this for Black Book

This is the table that involves the various activities involved and the time estimated per activity.
Table: Predecessor Table
Activity
Number.
Activities
Must be preceded by
Estimated Time Days
A
Study of basic VB. Net and .Net framework fundamentals
-
23
B
Study of Speech API working and implementation
A
53
C
Study basic web browser working and fundamentals
-
10
D
Existing System Study
B,C

8
E
Fact finding & interview
D
4
F
Module specification of proposed system
E
14
G
 Software requirement system.
F
6
H
Feasibility Study
G
6
I
System Design
H
14
J
Development
I
29
K
Testing
J
10
L
Implementation
K
4
M
Final Documentation
K
10

sample pert chart

Sunday 3 April 2011

Black book default format by Mumbai University



Page 1.  TITLE OF THE PROJECT 
Page 2.  CERTIFICATE (if you are preparing project in any company then you 
should attached the company certificate also) 
Page 3.  ACKNOWLEDGEMENT 
Page 4.   PREFACE  
Page 5.  INDEX (TABLE OF CONTENT)


Black book with golden embossing format)
PROJECT  REPORT 
ON 

(Title of your Project) 

PROJECT WORK SUBMITTED IN PARTIAL 
FULFILLMENT OF THE REQUIREMENTS 
FOR THE AWARD OF THE DEGREE OF 
B.SC. (INFORMATION TECHNOLOGY) 
SUBMITTED BY 
NAME :(Your Name/s in Capital Letter) 
     
    REG.No:______________ 
                 
PROJECT GUIDE 
        (PROJECT GUIDE NAME) 

UNIVERSITY OF MUMBAI


INSTITUTE OF DISTANCE AND OPEN LEARNING 
UNIVERSITY OF MUMBAI 
ACADEMIC YEAR 
2010-11 

UNIVERSITY OF MUMBAI 
INSTITUTE OF DISTANCE AND OPEN LEARNING 

BONAFIDE CERTIFICATE
NAME  : ______________________________ 
REG.NO  : ____________ 
Title  : _______________________________
This is certify that Project________________________________ (title) is a bonafide 
work done by  _________________________________________(Name) in partial fulfillment of 
the requirements for the B.Sc. (Information Technology) degree during the   academic year 
2010-2011 is the original work of the Candidate. 

              CO-ORDINATOR

INTERNAL EXAMINER                                                                              EXTERNAL EXAMINER 
PLACE  : 
DATE   :


ACKNOWLEDGEMENT

I express my sincere thanks to the Professor -cum- Director, Institute of 
Distance and Open Learning, University of Mumbai who has given me the 
opportunity  to pursue my B. Sc ( Information Technology) also express my 
thanks to CO-ORDINATOR  and other staff of the I.T.  Section, IDOL. 
 I would like to thanks my guide (Name : _________________________)  
for his encouragement and guidance, which helped me in completing the project.   
Finally I would like to thank my colleagues and friends who helped me 
in completing the Project successfully. 

Name     :   ________________ 
REG.NO  :  _________________ 


MINIMUM REQUIREMENT OF THE CONTENTS ARE 


INDEX 
TABLE OF CONTENTS
               
 Sr. No  Contents                                                                                 Page No.
               
          1. INTRODUCTION 
          2. SYSTEM ANALYSIS AND DESIGN                                           
          3. SYSTEM PLANNING      
          4. SYSTEM DEVELOPMENT LIFE CYCLE                      
          5. DATA-DICTIONARY – TABLES AND DESCRIPTION        
          6. TESTING              
          7. CODING                     
          8. SCREENSHOTS         
          9. CONCLUSION             
        10. BIBLIOGRAPHY

Note:Below is Certificate provided my college it varies form college to college and All contents provided in this post are subjected to changes.


Certificate of Approval



This is to certify that project entitled Project Title Undertaken at Thakur College of Science & Commerce by Your Name Seat No. _______ and Mr. Project Partner Name if any Seat No. _________ in partial fulfillment of B. Sc. (IT) degree (Semester VI) Examination had not been submitted for any other examination and does not form of any other course undergone by the candidate.
It is further certified that he has completed all required phases of the project.


 ____________                                                                     ___________
External Examiner                                                                                             Internal Examiner




______________
Signature
HOD / In-Charge / Coordinator






SOCKET PROGRAMMING

Socket programming and Rmi programming is important part of Internet Technology, Its weight-age is about 16-24 marks with each question for 8 marks is fixed. One can easily score good marks in I.T by practicing Socket and Rmi Programs.
Note: All Rmi and Socket Programs are almost same only the logical part changes i.e 95% of all your programs is same coding that is a real advantage for students.

Here are the Few samples:
TCP Socket:
Client side

import java.net.*;
import java.io.*;

class EchoClient
{
public static void main(String[] args) throws Exception
{
Socket sock = new Socket("127.0.0.1",1099);
BufferedReader kbin = new BufferedReader(new InputStreamReader(System.in));
BufferedReader in = new BufferedReader(new InputStreamReader(sock.getInputStream()));
PrintStream out = new PrintStream(sock.getOutputStream());
while(true)
{
System.out.print("Enter a msg : ");
String msg = kbin.readLine();
out.println(msg);
if(msg.equals("bye"))
break;
System.out.println(in.readLine());
}
sock.close();
}
}
Server Side:

import java.net.*;
import java.io.*;

class EchoServer
{
public static void main(String[] args) throws Exception
{
ServerSocket ss = new ServerSocket(1099);
while(true)
{
Socket sock = ss.accept();
BufferedReader in = new BufferedReader(new InputStreamReader(sock.getInputStream()));
PrintStream out = new PrintStream(sock.getOutputStream());
while(true)
{
String msg = in.readLine();
if(msg.equals("bye"))
break;
out.println("Server says : "+msg);
}
sock.close();
}
}
}

Rmi(Remote Method Invocation):Program for String Reverse

Create Interface
import java.rmi.*;

public interface strrev extends Remote
{
String rev(String ip) throws RemoteException;
}
Implementation
import java.rmi.*;
import java.rmi.server.*;

public class strrevimpl extends UnicastRemoteObject implements strrev 
{
public strrevimpl() throws RemoteException
{
super();
}
public String rev(String ip) throws RemoteException
{
StringBuilder sb = new StringBuilder(ip);
String s = (sb.reverse()).toString();
return(s);
}
}
Client Side


import java.rmi.*;

class  strclient
{
public static void main(String ar[]) throws Exception
{
strrev sr = (strrev)Naming.lookup("rmi://localhost/strreverse");
System.out.println("Reverse of hello is : "+sr.rev("hello"));
}
}
Server Side


import java.rmi.*;

class strserver
{
public static void main(String ar[]) throws Exception
{
strrevimpl s = new strrevimpl();
Naming.rebind("rmi://localhost/strreverse",s);
System.out.println("Object successfully created");
}
}

This were the sample programs one can contact me if any doubt or for rest of programs if required.

Saturday 2 April 2011

CRM NOTES

  Here is CRM (Customer relationship management) chapter wise notes:


Chapter 1: Introduction
Chapter 2: E-CRM
Chapter 3: Sales Force Automation(SFA)
Chapter 4: Enterprise Marketing Automation(EMA)
Chapter 5: Call Center



GANTT CHART SAMPLES

There are many types of Gantt Chart one can design for project work, I assume that you know what is Gantt Chart has how much important it is for your final year project work.
As said, I have upload the .sdr file(smart draw file) of Gantt Chart.You can edit it with a smart draw application as per your project work and save it as image file for your black book.




Friday 1 April 2011

C# exclusive Solutions

This the C# programs solution from March-2004 to March-2008, was provided by Sir, Taught of sharing with every one.Hope it prove to be help full.

Click here- C# QP(program solution).

will be updating more contents soon. 

Black book Documentation

Here are the some of the sample documents for black book on the basis of it one can make their Black book,Along with black book ill be posting some of the .sdr files required in design phase which i know it is very hectic to make,So to reduce your work one can download smart draw software to edit the .sdr files as per your requirement no need to make from the scratch.

Click here - Sample_MyBlackbook , Myblackbook_2 (exclusive)

This is the black book created by me and my group partner.one can use it for guidance and can download it with your Google account.The advantage you get is that you can edit it as per your need which reduce lot of work load.

As said soon ill be uploading editable subparts of black book.
So do subscribe for free notification.
For any assistance one can mail me at ssujay11@gmail.com.

Related Posts Plugin for WordPress, Blogger...