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...
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...
Comments
Post a Comment