‘for’ Loop, five important way to use in C language.

Simply you can use in possible five way.

Here five possible way are describe in easy ways. By this you can start loop with any way depend on your interests and time consuming. So, try and use.

What do you mean by ‘for’ loop?

A ‘for’ loop is a repetition control structure which allows us to write a loop that is executed a specific number of times. The loop enables us to perform n number of steps together in one line. In for loop, a loop variable is used to control the loop. Which are understand by conditional operator;

There are five example..

1. It’s simple loop in this programme. Initilization, condition & increment or decrement in single line..

  • #include<stdio.h>
  • #include<conio.h>
  • void main()
  • {
  • int i;
  • for( i=1;i<=10;i++)
  • {
  • printf(“%d”,i);
  • }
  • getch();
  • }

Results.

2. In this programme, there are two initilization, two conditional & two increment or decrement in single loop line in ‘for’ loop. In single loop line initilization of i & j, condition of i & j, increment or decrement of i & j are done..

  • #include<stdio.h>
  • #include<conio.h>
  • void main()
  • {
  • int i, j;
  • for( i=1, j=2;i<=10, j<=10;i++, j++)
  • {
  • printf(“%d”,i*j);
  • }
  • getch();
  • }

Results.

3. In this programme, initilization done first with counter container but condition done in ‘for’ loop line and increment & decrement in print.

  • #include<stdio.h>
  • #include<conio.h>
  • void main()
  • {
  • int i=1;
  • for( ;i<=10;)
  • {
  • printf(“%d”,i++);
  • }
  • getch();
  • }

Results.

4. In this programme, initilization done first with counter container, condition done in ‘for’ loop line and increment & decrement also..

  • #include<stdio.h>
  • #include<conio.h>
  • void main()
  • {
  • for(int i=1 ;i<=10;i++)
  • {
  • printf(“%d”,i);
  • }
  • getch();
  • }

Results.

5. In this programme, initilization done first with counter container but condition done in ‘for’ loop line and increment & decrement also..

  • #include<stdio.h>
  • #include<conio.h>
  • void main()
  • {
  • int i=1;
  • for( ;i<=10;i++)
  • {
  • printf(“%d\n”,i);
  • }
  • getch();
  • }

Results.

Calculate area, circumference & radius of circle in C language.

Let’s understand some concept.

In this programme, calculate the area, circumference & radius of the circle by using mathematical formula. Area =pie*r*r, The circumference =2*pie*r. Other are made by this. Here is so simple concept..

Calculate the area of circle by entering the radius of circle

Some important symbols used in code.

  • () small bracket
  • && use for ‘and’ use for address
  • {} curly bracket
  • “” double code
  1. #include<studio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. float pie=3.14, r, area;
  6. clrscr();
  7. printf(“Enter the radius of circle to calculate the area”);
  8. scanf(“%f”, &r);
  9. area=pie*(r*r);
  10. printf(“area of the circle = %f”, area);
  11. getch();
  12. }

Inputs..

If r= 50 then

Results..

Calculate the radius by entering the area of the circle.

  • #include<studio.h>
  • #include<math.h>
  • int main()
  • {
  • float pie=3.14,r,area,radius;
  • printf(“Enter the Area of circle”);
  • scanf(“%f”, &area);
  • r=area/pie;
  • radius=sqrt(r);
  • printf(“radius Of the circle =%f”, radius);
  • return 0;
  • }

Inputs..

If area =123

Results..

Calculate the circumference of circle by entering the radius of circle

  1. #include<studio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. float pie=3.14, r, circum;
  6. clrscr();
  7. printf(“Enter the radius of circle to calculate the circumference of the circle”);
  8. scanf(“%f”, &r);
  9. circum=2*pie*r;
  10. printf(“circumference of the circle = %f”, circum);
  11. getch();
  12. }

Inputs..

If r=50 then

Results..

Calculate the radius by entering the circumference of the circle.

  1. #include<studio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. float pie=3.14, r, circum;
  6. clrscr();
  7. printf(“Enter the circumference of circle to calculate the radius of the circle”);
  8. scanf(“%f”, &circum);
  9. r=circum/2*pie;
  10. printf(“radius of the circle = %f”, radius);
  11. getch();
  12. }

Inputs..

If circum =314 then

Results..

Radius = 50

Check it is ‘vowel’ or ‘consonant’ using conditional operator also in C language..

Check out Inputs character is ‘vowel’ or consonant..

Some meaning Error likes cheack

Correct meaning check..

Some important symbols used in code.

  • () small bracket
  • && use for ‘and’ use for address
  • {} curly bracket
  • “” double code
  • || or
  • ? Question mark
  • #include<stdio.h>
  • #include<conio.h>
  • void main()
  • {
  • char ch;
  • clrscr();
  • printf(“Inputs the character to check it is a vowel or consonant”);
  • scanf(“%c”, &ch);
  • if(ch==’a’ ||ch==’A’ ||ch==’e’ ||ch==’E’ ||ch==’i’ ||ch==’I’ ||ch==’o’ ||ch==’O’ ||ch==’u’ ||ch==’U’ )
  • {
  • printf(“it is a vowel = %c”, ch);
  • }
  • else
  • {
  • Printf(“it is a consonant or Invalid”);
  • }
  • getch();
  • }

Inputs..

If you input any character it determines vowel or consonant…

Results..

Check vowel & consonant using conditional operators…

  • #include<stdio.h>
  • #include<conio.h>
  • void main()
  • {
  • char ch;
  • clrscr();
  • printf(“Inputs the character to check it is a vowel or consonant”);
  • scanf(“%c”, &ch);
  • ch==’a’ ||ch==’A’ ||ch==’e’ ||ch==’E’ ||ch==’i’ ||ch==’I’ ||ch==’o’ ||ch==’O’ ||ch==’u’ ||ch==’U’? printf(“it is a vowel = %c”, ch):Printf(“it is a consonant or Invalid”);
  • getch();
  • }

Inputs..

If you input any character it determines vowel or consonant…

Results..

Cheak input number is ‘positive’ or ‘negative’ in C language..

Cheak number is ‘negative’ or ‘positive’….

This programme is very simple so, you can understand very eaisly. Here only use the condition programme in it. Compare with only Zero.

Some important symbols used in code.

  • () small bracket
  • && use for ‘and’ use for address
  • {} curly bracket
  • “” double code
  1. #include<stdio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. int a, b, c;
  6. clrscr();
  7. printf(“Inputs any number to know it is positive or negative”);
  8. scanf(“%d”, &a);
  9. if(a>=0)
  10. {
  11. printf(“it is a positive = %d”, a);
  12. }
  13. else
  14. {
  15. printf(“it is a negative = %d”, a);
  16. }
  17. getch();
  18. }

Results..

Cheak number is ‘negative’ or ‘positive’ by condition operator….

  1. #include<stdio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. int a, b, c;
  6. clrscr();
  7. printf(“Inputs any number to know it is positive or negative”);
  8. scanf(“%d”, &a);
  9. a>0? printf(“it is a positive = %d”, a):printf(“it is a negative = %d”, a);
  10. getch();
  11. }

Results..

Change ‘upper’ to ‘lower’ case & ‘lower’ to ‘upper’ case in C language..

Some important symbols used in code.

  • () small bracket
  • && use for ‘and’ use for address
  • {} curly bracket
  • “” double code

Print capital letter..

  1. #include<stdio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. char ch;
  6. int a, b, c;
  7. clrscr();
  8. printf(“print upper case ‘A to Z‘ \n”);
  9. for(a=65;a<=90;a++)
  10. {
  11. printf(“%c”, a);
  12. }
  13. getch();
  14. }

Results..

print small letter….

  1. #include<stdio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. char ch;
  6. int a, b, c;
  7. clrscr();
  8. printf(“print ‘lower’ case ‘A to Z‘ \n”);
  9. for(a=97;a<=122;a++)
  10. {
  11. printf(“%c”, a);
  12. }
  13. getch();
  14. }

Results..

Print ‘capital’ & ‘small’ letter using ‘for’ loop..

  1. #include<stdio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. char ch;
  6. int a, b, c;
  7. clrscr();
  8. printf(“print upper case ‘A to Z‘ \n”);
  9. for(a=65;a<=90;a++)
  10. {
  11. printf(“%c”, a);
  12. }
  13. printf(“/n print lower case ‘a to z’ \n”);
  14. for(b=97;b<=122;b++)
  15. {
  16. printf(” %c”, b);
  17. }
  18. getch();
  19. }

Results..

Print ‘capital’ & ‘small’ letter using ‘while’ loop..

  1. #include<stdio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. char ch;
  6. int a, b, c;
  7. clrscr();
  8. printf(“print upper case ‘A to Z‘ \n”);
  9. a=65;
  10. while(a<=90)
  11. {
  12. printf(“%c”, a);
  13. a++;
  14. }
  15. printf(“/n print lower case ‘a to z’ \n”);
  16. b=97;
  17. while(b<=122)
  18. {
  19. printf(” %c”, b);
  20. b++;
  21. }
  22. getch();
  23. }

Print ‘capital’ & ‘small’ letter using ‘do while’ loop..

  1. #include<stdio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. char ch;
  6. int a, b, c;
  7. clrscr();
  8. printf(“print upper case ‘A to Z‘ \n”);
  9. a=65;
  10. do
  11. {
  12. printf(“%c”, a);
  13. a++;
  14. }
  15. while(a<=90);
  16. printf(“/n print lower case ‘a to z’ \n”);
  17. b=97;
  18. do
  19. {
  20. printf(” %c”, b);
  21. b++;
  22. }
  23. while(b<=122);
  24. getch();
  25. }

Results..

Given above…

Change alphabet from ‘upper’ to ‘lower’ & ‘lower’ to ‘upper’ letter in C language..

Let’s understand some concepts..

According to computer keyboard keys capital letter code from 65 to 90 and small letter code from 97 to 122. And their differences between them is 32. So, if you enter any alphabet key according programme it’s add and subtract about 32 from any Enter key.

  • If you enter ch=’A’ then according to programme it add 32+ in code and show results=‘a’ .
  • If you enter ch= ‘a’ then according to programme it subtract 32- in code and show results=‘A’.

Some important symbols used in code.

  • () small bracket
  • && use for ‘and’ use for address
  • {} curly bracket
  • “” double code

Change the alphabet from small to capital & capital to small letter.

  1. #include<stdio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. char ch;
  6. clrscr();
  7. printf(“Enter your alphabet to change the small to capital letter to capital to small letter”);
  8. scanf(“%c”, &ch);
  9. If(ch>=65&&ch<=90||ch>=97&&ch<=122||ch==’-‘ )
  10. {
  11. If(ch>=65&&ch<=90)
  12. {
  13. printf(“%c”, ch+32);
  14. }
  15. else if(ch>=97&&ch<=122)
  16. {
  17. printf(“%c”, ch-32);
  18. }
  19. else
  20. {
  21. printf(“Invalid Inputs”);
  22. }
  23. }
  24. getch();
  25. }

Inputs…

If ch=B then

Results…

Compare & find differences of two number in C language..

Compare & find differences of two number..

In this programme, comparing of two number which one is ‘LARGER‘ and find the differences of them.

If you enter a=12 OR any number larger compare than b and b=10 then in this equation ‘a‘ is larger. Differences of them is 2.

If you enter a=10 OR any small number compare than b and b=15 then in this is equation ‘b’ is larger. Differences of them is 5.

Some important symbols used in code.

  • () small bracket
  • && use for ‘and’ use for address
  • {} curly bracket
  • “” double code
  • #include<studio.h>
  • #include<conio.h>
  • void main()
  • {
  • int a,, b, c;
  • clrscr();
  • printf(“Enter the number to find differences compare”);
  • scanf(“%d%d”, &a, &b);
  • If(a>b)
  • {
  • printf(“larger number is = %d \n differences is = %d”, a, a-b);
  • }
  • else if(b>a)
  • {
  • printf(“larger number is = %d \n differences is = %d”, b, b-a);
  • }
  • getch();
  • }

Inputs..

If a=12 and b=10 then

Results..

If a= 10 and b= 15 then

Results..

Cheak three digit number is ‘Palindrom’ or ‘not’ in C language..

Cheak three digit number is ‘Palindrom’ or ‘not’..

Let’s understand some concepts..

According to mathematicsexapands and standards form” three digit number is joined as like that. So, first separate or exapands the number by using ‘division‘ method and then join them by addition and subtraction.

  • b=a/100; if number is ‘121’ then after dividing 100 answer is 1 and 1 stores in b.
  • c=a%100; after dividing by 100 remainder is 21 and 21 stores in C.
  • d=c/10; when c or 21 again diving by 10 then 2 is answer and 2 stores in d.
  • e=c%10; after dividing by 10 remainder is 1 then 1 stores in e.
  • f=e*100+d*10+b;
  • Assume and start from e and solve like standards form.

Some important symbols used in code.

  • () small bracket
  • && use for ‘and’ use for address
  • {} curly bracket
  • “” double code
  1. #include<stdio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. int a, b, c, d, e, f;
  6. clrscr();
  7. printf(“Enter any three digit number to cheak number is palindrome or not”);
  8. scanf(“%d”, &a);
  9. b=a/100;
  10. c=a%100;
  11. d=c/10;
  12. e=c%10;
  13. f=e*100+d*10+b;
  14. If(a==f)
  15. {
  16. printf(“It is a Palindrom =%d”, f);
  17. }
  18. else
  19. printf(“It is not a palindrom”);
  20. getch();
  21. }

Inputs..

If a =121 then

Results..

Subtraction of two number & using ‘scanf’ in C language…

Differences of two number for beginners with basic..

Subtraction of two number for beginners with basic.

According to mathematics….

If a=50 and b=20 then differences = a-b so, 50-20 then answer is ’30’

In this programme initially  you can take number before run. example a=10, b=20,. This programme is only for basic and for beginners.

Some important symbols used in code.

  • () small bracket
  • && use for ‘and’ use for address
  • {} curly bracket
  • “” double code
  1. #include<stdio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. int a, b, c;
  6. clrscr();
  7. printf(“The difference of two number\n”)
  8. a=100;
  9. b=25;
  10. c=a-b;
  11. printf(“n1 %d – n2 %d = %d”, a, b, c);
  12. getch();
  13. }

Inputs..

If a=100 and b=25 then.

Results..

Subraction = ’75’

Differences of two number by using ‘scanf‘…

  1. #include<stdio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. int a, b, c;
  6. clrscr();
  7. printf(“Enter two number to find differences of two number\n”)
  8. scanf(“%d%d”, &a, &b);
  9. c=a-b;
  10. printf(“n1 %d – n2 %d = %d”, a, b, c);
  11. getch();
  12. }

Inputs..

If a=100 and b= 25..

Results..

Subraction = ’75’..

Sum of two or more number & ‘scanf’ in C language..

Sum of two number for beginners with basic.

According to mathematics….

If a=10 and b=20 then sum = a+b so, 10+20 then answer is ’30’

In this programme initially  you can take number before run. example a=10, b=20,c=30, d=40. This programme is only for basic and for beginners.

Some important symbols used in code.

  • () small bracket
  • && use for ‘and’ use for address
  • {} curly bracket
  • “” double code
  • #include<stdio.h>
  • #include<conio.h>
  • void main()
  • {
  • int a, b, c;
  • clrscr():
  • a=10;
  • b=20;
  • c=a+b;
  • printf(“Sum = %d”, c);
  • getch();
  • }

Inputs..

If a=10; b=20;

Results…

Sum = 30.

Sum of more than two number for beginners with basic..

  • #include<stdio.h>
  • #include<conio.h>
  • void main()
  • {
  • int a=10,b=20,c=30,d=40,e;
  • clrscr():
  • e=a+b+c+d;
  • printf(“Sum = %d”, e);
  • getch();
  • }

Inputs..

If a=10, b=20, c=30, d=40;

Results..

Sum= 100.

Sum of two number by using ‘scanf’.. Or desire number..

  • #include<stdio.h>
  • #include<conio.h>
  • void main()
  • {
  • int a, b, c;
  • clrscr():
  • printf(“Enter two number for addition”);
  • scanf(“%d%d”, &a, &b);
  • c=a+b;
  • printf(“n1%d + n2%d = %d”, a, b, c);
  • getch();
  • }

Inputs..

If a=10, b=20..

Results..

10+20 = 30..

Sum of more than two number by using ‘scanf’.. Or desire number..

  • #include<stdio.h>
  • #include<conio.h>
  • void main()
  • {
  • int a, b, c, d, e;
  • clrscr():
  • printf(“Enter two number for addition”);
  • scanf(“%d%d%d%d”, &a, &b, &c, &d);
  • e=a+b+c+d;
  • printf(“n1%d + n2%d +n3%d + n4%d = %d”, a, b, c, d, e);
  • getch();
  • }

Inputs..

If a=10,b=20,c=30,d=40;

Results..

10+20+30+40=100..

Sum of odd number & between two range in C language..

Sum of odd number between the two range number are given below….

Let’s understand some concept.

ODD Number..

Number which are not divided by 2 with 1 or 2 remainder is known as odd number.

Sum of odd Number. if you enter number then the sum done by this formula…If a=last term 100. Then n=a/2. So, x=n*n. OR if last term is odd then a={(n+1)/2}2.

Some important symbols used in code.

  • () small bracket
  • && use for ‘and’ use for address
  • {} curly bracket
  • “” double code

Sum of odd number by using formula

  1. #include<stdio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. int a, b, c, d=0, e;
  6. clrscr();
  7. printf(“Enter the number find the Sum of odd number”);
  8. scanf(“%d”, &a);
  9. if(a%2==0)
  10. {
  11. b=a/2;
  12. c=b*b;
  13. printf(“%d”, c);
  14. }
  15. else if(a%2!=0)
  16. {
  17. b=a+1;
  18. c=b*b;
  19. d=c/4;
  20. printf(“%d”, d);
  21. }
  22. getch();
  23. }

Inputs..

If a=100 then

Results..

Sum= 2500.

Sum of odd number by using ‘for’ loop..

  1. #include<studio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. int a,b=0,c,d,i;
  6. clrscr();
  7. printf(“Enter the number to find out sum of odd number”);
  8. scanf(“%d”, &a);
  9. for(i=1;i<=a;i++)
  10. {
  11. if(i%2!=0)
  12. b+=i;
  13. }
  14. printf(“%d”, b);
  15. getch();
  16. }

Inputs..

If a=100 then

Results..

Sum= 2500

Sum of odd number by using ‘while’ loop..

  1. #include<studio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. int a,b=0,c,i;
  6. clrscr();
  7. printf(“Enter the number to find out sum of odd number”);
  8. scanf(“%d”, &a);
  9. while(i<=a)
  10. {
  11. if(i%2!=0)
  12. b+=i;
  13. i++;
  14. }
  15. printf(“%d”, b);
  16. getch();
  17. }

Inputs..

If a=100 then

Results..

Sum= 2500

Sum of odd number by using ‘ do while’ loop..

  1. #include<studio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. int a,b=0,c,i;
  6. clrscr();
  7. printf(“Enter the number to find out sum of odd number”);
  8. scanf(“%d”, &a);
  9. {
  10. do
  11. {
  12. if(i%2!=0)
  13. b+=i;
  14. i++;
  15. }
  16. while(i<=a);
  17. printf(“%d”, b);
  18. getch();
  19. }

Inputs..

If a=100 then

Results..

Sum= 2500

Sum of odd number between two range number by using ‘for’ loop..

  1. #include<studio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. int a,b,c=0,d,i;
  6. clrscr();
  7. printf(“Enter the number to find out sum of odd number”);
  8. scanf(“%d%d”, &a, &b);
  9. for(i=a;i<=b;i++)
  10. {
  11. if(i%2!=0)
  12. c+=i;
  13. }
  14. printf(“%d”, c);
  15. getch();
  16. }

Inputs..

If a=10, b=100 then

Results..

Sum= 2475..

Sum of odd number between two range number by using ‘while’ loop..

  1. #include<studio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. int a,b,c=0,i;
  6. clrscr();
  7. printf(“Enter the number to find out sum of odd number”);
  8. scanf(“%d&d”,&a, &b);
  9. i=a;
  10. while(i<=b)
  11. {
  12. if(i%2!=0)
  13. c+=i;
  14. i++;
  15. }
  16. printf(“%d”, c);
  17. getch();
  18. }

Inputs..

If a=10, b=100 then

Results..

Sum= 2475..

Sum of odd number between two range number by using ‘do while’ loop..

  1. #include<studio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. int a,b,c=0,i;
  6. clrscr();
  7. printf(“Enter the number to find out sum of odd number”);
  8. scanf(“%d&d”,&a, &b);
  9. i=a;
  10. do
  11. {
  12. if(i%2!=0)
  13. c+=i;
  14. i++;
  15. }
  16. while(i<=b);
  17. printf(“%d”, c);
  18. getch();
  19. }

Inputs..

If a=10, b=100 then

Results..

Sum= 2475..

Sum of Even number & between two range in C language…

Sum of even number between the two range number are given below….

Let’s understand some concept.

Even Number..

Number which divided by 2 with 0 remainder is known as Even number.

Sum of even Number. if you enter number then the sum done by this formula…If a=last term 100. Then n=a/2. So, x=n*(n+1).

Some important symbols used in code.

  • () small bracket
  • && use for ‘and’ use for address
  • {} curly bracket
  • “” double code

Sum of even number by using formula…

If you Enter an Even number or odd number. This code for both case..

  1. #include<stdio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. int a,b,c,d,e;
  6. clrscr();
  7. printf(“Enter the to find sum of even number upto range”);
  8. scanf(“%d”, &a);
  9. if(a%2==0)
  10. {
  11. b=a/2;
  12. c=b*(b+1);
  13. printf(“%d”,c);
  14. }
  15. else if(a%2!=0)
  16. {
  17. b=(a-1)/2;
  18. c=b*(b+1);
  19. printf(“%d”, c);
  20. }
  21. getch();
  22. }

Inputs..

If a=100 then

Results..

Sum= 2550

Sum of even number by using ‘for’ loop

  1. #include<stdio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. int a,b,c=0,d,e;
  6. clrscr();
  7. printf(“Enter the to find sum of even number upto range”);
  8. scanf(“%d”, &a);
  9. for(b=2;b<=a;b++)
  10. if(b%2==0)
  11. {
  12. c+=b;
  13. }
  14. printf(“%d”, c);
  15. getch();
  16. }

Inputs..

If a = 100 then

Results..

Sum= 2550.

Sum of even number by using ‘while’ loop…

  1. #include<stdio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. int a,b=2,c=0;
  6. clrscr();
  7. printf(“Enter the to find sum of even number upto range”);
  8. scanf(“%d”, &a);
  9. while(b<=a)
  10. {
  11. if(b%2==0)
  12. c+=b;
  13. b++;
  14. }
  15. printf(“%d”, c);
  16. getch();
  17. }

Inputs..

If a=100 then

Results..

Sum= 2550

Sum of even number by using ‘do while’ loop…

  1. #include<stdio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. int a,b=2,c=0;
  6. clrscr();
  7. printf(“Enter the to find sum of even number upto range”);
  8. scanf(“%d”, &a);
  9. do
  10. {
  11. if(b%2==0)
  12. c+=b;
  13. b++;
  14. }
  15. while(b<=a);
  16. printf(“%d”, c);
  17. getch();
  18. }

Inputs..

If a=100 then

Results..

Sum= 2550..

Sum of even number between the two range number by using ‘for’ loop…

  1. #include<stdio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. int a,b,c=0,d,e;
  6. clrscr();
  7. printf(“Enter the to find sum of even number between two range number”);
  8. scanf(“%d%d”, &a, &b);
  9. for(c=a;c<=b;c++)
  10. if(c%2==0)
  11. {
  12. d+=c;
  13. }
  14. printf(“%d”, d);
  15. getch();
  16. }

Inputs..

If a=1 and b=100 then

Results..

Sum= 2550..

Sum of even number between the two range number by using ‘while’ loop…

  1. #include<stdio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. int a,b,c=0,d,e;
  6. clrscr();
  7. printf(“Enter the to find sum of even number between two range number”);
  8. scanf(“%d%d”, &a, &b);
  9. c=a;
  10. while(c<=b)
  11. if(c%2==0)
  12. {
  13. d+=c;
  14. c++;
  15. }
  16. printf(“%d”, d);
  17. getch();
  18. }

Inputs..

If a=1 and b=100 then

Results..

Sum= 2550..

Sum of even number between the two range number by using ‘do while’ loop…

  1. #include<stdio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. int a,b,c=0,d,e;
  6. clrscr();
  7. printf(“Enter the to find sum of even number between two range number”);
  8. scanf(“%d%d”, &a, &b);
  9. c=a;
  10. do
  11. {
  12. if(c%2==0)
  13. {
  14. d+=c;
  15. c++;
  16. }
  17. }
  18. while(c<=b);
  19. printf(“%d”, d);
  20. getch();
  21. }

Inputs..

If a=1 and b=100 then

Results..

Sum of Natural number between two range in C language…

Let’s understand some concept.

Natural Number..

All counting number which start from 1, 2, 3, 4, 5, 6, 7, 8, 9…………………. Infinite…

Sum of Natural Number between two range b=n/2*[2*a+(n+1)*d] if you enter number then the sum done by this formula…

  • a=first number
  • n = number of Natural number
  • d= difference between the two number

Some important symbols used in code.

  • () small bracket
  • && use for ‘and’ use for address
  • {} curly bracket
  • “” double code

Sum by using the arithmetic progression..

  • #include<stdio.h>
  • #include<conio.h>
  • void main()
  • {
  • int a, b, c, d, n, e, f, g, h;
  • clrscr();
  • printf(“Enter Number to find the Sum of Natural number between two range \n Enter two range number”);
  • scanf(“%f%f”, &b, &c);
  • n=c-b;
  • d=1;
  • a=b;
  • e=n/2;
  • f=2*a+(n-1)*d;
  • g=e*f;
  • printf(“%f”, g);
  • getch();
  • }

Inputs..

If b=10 and c=20 then

Results..

Sum= 165

Sum by using ‘for’ loop..

If you enter range of Natural Number then using a loop. A after increment natural Number added by this method b+=a which like a++. In loop same rule follow by Increment and adding in on container like all alphabet.

  • #include<stdio.h>
  • #include<conio.h>
  • void main()
  • {
  • float a, b, c, d=0, e;
  • clrscr();
  • printf(“Enter two range to find sum of Natural number between range number”);
  • scanf(“%f%f”, &a, &b);
  • for(c=a;c<=b;c++)
  • {
  • d+=c;
  • }
  • printf(“%f”, d);
  • getch();
  • }

Inputs..

If a=10 and b=20 then

Results..

Sum= 165

Sum by using ‘while’ loop..

  • #include<stdio.h>
  • #include<conio.h>
  • void main()
  • {
  • float a, b, c, d=0, e;
  • clrscr();
  • printf(“Enter two range to find sum of Natural number between range number”);
  • scanf(“%f%f”, &a, &b);
  • while(a<=b)
  • {
  • c+=a;
  • a++;
  • }
  • printf(“%f”, c);
  • getch();
  • }

Inputs..

If a=10 and b=20 then

Results..

Sum= 165

Sum by using ‘do while’ loop..

  • #include<stdio.h>
  • #include<conio.h>
  • void main()
  • {
  • float a, b, c, d=0, e;
  • clrscr();
  • printf(“Enter two range to find sum of Natural number between range number”);
  • scanf(“%f%f”, &a, &b);
  • do
  • {
  • c+=a;
  • a++;
  • }
  • while(a<=b);
  • printf(“%f”, c);
  • getch();
  • }

Inputs..

If a=10 and b=20 then

Results..

Sum= 165

Sum of Natural number in C language..

Let’s understand some concept.

Natural Number..

All counting number which start from 1, 2, 3, 4, 5, 6, 7, 8, 9…………………. Infinite…

Sum of Natural Number a=n/2*(n+1) if you enter number then the sum done by this formula…

Some important symbols used in code.

  • () small bracket
  • && use for ‘and’ use for address
  • {} curly bracket
  • “” double code

The sum of Natural Number by using Formula..

  1. #include<stdio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. int a, b=0, c;
  6. clrscr();
  7. printf(“Sum of Natural number from 1 to 100”)
  8. a=100;
  9. b=a/2*(b+1);
  10. printf(“%d”, b);
  11. getch();
  12. }

Inputs..

If a=100 then

Results..

The sum of Natural Number by using ‘for’ loop…

If you enter range of Natural Number then using a loop. A after increment natural Number added by this method b+=a which like a++. In loop same rule follow by Increment and adding in on container like all alphabet.

  1. #include<stdio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. int a, b, c=0;
  6. clrscr();
  7. printf(“Sum of naturanumber”);
  8. for(a=1;a<=100;a++)
  9. {
  10. c+=a;
  11. }
  12. printf(“%d”, c);
  13. getch();
  14. }

Inputs..

If a=100 then

Results..

The sum of Natural Number by using ‘while’ loop..

  1. #include<stdio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. int a, b=0, c;
  6. clrscr();
  7. printf(“Sum of Natural Number”);
  8. a=100;
  9. while(a<=100)
  10. {
  11. b+=a;
  12. a++;
  13. }
  14. printf(“%d”, b);
  15. getch();
  16. }

Inputs..

If a=100 then

Results..

The sum of Natural Number by using ‘do while’ loop…

  1. #include<stdio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. int a=1, b=0, c;
  6. clrscr();
  7. printf(“Sum of Natural Number”);
  8. do
  9. {
  10. b+=a;
  11. a++;
  12. }
  13. while(a<=100);
  14. printf(“%d”, b);
  15. getch():
  16. }

Inputs..

If a=100 then

Results..

Table in C language using ‘while’& ‘do while’ ..

Let’s understand some concept..

Table is made by multiplication of one repeat number &another is changed from 1 to 10. So, in these code, table is made by using loop method. Take example..

  • 2*1=2
  • 2*2=4
  • 2*3=6
  • 2*4=8
  • 2*5=10
  • 2*6=12
  • 2*7=14
  • 2*8=16
  • 2*9=18
  • 2*10=10

Repeated number is 2 and change number which changed by loop(‘while’, ‘do while’). You can write according to your need then you can start two loop. Example.. 1 one for repeated number and another for changed number.

Some important symbols used in code.

  • () small bracket
  • && use for ‘and’ use for address
  • {} curly bracket
  • “” double code

Nested of ‘while’ loop..

Table using ‘while’ loop of 2 to 20 number...

  • #include<stdio.h>
  • #include<conio.h>
  • void main()
  • {
  • int a, b, c;
  • clrscr();
  • printf(“table from 1 to 20”);
  • a=2;
  • while(a<=20)
  • {
  • b=1;
  • while(b<=10)
  • {
  • Printf(“%d”, a*b);
  • }
  • b++;
  • }
  • printf(“\n”);
  • a++;
  • getch();
  • }

Result

Table using ‘while’ loop of desired number…

  • #include<stdio.h>
  • #include<conio.h>
  • void main()
  • {
  • int a, b, c;
  • clrscr();
  • printf(“Enter you desire number for table”);
  • scanf(“%d”, &a);
  • while(b<=10)
  • {
  • printf(“%d”, a*b);
  • }
  • b++;
  • getch();
  • }

Input..

If a=2; then

Result..

Table using ‘do while’ loop of desired number…

  • #include<stdio.h>
  • #include<conio.h>
  • void main()
  • {
  • int a, b, c;
  • clrscr();
  • printf(“Enter your desire number”);
  • scanf(“%d”, &c);
  • do
  • {
  • a=c;
  • Printf(“%d”, a*b);
  • b++;
  • }
  • while(b<=10);
  • getch();
  • }

Input…

If the a=2; then

Result..

Table in C language.

Table in C language….

Let’s understand some concept..

Table is made by multiplication of one repeat number &another is changed from 1 to 10. So, in these code, table is made by using loop method. Take example..

  • 2*1=2
  • 2*2=4
  • 2*3=6
  • 2*4=8
  • 2*5=10
  • 2*6=12
  • 2*7=14
  • 2*8=16
  • 2*9=18
  • 2*10=10

Repeated number is 2 and change number which changed by loop(for). You can write according to your need then you can start two loop. Example.. 1 one for repeated number and another for changed number.

Some important symbols used in code.

  • () small bracket
  • && use for ‘and’ use for address
  • {} curly bracket
  • “” double code
  • #include<stdio.h>
  • #include<conio.h>
  • void main()
  • {
  • int a, b, c;
  • clrscr();
  • printf(“table from 2 to 20”);
  • for(a=1; a<=20; a++)
  • for(b=1;b<=10;b++)
  • printf(“%d\t”,a*b );
  • getch();
  • }

Input….

If a=2 to 20;

Result..

Your Choice number by scanf…

  • #include<stdio.h>
  • #include<conio.h>
  • void main()
  • {
  • int a, b, c;
  • Printf(“Enter the choice number”);
  • Scanf(“%d”, &a);
  • for(b=1;b<=10;b++)
  • printf(“%d”, a*b);
  • getch();
  • }

Input..

If choice number is =2

Result…

Write table upto you want..

  • #include<stdio.h>
  • #include<conio.h>
  • void main()
  • {
  • int a, b, i;
  • clrscr();
  • print(“Enter your number upto you want to write table”);
  • scanf(“%d”, &a);
  • for(i=1;i<=a;i++)
  • For(b=1;b<=10;b++);
  • Printf(“%d\t”, i*b);
  • getch();
  • }

Inputs…

If a=2 and upto 20 or any

Result…

Table with their multiplication..

  • #include<stdio.h>
  • #include<conio.h>
  • void main()
  • {
  • int a, b, c;
  • clrscr();
  • printf(“Enter you choice number”);
  • scanf(“%d”, &a);
  • for(b=1;b<=10;b++)
  • printf(“%d * %d = %d”, a, b, a*b);
  • getch();
  • }

Inputs..

If a=2;

Result….

Table in C laTable in C language using ‘while’ & ‘do while’.

we never alone, best inspirational..

We are never alone..

We are never ALONE. If you think ‘I am alone in this world’ then your are wrong. if you think empty & feel alone. Because Nature things present everywhere. Who join the living things to Non-living things or non-living things to living things. If you want to take trail then, Close your eyes for a moment. Take Breathe deeply and release. Slow the thinking process about yourself or any other and world, after some time you realize that we are never alone. Even it is a Race of any field or personal problems.

I think that you have to know some way. By which you can adjust according to surrounding or nature. So, read these messages and find comfort and never feel alone. It is truth, life is fulfilled with to much pain. That pain have no medicine. Only medicine is hard work in whole life. Because any success man had done hard work. When you see, nature behave according to man. They never feel alone because too many person are behind him.

We are never alone, yet for moments. we feel like, we are stranded in a deserted Island of our incomprehensible stories, sorrows, and thoughts. then, There are moments when no matter. how many times, we try to explain ourselves, everything slowly turns into a turmoil of confusion and angst. If you are at home in room, alone. At that time, you do not feel strong. you do not be able to pick yourself up. Sometimes you will feel so tired, even lifting your head from the pillow or body from bed is an accomplishment.

Truth…….

But in every trial, in every hardship, in every broken time —you are not alone. All world or world things belong with us and run..

[We feel like we are seeking a “great perhaps” that nobody understands. And that confusion turns into worry, and the worry turns into anxiety and fear and for a minute.] we forget our dream. We become oblivious to the sun, that lights our path. Every morning, to the make beautiful around us, which  light coming from all the sources. We forget about the power that is confined within ourselves and we cripple under the weight, the critiques, the accusations. We feel chained to the words that are spoken about us, to follow our family’s path, to listen to what the world has to say, but no matter how strong they, we are stronger than them.

Sometimes others will support you and solve problem with you, and other times you will stand alone, and it will be daunting, lonely, and beautiful. the world is waiting for us to make our only occurrence remarkable. Be remarkable, seek your perhaps before it is a little too late, and know that somewhere out there, an aspiring beam of light, is waiting to hear about your stories and remind you that although every single person is different, we never have to face the world alone.

Let’s talk about our dream..

Many think about magic or film stories. Then we are wrong because, At that situation, they show righy way, give some important suggestions, some effort, not too much. Because if give too much effort then that situation is handle by him. Like, Someone is knocking your front door, begging to be let in. He is standing there, open-armed, with a some effort in His hands. He wants to share his important suggestions with you.

” the whole world being on a boat. of course, some people can get feel ducked up, it is a matter to look that we are never alone”.

In world, due to physical distance, we are trapped inside walls of houses. Living the life of a ‘Sannyasin’ in the 21century. Body physical distance is inevitable. But the greatest loss is that of mind. Loneliness dominates. But loneliness and solitude are not one thing. Yes, my loneliness is certainly a hard one. As the American printer Edward toper’s portrait shows how these situations could come in close proximity to their loneliness. Mountain caves have peace of solitude. So you may feel lonely even in the crowd. In fact, we understand the need for closeness in different ways. Loneliness is felt only when the need is fulfilled. Although digitization is a TAB on society. The pain in its share is considered to be worse. This is coupled as failness on the society. But, this is not right fact at time of quarantine /isolation. How does loneliness work and

it’s important to know how to protect ourselves from rest of the bad parties. The social of university of Chicago Neurologist says John casino That is, loneliness is subjective feeling. Loneliness in itself is not truth. ‘according to John, loneliness is that state. Is when humans are very proud seems to be far from realizing. He gets trapped in a confused circle of minds and starts to misunderstand everything in society. The whip seems to be alienated. Even when the internet and the phone talk does not respond, it becomes unusually sad. He seems worried. It was all over. There was nothing left for love. Indeed, need to be connected at the moment is the central need.

Do the exercises associated with breath. Be join with Nature. Look new leaves. See the cloud and which receiving by nature, feel and realize by smelling the fragrance and tastes. Nature is moving according to his time. To pay attention on this. Realize that decreasing fear from loneliness. This loneliness is deeply understood by British writer Varganias vulf. 1929 She wrote in her dairy that ‘if I am catching this realization then saying it is a song of real world. The solitude of this kingdom is manifested by the fact that man has lived in world’ . It is worth mentioning that wolf had been ill for a the bed and resting at bed she wrote a many stories which wash the mankind their mind. – keeping works. Art is the most beautiful and influence consolation of the time. There is magic in the novel who join you by uncountable strangers things.. It is like meet and see. Love do not make by touches. It can travel by written word in book. Though it would be very odd to say, we can live in comfort with loneliness. Strange as it is, it keeps us on the normal level of the human world. Some are now out of danger, unnerved to wait for for normal days, but others are happy to be in the midst of them and are spending their time betterly.

Whenever you feel…..

Take rest for while and take deep breath in and out. Stop thinking. After some time listen your favorite song and start thinking with positive mindsets.

Write a programme which find years, months & days according to your DOB? in C language

Let’s understand some concept.

By this codes you can find or calculate your age (years, months & days ). If you want to understand the concept then read carefully and then use. According to “permutations and combination”. In your date of birth & current date, even your

  1. DOB date is smaller than current date & DOB month is smaller than current month. (current date 20/04/2020 & DOB 15/03/1998)
  2. DOB date is larger than current date and DOB Month is smaller than current month. (DOB 25/03/1998 & current date 20/04/2020)
  3. DOB date is smaller than current date & DOB month is larger than current month.(DOB 15/06/1998 & current date 20/04/2020)
  4. DOB date is larger than current date & DOB month is larger than current month. (DOB 25/06/1998 & current date 20/04/2020)

So, there are four possibilitie in which your date of birth and current date depend. That condition occurs, are explain above with possible examples.

Some important symbols used in code.

  • () small bracket
  • && use for ‘and’ use for address
  • {} curly bracket
  • “” double code
  1. #include<studio.h>
  2. #include<conio.h>
  3. Void main()
  4. int a, b, c, d, e, f, g, h,I, j, k;
  5. clrscr();
  6. printf(“Enter your date of Birth in format of DD/MM/YYYY”);
  7. Scanf(“%d%d%d”, &a, &b, &c);
  8. printf(“Enter your current Date in format of DD/MM/YYYY”);
  9. Scanf(“%d%d%d”, &d, &e, &f);
  10. If(a<d&&b<e)
  11. {
  12. i=d-a;
  13. j=e-b;
  14. k=f-c;
  15. printf(“%d Years %d Months %d Days”, k, j, i);
  16. }
  17. else if(d<a&&b<e)
  18. {
  19. i=(d+30)-a;
  20. j=(e-1)-b;
  21. k=f-c;
  22. prinf(“%d Years %d Months %d Days”, k, j, i);
  23. }
  24. If(a<d&&e<b)
  25. {
  26. i=d-a;
  27. j=(e+12)-b;
  28. k=(f-1)-c;
  29. printf(“%d Years %d Months %d Days”);
  30. }
  31. else if(d<a&&e<b)
  32. {
  33. i=(d+30)-a;
  34. j=(e+23)-b;
  35. k=(f-1)-c;
  36. printf(“%d Years %d Months %d Days”, k, j, i);
  37. }
  38. getch();
  39. }

Input

Take any example : date of birth: 29/03/1998 current date:20/04/2020

Results or output

22Years 0month 21days

Three digit number arrange in smallest order

Three digit number arrange largest than before

Write a programme which arrange three digit number in descending order? in C language

Let’s under stand some concept

If you enter three digit to arrange into descending order then you have to under stand the some concept of permutations and combination (according to permutations and combination). ” three digit number can arrange in six possible digit number” so, you have write six line for make number and six line to compare number to another.

Example– if you take number likes 123

Some sign are used like

  • () small bracket
  • && use for ‘and’ use for address
  • {} curly bracket
  • “” double code
  • #inclide<studio.h>
  • #include<conio.h>
  • void main()
  • {
  • Int var, a, b, c, d, e, f, g, h, I, j;
  • Clrscr();
  • Printf(“enter the three digit number to convert into ascending order” );
  • Scanf(“%d”, &var);
  • a=var/100;
  • b=var%100;
  • c=b/10;
  • d=b%10;
  • e=a*100+c*10+d;
  • f=c*100+a*10+d;
  • g=c*100+d*10+a;
  • h=d*100+c*10+a;
  • i=d*100+a*10+c;
  • j=a*100+d*10+c;
  • If(e<f&&e<g&&e<h&&e<i&&e<j)
  • {
  • printf(“smallest=%d”, e);
  • }
  • else if(f<e&&f<g&&f<h&&f<i&&f<j)
  • {
  • Printf(“smallest=%d”, f);
  • }
  • If(g<e&&g<f&&g<h&&g<i&&g<j)
  • {
  • printf(“smalllest=%d”,g);
  • }
  • else if(h<e&&h<f&&h<g&&h<i&&h<j)
  • {
  • printf(“smallest=%d”, h);
  • }
  • If(i<e&&i<f&&i<g&&i<h&&i<j)
  • {
  • Printf(“smallest=%d”,i);
  • }
  • else if(j<e&&j<f&&j<g&&j<h&&j<i)
  • {
  • printf(“smallest=%d”, j);
  • }
  • getch();
  • }

Input Output or result….

If you enter any number to arrange any number in descending order. Then result are given below.example 321

Results. 123

Attractions and Interests

Here you can clear your confusion in own languages.. Let’s start… Read carefully..

Attraction comes from your Interest. If you think attraction is differ,then you wrong, because Interest decide your Attraction. Some habbit is very bad like; Romances, love, send message, talk to anyone, wonder with any close, etc. That same thing belong to your attraction.

Take example of watching videos; it is best example of Attraction.

  1. If someone(even they belong to your too close ) say that let’s goto watch comedy video, Romances videos then, you say that I have no time or today have no mood to watch. But Anyone say that let’s goto watch hot or porn videos. Immediately you give a response or say him only 2 minutes or only 3 minutes blog…blog….blog. Even you have time or have mood to watch.
  2. Whenever you search something on Google. Google shows the related result. Obviously it is right, but due to some advertiser which attach some spam related image which hold imforation of some other sites. Poster page hold any hot or sexy lady or their too short clothes or some other medicine, porn videos, HOT Images which give strong strategy for sex purpose. That image Attract you and spent your time or you want to take enjoy. That is big attraction example if you have Interest in them. All attract you as per your need or Interest.
  3. If your interest in romantic or comedy videos. Then you attract by like Vigo video, Vmate video, Hello video, etc. Situation If you use your phone for single call. At that case if you see massage of any video then you attract.

Many person have same confusion that Attraction, Interest. But there little difference between them. Some know but ignore. It isn’t right way for your dream future.someone tell you  that but not completely so, I am trying to explain what’s difference between them & tell you all of that? Because everyone has interests. Some do things but without think about that or more information. Some parent’s forces them to do with own interest. I think, they right to choose their interest themselves. Sometime when I ask someone about their interest they first laugh and say that “I don’t have any interests or Attraction.” It’s my experience that all person have their respective interests & Attraction in different – 2 field.

But there’s a difference between a Animal and a human. Every single human being has interests and Attraction & Animal have also attraction and Interests. They also follow their interest and Attraction. Think for while human have power to handle situations, but animal can not. So,”every single human being has interests and Attraction” Let’s come and go for try to sink in our Attraction & Interests.

What do you mean by attraction?

Attraction is the act of enticing someone or something or a person or thing that entices. An example of people experiencing an attraction. Two people who are drawn to each others look. Attraction is a strong feeling of desire someone or something which are generated by interest. Attraction is not a reliable source of information. You look at someone or you hear someone or you think about someone and if you feel more interest in them than others.then that is your attraction at that time. Even it’s a person or someone and anything.

Let’s understand in very easy language..

Attraction is strong feeling of desire to want someone or something. If you think that there are no difference between them, difference is that it strong feeling in which You do work physically or without physical. If you work physically then that are your Interest. Because attraction is feeling which pull you for some enjoy in all cases. Take an Example of Attraction; whenever you see a beautiful house, furniture, statues, garden, mountain, bank of river, park, person, etc. At that time you will think about to meet, touches, wonder, look, etc. Because you have already Interest in beauti, so at that place attraction generate, constrained you for go and take enjoy & fun. Take another example; if you listening a romantic, sad, devotionals song. That is your Interest but whenever you go anywhere like; birthday party, wedding party, or anyother, going for work out, music hall, etc. At that place only you concentrated on that song or music, get stop if you doing any thing, doing work with very enjoy. it attract you at that time because it is your interest.

Take an example of listening news; if you are at home or anyother place where any T.V show news channel. If T.V shows any film or advertising then your concentration is not fix. If T.V shows news then your concentration is fix and in this cases same situation, you get stop if doing any work, like; eating, indoor game playing, etc.

Take an example of dance; In this Cases if you are interested in dance then obviously you attract by dance. If attend any types of Party, alone place, when you alone at your room or house. After listening an your heart touches song then obviously you move your leg or dance because you attracted by dance.

There are some examples of Attraction which mainly feel and see in your everyday life….

  1. Listen music
  2. Listen News
  3. Romances
  4. See or look beautiful
  5. Enjoy with comedy, movies
  6. Dance when listen or see anybody.
  7. Watching porn videos when you live alone or with too close.

How can you observe your Attraction?

Observes your all activity, in which field you a Interest. Actually If you have an interest in. It might be physical, mental, fascination. Start from the very beginning by choosing your people based on genuine attraction it’s belong to your interest. Donot anything. Only that matter which happens in your life.

It means that if you have any kind of interest ; desire to be with someone, even that is your girl or boy friend, wife, father, mother, brother, sister, any your close. Matter belong to romantic, family matter, philosophical, psychological, political. it’s just the sense of being more interested in one particular individual than most others. That place any person who give you respect, pleasure or whatever you want.

What do you mean by Interests?

Interest is the feeling of want to do, play and learn about specific work, game and about someone or something. It is a quality that attracts your attention to do something as per your Interests. Interest is somewhat similar to curiosity. When you develop an interest in something, then increased Interest to learn more about that. For example, if you develop an interest in PUBG, you may want to watch video of winner how they cross level or learn how to play PUBG. However, interest is not as intense as passion; when you are interested in something, you will spend your free time on this interest, but if you don’t have time, you won’t make any special effort to make time. For instance, imagine that if you have developed an interest for reading Dramatic, Jokes, Magic, Adventure comics ; you’d read comics when you have free time, but if you miss reading comics then don’t change any things in your life. Because it’s not treated as Attraction and person have more than one interests.

The some examples that will help you to understand the Interest.

  1. Singing
  2. Acting
  3. Dancing
  4. Learning
  5. Playing
  6. Drawing
  7. Teaching
  8. Cooking
  9. Painting
  10. Travelling
  11. Watching videos

RAM (RANDOM ACCESS MEMORY) and ROM (READ ONLY MEMORY )

There are several major differences between a ROM (READ ONLY MEMORY) chip and a RAM (RANDOM ACCESS MEMORY) chip.

RAM (RANDOM ACCESS MEMORY)

A RAM is also called as read/write memory. The RAM is a volatile types memory. It allows programmer to read or write data. If the user wants to cheak excuation of any program, user the feeds the program in RAM memory and executes it. The result of execution is then checked by either reading memory location contents or by register contents.

There are two kind of RAM…….

  1. SRAM ( Static Random Access Memory)
  2. DRAM (Dynamic Random Access Memory)

SRAM (Static Random Access Memory)

SRAM consists of flip-flop; using either transistor or MOS. For each bit we require one flip-flop, Bit status will remain as it is; unless and until you perform next write operation or power supply is switched off.

Advantages of SRAM..

  1. Fast Memory.
  2. Refreshing circuit is not required.

Disadvantages of SRAM…

  1. Low package density.
  2. More costly.

DRAM ( Dynamic Random Access Memory )…

In this types of memory a data is stored in form of charge in capacitors. When data is 1, the capacitor will be charged and if data is o, capacitor will not be charged. Because of capacitor leakage currents the data will not be hold by these cells. So the DRAMs require refreshing of memory cells. Dynamic RAM has to be refreshed periodically generally every to millisecond. So need refreshing circuit. It is a process in which same data is read written after a fixed interval.

Advantage of DRAM..

  1. High package density
  2. Low cost

Disadvantage of DRAM..

Required refreshing circuit to maintain or refresh charge on capacitor, every after few milliseconds.

ROM ( READ ONLY MEMORY)

A ROM is non- volatile memory and it is the parmanent type of memory ( READ ONLY MEMORY ) contains are not lost even when is power supply is switched ‘off’. However, the user can not write into a ROM it contains written into at manufacturing time.

The data stored in the ROM can’t be changed, or at least not easily but these day you can erase data quickly. Examples are given below..

More recent generations, such as EPROM or Flash EEPROM (flash memory), the content can be deleted and rewritten multiple times, but it is still considered “read-only”. The main reason for keeping it named “read-only” is that the process of reprogramming (erasing and writing) is usually slow and can only be written in places determined by formatting.

There are four kinds of ROm..

  1. Mask ROM
  2. PROM (Programmable Read only Memory)
  3. EPROM (Erasable Programmable Read only Memory)
  4. EEPROM (Electrically Erasable Programmable Read only Memory)

Mask ROM…

The program or data are parmanently installed at the time of manufacturing as per requirement. The data cannot be altered. The process of permanent recording is expensive but economic for large quantities.

PROM (Programmable Read Only Memory )

The basic function is same as that of masked ROM, but in PROM, we have fuse links. Depending upon the bit pattern, fuse can be burnt or kept intact. This job is performed by PROM programmer.

It is use high current pulse between two lines. Because of high current, the fuse will get burnt;effectively making two lines open. Once a PROM is Programmed we cannot change connections, only a factility provided over masked ROM is, user can load his program in it. The disadvantage is a chance of regrowing of fuse and changes the programmed data because of aging.

EPROM ( Erasable Programmable Read only Memory)

The EPROM is Programmable by the user. It uses MOS circuitry to store data. They store 1’s and 0’s in form of charge. The information stored can be erased by exposing the ultraviolet light which erases the data stored in all memory location. For ultravoilet light a quartz window is provided which is covered during normal operation. Upon erasing it can be reprogrammed by using EPROM programmer. This types of memory is used in project developed and for experiment use. The advantages is it can be programmed erased and reprogrammed. The disadvantage is all the data get erased even if you want to change single data bits.

EEPROM (Electrically Erasable Programmable Read only Memory)

This is similar to EPROM except that the erasing is done by electrical signals instead of ultraviolet light. The main advantage is the memory location can be selectively erased and reprogrammed. But the manufacturing process is complex and expensive so do not commonly used.

What is the main differences between RAM and ROM

Data storing in these types of Memory..

RAM is volatile memory which could store the data as long the power is supplied.

ROM is a non-volatile memory which could retain the data even when power is turned off.

Working types of these Memory

Data stored in RAM can be retrieved and altered.

Data stored in ROM can only be read.

Uses of these types of Memory..

Used to store the data that has to be currently processed by CPU temporarily.

It stores the instructions required during bootstrap of the computer

Speed of Memory…

It is a high speed memory.

It is much slower than the RAM.

CPU Interaction…

The CPU can access the data stored on it.

The CPU can not access the data stored on it unless the data is stored in RAM.

Size and capacity of these Memory..

Large size with higher capacity.

Small size with less capacity.

Cost or price

Costly than ROM

Cheaper than RAM

Used as/in

CPU caches, Primary memory.

Firmware, micro-controllers

Accessibility

The data stored is easily accessible

The data stored is not as easily accessible as in RAM

Importance of RAM in your smartphone..

RAM is read-write memory so data can be store again and again. If you get start your smartphone then operating system stored in RAM for work properly and faster when users gives command. Take a example of your application or apps you start and after some time get back and start another apps. After sometime if you start your first apps, then you can. Because RAM store your data. Condition is that if you don’t switched ‘off’. In back of screen RAM store and run as well as your smartphone ‘ON’.

Why it’s use in your smartphone.

In simple language, It stores all running and stored in smartphone. It it gives quick access to the smartphone. Whenever if you search your activity which done about 1 or more minutes ago. You can find easily same activity which you did done. Take example of Chrome if you open more than 4 or 5 pages, its your page data not history and current working on pages.

Why do you need more GB for your RAM..

The basic is that If the storege capacity of your RAM is high then you can run multi program in single smartphone. And you can also use multi apps for long periods with more data. Just like listening songs, pubg games, call, use internet browser, YouTube, WhatsApp, Facebook, etc more GB RAM make you multi person for handle more program by single smartphone.

Importance of ROM in your smartphone..

ROMs built into smartphones these days are much faster than traditional computer hard drives and they are also connected directly to the motherboard. In that ROM, that the bootloader is stored (a program that starts the device and loads the operating system likes kernel, Mac, Android, etc ), as well as the operating system itself and all user data and applications.

The modified versions of the operating system are also referred to as modified ROMs. If you search online, results will tell you that there are a number of customized ROMs that exist. different operating systems has their own Modified ROM.

Why it’s use in your smartphone

ROM is faster memory. it load your operating system in RAM for get started your phone. whenever you switch ‘ON’. It is directly connected to motherboard. It is fastest operating system loading in your smartphone.

Importance of RAM in your computer..

RAM is read-write memory so data can be store again and again. If you get start your computer then operating system get stored in RAM for work properly and faster when users gives command. Take a example of your application or apps you start and after some time get back and start another apps. After sometime if you start your first apps, then you can. Because RAM store your data. Condition is that if you don’t switched ‘off’. In back of screen RAM store and run as well as your computer ‘ON

Why it’s use in your computer…

In simple language, ROMs built into computer these days are much faster than traditional computer hard drives and they are also connected directly to the motherboard. In that ROM, that the bootloader is stored (a program that starts the device and loads the operating system likes Linux kernel, Mac, windows, etc ) as well as the operating system itself and all user data and applications.

Why do you need more GB for your RAM..

The basic is that If the storege capacity of your RAM is high then you can run multi program in single computer. And you can also use multi apps for long periods with more data. Just like word, excel, panting, editing, typing, listening songs, pubg games, call, use internet browser, YouTube, WhatsApp, Facebook, etc more GB RAM make you multi person for handle more program by single computer.

Importance of ROM in your computer..

ROMs built into computer these days are much faster than traditional computer hard drives and they are also connected directly to the motherboard. In that ROM, that the bootloader is stored (a program that starts the device and loads the operating system likes Linux kernel, Mac, windows, etc ), as well as the operating system itself and all user data and applications.

The modified versions of the operating system are also referred to as modified ROMs. If you search online, results will tell you that there are a number of customized ROMs that exist. different operating systems has their own Modified ROM.

Why it’s use in your computer..

ROM is faster memory. it load your operating system in RAM for get started your computer. whenever you switch ‘ON’. It is directly connected to motherboard. It is fastest operating system loading in your computer.

Write a programme which arrange three digit number in ascending order? in C language

Let’s under stand some concept

If you enter three digit to arrange into ascending order then you have to under stand the some concept of permutations and combination (according to permutations and combination). ” three digit number can arrange in six possible digit number” so, you have write six line for make number and six line to compare number to another.

Example– if you take number likes 123

123, 132, 312, 321, 213, 231 that’s a possible number.

Some sign are used like

  • () small bracket
  • && use for ‘and’ use for address
  • {} curly bracket
  • “” double code
  • #inclide<studio.h>
  • #include<conio.h>
  • void main()
  • {
  • Int var, a, b, c, d, e, f, g, h, I, j;
  • Clrscr();
  • Printf(“enter the three digit number to convert into ascending order” );
  • Scanf(“%d”, &var);
  • a=var/100;
  • b=var%100;
  • c=b/10;
  • d=b%10;
  • e=a*100+c*10+d;
  • f=c*100+a*10+d;
  • g=c*100+d*10+a;
  • h=d*100+c*10+a;
  • i=d*100+a*10+c;
  • j=a*100+d*10+c;
  • If(e>f&&e>g&&e>h&&e>i&&e>j)
  • {
  • printf(“larger=%d”, e);
  • }
  • else if(f>e&&f>g&&f>h&&f>i&&f>j)
  • {
  • Printf(“larger=%d”, f);
  • }
  • If(g>e&&g>f&&g>h&&g>i&&g>j)
  • {
  • printf(“larger=%d”,g);
  • }
  • else if(h>e&&h>f&&h>g&&h>i&&h>j)
  • {
  • printf(“larger=%d”, h);
  • }
  • If(i>e&&i>f&&i>g&&i>h&&i>j)
  • {
  • Printf(“larger=%d”,i);
  • }
  • else if(j>e&&j>f&&j>g&&j>h&&j>i)
  • {
  • printf(“larger=%d”, j);
  • }
  • getch();
  • }

Input Output or result….

If you enter any number to arrange any number in ascending order. Then result are given below.example 123

Results. 321

For any other help you can follow us on Twitter, Facebook, Instagram…. Today world.

Continue reading “Write a programme which arrange three digit number in ascending order? in C language”

Interests and Passsion

Many person have same confusion that Passion, Interest &  Hobbies. But there little difference between them. Some know but ignore. It isn’t right way for your career.someone tell you  that but not completely so, I am trying to explain what’s difference between them & tell you all of that? Because everyone has interests. Some do things but without think about that or more information. Some parent’s forces them to do with own interest, own hobbies. I think they right to choose their interest themselves. Sometime when I ask someone about their interest they first laugh and say that “I don’t have any interests or passions.” It’s my experience that all person have their respective interests & Passion in different – 2 field.

But there’s a difference between a Animal and a human. Every single human being has interests and passions & Animal have also passion and Interests. They also follow their interest and passion. Think for while human have power to handle situations, but animal can not. So,”every single human being has interests and passions” Let’s come and go for try to sink in our Passion & Interests.

But, sometimepeople think they have no passions? It’s because of the surrounding system.take an example of school surrounding and system, Our school system transforms students into a machine. School also forces us into these subjects to test us as a way to force us to explore our interests and develop our knowledge in single topics. They check our interest then they help in develop our Passion. School system, after checking Interests, they create fun and enjoyment surrounding for learner.

What do you mean by Interests…

Interest is the feeling of want to do, play and learn about specific work, game and about someone or something. It is a quality that attracts your attention to do something as per your Interests. Interest is somewhat similar to curiosity. When you develop an interest in something, then increased Interest to learn more about that. For example, if you develop an interest in PUBG, you may want to watch video of winner how they cross level or learn how to play PUBG. However, interest is not as intense as passion; when you are interested in something, you will spend your free time on this interest, but if you don’t have time, you won’t make any special effort to make time. For instance, imagine that if you have developed an interest for reading Dramatic, Jokes, Magic, Adventure comics ; you’d read comics when you have free time, but if you miss reading comics then don’t change any things in your life. Because it’s not treated as Passion and person have more than one interests.

The some examples that will help you to understand the Interest.

  1. Singing
  2. Acting
  3. Dancing
  4. Learning
  5. Playing
  6. Drawing
  7. Teaching
  8. Cooking
  9. Painting
  10. Travelling

What do you mean by Passion

Passion is strong feeling to do something whit stress and without missing in your life or a strong feeling of enthusiasm and excitement for something do better in your life. You may be a barely control your emotion as per your need. When you are passionate about something. Then, you will probably feel that you cannot live without it. A person have a passion for specific term. If you are passionate about something, you’ll arrange your time for it in your daily life no matter how busy you are or spent your time for. For example, if someone says that he has a passion for PUBG, he’ll definitely take the time to play PUBG, watch PUBG VIDEO if someone play or he may even choose a profession related to GAME if you are passionate about something.then you never look free and without stress.

The some examples Passion which are mainly found…..

  1. Singer
  2. Painter
  3. Player
  4. Teacher
  5. Artist
  6. Pilots
  7. Driver
  8. Learner
  9. Actor
  10. Dancer

But if you are pursue as a career it make a profit? I understand that. So ask yourself a question: “which types of Interest you have, give more fun, enjoy and profit then after that make your Passion” if you do more practice, you get better results. Even you can check Passion according to your dream. Get success in Your Life. If you attention and receive enjoy and little stress.

How can know your Passion & Interests….

Make a list of your daily working routine. For checking give preority to every listed line which are listed in your list. check one by one, which lines gives you fun and enjoy. If also give profit which Will make your bright future.the main factor is that without achieving Your Passion you can’t sleep in night or day but if you achieveing then you can sleep in night or day without any pressure or tension. Same for your interests if you get enjoy and fun, feel relax before than past. Find your interests and make it as your passion.

Passion and hobbies

The MainDifference Between passion & hobbies.

With our experience hobby is the main dream of our heaven life. In daily life when we get feel stress, going into dspression, consuming of time, some say that it is my dream but they behave like one direction blowing air. Main factor is that consumption of time without receiving their profitable result. In Changing year or time, mostly persons even they are men, women, student or any. They are saying that they want to feel relax within working of 2 or 3 hour. It is also right but, taking too much relax. Which is not better for your whole life because if it is your regular hobbies, means daily consume your time belong to your passion or refer as passion. Passion is main and right way to achieve your. In Passion if you consume your time then it’s sure that you will get profitable result in your life. If any success in his or her life surely, they have their respective or desired passion. Take example of any person: Mukesh Ambani, Dhirubhai Ambani, Abraham Lincoln, Mahtma Gandhi, A.P.J Abdul Kalam, Narendra Modi, Thomas Edison, etc. If you want be passionate and know more about your hobby then, they ask to yourself ‘what am I doing? What’ s benefits, what scopes in your future,it is right or not.

A hobby is something you do when you’re bored or have free time. Maybe you want to relax, be social with friends or kill time. In the U.S., 42 percent of adults say watching TV is their go-to leisure activity. Other popular hobbies include reading and getting on the internet. Hobbies come in all shapes.

A hobby is way you do when you’re feeling stess or have free time. May be you want to relax, be social friends or consume time. Other people Ave different hobbies like, they like to reading, playing, dance acting, travelling, wondering, hunting, fighting, teaching, eating, cooking recipes, panting, drawing, sewing,etc. By getting different sources like TV, playground,stadiums, cinema hall, school, etc.

There are some examples popular hobbies which are done by in your daily life.

  1. Dance
  2. Acting
  3. Travelling
  4. Swimming
  5. Playing
  6. Drawing Art
  7. Novels & stories reading ( comics reading )
  8. Hiking
  9. Sewing
  10. Cooking different recipes
  11. Painting
  12. Planting & irrigation

There are some fact about your great hobbies. Which can be both fun and practical. If you want feel like this, do above activities for feel relax, coming from stress, want fun & enjoy like draw, painting,planting, playing travelling, dance, cookin, ssewing, etc. while you can also learning valuable skills, use later in life. Receive more value.

If you learn to knit, you’ll discover patience and perseverance. Or if you decide to take up running, you’ll gain a crash course in willpower and endurance.

With your hobbies, It’s all about for fun & feel relax and enjoying yourself with doing above activites.

  1. Hobbies generally only occupy your mind when you are doing them, or on occasion otherwise. Passions stick with you all day and you’re always thinking about some aspect of them.

The Difference Between Passions and hobbies

A passion is strong right way of achieving their goal by their ideal person or doing following activities. you can never find whithout asking yourself in which field you have interest or better. That work might be hard and stressful for you and relative also. You have no enough times when you want to give up. But at the end, the reward is worth the effort and talk  or realizes about why it’s too close and dear to your heart.

You remember Do you have that nights where you laying on bed, unable to sleep or unable to close your eyes for while? Even day or night. Feel fear and always  died hundred times in single days. May be You have an idea about how many people are homeless and find shelter in your community or in your country. It is main factor about continuously changing your passion to Seeing a failure person.

Some important examples of passions include passionate person:

  1. Volunteering to save sea turtles
  2. Getting your body in peak shape
  3. Perfecting the craft of jewelry making
  4. Establishing an ’80s movies club
  5. Biking across Central America

A hobby can become a passion if take it seriously in your life. And similarly, a passion can become a hobby if take it like – it’s also way of make fun and enjoy any time. The main difference is that whithout  passion you can’t live while a hobby is just to consume your free time and feel relax,coming from stress.that is more important.

How to Generate Passions & hobbies

If you don’t know what your hobbies or passions ,then don’t worry. because, No any person learned in their childhood.after getting any fail result, they learn. You’re not alone in world, many person unable to understand their interests. Some ideas are: Start by meeting new people or failure people and implement, trying new things. If you want to find your hobby, don’t be late.Try your hand at basket weaving or create a custom arrangement made with wildflowers.

To pursue a passion, find a cause that reason and wrong with you.You feel the need to help others or solve the some problems, which relate to you or your family. Go out of your comfort zone. Seek out controversy and think about what can you do for yourself and other.

To know what’s your value in this world then if you are doing this: if you deal with anxiety and depression, for example, you might join an organization dedicated to promoting more regulations in mental health care. If you’re worried about human impact on the environment, you could join a mission to help migrate baby sea turtles. The more you participate in passions, the more you will learn about yourself and your role in the world.

How to check your relaxing or intense in activities

After start doing the above activity. then, gauge how you feel. If you’re enjoying yourself and feel relax without stress, you are probably pursuing a hobby. If you feel almost upset and sometimes stress, or at least a bit tense or focused at same point, you’re achieving your passion.

  1. It’s just like crazy mood, but passions tend to cause you a bit of suffering. You have to care a lot about it than expected by anyone. so, pursuing a passion is not usually a restful experience.
  2. Hobbies are enjoyable, fun and pleasant, so you should feel relax at peace when you’re involved in a hobby.
  3. For example, head out to your woodshop and start building something. If you are in deep concentration and feeling on edge, you’re passionate about woodworking.

How can you determine that your are trying to improve at the activity.

Do the activity a little more frequently than you usually would. Pay attention to whether you are working hard to get better result at it or if you are doing for it. If you working hard get enjoyment and fun better than get stress bit of enjoy, as passion Than hobbies.

  1. If You work to better at a passion, but you are satisfied with having fun with a hobby.
  2. For example, if you are always drawing new figures that challenge you, it’s your passion. If you like to draw rose and your house figures repeatedly, that’s your hobby. Many are examples are listed above.

How can know it’s passion and belong to you.

It is very necessary point that make a list of values ( even it is profitable ornot ), about your’s like: life, society, or your faith or belief system. Then make a list of pursuits that you think might be passions. If any of the activities line up with profitable values then you hold that line and work, because those are really passions.

  1. If you really realize then takes some abstract thinking on that line, so give yourself enough time to look realize over the lists.
  2. For example, you might list hiking, singing, and gaming as hobbies. You might list being adventurous, staying healthy, admiring beauty, and unplugging from technology as values. As you can see, hiking aligns with those values, so it’s a passion.

The Benefits Passion & Hobbies

By consuming your free time, there are plenty of benefits to engaging in hobbies and passions. Both allow you to develop essential traits that creates excel in your career, survive child-rearing and much more. You can gain fun while also gaining some critical skills like patience, more important value confidence, and leadership, high thinking ablilty, hard working ability, etc.

Hobbies can be a right way to enjoy and fun by profitable activities like reading, playing, swimming,drawing, travelling, dancing without any pressure or expectations.but one condition is that make your time table according to your daily  working routine.

In Passions doing this activites, refer to be gains something big in your in life and keep quiet your mind at night and sleep peacefully.regular active and get right path. In Passion, You can do what you want, whether it is drawing, painting, swimming, playing game, cooking recipes, teaching, dancing, Acting,etc

Inspirational stories – Indian soldiers

Two drop of water……….

When the glass of water is your lips, An invisible hand shakes the glass of water. When he pick up his glass, it shake again. I am screaming loudly, looking out for my heart, dying from thrist, drink water, a rusty body comes and gripes me up, and you are thirsty to this day. Do you remember? “if I tell you so hardly, I was giving water drinking . Your own fired at the game destroy the game.” his jacket is stickened. My throat is stop. Is tied on hearing my curse, she asked to me that are you see a bad dream? would have tied sleeping again saying ‘yes’,not asleep unknow incident start scratching my head.

The incident occurred after the post the seventy – one war and I was posted a command on the post of my company on the border. Both side gun stopped by declaration of ceasefire. The ary was still on the border weary of the tension of the war, the soldiers were waiting from the ruins. The news on the trangister and by listening to film songs from the ‘Vivid BHARATI’, some poignant – hearted young men were feeling the mood of rock – cut with their ‘poignant sound’.

That day I was sitting with Major Sherawat at breakfast table, then company havildar Faulad singh,came in quick steps from the front and informed him with a strong salute. The enemy is moving on to ‘nomansland’. The order was promptly ordered. ‘when company, open wireless set and reach the overview post, and alert the gun position. Do you have any doubt? saying no, Sir, he almost went running. We set out on the phone with necessary orders. Waiter Karam singh grabbed paranthas plate and kept looking at us.

In ten minutes we reached the location and saw,about ten pak army sat down with gunship position. One of the soldiers cry, who is targeted us to see coming towards them.if you cross the line, killed you. That squares and well land have rigits of our ancestral.

Major sherwat spoke sterningly stop nonsense.go back to his line and send his officer for talks. The news was promptly delivered to the bathalion commander. My officer did not came for that to short condition.

The sooner it was delivered to the battalion commander, the later respondent. “that is ball broken. You just kept on worrying until the next judgment. It was known that shah and waiting in a camp in search of an opportunity for security of bangladesh. It is prepared and prepared to give them their answer. Caution has taken place along the narrow corridors of the school-shed artillery, engineers, sines, tech, arched certs,etc. In night other more troop of army reached toward the boarder.

I was waiting for the moment. The following morning orders were received the next day after the preparation and the next morning ‘to drive away the tenth man.’ millijuly patol with the BSF at nomanslakh ‘be sent to the next ten minutes. This if:and then I did my evil eye. So I asked her to write the sword home. My intention was understood by havildar chandra to say’ please don’t worry kharji taspiti the eighty evening company will get the middle one. The departure of Patol ( army trucked ) was fifteen minutes of atrophy. I had also reached his workshop post which was in a two-storeyed roof under the roof of tree. When looked at Manger Sherawat through the telescope. I shouted, get a machinegun. I cried look two pak soldiers came near from left their yesterday position. The one next to our post, lay down near well. Other put his foot on well wall at tree in its leaves, the target was rying to break the branch. The soldiers who were crawling behind hid themselves under the cover of the well. Then the leader took the position near the next tree. The rear grew in the same order. The enemy was clear and he wanted to take one step to capture the post suddenly. Well and tree were rings. Major sherawat did ordered,take fire Pratap one of them. Remember one bullet struck across the chest of an enemy. With blood spray he call its God and get injured completely fall down. Laying down soldiers want to run way to save their life. My second fire across from shoulder who runway. He somehow faltered,reaching the touchestones of well wall. Seeing him pining like a fish in unbearable pain, he slipped away from my mouth. Between the firing on either side. I was watching from telescope. He was quite close to me and his mouth showed clearly that he troubled like fish without water, he was shouting ‘water ang water’. The irony of density was that he went to the well. He had a bottle of water tied around her waist. The failing attempt to know the bottle out of my bullet, hammering hands and dripping was uncomfortable. His thirst for water in the hard charms of asuta that scene could shake my human sentation from the loveted senya sarra to depression,but it would not stop. ‘seeing the opportunity of goliwari saw four culinary bottle of water and swaying with stretcher. I said to Major Sherawat singh sir, he said take the position on the spot.’ no centiments, only duty’. The initiator requires the pour of two volumes of water into the mouth of the dying water

‘gun bullet went through the side Major Sherawat singh. Oh my God by my mouth. The reply was given to him, and he had four get killed. I throught I was criminal. He laughed and said,’ be cool’, but remember is a long way off divide in the war. A choice of do or die. This is a test whose time table and question papers automatically cross. Cottage cheese I am an exploitant one of the enemies of the world had fallen into two feet. He fell close to me. A spark of vengeance awaits me at the touches of his hot blood. He gave away the enemy eight-ten times over to the wound. After three hours of steady firing the enemy resolved down. He died. The success of our mission was fulfilled by the troop. But for server days the rival bhakriya used to mediate his inner being. Sometime two bodies of water for the water, bahai, and sometimes the warm blood of kehar singh. I was surprised and distressed that the war of the fourteen day never weakened. Why you have been to me? perhaps in the darkness of the night, ‘the dead bodies that had fallen in the shadows could not be seen’. In the blasts of mangos and cannons, the workers of underable agony would not be long before my clan could be exposed to them. The first time I was firing, I didn’t see it, but I had to look at it in midst of the day. Of that soorow.the burden is still buried in the earth. That dream is memory of that person and movement.

Courses After 12th

It is very precious time of entire life to take a precious decision about future dreams and course scpoes. This question occupies once they qualify claas 12th.sometime they repeat everytime everywhere ( how can get Job, how can get success ). either it is their parent’s, relatives, teachers or friends. Everyone have same question in their mind.some students have trainer but mostly student confused because they have no any one to give suggestion about their future. Some unables to get single suggestion to take next footstep. so,they have confused and fear every time during pursuing any course.some students have enough money to complete their dream course. They think that I can’t pursue my dream course due to reason of money. Some student have, but they have no trainer at real time for show a real mirror of life.

So,we are making a platform to understand their wanted course or dreamed course.because they can choose their right career.they can also understand other course & can persue if they unable to persue their dreamed course due to money or any other reason. Student should not pick the most convenient option. Instead, they should select an option that motivates them. All of us have different interests, motivations, goals. Every student should select a course based on own dream or goal but not some saying.

Believe on yourself and choose right one according to your interests and hobbies.

  1. If any person or teacher tells you that you are right in any particular topic knowledge and you don’t know in detail about that , After a few years you do not perform well in that. you don’t know you were good at maths because there is a probability that there would be another subject where you could do more better.
  2. Try to think about your future with your interests and find, what you like or comfort with. If You know, then continue.
  3. For career option you can choose anything but think about your ability, just believe in yourself. Because you have only experty in which you are better than all.
  4. Career is something of your life , and you have choose one. because a five years child can never be comfortable with his father’s shoes.
  5. For Example,everyone has the different opinion with some reasons and points. at least you will be confused or otherwise start thinking what is right, Then never Time gives chance anymore for you or anyone.

Engineering Course with high package salary & more job scope…..

  1. Initial Salary – 2.5 to 6 lakh (as per different disciplines)
  2. Architecture – Initial Salary – 2.5 to 3 lakh.
  3. Navy – Initial Salary – As per rank and current pay Commission.
  4. Commercial PilotInitial salary – 1 to 1.5 lakh per month.
  5. B.Sc in Computer Science Initial Salary – 3 to 3.5 lakh per annum.
  6. Law – Initial Salary – depend on your hard work & unwanted.

List of Courses After 12th Sciences PCM….

  1. Engineering course is best course who want to pursue technical course. More course are avaible here, that is depend on your interests & dream or goal.
  2. Btech Architecture Engineering.
  3. Btech Aeronautical Engineering.
  4. Btech Automobile Engineering.
  5. Btech Mechanical Engineering.
  6. Btech Computer Application Engineering.
  7. Btech Civil Engineering.
  8. Btech Electronics & communication Engineering.
  9. Btech Industrial Engineering.
  10. Btech Information Technology Engineering.
  11. Btech Instrumentation & control Engineering.
  12. Btech chemical Engineering.
  13. Btech Mining Engineering.
  14. Btech Electrical & Electronics Engineering.
  15. Btech Marine Engineering.
  16. Btech Print & Media technology
  17. Btech Nuclear Engineering.
  18. Btech Diary Engineering.
  19. Merchant Navy
  20. Bachelor of Technology in Nautical Technology.
  21. Bachelor of Technology in Naval Architecture and ship building.
  22. Higher National Diploma Nautical Science or Marine Engineering.
  23. BSc in Mathematica, Physics, Chemistry. Astronomy, Forensic Science, geology, Agriculture, Information Technology,
  24. Commercial Pilots
  25. SE in Aviation Sciences
  26. Defense ( army, Navy and Air forces through NDA exam ).

List of Top engineering entrance exams in India

Exam name

JEE Main

JEE Advanced

BITSAT

VITEEE

SRMJEEE

COMEDK

KIITEE

WBJEET

MHTCET

BCECE

UPSEE

BHU UG

UNIVERSITY entrence exam or Marit based.

High package salary for PCB student……

  1. Horticulturist (2 – 28 lakhs per annum)
  2. Dermatologist (6 lakhs per annum )
  3. Dentist (4 to 6 lakhs per annum )
  4. Molecular biology (3 to 4 lakhs per annum )
  5. Pharmacist (3 to 10 lakhs per annum easily )
  6. Physiotherapist (3 lakhs per annum to 10 lakhs per annum )
  7. Podiatrist (8 Lakhs per annum )

List of Courses After 12th Sciences PCB……..

  1. MBBS
  2. BDS-dentistry
  3. Ayurveda
  4. BAMS-Homeopathy
  5. Bums-Unani
  6. BSMS-siddha Medicine & Science
  7. BNYS – Naturopathy & Yogic science
  8. Veterinary science & Animal Husbandry
  9. Physiotherapy ( BPT )
  10. B.Sc Occupational Therapists
  11. B.Sc Nutrition and Dietetics.
  12. Integrated M.Sc
  13. B.Sc Biotechnology
  14. B.Sc speech and Language Pathology.
  15. B.sc Anthrology
  16. B.sc Rehabilitation Therapy.
  17. B.Sc food technology.
  18. B.Sc Horticulture
  19. B.Sc Home Science
  20. Bachelor of Pharmacy
  21. BMLT (Medical Lab Technology )

List of entrence for pcb student….

  1. NEET
  2. IIT JAM
  3. KEAM
  4. UPSEE
  5. IPU CET
  6. BCECE
  7. AIIMS MBBS
  8. JIPMER
  9. AIIMS
  10. IEM JEE
  11. DNB CET
  12. NIPER JEE
  13. IIITH PGEE
  14. KLEU AIET
  15. AJEE
  16. PGIMER
  17. SAAT
  18. VEE
  19. Bhu UG

Best course for commerce students…

  1. CA – 5year 3 to 6 lakhs
  2. BBA- 3year 2 to 5 lakhs
  3. B.Com – 3year 2 to 5 lakhs
  4. B.M.S-3year 2 to 4 lakhs
  5. BSc. It 3year 2 to 4 lakhs

List of Business & commerce course….

  1. B.COM
  2. BBA
  3. BMS
  4. CA
  5. Law courses
  6. BBS
  7. BHM
  8. BE
  9. BFA
  10. BCA
  11. BMM
  12. BSc ( Animation & multimedia )
  13. BEM
  14. BFD
  15. BPED
  16. BSW
  17. B.A
  18. BCA
  19. B.Voc
  20. CMA
  21. Actuarial Science
  22. Hospitality Diploma courses
  23. Special Education Courses

List of entrence exam for commerce student……

  1. Bhu uet
  2. IPU CET
  3. Cbsee UG NET
  4. SUAT

List of Courses for Arts Students…

  • BBA- Bachelor of Business Administration
  • BMS- Bachelor of Management Science
  • BFA- Bachelor of Fine Arts
  • BEM- Bachelor of Event Management
  • Integrated and law coursesBA+LLB
  • BMJC– bachelor of generalism Mass communication
  • BFD- Bachelor of Fashion Designing
  • BSW- Bachelor of Social Work
  • BBS- Bachelor of Business Studies
  • BTTM- Bachelor of Travel and Tourism Management
  • Aviation Courses
  • B.Sc interior design
  • B. Sc HOSPITALITY AND HOSPITAL
  • BVA Bachelor of Visual Arts
  • Bachelor of Performing Arts
  • BA in history.

AKTU 2020 Syllabus, UPSEE 2020/UPTU 2020 Syllabus

Click here for Apply online

Latest Notification Click here

Official website Click here

UPSEE syllabus 2020…..

Latest syllabus is released by AKTU ( Dr. Abdul Kalam Technical University ) Every year AKTU held a exam every year for b.tech course. So, candidates must be well aware about latest Upsee syllabus 2020 those who are applying for UPSEE entrance exam ( btech admission ). Every year some change in papers so, it will be very helpful for scoring good rank or marks in exam. Only follow the NCERT Book not other sidebook because NCERT content is too much for UPSEE exam. If you completely finished NCERT then you can read sidebook for help and more question practices. Important topic for UPSEE exam, paper 1st & paper 2nd are given below.

Important line…….

Only prepare through your own book & notes. And believe on yourself and give importance of every success in your life. Don’t prepare through online content.if you think search engines or any other website contains upcoming paper or magic stick and short cut method and you can get success then you are worng. Because if any candidates think that find the shortcut method for solving the problem then they have no completely knowledge about the problem or they want learn questions not understand problems of questions. Some candidates thinks that if they read smart notes or topper notes then they get success. It is not possible because if candidates have no base about syllabus then how can they understand shortcut. It only for those candidates whose base is strong and they have no enough time to solve all problems and revisions. Think for while, every year papers contain new problem. If you think you no much material or sufficient about syllabus then only prefer the previous paper and according to paper start your prepariation and get success in your life & any exam.

Download previous years papers

  1. UPSEE 2019 set AA Click here for answer Click here
  2. UPSEE 2018 set 1 Click here for answer Click here
  3. UPSEE 2018 set 2 Click here
  4. UPSEE 2017 set 1 Click here for answer Click here
  5. UPSEE 2017 set 2 Click here for answer Click here
  6. UPSEE 2016 set 1 Click here
  7. UPSEE 2016 set 2 Click here

Advantage of solving UPSEE previous year paper: It is golden choice for UPSEE.

  1. You will get to know the difficulty level of the questions asked in UPSEE
  2. Solving previous year papers will give you an idea about the types of questions asked in each of the sections of UPSEE.
  3. You will identify the UPSEE important chapters.
  4. You will get to know you weak chapters & concepts-which you do not know or taking too much time to answer.
  5. It will help you improve your time management.
  6. Your question selection ability will improve as you solve previous year papers again & again.
  7. Your concentration & stamina will increase with time.

Previous year cutoff 2019…

1.For Round 1st – Download

Material for book for preparation of UPSEE…..

Only prefer the NCERT Book and exam point of views Arihant Publication. Important things is self-study, is better or best for preparation.

Section A ( paper 1st & 2nd )

  1. Physics: NCERT physics books of class 11th & 12th concepts of physics by H.C.verma ( Numerical & theory ), MCQ by D.Mukerjee for conceptual questions in Physics, previous papers and practice by Arihant guides.
  2. Chemistry: NCERT chemistry Books of class 11th & 12th Pradeep Objective chemistry, P. Bahadur for Physical chemistry, previous papers and practice by Arihant guides.
  3. Maths:NCERT maths books of class 11th & 12th R.D Sharma, previous papers and practice by Arihant guides.
  4. Biology: NCERT biology books of class 11th & 12th, Dinesh objective biology, previous years questions from AIMPT, practice by Arihant guides & other medical exam.

Offline ebooks

R D Sharma ebook class 12th Click here for download

Applied Physics

  1. Electromagnetic induction
  2. Work, power & Energy
  3. Laws of Motion
  4. Motion in One Dimension
  5. Motion in two Dimensions
  6. Wave
  7. Linear Momentum & collisions
  8. Oscillator Motion
  9. Rotation of a rigid body about a fixed axis
  10. Ray optics and optical instruments
  11. Measurement
  12. Heat & thermodynamics
  13. Modern Physics
  14. Electrostatics
  15. Current Electricity
  16. Magnetics of solid and Fluids
  17. Wave optics
  18. Gravitation
  19. Magnetic Effect of current
  20. Magnetism in Matter

Section B ( paper 1st & 2nd )

Applied Chemistry

  1. Atomic structure
  2. Chemical bonding
  3. Redox Reaction
  4. Chemical equilibrium & kinetics
  5. Acid-Base concepts
  6. Colliods
  7. Colligative properties of solution
  8. Periodic Table
  9. Preparation & properties of following hydrocarbon, Monohydric alcohols, aldehydes, ketone, Monocarboxylic acids, Primary amines, benzene, Nitrobenzene,aniline, phenol,benzaldehyde,benzoic acid, Grignard Reagent.
  10. Thermochemistry
  11. General organic chemistry
  12. Isomerism
  13. IUPAC
  14. Polymers
  15. Carbohydrates
  16. Preparation & Properties of the following: Hydrocarbons, Monohydric alcohols, aldehydes, Ketone, Monocarboxylic acids, etc
  17. Solid states
  18. Petroleum

Section C ( paper 1st )

Maths streams PCM

  1. Vectors
  2. Statics
  3. Probability
  4. Calculus
  5. Trigonometry
  6. Algebra
  7. Dynamics
  8. Coordinate Geometry

Section C ( paper 2nd )

Biology stream PCB

Zoology

  1. Applied Biology
  2. Human Genetics & Eugenics
  3. Organic Evolution
  4. Mammalian Anatomy
  5. Mechanism of organic Evolution
  6. Origins of Life

Animal Physiology

  1. Animal Nutrition
  2. Animal Excretion and Osmoregulation
  3. Respiratory system
  4. Nervous systems Endocrine system
  5. Circulatory system
  6. Animal Diversity

Important topics

  1. Protozoa
  2. Porifera
  3. Coelenterata
  4. Aschelminthes
  5. Annelida
  6. Arhropoda

Perplantea & Blatt.

  1. Housefly & Mosquito: structure and life – cycle
  2. Economics importance of insects & their control

Botany

  1. Ecosystem
  2. Fruits
  3. Ecology
  4. Seed in anginospermic plants
  5. Genetics
  6. Anatomy of root, stem and leaf
  7. Plant cell
  8. Protoplasm
  9. Important phylums: algae,Bacteria, Fungi, Broyphyta, pteriophyta, Description of families, classification of anginosperms, General study of gymnosperms & life history of cycas
  10. Cell differentiation plant tissue
  11. Soil
  12. Photosynthesis

Paper – 3: Agriculture section 1…

Agricultural, physics & chemistry

Agriculture section 2….

Agricultural, Engineering & statistics

Agricultural section 3…

Agronomy & Agriculture botany

Paper – 4: Aptitude Test for Architecture

Section 1. Mathematics & Aesthetic Sensitivity

Section 2 Drawing Aptitude

Paper – 5: BHMCT/BFAD/BFA

  1. Reasoning & logical Deduction
  2. Numerical Ability & Scientific Aptitude
  3. General Knowledge
  4. English Language

Paper – 6:Diploma holders in engineering

  1. Engineering Mechanics
  2. Engineering Graphics
  3. Basics Electrical engineering
  4. Basics Electronics engineering
  5. Computer Science Basics
  6. Biology Basics
  7. Basics Workshop practice

Paper 7:Diploma holder in Pharmacy

  1. Pharmaceutics-1
  2. Pharmaceutical chemistry – 1
  3. Pharmacognosy
  4. Biochemistry & clinical pathology
  5. Human Anatomy & physiology
  6. Health, Education & community pharmacy
  7. Pharmacology & Toxicology
  8. Drugstore & business management
  9. Hospital and clinical pharmacy

Paper-8:B.Sc graduate in Engineering

  1. Linear Algebra
  2. Calculus
  3. Differential Equations
  4. Complex Variables
  5. Probability & statistics
  6. Fourier Series
  7. Transform Theory

Paper – 9:MBA

  1. English Language
  2. Numerical Aptitude
  3. Thinking & Decision-making
  4. General awareness

Paper-10:MCA……………..

  1. Mathematics
  2. Statistics
  3. Logical ability

Paper – 11: master in applied management ( MAM )

  1. English Language
  2. Numerical Apitude
  3. Mental Ability
  4. General Knowledge & current affairs

Paper-12: 2nd year entry in MCA

  1. Mathematical Structures
  2. Computing Concepts
  3. Reasoning Ability

coronavirus COVID-19 – some usefull tips

Some important usefeul tips which are given by WHO, ready carefully and follow the tips and also aware the your family and other person and participating for fight from coronavirus with your nation.share this information to another person for getting alert. Also collect latest updates information about coronavirus ( COVID-19 ).

Basic protective major scale against the coronavirus.

In world some contiries get infected by coronavirus. So, take some protective information about this. get latest information on COVID-19 outbreak,available on the WHO website and through your national and public health authority. COVID-19 is still affecting mostly people in China with some with some outbreaks in other countries. Most people who become infected experiences mild illness and recover, but it can be server for others.take care of your health and protect others by doing the some hygiene way.

Wash your hands properly and frequently

After touching anything which are kept in free environment or touched by infected person Regularly and thoroughly clean your hand with alcohol-based hand rub or wash them with soap and water.

After doing this habits.

  1. After touching animals and animals product.
  2. After coughing or sneezing
  3. When caring for the sick of another.
  4. Before, during and after your preparing food.
  5. Before eating.
  6. After toilet use
  7. Your hand are visibly dirty
  8. After handling animals or animal waste

Avoid public crowds and maintain profitable distances

We know that, when person are sneezing or coughing they spray small liquid droplets from their nose or mouth about 2 meter, minimum 1 meter distances. Because if they are infected or sick they contain virus. If your too close,you can breathe in the droplets,including the COVID-19 virus if the person coughing.

Avoid touching eyes, nose & moth frequently

We know that about some object contain virus or infected person. If you get close contect or physical contect, then you contain virus also your hand or clothes. So, when you touching your nose, eyes & mouth frequently then virus can be transfer and by entering in your body, make you sick badly.

Check your respiratory hygiene

Check your respiratory surrounding & can make sure about people who are around you. Even they are infected by virus or sick. So,covering your mouth and nose with cough or sneeze. Then dispose of the used tissue immediately. Because, when some get sneezing or coughing in form of droplets spread virus around you viruses such as cold, flu and COVID-19.

  1. Avoid contact with sick animals and spoiled meat
  2. Avoid contact with stray animals, waste and fluids in market

If you have faver, cough and difficulty breathing take seek doctor advise early.

When you feel unwell at home, if you have a fever, coughing, and sneezing or feeling uncomfortable seek doctor advice immediately. Collect information and follow advise given by your healthcare provider. Because National and local authorities will have the most up to date information on whether COVID-19 is spreading in your area. They are best placed to advise on what people in your area should be doing to protect themselves.

Be aware practice food safety

  1. Use different chopping boards and knives for raw meat and cooked foods
  2. Wash your hands before and your preparing food.
  3. Sick animals and animals that have died of disease should not be eaten.
  4. Even in areas experiencing outbreaks, meat products can be safely consumed if these items are cooked throughly and properly handled during food preparation.

Be aware about healthy while travelling

  1. If you have a fever, cough and difficulty breathing seek medical care early and share previous travel history with your health care provider
  2. Avoid travel with animal that are sick.
  3. If someone coughing and sneezing cover mouth and nose with flexed elbow or tissue-throw tissue immediately and wash hand
  4. If you choose to wear a face mask, be sure to cover mouth and nose. Immediately discard single use mask after each use and wash your hands after removing mask.

Be ready to  fight with coronavirus.

  1. Be smart & inform yourself about it and another person also.
  2. Be kind to anyone & support yourself one another.
  3. Cheak in regularly especially with those affected.
  4. Encourage them to keep doing what they enjoy and show empathy with those affected.
  5. Adopt particular measures distances to stay safe from coronavirus.
  6. Share WHO information and latest fact to manage anxieties and avoid hyperbole.
  7. Provides calm and correct advice for your children.
  8. Be alert & careful everytime, everyplace
  9. Be prepared a smart way to protect from coronavirus
  10. If Develope shortness in your breath or any person, inform doctor and seek care immediately.
  11. Follow accurate public health advice from WHO & your local health authority.
  12. Follow the news on latest coronavirus updates.
  13. To avoid spreading rumors, always cheak the sources you are getting information from.
  14. Don’t spread rumors.
  15. If you are 60+ or if you have underlying condition likes;cardiovascular disease Respiratory condition diabetes
  16. Avoid crowed areas or places where you might interact with people who are sick or infected by coronavirus.

Inspirational stories – for lifeline

Actual meaning of pleasure and sadness…..

In world almost all person are disturbed by this situation. We have made power to digest the pleasure or sadness. If any person are free ( I think all person are surrounded by this problem ) from himself. Then that is right. Because according to lord no any can give simeone and get from someone.

Commonly we under stand that if we give pleasure anyone then we feel very happy and decrease our sadness. Happiness & sadness both are result of their deed. We always try for pleasure enen entire life & Without unknowingly about sadness, it’s make our head burden. Only those know about pleasure who get and feel pleasure.we have right to enjoy of our deeed. If we give our pleasure to someone then we have right to enjoy of our deed. If we meet to sadness or sadness are bonded in every step of life even we tell our sad stories to more people. It can’t decreases. Knowing about increasing our pleasure and sadness decreases, it’s a myth. It is necessary that whenever we feel our expression of pleasure then that is our real contentment.expect compare that is over level than feeling. Getting contentment in sadness, is a type to giving most important condolences to us in which decreasing remorse of our sadness property & badness.

Pleasure and sadness is really a different state. We have to suffer from their different base. If we intersection completely the feeling of pleasure then awake the confidence of good deed. If we to assimilate completely density of sadness. Then complete remorse and mind get concentrate. Pleasure and sadness are given by lord. It is exchange medium of lord to human. To temper of lord at public. We have to understand that no anyone can suffer our pleasure and no anyone can to bear our sadness.

Emotion which should make mind power now is becoming a topic of subject of public.we want to save then have learn about digest of our feeling. We have to also learn about digest that whom and which state gave them.it is part of our life to understand actual meaning of pleasure & sadness, how to give someone or not and main point is That, that time is correct for say to him or not. Because almost all person surrounded by this situation even it’s family problems, it’s relative problem or it’s friend problem.

Friut of immortality…….

The friuts of immortality boom not in the soil field, but in a raised heart bed, with the fertilization of tradition and sadhana. the seeds and grains grown in the field are temporary. After the weather is over, talk of its diminishing utility is felt all over the country, as the farmer’s attention is now shifted to seeds and fruits of the second season. This is the plant of soil instability. The old victims are forgotten, hoping to meet new challenges and new conflicts. And to invest their labour in a new direction. By the way. Also what is added to the artificial world is only temporary. Nevertheless this in the mortal world man wants or seeks to make everything that is ever to grow.

It was all about making each other Fool in th oat of ignorance they are becoming. A want to grow immortal by making a Manson is a palace to make immortality seeks to achieves, but none of the them has capacity to achieve immortality. If immortality is there, then is the ink and handwriting of permanence written by the pen of purity in the divine SLATE under the guidance of God. The sighted souls are doomed to dust. Long stability is included only in dev, protected unseen powers and structures, Guaranteed immortality throught its ego Dropping HUMAN they fail to stand firm and make time – barred. The fruits of immortality, therefore, can bloom only in the POTS of Gods and POTS.

Fury of Nature……

World was composed with the Lord throught Maya at the shelter of Nature. God made a rigid dispensation of action. He brought many subjects throught life. With countless resources. They also created sources of essential commodities for life. God has on the touchstone of the karma to discern right and wrong. With all of that. Created man who was equipped with all his powers, it also deserves knowledge. I met him. Lock down to earth laws. Not only that, but the role of man on earth who was equipped with all his powers.it also deserves knowledge. I met him. Lock down to earth laws. Not only that, but the role of the man on earth was the defined, but the human use of powers was more, less misused. He applied reason more to good, more to evil, led knowledge to science. He selected bad deads instead of bad deeds. Perfected his power against bad.

The warth of nature will be appeased only when man is on a purposeful path to his chariot of action. Follow the divine law and pursue the goal of life. The natural balance in the sadhana of Karam. Akaram should be handled at every moment, otherwise the sting of the effect is inevitable. Biological deception has resulted in the catastrophe of chemical disintegration of elements on earth. Hence, the revival of the idea of animal religion or way of life with care remains. Anger in nature by putting God’s creative powers into the violent act. You must try to do something wrong. Not a massacres but a return to the mass. It is nature that nourishes life, sustains her dignity. We must save the legal rights of the mother.

Increase brain power

Many student are get more stess before exam or after exam. In this situation they don’t give their 100% in next exam or next work.this is cause by dipression. They abuse their luck and take past mistake deeply. They are searching for healthy practice which relive the stress. Meditation is best best for student to relive and become free from strees. Main point is it’s increase your mind power. Only you spent about 30min or as required, on it and you get very big change in your your working style and learning power. Some student or about 95% student said that they have no enough time to exercise this activities. They also said that it is only a theoretical knowledge not particle. They also said that I can’t spent time in this activities even they are free wholeday.if learn about 30min question. But it’s very worng way to gets success in your life. And not free from stress whole life. So, I want to suggest you that follow Meditation and observe change in yourself. Make it good habit in your life.

Some important benifits you can observe if follow……….

Decreased stress……

If you take stress is nice but it can be as required, not that more stress,it’s give unwanted result. It prompt us into action and achieve our goal. Most stundent with an assortments, tests, admissions exams, co-curricular activities and social pressures are all part of the college experience. Scientific evidences has shown that mindfulness meditation improves our ability to cope with stress. A regular practice even a few minutes once or twice a day gives our batter time a meditation practice and stick with it develop the inner resources they need to find that place of serenity and attentiveness when need it most.

Improved concentration power…..

Main thing is that many student claim that that teacher are not explain like (mix whole explain give for drink) they can unable understand and topic any where and always claim & also abuse themself.Meditation also helps improve concentration – a top priority for any student. Through guided meditation for focus. Regularly in your daily life make it as one first Good habits.

Give Better Emotional and Positive ideas…..

In this excersise you pay some energy but in outcome it give full joy and happy everytime. Meditation also promote creativity, improve happiness levels. By acknowledging what we presently feel and working with it directly, we develop a more positive mindsets. Exam meditation,for instance, helps students overcome their fear of disappointing results so they can develop a more positive attitude toward the exam process here and now.

Take proper rest and sleep…..

Most student learning or writing without taking rest even day or night. In this case if student sleep for while time about 5-10min or standing anywhere or studying important topic result punished by teacher or unable to understand topic or feel boring everywhere. Maditation promotes quality asleep and is an effective treatment for Insomnia. For student, it’s very difficult to fime for sleep. When then enter in final exam their mind take so mush stress for papers. So, I also want to suggest take proper sleep as required or according to your age to decreased the stress of exam or any things.

Thank you

Features of Dropbox, advantage & disadvantage.

Access files anywhere anytime

With this packet and platform, it is easFrom photos and videos and presentations and tax paperwork, Dropbox basic helps you keepFrom photos and videos and presentations and tax paperwork, Dropbox basic helps you keepy to get to your files files from multiple devices – computer, phones & tablets. Use anywhere anytime.

  • Window & Mac:Install our desktop app, and everything in your account will appear in the Dropbox folder on your computer.
  • Web:sign in to Dropbox.com to access everything you have stored on Dropbox from any browser no software installation is required in your system.
  • IOS & Android:upload your files on Dropbox with help of our mobile app and preview over 175 files types from anywhare.

Back up files

From photos and videos and presentations and tax paperwork, Dropbox basic helps you keep all your most important and irreplaceable filess safe:

  • File sync:back up anything by storing it in the Dropbox folder on your computer. And with our desktop and videos to Dropbox from your phone, camera, or SD card.
  • File recovery :accidentally deleted a files from your Dropbox? no problem.,you can easily restore anything you have deleted in the past 30 days from Dropbox.com
  • Version history :if you ever change your mind, yo can roll a files back to any version saved to Dropbox in the past 30 days.

Share and collaorate on files

  • Shared links:easily create a link for files in your Dropbox that you can paste into an email, chat, or, recipients won’t need a Dropbox account they can click he link to view and download the files.
  • Seamless collaboration:it’s hard to keep track of important attachment in a crowed inbox. Dropbox makes it easy to connect and collaborate. Where you are sharing files with a friend or working with a large team.

Advantage of Dropbox……..

It is media storing platform. Where you can store your media and access anywhere and anytime. You can use this in system like window, Mac, IOS & Android, web. It too easy to use in your mobile devices by mobile app.you can access you data you deleted and want restore under past 30 days then you can do. You can share you data wit adding link and send any social media or through email. It is good backup data platform on webpage anywhere anytime.

Disadvantage of Dropbox….

Today we can say it is not secure but when your strong care and strong caught on Dropbox security then your data can save safe from stolen by hacker. Sometime any new version come with new advantage then they can destroy past data even erase all past data.

How can change your Dropbox password?

  • Step1:sign in to Dropbox.com.
  • Step2:Click your or avatar at the top of any page
  • Step3:Select settings
  • Step4:Select security tab.
  • Step5:In the password section, click changes password.

Coronavirus some usefull tips to prevent from coronavirus and precautions….

In world Coronavirus is spreading and increasing very rapidly. About 34 people are infected by coronavirus India. Many doctor gives their prescription tips to prevent and save from coronavirus.

Don’t ignore it, read carefully and follow.

Some important tips are given by Doctor……

Dr.Shivendra Mishra said that wash your hand with alcoholic strailaizer. Because it can active on your hand about 10 minutes.

Dr.Girish Chandra Narayan Gupta said that coronavirus comes from meat and soup of snake and bat. If it is in very large quantity it increases and generates possibility. Symptoms are sneezing, cough,sore nacke, headache long fever, pneumonia, etc

CMO Dr. Shahi said that coronavirus size is about 400 to 500 microne.so,you have to use a mask. This virus is not present in air or atmosphere. They move from one person to another person. Use hot salty water wash your throat (garare).

Dr. Shrivastava said that they can exist for about 9 hour so, properly wash your clothes with best detergent.

CMS Dr.chhotelal said that coronavirus can infected when we are going any infected person.

I have request to you please buy a mask from medical store and take care.

How to meditate: Simple meditation for beginners.

Meditation is very important key for success, for healthy, for increase your Brian power, loose your stress, etc. In the world human have no enough time to take rest and in this situation they say that I want to take rest. It right but in proper manner. Someone take rest for 2 or 3 day even they are student or employee or any person. They wastes their time which are not required, about 30min daily. It’s very helpful for everyone because, in this process you will get new energy for doing work without any stress and feel comfortable. In this world human faces new challenges in every day of life with new energy and Motivation. I also want to recommend you that passionate with meditation.

Some important guidelines for start mediation for beginners and find you key of success in very simple way……………………….. For more suggestion visit daily and see latest updates………………………..

First step…

  • Find silent or quiet place where any person or child do not disturb you.
  • Best and right time it is at morning before sunrise.
  • Sit properly fold your leg, straight your backbone and head. Put your hand on your knee with straight stretched hand or you sit on comfortable chair, any place which comfortable for you.
  • Close your eyes properly.

Second step….

Take breath in very relax way . Also release in very relax way. Like you take naturally without any effort. And also releasing any sound.

Third step…

Very important line is to make your attention on the breath and on how body move with inhalation and exhalation.according to your religion and obverse your chest, shoulder, rib cage and belly or choose your word and reapet word when you inhalation and exhalation. In hindu religion word (om om om om mantra )

Benefit of meditation….

Almost everyone know that relaxation is not the goal of meditation. It is proofed in the 1970s. Research by Herbert Benson. After research it is conclude that relaxation is an opposite, involuntary response that causes a reduction in the activity of sympathetic nervous system. It can help you in following way. Which are goldline…..

  • More feeling of well-being
  • Maintain your blood pressure
  • Lower heart rate
  • Improved blood circulation properly
  • Decrease stess
  • Deeper relaxation
  • Less anxiety

It is more better for student who are doing preparations of exam, only spend 30min on it see better result. Whose Person blood pressure increased or decreased. And also to maintain your body well & fit.

Upcoming smartphone in 2020

Oneplus 8 pro…

  • Operating systems – Android 10v(Q)
  • Processor – 2.84 GHz, Single core, Kryo 585 + 2.42 GHz, Tri core, Kryo 585 + 1.8 GHz, Quad core, Kryo 585
  • Performance – snapdragon 865
  • Internal storage – 128GB
  • Ram – 8GB
  • Battery – 4500mAh
  • Rear Camera – 48MP+16MP+2MP
  • Front camera – 32MP
  • Screen resolution – 1440*3180 pixel
  • Display – 6.65 inche
  • Price – Rs 57, 290
  • Releases date – 15 August 2020 (expected )

Xiaomi Redmi Note 9 pro

  • Launching date – 17 March 2020
  • Performance – snapdragon 720
  • Operating system – Android 10.0:MIUI 11
  • Screen size – 6.67inches
  • Screen resolution – 1080*2400pixels
  • Internal storage – 64GB or 128GB
  • Ram – 4GB or 6GB
  • Rear Camera – 48MP+8MP+5MP+2MP
  • Front camera – 16MP
  • Battery -Li-Po 5020mAh
  • Price – Rs 12,999

Samsung Galaxy S20 Ultra 5G..

  • Network GSM/CDMA/HSPA/EVDO/LTE/5G
  • Launching date: 24th April 2020 (expected)
  • Screen size – 6.9 inches
  • Screen resolution- 1440*3200 pixels
  • Operating system – Android 10.0: One UI 2
  • Performance – Snapdragon 865
  • Internal storage – 128GB or 256GB or 512GB
  • Ram – 12GB or 16GB
  • Rear Camera – 108MP+48MP+12MP
  • Front camera – 40MP
  • Battery – Li-Po 5000 mAh
  • Price – Rs 99,890

Xiaomi Mi 7…..

  • Performance -mediaTek
  • Camera – 16MP +16MP
  • Battery – 3350mAh
  • Display -6.1inche
  • Operating systems
  • Screen resolution 21400*3840.
  • Ram-6GB
  • Storage – 64GB
  • Price – Rs 26, 990.
  • Launching date-16/03.2020A

Jio one

  • Performance – OCTA CORES
  • Camera – 16MP+16MP
  • Storage – 64GB
  • RM-6GB
  • Battery – 3050mAh
  • – 26/03/2020.
  • Performance – mediaTek
  • Camera – 5MP
  • Storage-64GB
  • Ram–2GB
  • Battery – 2800mAh
  • Displ]+s00ay-5″(12.7cm)
  • Price – 12/03/2020( expected)

Xiaomi Mi 10 Pro

  • Brand – Xiaomi
  • Model – MI 10 Pro
  • Operating system – Android 10
  • Releases date – 13th February 2020
  • Screen resolution – 1080*2340pixels
  • Display – 6.67 inche
  • Protection type – Gorilla Glass
  • Processor – 2.84GHz octa-core
  • Ram – 12GB
  • Internal – storage – 128 GB
  • Rear Camera – 108MP+8MP+12MP+20MP
  • Front Camera – 20MP
  • Battery – 4500mAh
  • Fast charging – proprietary
  • Colour – pearls white, starry blue
  • Bluetooth – Yes, v5. 10
  • Connectivity – 4G/LTE, 5G supporter
  • Price – Rs 33,990

Motorola one 2020

  • Performance – snapdragon 865
  • Graphics Andreno 650
  • Processor – 2.84GHz
  • Storage – 256 GB
  • Rear Camera – 48MP+8MP+5MP
  • Display – 6.67″(16.94cm)
  • Ram – 12GB
  • Internal storage – 256GB
  • Launching date India – March 24, 2020(expected)
  • Front camera – 20MP
  • Battery – 5170mAh
  • Operating system android v10 (Q)
  • Screen resolution – 8000*6000pixels
  • Price – Rs 31, 990(expected)

Nokia 8.2 5G

  • Performance – snapdragon 765G
  • Operating system – Android v10(Q)
  • Brand – Nokia
  • Storage – 256GB
  • Battery – 4100mAh
  • Display – 6.2″(15.75cm)
  • Ram – 8GB
  • Launching date in India – March 19, 2020
  • Front camera – 32 MP
  • Rear Camera – 64MP+8MP+5MP+2MP
  • Price – Rs 36, 990 (expected)

LG G9 THINQ

  • Launching date – March 31, 2020
  • Performance – snapdragon 865
  • Processor – 2.84GHz
  • Screen size – 6.5 inche
  • Ram – 8GB
  • Intenal storage – 128GB
  • External support – 2TB
  • Operating system – Android v10.0
  • Rear Camera – 48MP+16MP+12MP+5MP
  • Battery – 4500mAh
  • Network – 4G VOLTE, 4G
  • Fast charging – yes
  • Price – Rs 52, 290(expected)

Apple iPhone SE 2/iPhone 9

  • Brand – Apple
  • Model – iPhone SE 2
  • Processor – Apple A13
  • Screen size – 5.2 inches
  • Screen resolution – 750*1334pixels
  • Launching dates – March 30, 2020
  • Price -Rs 28, 990(expected)

OPPO find X2

  • Launching date – March 6, 2020
  • Operating systems – Android 10.0;color OS 7.1
  • Screen size – 6.7 inches
  • Screen resolution – 1440*3168pixels
  • Rear Camera – 48MP+13MP+12MP
  • Front camera – 32MP
  • Connectivity – 4G, 5G
  • Battery – 4200mAh
  • Ram – 12GB
  • Storage – 256GB
  • Price – Rs 58, 990(expected)

Smartphone under 15,000

Vivi U20

  • Performance snapdragon 675
  • Storage 64GB
  • Camera 16MP+8MP+8MP. +2+MP
  • Battery 5000 MAH
  • Display 6.53″(16. 59cm)
  • Ram 4GB
  • Launching date in India November 28, 2019
  • At amozon Rs 10990

Samsung galaxy M30

  • Performance Samsung exynos 9 octa
  • Storage 64GB
  • Camera 48mp+8mp+5mp
  • Battery 6000mAh
  • Ram 4GB
  • Launching dates September 18 2019
  • At amozon Rs 14999

Realme x

  • Operating system android v9.0 pie
  • Display 6. 53 incles (16. 59cm) bezel less display
  • Gorilla glass 5 protect design
  • Polycarbonate back
  • Qualconm snapdragon 710 octa core processor
  • 4 GB RAM
  • 128 GB internal storege Non expandable Meuoz
  • 48+5MP Dual rear cameras
  • 16MP frant camera
  • Battery 3765 mAh battery with vooc charges uph 55% in 30 minutes
  • Dual Sim 4G supporter special feature
  • One screen fingerprint Sensor
  • At easycart Rs14999

Realme 5 pro

  • Performance- snapdragon 712
  • Storage- 64GB
  • Battery – 4035mAh
  • Display – 6.3”
  • Ram – 4GB
  • Launching date in India September 4,2019
  • Screen resolution – 1080*2340pixel
  • Camera – 48mp+8mp+2mp+2mp
  • At amozon Rs 12479
  • At flipkart Rs 13999

Matrola one vision

  • Performance – Samsung exynos 9609
  • Real camera – 48mp+5mp
  • Front camera – 25mp
  • Ram – 4GB
  • Display – 6.30″inch
  • Screen resolution – 1080*2520
  • Battery – 3000mAh
  • Storage – 128GB
  • OS android- 9pie
  • At amozon Rs 14999
  • At flipkart Rs 13999

Xiaomi Mi A3

  • Performance – snapdragon 665
  • Storage – 64GB
  • Ram – 4GB
  • Display – 6.09″inch
  • Screen resolution- 720*1560 pixels
  • Battery – 4030mAh
  • Main camera – 48mp+8mp+2mp
  • Front camera- 32mp
  • At amozon Rs 10399

Motorola G8 plus

  • Performance- snapdragon 665
  • Display – 6.30″inch
  • Screen resolution – 1080*2280pixel
  • Ram – 4GB
  • Battery – 4000mAh
  • Main camera – 48mp+16mp+5mp
  • Front camera – 25mp
  • at flipkart Rs12999

Coronavirus,latest updates.

Today in India coronavirus take latest updates.. Coronavirus spread in India. People gets disturbing and government also In India about 34 person are infected by coronavirus India starting to return the foreign visitors to their country. Due to they can not spread in India.

Best precautions

  1. NOW immediately brought the profitable mask and use them.
  2. Wash your( by alcoholic soap ) and when you going for taking meals.
  3. Avoiding meat to eat of animals like hen, cock,etc.
  4. Don’t use animals products properly.
  5. Covering the mouth and nose with a tissue or handkerchief.
  6. Do not go there where infected persons are admitted.

If you feel coronavirus symptoms,then immediately meet your doctor says your symptoms take proper treatment. Or any person in your knowledge then inform and send him hospital for treatment.

Very important keep your surrounding about 35 degree Celsius. Because coronavirus can’t exist in that temperature. Don’t use AC room or cooled room. Be insure that your surrounding temperature is suitable or not. Take care.

Coronavirus, latest updates,symptoms, prevention & precautions, transmission….

Today world and now world, country gets infacted. This is very critical virus who life exists about 2-4day without another requirement live. Day by day gets infacted by people can’t safe. This viruses spread by travelers and visitors. If we get or make contact then generally transmit,and infacted. In India there is no medicine or vaccine made. If we want to save from corona. Precautions is that maintain distance from infacted persons.so, I hardly want to suggest you that if you are concentrated on this precious term. Then, I hope you will safe with family. Because if think that let’s forget I am safe. Then your are worng because any person can infected by coronavirus. Even that person belongs to you family, relatives or close friends or your best neighbors . Because one person can’t make nation. So, I hardly request you to you also participate in our group and protect nation from this coronaviruses.

Very important things is keep your surrounding about 35 degree Celsius because coronavirus are unstable in that temperature. It can exist about 2 or 4 days but they cannot exist in that temerature. Keep it in your mind and donot use AC room or cooler. Take care

Coronavirus:

Coronaviruses (cov) are larger family of virus that causes illness ranging Fram the conmon cold to more serveeliseases such as Middle East Respiratory sundRome (MERS COV) and severe auite Respiratory syndron (SARS COV) A novel coronavirus (incov) is a new strain that has not been previously identified in humans. Coronaviruse are zoonotic meaning they are transmitted between animals and peeople. Detailed investigation found that SARS-cov was transmitted from civet cats or infected birds to human and (MERS-cov) from dromedary camels to humans. Several know as coronavirus are circulation in animals that have not yet infected humans.

Types of coronavirus belong to sub- family coronavirinae of the family coronaviridae. Different types of coronavirus vary in how services the resulting diseases becomes and how for they can spread.

  1. 229E coronavirus
  2. NL63 coronavirus
  3. OC43 coronavirus
  4. HKU1 coronavirus
  5. SARS-COV
  6. MERS-cov

Symptoms:….

Common signs of infection include Respiratory systems. It is cold or flu-like symptoms usually set in from 2-4 day after a coronavirus infection and are typically mild. However, symptoms vary from person to person and some forms of  the virus.

Many professor, doctor and scienctist cannot easily cultivate human coronavirus in laboratory unlike the rhinovirus. And unable to give more information and precautions about coronavirus. Which is another cause of cold.

  1. Sneezing
  2. Running nose
  3. Fatigue
  4. Cough it may also lead to dry cough
  5. Fever in rare cases
  6. Sore throat
  7. Exacerbated asthma
  8. Weakness

Precautions: …..

Some common precaution. If you follow then have little chance to get excess by virus. This list given by (WHO).

  1. Avoid ice-cream cold drinks, etc
  2. Avoiding animals like cocks, hen,etc
  3. Now immediately brought profitable mask and use them.
  4. Don’t use animals products properly.
  5. Don’t go there, where dead animals are decades or throw.
  6. Resting and avoiding overexertion
  7. Drinking enough water.
  8. Avoiding smoking and smoke polluted areas
  9. Covering the mouth and nose with a tissue or handkerchief while coughing or sneezing any one.
  10. It is important to dispose of any tissues after use and maintain hygien around the home.
  11. Use alcoholy soap or alcohol solidify for washing your hand.

Transmission

According to 2020 record has Limited research is available on how spread From one person to the nest persan. However researchers believes the that the viruses transmit via fluids in the respirafaby system such as mucus. Coronavirus can spreed in the following way.

  1. Coughing and sneezing without covering the mouth can disperse droplets into the air.
  2. Touching or shaking hands with a person who has the virus can pass the virus between individuals.
  3. Some animal cororaviruses such as coronavirus may spread through contact with with feces however, it is unclear this also applies to human coronavirus.
  4. garbage or animals disposal, around your home or village or city.

The National institutes of Health suggest that several group of people have the highest risk of developer complication due to COVID-19Young children. People aged 65 year of older, Women who are pregnancy. Younger children.

Coronavirus will in fact most people of some time during their life time. Coronavirus can mutate effectively, which makes then so contagious. To prevent transmission, people should stay at home and rest while symptoms. Are active. They should also avoid close contact with other people.

Covid-19

In 2019, the centers for diseases control and prevention (CDC) started monitoring the outbreak of new coronavirus SARS which cause the Respiratory illness now known as COVID-19. Authorities first identified the virus in China. Health authorities have identify many other people with COVID-19 around the world including many in the US on January 31 2020 the virus passed from one person to another person in the US. The world health organization (WHO) have declared a public health emergency relating to COVID-19. Since then, this strain has been diagnosed in several US residents. the CDC have advised that ity is likely spread to more people COVID-19 has started causing distraction in countries. The first people with COVID-19 had links to n animal and sea food market. This fact suggested that animal initially transmitted the virus to human. however, people with a more recent diagnosis had no connection with or exposure to the market. Conferring that virus can pass through person to person. Information on the virus is scare at information on the pest, Respiratory condition that develop from coronavirus.

Symptoms-fever, cough no proper medicine are prepared by scientist.

SARS-COV

It developed after infection SARS-COV Carmona virus. It led typically it led to a life threatening form form of pneumonia. During November 2002 the viruses started in the viruses started in the Guangdong province in Southern China. Eventually reaching Hong Kong there is rapidly spread around the world, causing infections the more countries.

SYMPTOMS-FEVER COLD COUGH. Dry cough,dry and sore throat.

MERS-COV

It spread due to the coronavirus known as MERS-COV Scienctist first recognized this source Respiratory illnesses in 2012 after. It surfaces in Saudia Arab. Since it has spread to other countries the virus has reached the US while the largest out break out side Arabian peninsula occurred in South Korea in 2015.

Best way to motivate yourself,extraordinary idea

In this world in daily life face different situation. But most of person demotivates and take rest and say I can’t do it,I have no luck to gain that things.according to many hapethesis we have always motivate and try again & again & again. Some use full way are describe below. Continue reading and worked on it you find big change in your life.

Meditation-It is very important for us. In daily life any person learn smile any condition that person do meditation.

Meditationit is practice where an individual user technique such as mind fulness, focusing the mind on particular thing s or object. Throught or activity to gain attention and awareness and archives a mentally clear and emotionally and stable.

Impress yourself first….

If any person get failure result. They are go down completely. It is wrong way. First you have to say (“Nice” you can do it) yourself, even it small result or final result. Say you can do it. Also main cheak your passion because if you change your passion like weather, then possibility is less to success. For success you have hard work on your passion.

Make a time table to do your work & save time….

Discipline is key of success. Adjust your time table in your life, follow according to time table. Sometime your body or emotion are working against you because you are not give them a break or feeling them right way. On simple way to improve results here is to find a routine for eating, sleeping and moving or working all that support you, for better case.

Connect you to your experienced values…

If you connect you with your experienced values. Then you update yourself with final or semifinal result without any demotivation. I find ways to grow my skills in any situation. If you get failure result and demotivates, then take Balancing to remind motivational stroy, song, best motivational movies also recharge you again & get ready for change wolrd according to you or change youself according to world. You feel so great it over shadows. The pains of the task, it’s hard to tell yourself you don’t like something when it feel so good. A similar approach is to find your theme song.

Remind gain and again success feeling…

Today many film industries make motivational movies.always remind of motivated scenes is one of the fastest way to changes you feel. Remember the feeling. How did you feel during first attempt? What about laying on the grass on a sunny day? when you find your motivation faster.

Search and change your question according to changes required….

Anytime you need to change your focus, to change your focus, change the question.if you ask youself what’s wrong with you, off curses you will find things to complain about the situation and you can quickly find the positive and get correction immediately. WHY ask your self why I can do it and remind your feeling and mistake and solve it politely without any hegistation. HOW ask yourself to how it is impossible or possible. And remind your feeling and get improved in your working style.it is little difficult because sometime we are ready to realize our mistake or changes according to front speaker.

Increase your strengths…

If you spending too much time in your weakness wear you down spending more time in your strength, help you renew your energy and find your flow. Strength are the place where you can grow best passion. Find the things that you can do all day that really energy and find excuses throughout your day to do more that success build dream itself and this help you build momentum at the end of day, all self motivated and you get better at motivation by building your self awareness.

What’re escaping, what are not?

You need about which types of situation are escaping which types of not? Whenever you visualize more campelling future or remember a more enjoyable past. At the time, if you catch yourself dwelling on a painful past, get back to right here now and find the joy in the moment. You will improve your tempered skills with practice.

Best motivational stories, if you want success then read…..

Govind Jaiswal…. an IAS officer son of  rickshow puller……

I think it is best example of passionate with civil service. If You are try to become an IAS officer or want crack civil service, then PLEASE READ this stroy of rickshow puller. Govind Jaiswal, a man who was the proved that passion is something  Important in world.No one known about them because. He is not a celebrity or a guy who is good looking. His name is Govind Jaiswal. He ranked 48 among 474 successful candidate in the first attempt of civil service exam. His dream of becoming an IAS officers has can true in life. Govind Jaiswal a just 24 year old. Son of rickshow puller who from vanarasi. He lived in a poor locality with no basic facilities he studied with cotton stuffed in his ear to lessen the noise printing machine and generator going inside his year. His sick father has to sell small plot of land to give Govind RS 40, 000. So, that he could go to Delhi and study there in a better environment. After hard work of year and he feeling succeeded and his dreams of becoming and IAS officer came true. He gave his news to his father and there sisters they brust into tears. Feeling in his heart can not expressed in word.

NARENDRA DAMODARDAS MODI …… A tea vendor becomes Prime Minister of India………

Almost all person know about Prime Minister of India. No confusion about PM modi. A simple tea-vendor at station in Gujarat. He worked hard about their passionate become great leader of India. Today the Prime Minister get succeed and donot  need another definition of passion compare that it. When Modi took on the reigns of Gujarat. As the chief minister from keshubhai Patel hiis rise was met with opposition from many within the party. Modi lack of experience was one of the major concerns. However Modi stood his ground and become Gujarat’s CM as the CM, he veered from RSS’s ideologies and supported privatisation and small government. But perhaps, his true test come in the form of the Godhra violence. He went become Power full leader in India.

Dhirubhai Ambani ….a successful business man India……

We know famous business man no any know about struggling stroy. Dhirubhai Ambani is an Indian business man he was born in 28 December 1932. He father name is Harichand Gordhanbhai Ambani..and his mother name is Jamnaben.Ambani, the founder of Reliance telecomcompoany. Ambani had a hamble beginning and he was not from an affluent background. he moved to Yemen at 16 year of age where he worked at a simple clerk. Whose monthly income is not satisfied them. However, he knew he had to follow his calling and risking every thing.He returned to India to set up his business with his close friend champaklal damani. After struggling he completely passionate with his business and growing rapidly very fast in India. He worked with his strong determination and reached at richest person in India.he is best inpirational man for youth.

Kiran Bedi ….. Became first Lady IPS officer……..

We know about Kiran bedi but deeply not. Kiran bedi born in 9 June 1949. At Amirtsar. Her father name is Prakash Peshawaria & her mother name is Prem peshawaria.she was first Lady IPS officer . Not a celebrity and we all know about her Kiran bedi. She started her career in year 1970 as a lecture in khlsa college for women in Amritsar. After working for two years she took she joined Indian Police service(IPS) and she took many challenging task. Once she dragged the car of Prime minister INDRIA Gandhi due to traffic violation. She also established two volentry organization to improve the candition of drug addicts and under privileged children.she was always worked in field of increasing power of women in India She was awarded with serge join troff memorial AWAR BY united Nation. Kiran bedi is true inspirational for every man and women in her country.

Satya Nadella ……. a CEO of Microsoft company…….

We know about Microsoft COMPANY. SATYA NADELLA is a CEO of Microsoft. he was born in 19 August 1967 in hyderabad, Telanganna, India. His father name is Bukhapuram nadella Yugandher who was an IAS officer. If you want to make it big then you must inspire from this man.satya nadella attended hyderabad public school. Then he completed his BE is electronic and telecommunication from Manipal institute of technology in 1987. He also received a MBA from the University of Chicago booth school of business. In this year 2013 yearly salary of Satya Nadella was around $8 million, but now $25. 5 million he loves playing cricket and reading poetry, Satya has inspired a lot of Indian to reach such a high position. He now live in USA.

The Real Meaning of Passion

13 most important line of Passion

Click here to visit our websites

“I have no special talent I am only passionate curious”  Most person thing that they have specially talent but it is not totally right. Because special talent is not passion. Working style with continuous with any query. Then this is passion or passionate person. Because PASSION is persuing by our heart feeling sound, life dream or passionate to knowing better in to deep. I have also passion ‘to write content and something to say may feeling and changing world with time. So I want to share our feeling and experience.

“Every great dream begins with dreamers. Always remember you have within you the strenghth, the patience and passion to reasach for stars to changes the world” because your dreams has the power changes the world. Right now, think about the people who will be impacted because of your decision to pursue what matter most to you literally see then in your mind and see how their life will differ. If you discover that you unlock a power that truly Change the world.

“There is no passion to be found playing small in setting for a life that is less than the one you are capable of livinglow confidence seems to shows up more often around low passion and belief in the value of any given situation which one is engaged. Alway put strong confidence if strong situation come be stand straight without any query.

Develope a passion for learning, if you do will never cease to grow”if we have passion to learn everything with very politily then any thing can not in world which we can get with their Hard work.

Passion is energy,feel the power that came from focusing on what excites youwhere your life can your focus on your passion, your bliss, and explore the consequently of expand confidence. Be modarate with self confidence because it is key of great success of heaven life.

We must act out passion before we can feel it” because if feel after sometime it’s to let. So right now, find your passion and be passionate & get success.

It is obvious that can no more explain to person who has never experienced it then we can explain light to the blind” if any person are unable to understand passion in deeply. Then we have to take path with situation.

You can’t fake passioneveryone has at one point in their life, been influenced by fake passion, especially me,I have my eyes and see how much discourage past. Now, we have to focus on being led by real passion.

You have to be burning with an ideas,or a problem or a wrong that you”if you have passion then you are in right way but if you have no passion then you can’t get anything, always work on your passion.

Want to right, if you not passionate enough from the start you will never stick it out” if your are not passionate completely then your are unable to achieves your respective goal, because it is not fashion or game that let’s try and think about unwanted result.

Yes, in all my research, the greatest leader looked inward and were able to tell a good strong with authenticity and passion” it is very important line because if any person see their heart feeling or judge  himself  then take passion with their future wish those are greatest leader who passionate according to their heart feeling but not for growing empty life.

Nothing is an important as passion, no matter what you want to do with your life, be passionate” In human life if any person are not passionate with anything then that person are useless fellow. Because in our life passion is very important. Any thing doing without any passion or goal,then never get wanted result. Specially 21+ man are not chooses their passion and be passionate, it impact ou world growth.

If you don’t love what you want do it with much conviction or passion”if any person can’t love with their real passion and donot love with their future and unable to understand means of human life. They can never get seccess in their life. Love is life because we love anybody or anything then that is our passion.

Difference between fashion and passion?

Click here to visit our websites “fashion you can buy, but style you posses,the key to style is learning who you are which take year or more, there is no how to read map to style, it’s about self expression and above all attitude”

every body advised me to follow my passion….. None revealed that they were following opportunities.”

In very short way fashion is not a right way to achieves your goal except modeling,but passion is right way to achieves your goal. Because whole person hard working even night, day or both.

Fashion is a papular personal experience at a certain context, especially in c loathes, footwear, lifestyle, accessories, makeup, hairstyle and body proportion fashion instead describe the social and temporal system that”activates”dress as a social signifies in a certain time.

Passion is a feeling of intense compelling desire for someone or expressing ideas,meting. Passion can range from eager interest in or admiration for an idea, proposal or cause to enthusiastic enjoyment of a interest or activity to strong attraction, excitement or emotion toward a person.

Waste of money-you might spend money on thing that may not necessary for look smart and advance.at end all appears totally empty with no output.

Spending money in passion is very important for future not more but minimum as required. It useful for us supporting and receives helping from another.

Waste of timeobviously,it takes a lot time to look different than you really are. It don’t make complete sign of your future appearances.

In passion waste time is not mandatory as compared to wasting time in fashion, this is precious so we have to passionate and concentrate on any specific matter.

Waste of energy-you could furnish something by saving energy and whole effort on useless hobbies.

In passion if we can obtain own dream, if strongly work. Earn name. Get respect after sometime,with dreaming output.

Mental and distraction-in fashion we are always thing about good look. Getting obsessed with other’s opinion about you cause mental and their path.

In passion their no distraction if someone guides you. In this this no any doubt about working style in life no excuse about realizing that you are a wrong from starting first.

To get respect-in fashion we get respect in our look and appearances,But not respected by each person, which are main point.

To gets more respect-in passion we get more respect in our look, appearances, but also get by each and every people at every where in any time, in this it is main point.

You are respective and responsive to changing time and trends make your style, trends and ideas acceptable to others.

By living your passion you will push yourself to do better any job wear are easily received by you.

Awesome Fashion – advantage and disadvantages

In this world fashion in dressing is not enough, your working style, empress style is also mandatory. We know all about fashion but not it’s reality. If any give suggestions to anyone or any person that are pasion. Each have dreams that when I earn money then bought more and more comfortable things. It’s right but before time. If you you are interested in fashion then learn fashion design and make your Passion and enjoy for whole life. Click here to know reality

Disadvantage of fashion.

False pretense-blind pursuit of fashion load you to false pretense.

Hatch up hearted-caring much about superficiality hatches up hearted in other’s mind.

waste of money-you might spend money on things that may not be necessary.

Waste of time-if you think it is wrong because you prepare within a minute. It is not point. The point is that you think always about advance fashion because you want look good, smart, rich compare than friends. obviously it very important to all of them it take a lot of time to took different than really are naturally.

Waste of energy- In your daily life you take food for live and also do work. Every time work unwanted work like frequent walks,frequent sit stand, more talking, etc. you could furnish something better by saving energy and effort in caring of latest .

Shallow thinking-you might start giving too much importance to how things look better than really.

Mental slavery-getting obsessed with others opinion about cause mental slavery.

Objectification-fashion makes your prone to objectification us of women in entertainment but mentally not physically.

Sometime fashion is heaven for us, sometime fashion is hell for us. it is reality or you can ask who are 5 years older than you. Like you seniors, friends, elder brother, elder sister, anyone. If you think you are rubbish or nonsense. We know it is to bad way to empress anyone,because clothing sensing is not our reality of personality. We have to work on right path which are according coming century changing world.

If your passionate in modeling and your dream is a modeling, your are right&continue. Click here to know reality

Get accepted-going against fashion norms may make you can outcast.

Be respected-it fetches you honor and esteem if you do not what other do.

fight weather extremes-beat the heat and hold back cold with weather.

Inspires creativity-desire to stand out in a crowd may inspires you to invent new ideas.

Build individually-based on your unique ideas you can build and express your individually.

A marker of identify-people know you from your personality.

Look modern-you are respective and responsive to changing times and trends.

Influence other’s-people may praise or hate you. Bring a change make your style, trend & ideas acceptable to others.

A universal language-it is like love, music & Esperanto.

Design a site like this with WordPress.com
Get started