Posts

IT Convention 2024: Innovating Tomorrow: The Future of IT and Emerging Technologies.

Image
📘 Seminar Reflection: IT Convention 2024 – Innovating Tomorrow: The Future of IT and Emerging Technologies 🗓 I. Details of the Event/Activity Date: November 16, 2024 Venue: University of the East—Caloocan, Lucio Tan Building, 5th Floor, MPH 3 Audience: Students, Faculty, and Industry Professionals from different types of Schools Objective: To explore the latest trends and innovations in emerging technologies like AI, machine learning, and blockchain. To discuss their impact on industries, learn best practices for integrating them into IT infrastructures, and examine the ethical considerations of these advancements. To network with industry experts and prepare for the future of technology. 💭 II. Reflection on the Webinar/Activity (Learnings) The IT Convention 2024 gave me a better understanding of how fast technology is evolving, especially with advancements in AI, machine learning, and blockchain. I learned how these techn...

Reflection as a Participant: Regional Assembly on Information Technology Education (RAITE 2024)

Image
📘 Seminar Reflection: RAITE 2024 – Navigating the AI-Driven Future 🗓 I. Details of the Event/Activity Date: November 4, 2024 Venue: Angeles University Foundation Audience: Students, Faculty, Registered Institutions, and Professionals Objective: To explore the deeper impact of AI in education, ethics, and innovation To understand AI integration for educators and as a tool for preparing for the future 💭 II. Reflection on the Webinar/Activity (Learnings) The seminar provided valuable insights into how AI is transforming education by enhancing accessibility and enabling personalized learning experiences . It highlighted the importance of ethical AI use , focusing on transparency, responsibility, and protecting rights during development. The discussion also emphasized AI's potential to drive innovation across various industries, boost productivity, and create new opportunities. My understanding of AI’s impact ha...

Introduction to SQL

Image
 WHAT IS SQL?      SQL stands for Structured Query Language. SQL is used to communicate with a database. It is the standard language for relational database management systems. SQL statements are used to perform tasks such as updati ng data on a database or retrieving data from a database. Some common relational database management systems that use SQL are Oracle, Sybase, Microsoft SQL Server, Access, Ingres, etc.      Although most database systems use SQL, most of them also have their own additional proprietary extensions that are usually only used on their system. However, the standard SQL commands such as “Select”, “Insert”, “Update”, “Delete”, “Create”, and “Drop” can be used to accomplish almost everything that one needs to do with a database. WHAT SQL CAN DO? SQL can execute queries against a database SQL can retrieve data from a database   SQL can insert records into a database   SQL can update records in a database  S...

Introduction to JSON

Image
 WHAT IS XML?     XML or Extensible Markup Language is a markup language and file formal for sorting, transmitting, and reconstructing arbitrary data.  It defines a set of rules for encoding documents in a format that is both human-readable and machine-readable. XML emphasizes simplicity, generality, and usability across the Internet. It is a textual data format with strong support via Unicode for different human languages. Although the design of XML focuses on documents, the language is widely used for the representation of arbitrary data structures such as those used in web services. JSON JavaScript Object Notation (JSON) is a standard text-based format for representing structured data based on JavaScript object syntax. It is commonly used for transmitting data in web applications. JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate and it is ...

Introduction to SQL

Image
 What is Data Definition Language?      Data definition language (DDL) is a computer language used to create and modify the structure of database objects in a database. In the context of SQL, data definition or data description language is a syntax for creating and modifying database objects such as tables, indices, and users. DDL statements are similar to a computer programming language for defining data structures, especially database schemas.       Data Definition Language (DDL) is a subset of SQL. It is a language for describing data and its relationships in a database. You can generate DDL in a script for database objects to keep a snapshot of the database structure. Set up a test system where the database acts as the production system but contains no data. What is Interactive Manipulation Language? Interactive manipulation language is a component of the SQL that is used to insert, delete and update tuples in a relation. What is Embedded Data...

Database Mangement

Image
DATABASE MANAGEMENT SYSTEM  What is DBMS?     DBMS is a software system that manages databases. A database management system (or DBMS) is essentially nothing more than a computerized data-keeping system. Users of the system are given facilities to perform several kinds of operations on such a system for either manipulation of the data in the database or the management of the database structure itself.  Function of DBMS Here are some important functions of Database Management System: Data Dictionary Management, Data Storage Management, Data Transformation and Presentation, Security Management, Multi-user Access Control, Backup and Recovery Management, Data Integrity Management, Database Access Languages and application Programming Interfaces and Database Communication interfaces. Function of DBMS 1. Data Dictionary Management           Data Dictionary Management is one of the most important functions of the database management s...

Database Management System

Image
A. What is Database?     In computing, a database is an organized collection of data stored and accessed electronically. Small databases can be stored on a file system, while large databases are hosted on computer clusters or cloud storage      A database is an organized collection of structured information, or data, typically stored electronically in a computer system. A database is usually controlled by a database management system (DBMS). B. What type of Software is Microsoft Office Excel?      Microsoft Excel is a spreadsheet program included in the Microsoft Office suite of applications. With Office 365, you are able to download the application to your hard drive and will also have access to the online version.      Microsoft Excel is a software program produced by Microsoft that allows users to organize, format, and calculate data with formulas using a spreadsheet system. This software is part of the Microsoft Office suite and...