Friday, August 31, 2012

Download Application for find Break Even Point

Friends I have made cool application. Which you can find Break Even Point. Just you have to enter and you will get answer faster. download now and do your Homework fast with help of this application.

Fixed Cost:
Variable Cost:
Selling Price:

Monday, August 27, 2012

Download HTML Subject File

If you don't have HTML Syllabus of FYBCA. You can download from this SMITGUIDE site.

Saturday, August 25, 2012

Unit Test BC MCQs Answares

1.       B.            Communication
2.       A.            Change
3.       C.            Variety
4.       B.            Three
5.       B.            Outside
6.       B.            Verbal
7.       A.            Business
8.       C.            False
9.       C.            Words
10.   C.            Literate

Monday, August 20, 2012

Sunday, August 19, 2012

Sanskar Holidays News


( Time Table ) Write a Program that tell you Which Faculty will come today in your Class Room

#include<stdio.h>
#include<conio.h>
void main()
{
int a;
clrscr();
printf("\n\n**********************************************************************");
printf("\n\t\tFind Which Faculty will come Today in you Class.");
printf("\n************************************************************************");
printf("\n\n \t\tMonday \t\t= 1");
printf("\n \t\tThusday \t= 2");
printf("\n \t\tWensday \t= 3");
printf("\n \t\tTeuseday \t= 4");

Wednesday, August 15, 2012

Write a Program to find Minimum and Maximum Number



#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
clrscr();
printf(“Enter Your First Value=”);
scanf(“%d”,&a);
printf(“Enter Your Second Value=”);
scanf(“%d”,&b);
printf(“Enter Your Third Value=”);
scanf(“%d”,&c);

if(a>b && a>c)
{
printf(“Your First Value is Higher”);
}

if(b>a && b>c)
{
printf(“\nYour Second Value is Higher”);
}

if(c>a && c>b)
{
printf(“\nYour Third Value is Higher”);
}

if(a<b && a<c)
{
printf(“\nYour First Value is Minimim”);
}

if(b<a && b<c)
{
printf(“\nYour Second Value is Minimim”);
}

if(c<a && c<b)
{
printf(“\nYour Third Value is Minimim”);
}
getch();
}