A PHP Error was encountered

Severity: Warning

Message: mkdir(): Permission denied

Filename: drivers/Session_files_driver.php

Line Number: 137

Backtrace:

File: /home/estarbk/public_html/dev.estar-bk.com/application/controllers/Main.php
Line: 8
Function: __construct

File: /home/estarbk/public_html/dev.estar-bk.com/index.php
Line: 315
Function: require_once

A PHP Error was encountered

Severity: Warning

Message: session_start(): Failed to initialize storage module: user (path: /var/cpanel/php/sessions/alt-php74)

Filename: Session/Session.php

Line Number: 137

Backtrace:

File: /home/estarbk/public_html/dev.estar-bk.com/application/controllers/Main.php
Line: 8
Function: __construct

File: /home/estarbk/public_html/dev.estar-bk.com/index.php
Line: 315
Function: require_once

E-STAR - Student
E-Lecture - Operation on modulo of numbers

In this section, we will study the operation of addition, subtraction and multiplication of numbers on a given modulo.

The sum of two or more numbers in a given modulo is found by first adding the numbers before converting to the given modulo. That is, if ab (mod m) and cd (mod m), then a + c = b + d (mod m).

The difference of two numbers in a given modulo is found by first subtracting the numbers before converting to the given modulo. That is, if ab (mod m) and cd (mod m), then ac = bd (mod m).

The product of two or more numbers in a given modulo is found by first multiplying the numbers before converting to the given modulo. That is, if ab (mod m) and cd (mod m), then a × c = b × d (mod m).