Welcome to FMA-Tuitorial, We shall explore the world of IT

With me, you will know how things really functioning in IT world and how we are managing it everyday

Get introduced to technology what we usually don't see

Gain knowledge about 1000s of things that is keeping the IT communication world alive everyday

Do you know what your PC can do?

Here you will learn how to maximize the use of your home PC.

Learn it from deep inside

Hardware, really interesting and coding behind the seen keep them functional.

THE IT WORLD IS SO POWERFUL

We control everything and we are the core function of our power.

Sunday, 1 September 2013

Final- Practical Syllabus

1. Detailed knowledge on computer and hardware identification
2. Computer assembly knowledge.
3. Computer hardware troubleshooting knowledge.


Helpful Navigation:

>> Inside computer hardware identification
>> Hardware identification from physical view: Subject to go through Class notes (ppt slides)
>> Basic computer hardware troubleshooting: Subject to study what will happen when specific computer hardware fails.


*This will be a paper based practical exam where you might be asked few interactive questions. All questions must be answered.

Sunday, 25 August 2013

Exam short review

This is the short review of exam topic:

1. Detailed Input- Output device.
2. Study on Display devices.
3. Detail study on Storage devices.
4. Operating system and its operations.
5. Detailed Operating system classification.
6. Detailed study on Microprocessor.
7. Detailed study on programming language.

========================================================================
N.B: PLEASE DO NOT DEPEND ONLY ON THESE TOPICS. THIS IS JUST STUDY REVIEW THAT CAN HELP YOU IN EXAM.
========================================================================

Sunday, 30 June 2013

Class has been Cancelled

I am extremely sorry to let you know that I have to cancel the class on 1 July 2013 since my training is not finished yet. There will be recovery class for this very soon. Everything apart from tomorrows class will be same as usual. Class captains are requested to contact with me soon.

Friday, 28 June 2013

ASSIGNMENT is now available

Your Assignment is now Under HOTSPOT > Assignment. Please be advised to download and discuss the assignment with me before you start doing this. This assignments are group assignment. So start forming group of 3 from now. There will be a group Registration activity take place on next class. Good luck.


Sunday, 23 June 2013

MID-TERM Total: Published

Mid-Term total mark has been published. You can find the result under RESULT tab or by clicking on the following link.

Result Link: http://fmatuitorial.blogspot.com/p/results.html

Sunday, 16 June 2013

Practical Exam Syllabus

I guess all you know this syllabus already. But this is a little review of what you have to prepare for tomorrow.

PRACTICAL EXAM SYLLABUS
---------------------------------------------------------
1. Microsoft Word
>> Document editing.
>> Page setup.
>> Font and margin editing.
>> Cover page.
>> Table of contents
-----------------------------------------------------
YOU ARE BE ADVISED TO TAKE COMPLETE PREPARATION FOR EXAM AND WISH YOU ALL THE BEST OF LUCK FOR TOMORROW.

Friday, 7 June 2013

We are on Facebook now

From now on you can get update from Facebook. So find FMATUITORIAL on Facebook. Like the page and get regular update about your course directly to your Facebook wall.

The Web-link for Facebook: www.facebook.com/Fmatuitorial

Mid Term Provisional mark

Now you can see your Provisional Mid-Term Theory results online from RESULT tab placed on the menu.
Or you can directly access it by clicking on the following link:

http://fmatuitorial.blogspot.com/p/results.html

Wednesday, 10 April 2013

Book Available to download

The compTIA A+ book is now available to download. Please Go to DOWNLOAD at the navigation panel and select BOOKS from the drop-down menu to get the book. Good luck.

Saturday, 6 April 2013

Convert decimal to octal

This worksheet will help you to know about concept of Decimal to Octal Conversion. It is used to perform conversion of Decimal to Octal Conversion. The Octal values are from 0, 1, 2, 3, 4, 5, 6, 7. Hence the base of Octal numbers are 8.

Decimal to Octal Conversion
The steps followed to convert decimal to binary are
Step1: Divide the number by 8. Write the remainder on the right corner.
Step2: Note the final Octal value from bottom to up.

Example is given below,
Here we convert 4321 to Octal value ,

Decimal to Octal Conversion
The equivalent octal value is 103418

Above worksheet is a walk through to understand Decimal to Octal Conversion. When it comes to online calculation, this Decimal to Octal Converter is an essential tool to make your conversion easy.

Convert octal to binary


In order to get the equivalent Binary number for the given octal number, write the individual octal digit in its equivalent binary numbers from the below conversion table that yields you the binary number equivalent. The below example lets you understand the hex to binary conversion clear
Example: Convert Hexadecimal number (536)8 to its binary equivalent
Octal to Binary Conversion

Convert Binary into Octal

This kind of conversion process is so easy and most unusual in our daily life.  We can perform binary to decimals conversion using following process:

Starting from the right divide the binary number up in 3 bit sections, then convert each 3 bit section into its decimal equivalent.
Example: 101001110111012 = 10|100|111|011|101 =247358

Convert Decimal to binary

The decimal (base ten) numeral system has ten possible values (0,1,2,3,4,5,6,7,8, or 9) for each place-value. In contrast, the binary (base two) numeral system has two possible values, often represented as 0 or 1, for each place-value.
To avoid confusion while using different numeral systems, the base of each individual number may be specified by writing it as a subscript of the number. For example, the decimal number 156 may be written as 15610 and read as "one hundred fifty-six, base ten". The binary number 10011100 may be specified as "base two" by writing it as 100111002.
Since the binary system is the internal language of electronic computers, serious computer programmers should understand how to convert from decimal to binary. Here's how to do it.

----------------------------------------------------------------------------------------------------------------------------
This method is much easier to understand when visualized on paper. It relies only on division by two.
  1. 1
    Set up the problem. For this example, let's convert the decimal number 15610 to binary.
    • Write the decimal number as the dividend inside an upside-down "long division" symbol.
    • Write the base of the destination system (in our case, "2" for binary) as the divisor outside the curve of the division symbol.
  2. 2
    Write the integer answer (quotient) under the long division symbol, and write the remainder (0 or 1) to the right of the dividend.
    • Basically, if the dividend is even, the binary remainder will be 0; if the dividend is odd, the binary remainder will be 1.
  3. 3
    Continue downwards, dividing each new quotient by two and writing the remainders to the right of each dividend. Stop when the quotient is 0.
  4. 4
    Starting with the bottom remainder, read the sequence of remainders upwards to the top. For this example, you should have 10011100. This is the binary equivalent of the decimal number 156. Or, written with base subscripts: 15610 = 100111002
    • This method can be modified to convert from decimal to any base. The divisor is 2 because the desired destination is base 2. If the desired destination is a different base, replace the 2 in the method with the desired base. For example, if the desired destination is base 9, replace the 2 with 9. The final result will then be in the desired base.

Method Two: Descending Powers of Two and Subtraction

  1. 1
    List the powers of two in a "base 2 table" from right to left. Start at 20, evaluating it as "1". Increment the exponent by one for each power. The list, to ten elements, would look like this: 512, 256, 128, 64, 32, 16, 8, 4, 2, 1
  2. 2
    Figure out the greatest power that will fit into the number you want to convert to binary. For this example, let's convert the decimal number 15610 to binary. What is the greatest power of two that will fit into 156? Since 128 fits, write a 1 for the leftmost binary digit, and subtract 128 from your decimal number, 156. You now have 28.
  3. 3
    Move to the next lower power of two. Can 64 fit into 28? No, so write a 0 for the next binary digit to the right.
  4. 4
    Can 32 fit into 28? No, so write a 0.
  5. 5
    Can 16 fit into 28? Yes, so write a 1, and subtract 16 from 28. You now have 12.
  6. 6
    Can 8 fit into 12? Yes, so write a 1, and subtract 8 from 12. You now have 4.
  7. 7
    Can 4 (power of two) fit into 4 (working decimal)? Yes, so write a 1, and subtract 4 from 4. You have 0.
  8. 8
    Can 2 fit into 0? No, so write a 0.
  9. 9
    Can 1 fit into 0? No, so write a 0.
  10. 10
    Put together the binary answer. Since there are no more powers of two in the list, you are done. You should have 10011100. This is the binary equivalent of the decimal number 156. Or, written with base subscripts: 15610 = 100111002.
    • Repetition of this method will result in memorization of the powers of two, which will allow you to skip Step 1.

Easy ways to convert Binary into Decimal

As we know that binary numbers are numbers that computer can understand. Binary numbers can be converted to decimal using binary to decimal conversion tools or by learning easy way to change binaries into decimals.
For learning how we can convert binary numbers to decimal numbers is so important as it will clear your idea on binary to decimal conversion manually without using any online based calculator.

Here I am explaining you a technique of how you can convert any binary to decimal number easily:
------------------------------------------------------------------------------------------------------------------------

REFERENCE LINK 1: BINARY 2 DECIMAL CONVERSION
DOWNLOAD: CONVERTER
------------------------------------------------------------------------------------------------------------------------
REFERENCE METHOD 2

  1. For this example, let's convert the binary number 100110112 to decimal. List the powers of two from right to left. Start at 20, evaluating it as "1". Increment the exponent by one for each power. Stop when the amount of elements in the list is equal to the amount of digits in the binary number. The example number, 10011011, has eight digits, so the list, to eight elements, would look like this: 128, 64, 32, 16, 8, 4, 2, 1
  2. 2
    Write first the binary number below the list.
  3. 3
    Draw lines, starting from the right, connecting each consecutive digit of the binary number to the power of two that is next in the list above it. Begin by drawing a line from the first digit of the binary number to the first power of two in the list above it. Then, draw a line from the second digit of the binary number to the second power of two in the list. Continue connecting each digit with its corresponding power of two.
  4. 4
    Move through each digit of the binary number. If the digit is a 1, write its corresponding power of two below the line, under the digit. If the digit is a 0, write a 0 below the line, under the digit.
  5. 5
    Add the numbers written below the line. The sum should be 155. This is the decimal equivalent of the binary number 10011011. Or, written with base subscripts:
  6. 6
    Repetition of this method will result in memorization of the powers of two, which will allow you to skip step 1.

Doubling method

  1. 1
    This method does not use powers. As such, it is simpler for converting large numbers in your head because you only need to keep track of a subtotal.
  2. 2
    Start with the left-most digit of the given binary number. For each digit as you move to the right, double your previous total and add the current digit. For example, to convert 10110012 to decimal, we take the following steps:
  3. 3
    1011001 → 0 * 2 + 1 = 1
  4. 4
    1011001 → 1 * 2 + 0 = 2
  5. 5
    1011001 → 2 * 2 + 1 = 5
  6. 6
    1011001 → 5 * 2 + 1 = 11
  7. 7
    1011001 → 11 * 2 + 0 = 22
  8. 8
    1011001 → 22 * 2 + 0 = 44
  9. 9
    1011001 → 44 * 2 + 1 = 8910
  10. 10
    Like the positional notation method, this method can be modified to convert from any base to decimal. Doubling is used because the given number is of base 2. If the given number is of a different base, replace the 2 in the method with the base of the given number. For example, if the given number is in base 37, you would replace the *2 with *37. The final result will always be in decimal (base 10).

Sunday, 31 March 2013

Lecture Notes



These notes will be posted here before every class and are requested you to download from here. Remember that no hard copy will be provided in the class. So everyone is requested to print the handout before class and everyone must bring them in lecture time.


DOWNLOADS
-----------------------------------------------------------------------------
WEEK-2
IT-1201-Syllabus for the total unit.

Lecture-1 (PPT) 

CompTIA A+ Lecture: Computing & networking

WEEK-3

CompTIA A+ Lecture: Printers And Scanners (Easy guide)

CompTIA A+ Lecture: CPUs & Memory.

Wednesday, 27 March 2013

Topics that will be covered

In our whole semester, we shall cover some of the most important information technology related topics which eventually will help you in future.Our study will be based on case study. So the whole course will be slightly different than the others.
So before we begin, you must have some clear ideas about the followings:

1. What is a case study?
2. Go through some of the CASE STUDY based assignments. (Available from Google).

Class exams types:

There will be written exams and CBE tests based on lab practices and theory we shall cover both in class and lab. Mark Percentage will be declared upon announcement of exam date.

There will be two assignments one case study and one or two CBE tests in the whole semester.

Theory Syllabus:

1. Introduction to computer.
2. Number system
3. Logic gate.

              Mid-Term Exam
4. I/O Devices
5. Memory and Hardware devices
6. Operating system
7. Computer Program, Software and languages

Lab Syllabus:

1. Windows Command line Practice.
2. Windows security configuration.
3. Introduction to VMWare environment.(Visualization of Workstation)
4. Networking in Windows OS.
5. File system and file sharing.
6. Web development, blogging and web page development, simple HTML and embeded HTML code   introduction.
7. Introduction to Linux (Ubuntu)
8. Using internet for research writing.
9. Microsoft office.