Activity 30: HTTP Status CodesIn RESTful APIs, HTTP status codes are essential for conveying the outcome of client requests. They are categorized into five classes, each indicating a specific type of response: 1xx (Informational): These codes indicate that the request was receive...Nov 29, 2024·3 min read
Activity 20: Research BEM - Block, Element, Modifier - ArchiterctureUnderstanding BEM (Block, Element, Modifier) BEM (Block-Element-Modifier) is a CSS methodology that helps maintain scalability and readability in your code. Using BEM, you can avoid naming conflicts and create a modular structure for your styles. BEM...Nov 28, 2024·1 min read
Activity 24: POSTMANStep 1: Go to https://www.postman.com/downloads/ Press the Windows 64-bit button to download Step 2: Create an account Create an account to sign in and setup your role After you’re all done, this will be your GUI Understanding HTTP Methods in Post...Nov 28, 2024·2 min read
Activity 19: Research CSSHTML Code <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>HTML Elements Example</title> <style> body { font-family: Arial...Nov 28, 2024·2 min read
Activity 18: Research HTML<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>HTML Elements Example</title> </head> <body> <header> <h1>Welcome to My Web Page</h1>...Nov 28, 2024·2 min read
Activity 17: Data Structure AgainList, Object, and List of Objects List A list is a structured sequence of elements where each item has a defined position, and the data type of the elements can vary. These items could be integers, strings, or even more complex data types, such as o...Nov 28, 2024·12 min read
Definition of TermsData Definition: Information that is collected, stored, and used for analysis, operations, or reference. It can be in various forms such as numbers, text, images, or audio. Example: 5, "Hello World", [1, 2, 3]. Structure Definition: An arrangem...Nov 28, 2024·1 min read