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.