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...

Getting started - 2

I wanted to start with C programming language but my class has started. Our teacher has told me that we will be strictly learning Python for now. So, instead of trying to juggle between C and Python, I have decided to spend most of the time understanding Python first and figure out later how much diversification besides college I could do on the side which would help me later in my career or business.   What have I learned past week -   a) There is data, information and knowledge. Data are useful information (they can be treated as raw materials - old school concept) while information are data arranged in some pattern, they are organized data. Data becomes information when some form of intellectualization is incorporated to extract knowledge. So, there is also knowledge in the mix - which is the outcome achieved after assessing/interpreting data and information. Data can be analysed in various ways, among which are quantitative (using numbers), qualitative(using wor...