Posts

How to Free Up Space in Windows Operating System

  Sometimes our laptop or PC's storage filled and we can't delete our data to free up the space. In these situations, we can delete junk files or temporary files instead of our important data. But where we can find those files. Windows has "Disk cleanup" application for this task. Lets see how to use that software to clean the storage : First click on the search bar and search  cleanup Open the software. The application will display a drop-down list to select which drive to clean up. Most of the temporary and junk files are stored in "C" drive. So select "C" drive and click the "ok" button. Then the software begins its scanning for unnecessary files. After that we should select the file types like "Downloaded Program Files", "Temporary Internet Files", "Recycle Bin", "Temporary Files" and "Thumbnails" which we want to clean. Then click "ok" button. After clicking "ok" a
Arithmatic expression evaluator Enter the arithmetic expression Evaluation
Temperature Converter: Celsius to Fahrenheit and Fahrenheit to Celsius Celsius to Fahrenheit and Fahrenheit to Celsius online converter Celsius Farenheit

Python Program: Generating the Fibonacci Sequence

  Understanding Numerical Series:                Before diving into specific types like the Fibonacci sequence, it's important to understand the fundamentals of numerical series. What is a Numerical Series?           A numerical series is a collection of  numbers where each  number has relationship with other numbers. Exploring the Fibonacci sequence:             Fibonacci series is a type of number sequence where each number is an sum of previous two numbers. For example:           2, 3, 5, 8, 13,......,n In this sequence  you can observe  that the sum of first two elements, 2 and 3, equals the third element. Similarly  you can add second and third elements, the third and fourth elements and so on. Clearly, the sum of any two elements will yield the next element in the sequence.   Program: Using while loop:       a = 0 b = 1 size = int(input("Enter size of series:")) print(a,"\n ",b) n = 0 while n > size-2: c = a+b print(c) a = b b = c n = n+1

Why?

Image
Why we live in here. What's the purpose. Why a fireball separated from sun and made a reason for our lives. Why people believes god's existence. Why they want to god must exists.May be fear is the reason for people's god belief.Notice the word "may be". Yeah fear is not only cause for human's god hope. I think man's loneliness is the important factor.Until today we cannot find the possibilities  of another creature like humans.Also fear is the product of lonliness.Does god help us.I think it's not sure. Suppose god is exists. In man's view god is a child. It rolls up universe like toys. It plays with our lives. Nobody can ask question for it. But what's about god's view. Whatever we said about god those are defined by man like Bible, Quran and Bahavat gheetha .Not a supreme's view.Why not immortal has own angle.It's a main thing.Why not god think that murders, robberies and tortures are just a part of people's life.Why not h

C program to find a largest number among three numbers in Tamil

  How to write a c program to find big number among three numbers இன்றைக்கு மூன்று எண்களிலிருந்து பெரிய எண்ணை கண்டுபிடிப்பதற்கு ஒரு c program எப்படி எழுதுவது  என அறிந்துகொள்ளலாம். Program  #include <stdio.h> int main() { int a,b,c; printf( "\nEnter the three numbers:\n" ); scanf( "%d %d %d" ,&a,&b,&c); if (a>b&&a>c) { printf( "%d is largest number" ,a); } else if (b>a&&b>c) { printf( "%d is largest number" ,b); } else if (c>a&&c>b) { printf( "%d is largest number" , c); } return 0; } OUTPUT  Enter the three numbers: 5 7 6 7 is largest number விளக்கம்:                  இந்த program-ல் <stdio.h> என்பது முதலில் input மற்றும் output ஐ access செய்யும் ஒரு header file.       < stdio.h> கொடுத்தால் மட்டும் தான் input ஆன scanf functionனும் output ஆன printf functionனும் work ஆகும். இல்லை எனில் errors வரும். அடுத்தபடியாக மூன்று எண்களுக்காக(numbers) மூன்று

Linux operating system -ல் c program run செய்வது எப்படி in tamil

Image
Linux -ல் c program run செய்வது எப்படி : How to run a c program in linux  முதலில் linux ல் left top icon -ஐ click செய்து terminal என தேடுங்கள்   பிறகு terminal-ஐ open செய்து கொள்ளுங்கள் .terminal இது போன்று $ symbol -லுடன் காட்சியளிக்கும். பின்  இந்த கமெண்ட்டை type செய்யுங்கள்.  gedit filename.c இதில் filename என்பது உங்கள் c program file-ன் name இதை நீங்கள் முடிவு செய்யலாம். இந்த கமெண்ட்டை enter செய்தவுடன் ஒரு editor open ஆகும்  நீங்கள் தேர்வு செய்த filename உடன். இப்போது உங்களது c program-ஐ  editor-ல் type செய்து save  பண்ணிக் கொள்ளுங்களுங்கள். உதாரணத்திற்கு, #include<stdio.h> void main( ) { printf("Example"); } அதன் பிறகு இந்த c program -ஐ compile செய்ய வேண்டும் அதற்காக புதிதாக இன்னொரு terminal open செய்து இந்த கமெண்ட்டை உள்ளிடுங்கள். gcc -o filename filename.c இந்த கமெண்ட் நீங்கள் save செய்த c program-ஐ compile செய்துவிடும். ஒருவேளை உங்கள் program-ல் errors இருந்தால் compile command error message தரும். அப்போது நீங்கள் மறுபடியும் அந்த file -ஐ open செய்து errors clea