Skip to main content

5 Best Interview Tips


  • Present yourself by clearly stating your name. Make direct eye contact with the interviewer.
  • Give a firm handshake. A trick to avoid getting sweaty palms is to carry a tissue in you pocket to dry your hand right before the handshake.
  • Constantly moving hands will usually represent nervousness. Keep them on table, on your knees.
  • Sit up straight and do not slouch.sitting up portrays confidence and poise.   
  • Unintentional nervous ticks are clearly noticeable by interviewers, but might not be to the applicant. Be careful not to tap the table, touch your face constantly or stutter when answering question.




Comments

Popular posts from this blog

The Jungle Book Waterfall Rescue (2015)

Your favorite Jungle Book characters return to save the day in the exciting Waterfall Rescue. Join Mowgli, Baloo and Lali on a brave mission to rescue their animal friends and save their jungle home. Download Direct Download Torrent

Games HD wallpapers pack

68 items                                                             Download

Basic Linux Commands On Terminal

Change Directory cd file_dir Create Directory mkdir file_dir Delete Directory  rm -rf file_dir Create/Write File nano my_file.txt (from nano editor) vi my_file.txt (from vi editor) vim my_file.txt (from vim editor) Delete File  rm my_file.txt View File cat my_file.txt View Zip File content zcat /tmp/excise_1/ivr-2.log.gz Get File Properties file my_file.txt Show only log entries which contain text field cat /var/log/audit .log | grep Error Rename File / Move File mv my_file_oll.txt my_file_new.txt Copy File cp my_file.txt /tmp/ Copy Directory cp -r /tmp/dir /home/new_dir SSH  ssh username@ip ssh global_info_portal@192.234.87.87 SCP scp filename username@ip:/server_location scp /tmp/my_file.txt global_info_portal@192.234.87.87:/tmp Disk Space df -h Ram Detail free -m View Process top Kill process kill -9 process_id when using top command its second column number is process id. kill -9...