Bài đăng

Swagbucks Review — Is Swagbucks a Scam or a Legit?

Hình ảnh
How I Earn From Swagbucks  click on the link and join and start earning - https://www.swagbucks.com/p/register?rb=50161109 I have to admit that when I first went on the Swagbucks page, I was a bit puzzled and a little suspicious. It mentioned things like being a "first rewards site" and a leading online search engine. Even if they were a search engine, how can one produce rewards? Yet why haven't I ever learned about them? Okay, it turns out that Swagbucks is very true too. In a nutshell, Swagbucks is a search engine much like Google or Request, except you can earn award points only by browsing the site. And the forum is currently funded by Google and Ask! Join now -  https://www.swagbucks.com/p/register?rb=50161109 Swagbucks is a fairly good spot overall. You may easily load their toolbar on your device right next to your Google Toolbar and browse the Internet from there. The findings are similar to the same issue. When you're using the Web for analysis or job reason...

What is data, database and DBMS?

Hình ảnh
Data  image source:  Pixabay Data is a collection of raw facts and figure which is isolated, unrelated and unorganized, but able to organize into useful information. Data can be manipulated to produce output. Data are the raw facts from which we start to get information. Example: 1, Ram, Table etc.  Database  image source: picpedia A database is a collection of related information about a subject organized in a useful manner that provides a base or foundation for procedure, such as retrieving information, drawing conclusion and make decision.  A database is a collection of data of certain place or person or things in such a way that it can be easily access by an application program like DBMS. A database represents some aspect of the real world. Some examples of database are database of student, database of employee etc. all are related to the real world. It is a collection of related data, which has some meaning.  DBMS (Database Management System) A DBM...

A C program to print ODD numbers from 1 to N using for loop.

Hình ảnh
//A C program to print ODD numbers from 1 to N using for loop. #include<stdio.h> #include<conio.h> void main() { int i,n; printf("Enter the value of N: "); scanf("%d",&n); for(i=1;i<=n;i++) { if(i%2 != 0) printf("%d ",i); } getch(); } Output: / / A Program to find odd or even. / / A Program to add two numbers.   / / A program to display series from 1 to 50. / / A program to find the person is eligible for voting or not.   / /A C program to find largest number among 3. / / A C program to perform arithmetic operations using switch case. // A program to print the name 10 times. / /A C program to print ODD numbers from 1 to N using while loop.

A C program to print ODD numbers from 1 to N using while loop.

Hình ảnh
//A C program to print ODD numbers from 1 to N using while loop. #include<stdio.h> #include<conio.h> void main() { int number=1,n; printf("Enter the value of N: "); scanf("%d",&n); while(number<=n) { if(number%2 != 0) printf("%d ",number); number++; } getch(); } Output: / / A Program to find odd or even. / / A Program to add two numbers.   / / A program to display series from 1 to 50. / / A program to find the person is eligible for voting or not.   / /A C program to find largest number among 3. / / A C program to perform arithmetic operations using switch case. //  A program to print the name 10 times.   / /A C program to print ODD numbers from 1 to N using for loop.

A C program to print the name 10 times.

Hình ảnh
// A program to print the name 10 times. #include<stdio.h> #include<conio.h> void main() { clrscr(); int count; char name[50]; printf("Enter the name: "); scanf("%s",name); count=1; start: printf("%s ",name); count++; if(count<=10) goto start; getch(); } Output: / / A Program to find odd or even. / / A Program to add two numbers.   / / A program to display series from 1 to 50. / / A program to find the person is eligible for voting or not.   / /A C program to find largest number among 3. / / A C program to perform arithmetic operations using switch case. / /A C program to print ODD numbers from 1 to N using while loop. / /A C program to print ODD numbers from 1 to N using for loop.

Essay on 'Dipawali'

Hình ảnh
Essay on 'Dipawali' Dipawali is the festival of lights. It is a famous festival of the Hindus. It falls in November. It is celebrated all over Nepal. It is said that the people of Ayodhya showed their joy by lighting lamps when Ram returned home from the exile. This was the origin of this festival. Another story is that Krishna killed Narakasur and then the festival began.  image source:  https://www.flickr.com/photos/subharnab/4022933632 People of Hindu religion wait very eagerly for this special festival of Diwali. It is the most important and favorite festival of everyone especially for kids and children of the home. Use the following essay on Diwali to make your kids smart enough at home or school and motivate them to know the history and significance of celebrating Diwali festival every year. Great preparations are made for Dipawali. People get their houses whitewashed and cleaned. They paint their furniture. Shops are decorated very well. New pictures are hung. People bu...

Essay on ‘Dashain’

Hình ảnh
Essay on ‘Dashain’ Dashain is an important festival of the Hindus. It comes in October and begins on the sixteenth day of Aswin. It continues for ten days. It is celebrated very enthusiastically. In Nepal, it a national festival.  There are several stories about the origin of Dashain. It is said that Ram worshipped Durga, a goddess, to kill Ravana and then he killed Ravana. Since then this festival has been in practice. Another story is about Durga. She killed Mahishasaur, a demon king. That was the origin of this festival. Also Read:  Essay on 'Dipawali' image source:  Flickr There is some difference in the celebration of this festival in different places. The first day of Dashain is known as Ghatasthapana, which literally means pot establishing. On the seventh day, phulpati is celebrated which is also known as ‘Saptami’. The eight-day is regarded as Maha Aastami. On this day, animals like goats, hens are sacrificed to goddess Kali and the meat is taken as ‘Prasad’ (holy...

A C program to perform arithmetic operations using switch case.

Hình ảnh
// A C program to perform arithmetic operations using switch case. #include<stdio.h> #include<conio.h> void main() { int ch; float a,b,res; clrscr(); printf("Enter two numbers:"); scanf("%f%f",&a,&b); printf("Enter 1 for Additionn    2 for Subtractionn   3 for Multiplicationn  and 4 for Division"); printf("\nEnter your choice:"); scanf("%d",&ch); switch(ch) { case 1: res=a+b; printf("addition %f",res); break; case 2: res=a-b; printf("subtraction %f",res); break; case 3: res=a*b; printf("multiplication %f ",res); break; case 4: res=a/b; printf("division %f",res); break; default:  printf("Wrong choice!!\nPress any key"); } getch(); } Output: / / A Program to find odd or even. / / A Program to add two numbers.   / / A program to display series from 1 to 50. / / A program to find the person is eligible for voting or not.   / /A C program to find largest number amo...