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
Thursday, November 21, 2013
SelectionSort C Program (DFS)
#include<stdio.h>
#include<conio.h>
int main()
{
int s,i,j,temp,a[20];
printf("Enter total elements: ");
scanf("%d",&s);
#include<conio.h>
int main()
{
int s,i,j,temp,a[20];
printf("Enter total elements: ");
scanf("%d",&s);
Labels:
BCA Semester-3,
C-Programs,
DFS
Subscribe to:
Posts (Atom)