Posts

Showing posts from October, 2020

Some Data Structures and Their Representation in Python

Image
 Data structure can be defined as the logical or mathematical model of a particular organization of a data. Data structure is used to denote a particular way of organizing data for particular type of operation. Some basic data structures and their interpretation in python are: 1.      Array – A linear array is the simplest type of data structure. A linear array is one dimensional and it is a list of finite number n of similar data element reference consecutively by a set of n consecutive numbers a1, a2, a3, …, an. In python an array is a list denoted by a square bracket ([]) or a keyword list. Student Paul Hampo James Dorcas Smith In python, it is student = [“Paul”, “Hampo”, “James”, “Dorcas”, “Smith”] 2.      Linked List – this is an array that is linked with a pointer. It is used in the stead of having a double array. In python this is called a dictiona...

Positioning for Post COVID-19 Remotely

Image
  Outline ·         What does ‘Remote’ or ‘Remotely’ mean in ICT? ·         Remote Positioning ·         Remote Tools ·         COVID-19 ·         The Timeline – Pre COVID-19, COVID-19, Post COVID-19 ·         Positioning for Post COVID-19 remotely ·         How to position for Post COVID-19 remotely Remote or remote access is the ability to a physical digital entity such a computer, network and so on, from a different location. That is, the ability to work offsite. Remote access is enabled through a network such as a LAN – Local Area Network, WAN – Wide Area Network, Internet, VPN – Virtual Private Network and so on. Remote access has given ability for service to be done remotely. Remote working is working away from the em...