New Know How

To begin customizing your site go to Appearance -> Customizer and select Theme Options. Here's you'll find custom options to help build your site.

Read More

Step 2 - Setup Slider

To add a slider go to Theme Options -> Homepage and choose page slider. The slider will use the page title, excerpt and featured image for the slides.

Read More

Step 3 - Create Homepage

To add featured content go to Theme Options -> Homepage (Featured) and turn the switch on then add the content you want for each section.

Read More

Things to note about Structure in C plus plus (C++)

Initializing structure structure_name variable_name = {value1,value2,…,valueN}; Initializing nested structure structure_name variable_name = { {value1, value2},{value3,value4}}; A structure can be nested up to any depth in theory. Structure can hold data and functions (In c they can only hold data) An enum declaration defines the set of all names that will be permissible values of the

Read More

Virtual Machine Architecture

Virtualization can be defined as the process of creating multiple copies of an object. A virtual machine is a virtualization of a machine. The software that creates multiple copies of a machine is called a virtual machine monitor (VMM) or a hypervisor. Each virtual machine have its own OS called ‘guest OS’ and the OS

Read More

Processor Execution Modes

There are mainly three types of OS architecture models : Monolithic OS Layered OS Client-server or microkernel OS In every model, there are two modes of processor execution : the user mode and the system mode. Application programs run in the user mode whereas the operating system runs in the system mode. The system mode

Read More