Recent Post
Trending Topik
Sunday, 14 October 2012
Monday, 1 October 2012
Free Facebook,Twitter,Youtube,Google+ like and share for affiliate marketting
For better SEO one must be wellfully connected to
social media. Large companies expenses lots of money to affiliate their
products in thr market. Now a day every social media website employing
affiliate marketing in their website and this is pay and use use type, but the
small business holders do not want to invest lots of money for that purpose. There
are some websites who can help you to get a good Facebook likes,twitter
followers, you tube subscribers and Google+ followers absolutely free. Now a day
to use your social affiliate program perfectly you have to reach to an optimum
level of likes or you have to reach at least 30 people in your circle to show
your profile picture in Google search result. For your help I’m providing you
some website lists. Try to join all these sites and become a professional SEO
in social marketing. Hope this will help you a lot.
Social Media Explode:
It is a top market leading free(pay also available) SEO affiliate
website. Here you have to earn coins by viewing webpages of others,like Facebook pages,watching youtube videos. You can use your earning coins to get
facebook likes,twitter followers,google+ likes.
Sunday, 30 September 2012
Final year projects List for the CSE(Computer science)/IT students
When you are
doing a final year project you must think of its popularity as well as how
efficiently you can make the project. Some popular project lists are given
below. Hope those will be useful for you.
(1) E-Commerce(Like: flipkart)
(2) Online Banking
(3) Mobile Banking
(4) Antivirus
(5) Simulator
(6) 3D Picture Maker
(7) Online Exam Result
(8) Adhar Card
(9) Digital Rashion Card
(10) Online ticket Booking
(11) Make Browser
(12) Java Mobile Application
(13) Making projects using VB.Net
(14) Making a Dynamic web page
(15) Hospital Management System(16) Online Library Management System
(17) Online Forum
(18) Bank loan Management System
(20) Job Portal
(21) Railway Ticket Reservation System
(22) Hotel Management System
(23) Billing Management System
(24) Online Examination System
(25) E-learning
(26) Online Survey
Thursday, 23 August 2012
Central industrial security force (CISF) in India requires 121 posts(Government Jobs news)
Central industrial security force requires 121 paramedical people as Pharmacist ward boy and ward girl.
Important Information:
Important Information:
Male/Female both can apply for the post.
Education Qualification:
ASI(Pharmacist):should have minimum qualification (10+2) or diploma degree in pharmacy and should have working experience in the field.
Const(Nursing assistant): person should have matriculation pass certificate as well as minimum 1 year work experience.
Const(word boy/girl):minimum matriculation pass and should have certificate like from Red Cross society.
Age Limit:
ASI(Pharmacist): 20-30 years
Const(Nursing assistant): 18-25
Const(word boy/girl): 18-25
Important dates:
Last date of filling the application form is 14.09.2012.
Thursday, 9 August 2012
Get a quick education loan from Banks in India(Bank of India,State Bank of India,United Bank of India,Bank of Baroda)
Since 2008 every Indian Bank has started education loan for students. A student education loan is provided by the bank to the students so that it become helpful for the students who are unable to give college tuition fees, buy books, equipment like computers and other living expenses. After completion of the education courses they need to repay the loan with some interest added with loan amount.
List of Indian banks that will give you Education loan:
(1) Bank of India
(2) State Bank of India
(3) United Bank of India
(4) Bank of Baroda
Eligibility criteria to get education loan from Banks:
(1) Student must pursue any technical/professional course through entrance test.
(2) Guarantor may be required if when you are taking above amount of Rs 4 lakh.
(3) You have to show admission certificate to the bank.
(4) Last but the most important thing is that you must be an Indian.
Important links:
For more details regarding education loan interest visit the following links of the banks.
(a) Bank of India
(d) Bank of Baroda
Tuesday, 7 August 2012
Create a sitemap for blog/BlogSpot:
Most of us now a days have seen a site map in website, how to create this thing and what is function of it , this type of questions are in the mind of a new web publisher.
The sitemap produces valuable information about the website, i.e. it’s a hierarchical structure that provides better navigation facility of the website content.
Sitemap can be generated in different way but in this tutorial we will only discuss how we can make a sitemap in blogger. Follow those steps to create a sitemap:
2. Go to home there you will find list of blogs that you have created. Choose your blog where you want to create a site map.
3. Now click on optimization, then click on sitemap, at the right hand corner you will find a button named ”ADD/TEST SITEMAP”, click on it.
4. In the white blank space write”atom.xml” then click on submit sitemap and now your sitemap is ready.
Sunday, 22 July 2012
How to buy host and domain name/top 10 hosting server name
When you want to buy a host for your personal purpose or for your organization, you always should go throughIts features. The features that one must look are shown below.
1. Bandwidth (bandwidth is very essential for smooth web hosting, it actually defines that how much data will be transferred per month. If your bandwidth is limited you may lose your valuable visitor from your website)
2. Space(if you want to create good website full of videos, text, graphics then space should be unlimited)
3. Support database(modern websites are completely dynamic, to give site a better dynamic look, supporting of database for the use of visitor details(like email address and password))
4. Supported operating system(if you have windows xp operating system on your computer and hosting server have linux operating system then you might face some difficulties, choose the operating system that you think the best)
5. Support e-mail account for your domain.
6. Control panel access(to modify your online documents)
7. Fast customer support(last but the most important features that one must give great importance, without having this features you may have to suffer a lot)
Monday, 16 July 2012
Airport Authority of India Recruitment for the post of JR. EXEC UTIVE (ELECTRONICS) syllabus and question paper
Important Information:
The duration of the examination is 2 hours and there will be 120 questions.
Syllabus of the exam:
1. Material & Components
2. Physical Electronics
3. Power Electronics and devices
4. Network theory
5. Electromagnetic Theory
6. Electronic Measurements and Instrumentation
7. Analog and Digital Circuits
8. Communication systems
9. Antenna system and Transmission Lines
10. Data Communication
11. Computer Networking
12. General Knowledge
13. General Intelligence
14. General Aptitude
15. English
AAI junoor executive examination is completely based on techinal question. In physical electronics most of the qusstion comes from semiconder diodes like schottky,SCR.Most of the question comes from Control system like checking wheather system is stable or not,gain margin and phase margin.
Sunday, 1 July 2012
VHDL Code Structure( Library, Entity, Architecture)
Library Declaration:
A library is a collection of codes which can be used by several other functions.
Structure of library declaration is given below:
Library ieee;
Use ieee.std_logic_1164.all;
Use ieee.std_logic_arith.all;
Use ieee.std_logic_unsigned.all;
The above code can be used for all VHDL code.
Entity:
Entity defines all the input and output ports of the circuit.
Example:
Suppose a full adder circuit which has three inputs and two outputs. So ENTITY declaration of fulladder can be written in the following way.
Suppose a full adder circuit which has three inputs and two outputs. So ENTITY declaration of fulladder can be written in the following way.
Entity full_adder is --full_adder is the name of the entity
Port( Ain: in std_logic; --Port Ain to Port Cout declaration
Bin: in std_logic;
Cin: in std_logic;
Sum: out std_logic;
Cout: out std_logic);
End full_adder;
Introduction to VHDL
VHDL
stands for Very High Speed Integrated Circuit Hardware Description Language. It
is a type of behavioral language from which the physical structure of any
logical system can be implemented. VHDL language is basically invented to
perform circuit synthesis as well as circuit simulation. It a vender
independent language i.e. its language does not vary from vendor to vendor. The
application fields of VHDL codes are PLD, ASIC, CPLD. Now a day microcontrollers
are also designed using VHDL code.
VHDL is not programmings as sequential
execution of statements are not performed every time. Using VHDL we can design ADDER,
ALU, Comparators, Decoders etc.
VHDL
Code Structure:
VHDL
code consists of three fundamental sections
(1) Library Declaration
(2) Entity
(3) Architecture
Tuesday, 5 June 2012
How to install micromax modem
Now a day universal modems are gaining popularity, mostly in India, because most of the people take the internet connection for the surfing and mail checking purpose. Most of the internet service pproviders are providing internet connection at avery cheap price, like Airtel ,Aircel,Docomo etc.
These companies are providing good speed to the customers. To get good speed good modem is required.
Micromax Company in India has launched its first universal USB modem. Speed can be up to 7.4 mbps. This type modem is very flexible and easy to use and have a memory card slot where you can put 32GB memory card.
Installation procedure:
When you plug the USB modem it will tell you to install “micromax modem.exe”. Then agree the terms and conditions and you are done.
Connecting to the internet:
After recharging the internet card you have to get the GPRS setting from your network service provider. Save the setting to your SIM card. Then put the SIM card to your micromax data card. Now open the installed “Micromax 3G USB Manager”.
You will see that your service provider will be automatically detected, no need to detect manually. Press connect to get connected to the INTERNET and pressing CONNECT button another time you will be disconnected.
How to boost website traffic/visitor and gain profit with it
Getting visitor is very important in online marketing .to get good traffic one must rely on content because visitor will come to you through content. Most of the people consider content s the god of online marketing. Different people have different opinion how to increase good visitor for their site/blog, with in of all I just want to mention 4 key ways that will really help you to boost your site/blog traffic.
(A) Always try to post keyword rich article in your site/blog.
(B) Create an E-mail subscription button. if your content have the quality and helpful for the visitor the may subscribe your site/blog.
(C) Post your site URL to different social networking site to boost your traffic.
(D) Always try write related articles i.e. if your blog domain name is related to “study guidance” then writing articles related to education will boost your traffic.
N.B. Always try to remember that content is the GOD of your site/blog visitor. If your site contains good post (i.e. good content) you will get traffic. To increase your visitors don’t submit your domain to the link builders as google is prohibiting those link builders now a days. If you do this google will lower your site page rank.
Thursday, 22 March 2012
Hide or unhide Files/Folders Using Command Prompt
Real Trick to hide files and folders using Command Prompt,
the most important thing is that, once hidden with this method, the files/folders cannot be viewed by any search options even if you click "Show All Hidden Files and Folders".
the most important thing is that, once hidden with this method, the files/folders cannot be viewed by any search options even if you click "Show All Hidden Files and Folders".
Hiding the most wanted files and folders is very important nowadays and it's really a hard job too. In order to make this hard job an easy one, i'm going to deliver you a best trick now.
For Example: You have a folder named "sms" and this folder is stored in (Disk Drive F). You think that it should not be seen by strangers who use your PC.
For that you need to follow the following instructions
For that you need to follow the following instructions
1. Press windowkey+R: Run command dialog box appears.
2. Now type "cmd" and hit enter. A command prompt window displays.
3. Now type "attrib +s +h F:\sms" and hit enter.
4. The folder "collegephotos" will be hidden (Note: It cannot be viewed by any search options)
(To view this folder again, use the same command but replace '+' with '-' on both flags 's' and 'h')
(To view this folder again, use the same command but replace '+' with '-' on both flags 's' and 'h')
Subscribe to:
Posts (Atom)