IT FIA1 Revision

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/32

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

33 Terms

1
New cards

What is PHP?

PHP, which stands for "Hypertext Preprocessor", is an open-source, server-side scripting language primarily used for web development

2
New cards

What is HTML?

HTML (Hypertext Markup Language) is a coding language that defines the structure and content of a webpage

3
New cards

What is CSS?

Cascading Style Sheets is a style sheet language used for specifying the presentation and styling of a document written in a markup language such as HTML

4
New cards

This Section will be about webpage appearances.

Cooked?

5
New cards

Describe 3 elements of visual communication and how each can be used

(Space, line, color, shape, texture, tone, form, proportion and scale)

Space: The arrangement of objects and empty areas affects balance, readability, and depth in design.

Line: Lines guide movement, create structure, and convey emotions, such as stability with horizontal lines or energy with diagonals.

Color: Different colors influence mood, contrast improves visibility, and color psychology

enhances messaging.

Shape: Geometric shapes add order, while organic shapes create a natural, informal feel in compositions.

Texture: The visual or tactile feel of a surface adds realism, depth, and contrast to designs.

Tone: Lightness and darkness create mood, contrast, and depth, making elements stand out or blend smoothly.

Form: Three-dimensional qualities add realism and depth using shadows, highlights, and perspective.

Proportion: The size relationship between elements maintains harmony, realism, or emphasis in design.

Scale: Adjusting element sizes creates hierarchy, draws attention, and affects overall composition balance.

6
New cards

Describe 3 principles of visual communication and how each can be used

(Balance, contrast, proximity, harmony, alignment, repetition and hierarchy)

Balance: The even (symmetrical) or uneven (asymmetrical) distribution of elements creates stability or dynamism in a design.

Contrast: Differences in color, size, shape, or texture highlight key elements and improve readability.

Proximity: Grouping related elements together strengthens relationships and improves visual organization.

Harmony: A consistent use of colors, shapes, and styles creates a unified, aesthetically pleasing design.

Alignment: Proper positioning of elements creates order, structure, and a professional appearance.

Repetition: Repeating design elements like colors, fonts, or patterns reinforces consistency and recognition.

Hierarchy: Arranging elements by importance guides the viewer’s focus and improves readability.

7
New cards
<p>Annotate the Following images using three elements and three principles.</p><p>Elements:</p><p>(Space, line, color, shape, texture, tone, form, proportion and scale)</p><p>Principles:</p><p>(Balance, contrast, proximity, harmony, alignment, repetition and hierarchy) </p>

Annotate the Following images using three elements and three principles.

Elements:

(Space, line, color, shape, texture, tone, form, proportion and scale)

Principles:

(Balance, contrast, proximity, harmony, alignment, repetition and hierarchy)

Elements:

  1. Color – Bright, contrasting colors enhance readability and visual appeal.

  2. Shape – Rectangular blocks and illustrated elements create structure and depth.

  3. Space – Balanced negative space ensures clarity and organization.

Principles:

  1. Hierarchy – Important details are emphasized with large, bold text.

  2. Contrast – Dark backgrounds highlight bright text and graphics.

  3. Alignment – A structured grid layout maintains order and readability.

8
New cards
<p>Annotate the Following images using three elements and three principles.</p><p>Elements:</p><p>(Space, line, color, shape, texture, tone, form, proportion and scale)</p><p>Principles:</p><p>(Balance, contrast, proximity, harmony, alignment, repetition and hierarchy) </p>

Annotate the Following images using three elements and three principles.

Elements:

(Space, line, color, shape, texture, tone, form, proportion and scale)

Principles:

(Balance, contrast, proximity, harmony, alignment, repetition and hierarchy)

Elements:

  1. Color – The design is monochromatic, ensuring clarity in structure.

  2. Shape – Rectangular blocks define sections such as images, text, and buttons.

  3. Space – Balanced layout with sufficient white space for readability.

Principles:

  1. Hierarchy – Product name and price are bold and prominent.

  2. Contrast – Black buttons and text stand out against the white background.

  3. Alignment – Consistent grid-based alignment enhances usability.

9
New cards
<p><span style="color: oklab(0.89908 -0.00192907 -0.0048306)">Examine the code below. Although session variables/arrays have been used, the grid resets every time the page loads - every time the player submits the form. Write code to stop the grid resetting every time.</span></p>

Examine the code below. Although session variables/arrays have been used, the grid resets every time the page loads - every time the player submits the form. Write code to stop the grid resetting every time.

The issue in the code is that the $_SESSION['grid'] array is being reset on every page load, causing the grid to start from scratch every time. This happens because the session variable is being reinitialized unconditionally.

To prevent the grid from resetting, check if $_SESSION['grid'] is already set before assigning a new grid. Modify the code as follows:

Explanation of Fix:

  1. Checks if $_SESSION['grid'] is already set:

    • If it is not set, it initializes the grid.

    • If it exists, it retains the previous values instead of resetting.

  2. Ensures the grid does not reset on every form submission:

    • The game state is maintained across page reloads.

  3. Preserves the $_SESSION['hits'] variable:

    • Prevents $_SESSION['hits'] from resetting unnecessarily.

This ensures the grid persists across page reloads while updating only necessary parts dynamically.

<p>The issue in the code is that the <code>$_SESSION['grid']</code> array is being reset on every page load, causing the grid to start from scratch every time. This happens because the session variable is being reinitialized unconditionally.<br><br>To prevent the grid from resetting, check if $_SESSION['grid'] is already set before assigning a new grid. Modify the code as follows:<br><br><strong>Explanation of Fix:</strong></p><ol><li><p><strong>Checks if </strong><code>$_SESSION['grid']</code><strong> is already set:</strong></p><ul><li><p>If it is not set, it initializes the grid.</p></li><li><p>If it exists, it retains the previous values instead of resetting.</p></li></ul></li><li><p><strong>Ensures the grid does not reset on every form submission:</strong></p><ul><li><p>The game state is maintained across page reloads.</p></li></ul></li><li><p><strong>Preserves the </strong><code>$_SESSION['hits']</code><strong> variable:</strong></p><ul><li><p>Prevents <code>$_SESSION['hits']</code> from resetting unnecessarily.</p></li></ul></li></ol><p>This ensures the grid persists across page reloads while updating only necessary parts dynamically.<br></p>
10
New cards
<p><span style="color: oklab(0.89908 -0.00192907 -0.0048306)">Write PHP code to output sales figures for the first three (3) days of the first three (3) months in 2023, as illustrated above. Your code should include the use of one or more loops.</span></p>

Write PHP code to output sales figures for the first three (3) days of the first three (3) months in 2023, as illustrated above. Your code should include the use of one or more loops.

Breaking It Down Simply:

  1. Start or continue the session:

    • session_start(); makes sure the session data is available across multiple page loads.

  2. Check if the grid exists:

    • If $_SESSION['grid'] is not set, it creates a 2-row grid filled with empty strings ("").

    • If it already exists, the grid stays the same (so it doesn't reset every time).

  3. Pick a random position:

    • rand(0, count($_SESSION['grid']) - 1); → Picks a random row in the grid.

    • rand(0, count($_SESSION['grid'][$randomRow]) - 1); → Picks a random column in that row.

  4. Mark positions in the grid:

    • It places four "@" symbols starting from the randomly selected position.

    • This could represent a ship in a battleship game or a marked area in a board game.

  5. Make sure hits exist:

    • If $_SESSION['hits'] isn’t already set, it initializes it as 0.

    • This ensures the hit counter doesn't reset on page reload.

<p><strong>Breaking It Down Simply:</strong></p><ol><li><p><strong>Start or continue the session:</strong></p><ul><li><p><code>session_start();</code> makes sure the session data is available across multiple page loads.</p></li></ul></li><li><p><strong>Check if the grid exists:</strong></p><ul><li><p>If <code>$_SESSION['grid']</code> is <strong>not set</strong>, it creates a <strong>2-row grid</strong> filled with empty strings (<code>""</code>).</p></li><li><p>If it <strong>already exists</strong>, the grid stays the same (so it doesn't reset every time).</p></li></ul></li><li><p><strong>Pick a random position:</strong></p><ul><li><p><code>rand(0, count($_SESSION['grid']) - 1);</code> → Picks a random row in the grid.</p></li><li><p><code>rand(0, count($_SESSION['grid'][$randomRow]) - 1);</code> → Picks a random column in that row.</p></li></ul></li><li><p><strong>Mark positions in the grid:</strong></p><ul><li><p>It places four <code>"@"</code> symbols starting from the randomly selected position.</p></li><li><p>This could represent a ship in a battleship game or a marked area in a board game.</p></li></ul></li><li><p><strong>Make sure </strong><code>hits</code><strong> exist:</strong></p><ul><li><p>If <code>$_SESSION['hits']</code> isn’t already set, it initializes it as <code>0</code>.</p></li><li><p>This ensures the <strong>hit counter doesn't reset</strong> on page reload.</p></li></ul></li></ol><p></p>
11
New cards

Next Sheet

Cooked?

12
New cards
<p>Answer These:</p>

Answer These:

Understand?

<p>Understand? </p>
13
New cards
term image
knowt flashcard image
14
New cards

Answer:

Next One

15
New cards
term image
knowt flashcard image
16
New cards

Next Section

Cooked?

17
New cards

Describe the relationship between HTML forms and PHP.

HTML forms are used to collect user input, which is then sent to a PHP script for processing. PHP can handle the data, perform actions like validation or storage, and return responses based on the user's input.

18
New cards

Write HTML to create a form with the following: a username text field, a password text field, a submit button.

<html>

<head>

</head>


<body>

<form>
<p> Enter your Preferred Username <input type = “text” name = “Username”></p>
<p> Enter your Password <input type = “text” name = “Password”></p>
<p> Submit your Password and Username <input type="submit" name="formSubmit" value="Submit"></p>
</form>

</body>

</html>

19
New cards

Describe the method and action attributes in an HTML form.

The method and action attributes in an HTML form is, the action attributes handles the form submission for the user. On the other hand, method, is used to upload the data for the user in the form.

20
New cards

What is the difference between the get and post methods?

The difference between get and post is, GET is less secure than POST. For example, when you are typing in sensitive data such as your credit card or password, a code using an input type such as, GET will show what the user is typing in the URL such as their password. Therefore, making it susceptible to hackers. On the other hand, POST, makes it so, that when typing in anything such as your password, it hides it in the URL, making it more secure for the user.

21
New cards

What is the main use of session variables in PHP?

The main use of session variables in PHP is, storing the user’s information across multiple pages, such as usernames and passwords.

22
New cards

How is form data retrieved using PHP, if the form method is set to post? Write an example.

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Form Example</title>

</head>

<body>

<form method="POST" action="process.php">

<label for="name">Name:</label>

<input type="text" id="name" name="name">

<br>

<label for="email">Email:</label>

<input type="email" id="email" name="email">

<br>

<input type="submit" value="Submit">

</form>

</body>

</html>

23
New cards

Write example PHP code to check if a form has been submitted.

<?php

  if (isset($_POST['submitted'])) {
  }

?>

24
New cards

Write example PHP code to create an array of 4 words, then echo a random word from the array. Use the count() function and rand() function.

<?php

// Create an array with four words

$words = ["apple", "banana", "cherry", "date"];

// Get a random index using rand() and count()

$randomIndex = rand(0, count($words) - 1);

// Echo a random word

echo $words[$randomIndex];

?>

25
New cards

Write example PHP code to create an associative array of 3 people’s names and ages, then echo one of their names and ages.

<?php

$people = [

    "Alice" => 25,

    "Bob" => 30,

    "Charlie" => 22

];

echo "Bob is " . $people["Bob"] . " years old.";

?>

26
New cards

Write a line of PHP code to redirect a user from ‘login.php’ to ‘index.php’ using the header() function.

<?php

header("Location: index.php");

exit();

?>

27
New cards

Write PHP code to create a nested for loop (for loop within a for loop) to create the below output.

<?php

for ($i = 1; $i <= 3; $i++) {

echo "Row $i: ";

for ($j = 1; $j <= 3; $j++) {

echo "Column $j ";

}

echo "<br>";

}

?>

28
New cards

What does the array_push function do in PHP?

The array_push() function inserts one or more elements to the end of an array.

29
New cards

List the steps involved in HTML form data being collected and processed. Use the terms ‘client’ and ‘server’.

  • Client: User Fills & Submits Form – User enters data and clicks submit.

  • Client to Server: Data is Sent – Browser sends form data via GET (URL) or POST (request body).

  • Server: Receives & Processes Data – Server retrieves, validates, and processes the data.

  • Server: Stores or Uses Data – Data may be saved in a database, used for authentication, etc.

  • Server to Client: Sends Response – Server returns a success, error message, or redirects.

  • Client: Displays Response – User sees feedback, such as a confirmation or error message.

30
New cards

Complete the below PHP code.

//CREATE age VARIABLE

$age = 20;

//INCREMENT age VARIABLE BY 1

// CREATE age VARIABLE

$age = 20;

// INCREMENT age VARIABLE BY 1

$age++; // OR $age += 1;

echo $age; // Output: 21

31
New cards
<p><span style="font-family: Bierstadt, sans-serif">Convert the following variable and array to a session equivalent variable and array.</span></p>

Convert the following variable and array to a session equivalent variable and array.

<?php

// Create an array of temperatures for the first five days of a month

$temperatures = [25, 28, 30, 27, 26];

// Output the table start tag

echo "<table>";

// Output the table header row

echo "<tr><th>Day</th><th>Temperature</th></tr>";

// Loop through each day of the month

for ($day = 1; $day <= count($temperatures); $day++) {

// Output each day and its corresponding temperature as a table row

echo "<tr><td>$day</td><td>{$temperatures[$day - 1]}</td></tr>";

}

// Output the table end tag

echo "</table>";

?>

</body>

</html>

32
New cards
term image

<p></p>
33
New cards

cooked?

yeah yeah yeah, nah nah nah