BCA Raipur - BCA Notes S-1

Post your notes and other just by mailing us at bcaraipur@live.com

google search

Popular Posts


Welcome to BCA Notes

>>>>>>>>>>>>>>>>

Visitors

Search This Blog

Blogger templates

Visitor Map


Wednesday, 23 July 2014

Web & Mobile app development services

Dear Sir/Madam, Hope you are doing well, Thank you in advance for taking the time out of your busy day to read and consider this. My name is Rahul Sharma and I represent a leading software solutions provider located in India. We have been helping our clients to shape their IT eco system and move up the value chain. Our team has wealth of experience in serving the clients from all over the world and most of our clients are from US, Canada, Australia and Kuwait. We have a team of 50+ highly skilled engineers who have loads...

Saturday, 12 July 2014

General air pollution control devices / equipments for industries The commonly used equipments / process for control of dust in various industries are (a) Mechanical dust collectors in the form of dust cyclones; (b) Electrostatic precipitators – both dry and wet system; (c) particulate scrubbers; (d) Water sprayer at dust generation points; (e) proper ventilation system and (f) various monitoring devices to know the concentration of dust ingeneral body of air. The common equipments / process used for control of toxic /flue gases are...

Monday, 7 July 2014

Write a c program to find out sum of digit of given number

//Write a c program to find out sum of digit of given number #include<stdio.h> int main() {   int num,sum=0,r;   printf("Enter a number: ");   scanf("%d",&num);   while(num){       r=num%10;       num=num/10;       sum=sum+r;   }   printf("Sum of digits of number:  %d",sum);   return 0; } Sample output: Enter a number: 123 Sum of digits of number:  6...