Skip to main content

Documenting My Day

I used different apps including Word, Excel, and PowerPoint as tools to document my day. Here’s a little of what I know and learned from doing so.

The word processor is great for essays and any other kind of extensive writing assignments. It is easy to organize a paper into a format that can include a lot of information in the way that is easy to follow. The paragraph formatting is most helpful for this to ensure the words aren’t too cluttered or disorganized to the reader.

 Using a spreadsheet is helpful for keeping track of information that has numerous factors that are important to track. They are great for things like budgeting. 

Excel is a great application for spreadsheets. There are many shortcuts that help automate calculations. Learning the formulas to organize a spreadsheet in Excel can be a lot of fun. “You can also use it to create complex models for planning events or forecasting business trends using advanced features like pivot tables and macros. On top of that, you can link your spreadsheet data directly into other programs like Word or PowerPoint so that you have a cohesive workflow across all the different applications you’re working with.” (Lenovo, 2025).

 When working with large databases there are other apps better suited for handling it. Apps like the different forms of SQL are an example and are helpful for things like data processing and structuring. “The amount of data flowing through businesses has exploded. A small coffee shop can now collect many types of customer data — orders, preferences, feedback — it adds up fast. Database applications help make sense of this information overload, turning raw data into useful insights.” (Blaze.tech, 2025).

 Microsoft Word is best for writing extensively about a topic like in an essay or article. The fonts and formatting options are plentiful. Spreadsheets are good for organizing complicated sets of data and Microsoft Excel is great when calculations need to be done. There are multiple database applications for executing complex tasks with the largest amounts of data.

 The best application for documenting my day was Microsoft Excel. It presents all the most information right away in multiple ways. The use of the pie chart is a great visual representation of my usual day.

Excel is a great application for spreadsheets. There are many shortcuts that help automate calculations. Learning the formulas to organize a spreadsheet in Excel can be a lot of fun. “You can also use it to create complex models for planning events or forecasting business trends using advanced features like pivot tables and macros. On top of that, you can link your spreadsheet data directly into other programs like Word or PowerPoint so that you have a cohesive workflow across all the different applications you’re working with.” (Lenovo, 2025).

References

10 Database Application Examples & Key Features for Business. (2025). https://www.blaze.tech/post/database-applications

Mircosoft Excel: What are some benefits of using Microsoft Excel? | Lenovo US. (2023, May 28). https://www.lenovo.com/us/en/glossary/microsoft-excel/?orgRef=https%253A%252F%252Fwww.google.com%252F&srsltid=AfmBOorWbzbjyvVGu0K5byInMTYFMXdPZSQveXSG5Iq9QBU1hNiz_IRA



Comments

Popular

Writing Efficient Programs

  Writing Better Programs: More Than Just “Making It Work” When I first started coding, my mindset was simple: if the program runs, I’m done. But after getting into data structures and algorithm design, I’ve realized that how a program works matters just as much as if it works. That’s where algorithmic design and data structures come in—they help you build programs that are not just correct, but efficient and well-structured. 🔹 Thinking Like a Programmer (Before You Code) One of the biggest changes I’ve made is slowing down before I start typing code. Instead of jumping straight into Java, I try to break the problem down into steps first. This is algorithmic design. For example, I’ll: Figure out what the program needs to do Write out the steps (kind of like pseudocode) Then translate that into actual code Doing this helps me avoid confusion and keeps my program organized from the start. 🔹 Are Some Algorithms and Data Structures Better? Yes—but not in a one-si...

Duolingo Critique

The app that I chose to review is Duolingo. There is a web version also. It is an interactive learning app that has many features. It can be accessed from multiple mobile devices like a tablet, laptop or phone. It can also be accessed with a pc. Functionality is seamless on all platforms. There is a database of learners with their information being stored for individual reference and each learner can connect with others through their profile. You can add friends and interact with others users. There are leaderboards that track progress daily on the app. This format is exciting because it makes the experience feel more like a game than educational lessons. There is a competitive factor and challenges that keep things interesting. Conversational exercises can be practiced in a more natural manner through an AI generated FaceTime call that reacts to your responses and stores your conversations. Stories are another way of practicing a language on the app. A pre generated radio program is a...

The Principles of Java

  Before writing programs, I had to install Java, which is simple with the right resources. First, I downloaded the Java Development Kit (JDK) from Oracle or OpenJDK . Then I ran the installer, which sets up everything you need, including the compiler and runtime. Most modern installers handle the system path automatically. Finally, I tested it by creating a simple HelloWorld.java program, compiling it with javac HelloWorld.java, and running it with java HelloWorld. For detailed guidance, I found Oracle’s Java tutorials and JavaTpoint very helpful. Learning Java introduced me to object-oriented programming (OOP), a way of designing software around “objects” that model real-world concepts. OOP makes programs easier to maintain, reuse, and expand—skills that are useful whether you’re building small apps or large systems. I explored the four main principles of OOP : Encapsulation : Keeping data and the methods that act on it together in a class, controlling access to internal ...