Thursday, March 27, 2014

IMP System Analysis & Design Questions for Internal Exam

SDLC Plan :
1. Planning
2. Analysis
3. Design
4. Implementation
5. Support & Security

IT Departments :
1. Application Development
2. Support & Security
3. Database Administrator

Thursday, March 20, 2014

Assignment 3: Questinos & Answer upto 122 ( Operating System )

1.
--> cal

2.
--> date -A4

3.
--> date -B2

4.
--> date

5.
--> date "+%d-%B-%y"

6.
--> echo -e "Mer Maitri"
    printf "Mer Maitri\n"

Saturday, March 8, 2014

Assignment 1: System Analysis & Design with ANSWER

1. Explain SDLC Life Cycle Modal.

2. Explain different type of Information System.

3. Explain main reason for System Project.

4. Explain the Factors which are affect System Project.

5. What is Physicality Study? Explain in details.

6. Write and explain steps for Preliminary Study?

7. Explain Rapid Application Development Method (Advantages & Disadvantages)

8. What are the Fact Finding Techniques? Explain the steps of Interview.

9. Explain Other Fact Finding Techniques with example.

10. What is Data Flow Diagram? List out the notation for DFD.

11. Explain Guideline for drawing Data Flow Diagram with proper example.

12. Draw Level 1 Diagram for Stock Management System for Gift System.

Tuesday, February 4, 2014

Tuesday, January 21, 2014

Write last 6 PHP Programs for File

<?php

    $email="example@gmail.com";
    echo "Domain: ". strstr($email,"@");
    echo "<br>Username :". strstr($email,"@",true);
?>

   
NEXT PROGRAM :
 

<?php
    
    $mobile ="+91723456789";
    echo "<br>C Code :". substr($mobile,0,3);
    echo "<br>M No :". substr($mobile,3);
?>


Saturday, January 4, 2014

First 4 Console Applications in VB.NET

Module Prog1

    Sub Main()

        Dim a, b As Integer
        Dim ans As Decimal

        Console.WriteLine("Enter First Value")
        a = Console.ReadLine()

        Console.WriteLine("Enter Sec Value")
        b = Console.ReadLine()

        ans = a + b
        Console.WriteLine("Your Addition Ans = " & ans)

        ans = a - b
        Console.WriteLine("Your Subtract Ans = " & ans)