If You Are From The 09 Batch Then Read This >>

This Site is created for the Bharati Vidyapeeth's BCA 09 Batch..and hence everyone from you are requested to send your email ID at abhilash238650@gmail.com..Owner will send you a request to your Email-ID and after accepting it even you can post your views, day to day experiences and class works on this blog.
Visit owner's blog at
www.bloggerabhilash.info

Friday, February 10, 2012

This is the PJ time
where do you find mangoes.......?????


Mango tree.....???? Fruit shop......??????





********NO*********














where ever WOMEN goes peeche peeche MANgoes....!!!



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



A scientist disconnected his doorbell......!!!




why.....????




because.........








he wanted to win the NO-BELL prize...........!!!!



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



What is the opposite of NAAGPANCHAMI................?????
















NAAG-DONT-PANCH MI...........!!!!

Wednesday, January 18, 2012

Basic of C language

Every C program is made of function and every function consist of instructions called statement.


Structure of C Program.
#include //stdio.h is the header file
main() // main function is the first function which is executed by a C program.
All C statements are written within main function.
{
// All C statements.
}




Functions
Every C program consists of one or more modules called functions. One of the functions must be called main( ).
The program will always begin by executing the main function, which may access other functions.
Any other function definitions must be defined separately, either ahead of or after main.
A function name is always followed by a pair of parenthesis, namely, ( ). And all function statements are enclosed within a pair of braces { }.


Example of C program to calculate area of circle:

#include
#include
void main()
{
float a;
int r=2;
float pi=3.14;
a=pi*r*r;
printf("%d",a);
getch();
}


# is the preprocessor directive which commands that the content of file should be included at the time of compilation.

< stdio.h> and is the header file which contains all input and output functions like scanf(), printf() which are frequently used in c programs.
main() is the first function which is executed by a C program.


1. float a and int r=2. This statement declares 2 variables a and r of type integer and float. r has been assigned a value of 2.

2.float pi=3.14 -> this statement declare pi as float and value 3.14 has been assigned to it.

3. a = pi * r *r; -> This statement computes the area of circle and assign it to variable a.

4. printf("%f",a); -> This statement prints the area of circle using printf function.

5. getch(); -> It is used to get character from user.

Monday, January 16, 2012

New Time Table of Semester -6 !!!

Monday (AT 9 O CLOCK): 

MCM
MCM
E-COMM
CPD
ISA-2
ITES

Tuesday:

COMP LAB
ITES
ISA-2

Wednesday (AT 9 O CLOCK):

MCM
MCM
ISA-2
ITES
CPD
E-COMM

Thursday (AT 9 O CLOCK):

PROJECT LAB
CPD
E-COMM

Friday:

CPD
E-COMM
ISA-2
ITES

Sunday, January 15, 2012

MAHARASHTRA MCA CET

For all the students who wants to opt for Maharashtra MCA CET examination in the year 2012 can go on the following links and can check out the information:


Thursday, January 12, 2012

VB tutorial

Do…loop is used to execute a block of statements for indefinite number of times. There are several variations of Do...Loop statement.
Each variation evaluates a numeric condition to determine whether to continue execution or not.
Syntax:
Do While
statements…
Loop
Note that:
1.When Visual Basic executes Do While loop, it first tests condition.
2.If condition is False (zero), it skips past all the statements.
3.If it's True (nonzero), Visual Basic executes the statements and then goes back to the Do While statement and tests the condition again.
Example:
Do While count<=5
count = count + 1
Loop
Here loop increments the value of count until it becomes equal or less than 5.
Another variation of Do...Loop statement executes the statement first and then tests condition after each execution. This variation guarantees at least one execution of statements.
Syntax:
Do
Loop While

Thursday, November 3, 2011

Download from this site-

https://rapidshare.com/files/3165641725/practical_exam.zip

Wednesday, September 21, 2011

Data Flow Diagram.




WHAT IS DFD
The Data Flow Diagram is commonly used also for the visualization of structured design data processing. The normal flow is represented graphically. A designer typically draws context level DFD first showing interaction between the system and the outside entities. Then this context level DFD will then be exploded in order to further show the details of system being modeled. A data flow diagram (DFD) is a graphical representation of the "flow" of data through an information system, modelling its process aspects. Often they are a preliminary step used to create an overview of the system which can later be elaborated. DFDs can also be used for the visualization of data processing.A DFD shows what kinds of data will be input to and output from the system, where the data will come from and go to, and where the data will be stored. It does not show information about the timing of processes, or information about whether processes will operate in sequence or in parallel.

RULES OF DFD
  • Each process must have a minimum of one data flow going into it and one data flow leaving it.
register claim

  • Data in data stores must be used (data shown flowing out) otherwise there is no reason to store it. Data must also be updated (new data shown flowing in) otherwise it will be obsolete and will not have been updated by the system.
claim form

  • A data flow out of a process should have some relevance to one or more of the data flows into a process.

action claim

    • Data stored in a system must go through a process.
    • Data cannot be filed directly from an external entity (terminator) or retrieved directly by an external entity. This would be classified as a breach of security! A person or business outside another business should not have direct access to another business's filing system.



    claim form
    claim decision


      • Similarly, filing systems within an organisation cannot logically communicate with one another unless there is a process involved.One data store cannot have a direct link to another data store.
      valid claim form

      • All processes in DFDs must be linked to either another process or a data store. A process cannot exist by itself, unconnected to the rest of the system.


      ergister claim form


      Sample DFD of cyber cafe management

      Just Type The Keyword To Search Your Answer -- >>