Tuesday, December 25, 2012

C - Structure : 3 Students Marksheet


#include<stdio.h>
#include<conio.h>

struct std
{
char nm[10],dep[10];
int t,id;
float p;

Sunday, December 23, 2012

WD CSS Attributes



CSS Attributes
Font Attributes:

Font-Size
To define size of font (10pt, 20pt)(pt=points)
Font-Style
To define font style (Italic, normal)
Font-weight
To define font weight (100, 200, and 300, bold...)
Font-Family
To define font family (Arial, Vardana, Calibri etc.)

Saturday, December 15, 2012

Semester 2 Computer Organization Syllabus



KSKV KACHCHH UNIVERSITY
BCA201- COMPUTER ORGANIZATION

MODERN COMPUTER ORGANIZATION                                                            (20%)
Introduction , Man and computing, User and computer, Computer Organization, Main Memory, CPU operation J Interrupt Concept, Bus Concept, Computer Types, Booting sequence.

BCA Semester 2 Advanced Programming with C Syllabus

5%
Error Editing
-          Concept of Debugging
-          Finding Errors in Programs
-          Error codes & Managing
-          Various Debugging option in Turbo C
-          Compiler
70%
Programming in C
Language
-          Storage Class

Sunday, December 9, 2012

WAP to compare two Strings 43


#include<stdio.h>
#include<conio.h>
void main()
{

WAP to find largest value from Matrix using UDF 49


#include<stdio.h>
#include<conio.h>
void max();
void main()
{

WAP to find Transpose of Matrix 38


#include<stdio.h>
#include<conio.h>

main()
{
int i,j,k,a[3][3],b[3][3],c[3][3];
clrscr();

WAP to take input from user reverse it and check its Palindrome or Not 42


#include <stdio.h>
#include <conio.h>
 
main()
{
   int n, reverse = 0, temp;

WAP to print 1234... pattern 31


#include<stdio.h>
#include<conio.h>
void main()
{
int a,n,i,j;
clrscr();

WAP to print numbers which divided by 6 but divided by 4 also count them 46


#include<stdio.h>
#include<conio.h>
#define p printf
#define s scanf

void main()
{

WAP to count Upper case and Lower case from Array 40


#include<stdio.h>
#include<conio.h>
#include<string.h>

void main()
{
char sen[100];

WAP to sort integer array in Descending and Ascending Order 36


#include<stdio.h>
#include<conio.h>
#define p printf
#define s scanf

void main()
{

WAP that sort integer array in Ascending order 35


#include<stdio.h>
#include<conio.h>
#define p printf
#define s scanf

void main()

WAP to find X power without using Power Function 34


#include<stdio.h>
#include<conio.h>
#define p printf
#define s scanf

void main()
{

WAP to print pattern 32


#include<stdio.h>
#include<conio.h>
void main()
{
 int i,j,n;
 clrscr();

WAP to print pattern 30


#include<stdio.h>
#include<conio.h>
void main()
{
  char a=122;
  int i,j;

WAP to print Az By Cx Dw Series 29


#include<stdio.h>
#include<conio.h>

void main()
{
char i,j;

WAP to print Armstrong Number 27


#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,i,rem,sum=0,n;
clrscr();

WAP to print Prime Number between two number 26


#include<stdio.h>
#include<conio.h>
void main()
{
int a,c=0,i,n;
clrscr();

WAP to print Decimal to Binary 25


#include<stdio.h>
#include<conio.h>
void main()
{
long int no,rem=0,base=1,number=0,i;
clrscr();

WAP to print Pascal's Triangle 24


#include<Stdio.h>
#include<conio.h>

void main()
{

int a[20][20],i,j,n;
clrscr();

Saturday, December 8, 2012

WAP to Create Simple Calculator


#include<stdio.h>
#include<conio.h>
void main()
{
            int a,b,c,k;
            clrscr();
           
            printf("1 for Addition\n2 for Substract\n3 for Multiplication\n4 Devision");
            printf("\n\nEnter Your Choise : ");
            scanf("%d",&k);

WAP to print reverse it and check number is Palindrome or Not

#include<stdio.h>
#include<conio.h> 
main()
{
   int n, reverse = 0, temp;
 
   printf("Enter a number to check if it is a palindrome or not\n");
   scanf("%d",&n);
 

WAP to print Prime Factor entered Number

#include<stdio.h> 
#include<stdio.h>
 
main()
{
   int n, i = 3, count, c;
 
   printf("Enter the number of prime numbers required\n");
   scanf("%d",&n);

Friday, November 30, 2012

Download C Materials by Vilpa Mam

Download C Programming Language's important notes given by Vilpa Mam. There is total 7 documents. I have uploaded on this SMIT GUIDE Blog. If you want to read that important then download all the files from below given links. These all file in .doc format so it will open in Microsoft Word Application.

Sunday, November 25, 2012

Saturday, November 24, 2012

Download C Lab Assignment 2

Yesterday Keval sir gave new C assignment 2. which is including total 20 new programs. Submission date haven't decided. Get from here. Answer will early comes in short period.


Wednesday, November 21, 2012

Download Maths Homework +

So, Finally students decide to complete theirs Maths home. Boys always do theirs tack around finale date of submitting that's fact. After getting phone calls on mobile everybody asking about Homework "Did you done?" same question. I also completed my homework in this last week.

Sunday, November 4, 2012

Download all C Lab Programs

Friends I have got all the our C lab programs and I'm uploaded here. Which we ware doing in C lab all the programs included in this file. Download that file now.


What to Do:
1. This File archived in .rar format.
2. Download it and store in your PC (Computer)
3. Right Click on file and select Extract File.
4. Total 95 programs are included. Have a fun.

WAP to Print Addition of Two Matrices(Matrix)



#include<stdio.h>
#include<conio.h>
void main()
{
int a[3][3],b[3][3],c[3][3],i,j;
clrscr();
printf("\nEnter value of matrix-1\n");
for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
{
printf("A[%d][%d] is ..",i,j);
scanf("%d",&a[i][j]);

Download C Language Internal Test Paper

Wednesday, October 31, 2012

WAP to Print FIBONACCI SERIES 1,1,2,3,5,8,13,21....


/* Fibonacci Series,1,1,2,3,5,8,13,21........*/
#include<stdio.h>
#include<conio.h>
void main()
{
int temp=0,i,n,a,b;
clrscr();
printf("\nEnter Number where you want to stop: ");

Friday, September 28, 2012

How to use Array Statement simple trick


#include<stdio.h>
#include<conio.h>
void main()
{
int i,a [5];
clrscr();
printf("Enter Velue");

for(i=0; a<=5; i++)
{
scanf("%d",&a[i]);
}

printf("Elements of Array");

for(i=0; a<=5; i++)
{
printf("\nA[i], %d",i, a[i]);
}
gethc();
}

Homework Define: Array 5-Times

Array is fixed size sequenced collection of elements of same type.

Note:
-Array is use to handle large amount of data
-Is collection of elements of same data type.

Syntax: How to declared Array Variable
data_type variable_name [size];
int a [5];
- It can be used with all the data type.
* float a [5];
* char a [5];
* double a [5];

- Index of Array always start from 0

Wednesday, September 26, 2012

Accountancy Assignment

Submission Date: 06/10/2012

Questions:

1. What are Final Account? State the object of preparing Final Account.
2. Page Number 324
    Illustration Number : 11, 12, 13, 14, 15, 16

Sunday, September 23, 2012

All C-Programs are Available

Assignment Submission Date 24/09/2012
(Program 7 is not have been declared)


Program 7

Program 9 Co-Ordinates X and Y


#include<stdio.h>
#include<conio.h>
void main()
{
int x,y;
clrscr();
printf("enter value of X:");
scanf("%d",&x);
printf("enter value of Y:");
scanf("%d",&y);

Program 8 Check Triangle or Not


#include<stdio.h>
#include<conio.h>
void main()
{
float a,b,c,A,d;
clrscr();
printf("enter value of first angel A:");
scanf("%f",&a);
printf("enter value of second angel B:");
scanf("%f",&b);

Program 4 Display Price Table



#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("Name\t\tcode\t\t\tPrice\nFan\t\t 67831\t\t\t 1234.5\nmotor\t\t 450\t\t\t 5789.70");
getch();
}

Program 6 Display Month Name


#include<stdio.h>
#include<conio.h>
void main()
{
int m;
clrscr();
printf("enter number of a month");
scanf("%d",&m);

Program 3 Electric Circuit


#include<stdio.h>
#include<conio.h>
void main()
{
float l,r,feq,c;
clrscr();
printf("enter value of L:");
scanf("%f",&l);
printf("enter value of R:");
scanf("%f",&r);

Program 2 Inventory Management



#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
long int dr,sc,hc,a,b,eoq,tbo;
clrscr();
printf("enter value of Demand rate");
scanf("%ld",&dr);

Program 1 Distance Travelled


#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
float U,A,T,distance,a,b;
clrscr();
printf("enter value of U:-");

Program 10 Check Character, Number or Digit


#include<stdio.h>
#include<conio.h>
void main()
{
char ch;
clrscr();
printf("enter value of charecter:");
scanf("%c",&ch);
if(ch>=65&&ch<=90)
{
printf("this is capital letter alphabet");

Program 5 Create Simple Calculator


#include<stdio.h>
#include<conio.h>
void main()
{
int c,a,b,ch;
clrscr();
printf("Enter number of a A=");
scanf("%d",&a);
printf("Enter number of a B=");
scanf("%d",&b);
printf("\t1.Addition\n\t2.substraction\n\t3.multiplication\n\t4.devesion\n");

Saturday, September 22, 2012

Assignment Computer Fundamental & PCs Software


Theory Assignments                                                     Submission Date:  28/09/2012

    1. Explain MOVE, COPY CON commands of DOS
    2. What is Primary Memory?
    3. Explain various type of available in Keyboard
    4. State use of MICR ( Magnetic Ink Character Recognition )
    5. State limitation of OCR (  Optical character recognition )
    6. Give Advantage and Disadvantages of Web-Camera
    7. State application of Dot Matrix printer
    8. Give advantages and Disadvantages of Inkjet printer
    9. What is utility software? Give 2 Example of it
    10. How does MFD work?
    11. Define: Macro
    12. Explain find and replace facility of MS-Word
    13. Explain Hyperlink facility of MS-Word
    14. Explain Header-Footer facility of MS-Word
    15. Explain PROMPT,VER commands of DOS
One more thing pay attention here You have to write this assignment in New 200 Page Notebook.

Friday, September 21, 2012

C - ASCII TABLE




A             -              Z               65           -              90
  A             -              z              97           -              122
0              -              9              48           -              57


Subscribe SMIT Blog via SMS



Now, we have another way to stay connected with SMIT Guide Blog. You all are using mobile so we have started new SMS service which will get you update with blog news exe. If SMIT Blog published any new post as soon as you will get message in your mobile. Which good to keep update. So how to subscribe Blog channel follows below steps for subscribe.

1.      One way is click on below link. It will as you “Would you like to subscribe to the channel SMIT_GUIDE?” Click on YES button.


Yeah, some peoples are saying that I’m getting error, I can’t subscribe. Its ok here is second way to subscribe.

2.      In this step you have to send one Message to given number It maybe charge Rs. 1/-

ON SMIT_GUIDE     to     +919870807070

So, friends here are two ways to subscribe. Let’s do now and keep connected with SMIT_GUIDE Blog.

Wednesday, September 19, 2012

Turbo C Full Screen for Windows 7


  • First Download this Turbo C Software.
  • File is present on mediafire , so download to your computer and its a zipped file. You need to unzip the file.
  • An EXE file is present , just click on install it.
  • After installation you can see short cut icon on your desktop like this
  • Just click on short cut icon. The Turbo c will open in full screen Mode in windows 7 .
  • Everything works cool .
  • Before closing the turbo c, you will get a command prompt. No need to worry just type  ”EXIT” and press enter.

Thursday, September 13, 2012

HTML (LAB) Homework

<html>
<head>
<title>Angulat Tag</title>
<body vlink="green" alink="red">
</head>
<center>
<h1> Anglular tag</h1>
<font face="Comic Sans MS, cursive" size="+3"

Demerits (Disadvantages) of Word-Processor


  • Problem with programs
  • the untimely shutdown
  • so many option hard to learn
  • Data deleted if light cut off ( If didn't saved )
  • Required computer and electric power
  • Require printer
  • Hundred of symbols not easily accessed on a keyboard.

Download PPT5 of Business Communication

New PPT Unit 5 have arrived lets download in your Computer or Mobile

Monday, September 10, 2012

Assignment 1 Introduction of Internet


1. What is a computer network? How its work?
2. Explain a brief concept of internet.
3. Write a short note on the different type of network classified on the basic geographic are that it spans.
4. Explain in brief the following terms SAN, DAN & PAN
5. What is network topology? List out the different type of topologies.
6. Explain in details the below given network topology with help of diagram, clearly starting its advantages as   well as disadvantages.
- Bus Topology
- Ring Topology
- Star Topology
- Tree Topology
- Mesh Topology
7. Which Topology utilizes maximum cable?
8. What is Dial-Up access? Which device required for dial up internet connection?
9. State full form of ISDN, DSN and ADSL.
10. List out the different type of internet connection and explain each in brief.
11. What is URL? Explain in brief the tree main part of URL.
12. Write a note on IP Address.
13. State clearly the difference between Public IP Addresses and Private IP Addresses.
14. Explain in brief the concept of ISP.
15. State clearly the similarities and differences in INTRANET, EXTRANET and VPN.

Switch case find Larger & Smaller Value


#include<stdio.h>
#include<conio.h>
void main()
{
char i;
int x,y;
clrscr();

printf("Enter X value");
scanf("%d",&x);
printf("Enter Y Value");
scanf("%d",&y);

printf("\n\nFor see Largest Number Enter L\n");
printf("For see Smaller Number Enter S");
printf("\n\nEnter Code");
scanf("%s",&i);

switch(i)
{
case 'l':
{
if(x>y)
{
printf("X is Large");
}
else
{
printf("Y is Large");
}
break;
}
case 's':
{
if(x<y)
{
printf("X is smaller");
}
else
{
printf("Y is smaller");
}
break;
}
}
getch();
}

Sunday, September 9, 2012

WAP to find EVEN numbers using FOR LOOP


#include<stdio.h>
#include<conio.h>
void main()
{
int i;
clrscr();
for(i=1; i<=10; i++)
{
if(i%2==0)
{
printf("%d\n",i);
}
}
getch();

}

Tuesday, September 4, 2012

Download C-Lab Programs with Answers

Here I have uploaded all answers of our new C Assignment.

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();
}

Tuesday, August 14, 2012

How to Write a Program Which will tell you a number is Even or Odd


#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
clrscr();
printf(“\n\t\t\t\t\Enter Your Value”);
scanf(“%d”,&a);
b=a/2;
c=b%1;
if(c==0)
{
printf(“\t\t\tThis is Even Number”);
}
if(c!=0)
{
printf(“\t\t\tThis is Odd Number”);
}
getch();
}

How to Write a Program Which give result of your Current Age, Total Months, Total Weeks, All Seconds etc.


#include<stdio.h>
#include<conio.h>
void main()
{
long int bd,cy,age,month,week,days,hour,minute,second;
cy=2012;
clrscr();
                      printf(“\n\n\n\t\t\t\tEnter Your Birth Year “);
                      scanf(“%ld”,&bd);
                      age=cy-bd;
                      month=age*12;
                      week=month*4;
                      days=month*30;
                      hour=24*days;
                      minute=60*hour;
                     second=minute*60;
                     printf(“\n\t Your Age is %ld\n\t Your All Months %ld\n\t Youe All Weeks are %ld”,age,month,week);
                     printf(“\n\t Your All Days are %ld \n\t Your Total Hourse %ld”,days,hour);
                     printf(“\n\t Your Minutes are %ld \n\t Your All Seconds %ld”,minute,second);
getch();
}

Write a Program How to Convert Km in m,cm,inch and ft.


#include<stdio.h>
#include<conio.h>
void main()
{
float km,m,cm,inch,ft;
clrscr();
printf(“km”);
scanf(“%f”,&km);
m=km*1000;
cm=m*1000;
inch=cm*1000;
ft=inch*1000;
printf(“Your Kilo Meter is %f\n”,km);
printf(“Your Meter is %f\n”,m);
printf(“Your CM  is %f\n”,cm);
printf(“Your Inch is %f\n”,inch);
printf(“Your feet is %f\n”,ft);
getch();
}

Write a Program How to convert Celsius to Fahrenheit


#include<stdio.h>
#include<conio.h>
void main()
{
float c,f;
clrscr();
printf(“Enter Current Celsius”);
scanf(“%f”,&c);
f=(c-32)*5/9;
printf(“Your Current Fahrenheit is %f”,f);
getch();
}

C- Assignment 1 FYBCA


1.       Define program & programming Language.
2.       Sate difference between Machine & Higher level Language.
3.       State difference between Assembly & Machine level Language.
4.       State difference between Compiler & Interpreter.
5.       List out example of Low-Level & High level programming language.
6.       List out some example of Assembly level programming language.

C- Assignment 2 FYBCA


1.       Describe Algorithm with proper example.
2.       Describe all Symbols of Flow-Chart with proper example.
3.       Write algorithm and draw flowchart with for converting temperature entered in Farenheit to Celsius.
4.       Write algorithm and draw flowchart to find area perimeter of square.
5.       Write algorithm and draw flowchart to convert distance entered in km to meter, cm, inch & feet.

C- Assignment 3 FYBCA


1.       Describe important characteristics of C-programming.
2.       Sate the importance of comment lines
3.       Explain print() function with example?
4.       State use of stdio.h & conio.h header files.
5.       Describe basic structure of C-Program
6.       State difference between void main() & int main()
7.       List out important characteristics of C.

C- Assignment 4 FYBCA


1.       Define Syntax.
2.       List out character set in C with example.
3.       Define C-Token.
4.       Sate different between Keywords % identifiers with example.
5.       List out all types of constants with example.
6.       Define Variable & list rules for define Variables.
7.       List out three categories of Data-type.
8.       List out types of Basic data type, Derived data type, User-Define data type.
9.       Describe scanf() function with example?
10.   State use of void data type?
11.   State difference between Assigning values to variables & Initialization value to variable.
12.   State the use of const keyword with example?
13.   Define Symbolic Constant.

Monday, August 13, 2012

Computer Fundamental Unit-Test Paper Style

5 Marks = Q1. Define following terms 5 out of 6                                                    
4 Marks = Q2. Answare the following Questions                                                         
6 Marks = Q3. Answare the following Questions                                                        
5 Marks = Q4 Attempt the following DOS Commands                                              
5 Marks = Q5 Answare it in Brief                                                                               

Sunday, August 12, 2012

Accountancy's Assignment

Collection Date : 13/8/2012

Q.1   Different between Book-Keeping and Accountancy.
Q.2   Types of Account. and Rules of Credit & Debit.
Q.3   Make Journal, Ledger and Cash Book of Sum Number 8 Page Number 157
Q.4   Sum Number 5 Page Number 183

Info for SIMIT"S Students

Hello Friends. Here my team will add info about BCA Course.Stay connected with this Blog. You will get lots of knowledge. Keep Touch with US.