Pages

Monday, February 13, 2012

Remove Navigation bar from your blog

1 . Backup your template for safety issues.
2 . Go to Dashboard > Template > Edit HTML
3 . Check the box of Expand Widget Template .
4 . Find the following code by pressing Ctrl + f
     </head>
Replace it with the code given below.
<style type="text/css">
    #navbar-iframe {   height:0px;   visibility:hidden;   display:none   }
    </style></head>
5 . Save your template.

Tuesday, February 7, 2012

Add a Sitemap to your Blog

Step 1: Log in to your blogger blog and go to the dashboard.
Step 2: Go to Pages --> New Pages
Step 3: Add a desirable title of it. I recommend "Sitemap"
Step 4: Now Open HTML portion of description by clicking on "Edit HTML".
Step 5:  Now copy the following code from below and paste it in your edit html area.

Friday, February 3, 2012

Free bangla to bangla, bangla to english and english to bangla dictionary

Free bangla to bangla, bangla to english and english to bangla dictionary. 

Create a password protected folder without downloading any software

  1. Create a new folder and name it whatever you would like.

  2. Open the folder, right-click on a blank area in it, then select New -> Text Document from the pop-up menu.

  3. Open the text file you just created by double-clicking it and copy/paste in the following text:

Friday, January 13, 2012

Hide a folder

Follow the following techniques to hide a folder:
 
         1. Suppose we want to hide the folder “ABC”, which is situated at Drive C:\  
         2.Go to Command Prompt (Start --> Run --> cmd).
         3. Type attrib +s +h C:\ABC and press Enter.
         4. It will hide your folder. 
         5. To make it visible again you must go to command prompt and type attrib –s –h C:\ABC and press Enter.

Sunday, January 8, 2012

Delete the Temporary file of Windows 7 Automatically

1. Open Notepad
2. Copy paste the code given below

cd C:\Users\%username%\AppData\Local
rmdir /S /Q Temp

3. Save that as sq.bat
4.Double click on it to delete all the temporary files.

To do it automatically,
1. Go to Start Menu ---> All Programs ---> Startup ---> Right Click on it ---> Click Explore
2. Paste the sq.bat file there.

By doing this, it will always delete the temporary files at the start of the windows.

Monday, November 21, 2011

8086 interview questions

8086 interview questions 
  1. What are the flags in 8086? - In 8086 Carry flag, Parity flag, Auxiliary carry flag, Zero flag, Overflow flag, Trace flag, Interrupt flag, Direction flag, and Sign flag.
  2. What are the various interrupts in 8086? - Maskable interrupts, Non-Maskable interrupts.
  3. What is meant by Maskable interrupts? - An interrupt that can be turned off by the programmer is known as Maskable interrupt.
  4. What is Non-Maskable interrupts? - An interrupt which can be never be turned off (ie.disabled) is known as Non-Maskable interrupt.
  5. Which interrupts are generally used for critical events? - Non-Maskable interrupts are used in critical events. Such as Power failure, Emergency, Shut off etc.,
  6. Give examples for Maskable interrupts? - RST 7.5, RST6.5, RST5.5 are Maskable interrupts
  7. Give example for Non-Maskable interrupts? - Trap is known as Non-Maskable interrupts, which is used in emergency condition.
  8. What is the Maximum clock frequency in 8086? - 5 Mhz is the Maximum clock frequency in 8086.
  9. What are the various segment registers in 8086? - Code, Data, Stack, Extra Segment registers in 8086.