Sunday, September 28, 2014
Sunday, August 24, 2014
Thursday, May 8, 2014
Monday, April 21, 2014
Tuesday, April 15, 2014
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
1. Planning
2. Analysis
3. Design
4. Implementation
5. Support & Security
IT Departments :
1. Application Development
2. Support & Security
3. Database Administrator
Labels:
BCA Semester-4,
SAD
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"
--> cal
2.
--> date -A4
3.
--> date -B2
4.
--> date
5.
--> date "+%d-%B-%y"
6.
--> echo -e "Mer Maitri"
printf "Mer Maitri\n"
Labels:
Assignment,
BCA Semester-4,
OS
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.
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.
Labels:
BCA Semester-4,
SAD
Monday, March 3, 2014
Sunday, March 2, 2014
Thursday, February 27, 2014
Tuesday, February 18, 2014
Saturday, February 15, 2014
Advance Windows Programming Assignment 1 with Answer
1. Write a console application that implements all arithmetic operation ( Take input from user )
2. Write a console application that merge First Name, Middle Name & Last Name ( Take input from user )
3. Write console application that takes input from user and check weather its is divisible by 7 or not.
4. Write a windows application that create a simple calculator have functionality of backspace.
5. Write windows application that implements Login & Signup. ( 3 maximum Login attempts, Include necessary Validation)
6. Write a windows application that implements MDI form and splash screen. (code yourself )
2. Write a console application that merge First Name, Middle Name & Last Name ( Take input from user )
3. Write console application that takes input from user and check weather its is divisible by 7 or not.
4. Write a windows application that create a simple calculator have functionality of backspace.
5. Write windows application that implements Login & Signup. ( 3 maximum Login attempts, Include necessary Validation)
6. Write a windows application that implements MDI form and splash screen. (code yourself )
Labels:
BCA Semester-4,
VB.NET
Thursday, February 6, 2014
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);
?>
$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);
?>
Labels:
BCA Semester-4,
PHP
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)
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)
Labels:
BCA Semester-4,
VB.NET
Subscribe to:
Posts (Atom)