Skip to main content

TechBytes 10: Information Technology (IT) vs Computer Science (CS)

You know that a degree in computer science or IT can help get you where you want to be, but you’re not sure which is right for you. What’s the difference between information technology and computer science anyway?

  • The Basics
Computer science involves more independent work creating computer programs and applications, using algorithms and writing code.
IT professionals focus more on using technology to support business goals while frequently interacting with others to help solve tech issues either over the phone, in person or via email.
Personality-wise those more suited to independent work behind a desk may find themselves drawn to computer science while those who enjoy hands-on work assisting others may find more fulfillment in IT.
  • IT Degree Overview
IT is a branch of engineering. It is the practice of constructing and maintaining a highly complex system of modules that interact and communicate with each other, such as databases, servers, desktops, operating systems, and hardware.
  • IT Degree Focus Points and Career Positions
If you chose to earn a bachelor’s degree in IT, you can look forward to many interesting classes, such as:
  • IT Operations Management
  • Infrastructure and Hardware
  • Enterprise Application Support
These courses and more will help you gain the knowledge and hands-on experience you’ll need to secure positions such as:
  • Computer Support Specialist
  • IT Project Manager
  • Network Administrator

  • CS Degree Overview
Computer science is really a branch of mathematics. It is the study of concepts like algorithms, functions, data structures, abstract system interactions, lambda calculus and other abstract languages, and solving generalized problems efficiently.
  • CS Degree Focus Points and Career Positions
The curriculum included in a computer science bachelor’s degree will equip you for success in the field. Common courses include:
  • Mobile Application Development
  • Introduction to Business Intelligence
  • Advanced Cloud Computing Technologies
The skills and training you receive in this program will help qualify you for positions such as:
  • Systems Software Developer
  • Mobile Software Engineer
  • Cloud Application Engineer
Reference
  1. https://calhoun.nps.edu/bitstream/handle/10945/35521/cs08.pdf;jsessionid=E4286D888C21A910342F98495F5E8B36
  2. https://www.rasmussen.edu/degrees/technology/blog/it-vs-computer-science-degree-infographic
  3. https://www.semanticscholar.org/paper/The-Computing-Field%3A-Structure-Denning/dde9093573a09cae4ad65f7db05b3696a1b2a057
  4. https://www.quora.com/What-essentially-is-the-difference-between-computer-science-and-information-technology

Thanks for reading out!

Comments

Popular posts from this blog

Vapoclean: A sensor guided hand-rub dispenser

Due to the outbreak of COVID-19, a huge amount of alcohol based disinfectants are being manufactured and supplied in many countries. But as the virus spreads through close contact, we wanted to bring down the number of times a person has to touch things. So, we made Vapoclean. Vapoclean is giving the following advantages to it's users: 1. Spraying ample amount of disinfectant as an equally distributed mist. Which ensures disinfection in the shortest time before the solution evaporates. 2. Decreases the amount of wastage. 3. Lessens down the hassle of refilling or replacing the container frequently. Project & Team Introduction Introduction User Manual Display View 01 Display View 02 Official Datasheet Copyright © 2020 Vapoclean by Shahrear Mahfuz, Md. Asifuzzaman, S M Kaiser Ahmed, Faizur Rahman. All Rights Reserved.

TechBytes 03: Dueling Neural Networks

  What does these pictures look like to you? Pictures of a person from 2014-2017, right? No. Actually these pictures are fake. A new technology called Dueling Neuron Network, an advancement in Artificial Intelligence helped creating this. Dueling neural network is a system where two neuron networks contesting with each other like in a digital cat and mouse game. It is used to generate audible and visual data. The neural network has produced many pictures like the above ones. They look like real but they aren’t. GAN (Generative Adversarial Network) created these fake pictures. This particular network system replicates real data to produce fake data. Between two pictures above, left one is generator network which has the task to create training data and to get as realistic as it can. On the other hand, the right one is discriminator network which has the task to identify which one is real and which one is fake.  GAN is created through  pairing these two ...

TechBytes 02: Block certain sites from your computer! (Windows Platform)

Sometimes we want to block few websites so that other users of the computer can't visit those pages. Today I'll show you how to do this from windows operating system based computers. Let's do it then! Step 1: Search for notepad, right click on that and select 'Run as administrator' Opening notepad with admin access Step 2: Press 'Ctrl+O', navigate to 'C:\Windows\System32\drivers\etc' and double click on hosts Opening hosts file Step 3: Then at the end of the text file type in- "127.0.0.1 www.example.com" (w/o quotes) Blocking Access to Facebook Step 4: Press 'Ctrl+S' to save the file. Now use any browser to test your target site. You'll see that the site cannot be accessed anymore! Blocking activated What if you want to revert these things? Just put a # in front of 127.0.0.1 in the hosts file. Example #127.0.0.1 www.facebook.com See you again shortly!