Skip to main content

How I think now - first day in the grind ! - 1

Hello friends, 

This blog I am using it to document my journey in the computer world. I used to be a Sommelier, when I started getting into wines - I started a mother blog about wine and beverages hoping to document everything beverage related there which now I am switching to computer and allies. I did spent almost 10 years in hospitality with special interests in wine and beverages of all kinds, but I no longer anticipate to be active in the wine world. 

‘Documentingcybersecurity.blogspot.com’ officially is a documentation blog of everything I learn about computer, technology, cybersecurity. I would have really enjoyed reading about the evolution later in my life whenever I had started anything new, only if I had taken the time to document the whole process. But, now I am doing it with my computer education because I am a newbie at present. I had spent considerable time in my life trying to acquire atleast some knowledge almost about everything which have impacted my life besides computers/technologies, because I had regarded this area as something I would never need to venture into- so I was happy with the basics I learned by just being in the flow - like watching the advertisements in the T.V without intending to watch them - if you know what I mean. Getting into documentation mode now - I wondered whole day trying to figure out what would be the best approach for me to take if I want to get the most out of my cybersecurity and ethical hacking educational journey. I could tell any front of the house students in hospitality what they are getting into and how they could contribute to the highest level; I am looking for similar kind of guidance in the field of information technology. 

I did some research about programming languages which incuded googling and watching few youtube videos. I know for the first time that there are many programming languages and in sort of rough hierarchy starting from something close to the C.P.U and upwards are -Assembly, C, C++, C#, Java, Swift, PHP, Javascript, Phython, Ruby. And there is also GO now, developed by google. C programming is the fundamental and the oldest language developed Circa 1972. Python is one of the most versatile and widely used. Also, there is Java which is somehow like a combination of C and C++ , also very popular. Javascript is also hot - used extensively in webdesignings. After gathering the basic informations of all these programming languages - I opt to start my journey by learning C language on my own using the resources I will be finding in the internet. This is something I am doing on my own in-addition to what I would be learning in college- which has technically started last week but I havent been to college because of COVID -19 pandemic.

Comments

Popular posts from this blog

Python Sample Questions and Answers for Beginners.

  Phython Sample Questions:   1.      In Python, a variable must be declared before it is assigned a value: a.      True b.      False c.      Non Applicable     2.     In Python, a variable may be assigned a value of one type, and then later assigned a value of a different type: a.True b.False 3.     Consider the following sequence of statements: n = 300 m = n Following execution of these statements, Python has created how many objects and how many references? a.      Two objects, two references b.      Two objects, one reference c.      One object, one reference d.      One object, two references 4.     What Python built-in function returns the unique number assigned to an object: a.      ref() b. ...

C and Assembly Questions and Answers 101

  Assembly and C Questions 101: 1. How long will it take for a 128kB file to go across at 1Mbps? 2. DMA full form? 3. Register : Register is the fastest memory in a computer which holds information. True or False 4. A 32-bit processor means it can perform operations on 32-bit data; therefore, the size of registers is 32 bits and ALU also performs 32-bit operations. A 64-bit CPU performs the operation in 64-bit data; therefore, it contains 64-bit register and 64-bit ALU.  True or False 5. Which of the following is a control signal? a.       Read Signal b.      Write Signal c.       Interrupt d.      Bus Request e.       Bus Grant f.       I/O Read and Write g.      All of the above 6. There are two types of CPU technology CISC and RISC. What is the full form of CISC and RISC? 7. The cha...

IPV4, Class and Subnetting.

  IPV4, Class and Subnetting.   IPV4 which stands for Internet protocol version 4 consists of 32 bits. It is written in four octets (1 octet consists of eight bits) – xxxxxxxx.xxxxxxxx.xxxxxxxx.xxxxxxxx -----these digits are in binary either 1 or 0 and if written in decimal looks something like this – 10.25.58.65  The maximum value of 1 octet is 255 that is derived from- lets suppose if an octet is all 1s like 11111111 ---- the decimal value of this equals to 255. Lets get into few important points:   IPV4 class ---- Classes 1 st Octet Range Default Subnet Mask Finding Formula A 0-127 (#127 is a loop IP) 255.0.0.0 00000000(0) -011111111(127) (0 constant in the range) B 128-191 255.255.0.0 10000000(128) – 10111111(191) (10 constant ) C 192 -223 255.255.255.0 11000000(192) – 11011111(223)  ...