Monday, 28 July 2014

Microsoft Word shortcut keys

Microsoft Word shortcut keys:Microsoft Word shortcut keys

Microsoft world 2007/10/12 shortcuts keys for keyboard. Shortcuts are very helpful to work faster with Ms office word. Take a look and try some shortcuts

Key Board Shortcut Details
Ctrl + 0 Adds or removes 6pts of spacing before a paragraph.
Ctrl + 1 Single-space lines.
Ctrl + 2 Double-space lines.
Ctrl + 5 1.5-line spacing.
Ctrl + A Select all contents of the page.
Ctrl + B Bold highlighted selection.
Ctrl + C Copy selected text.
Ctrl + D Open the font preferences window.
Ctrl + E Aligns the line or selected text to the center of the screen.
Ctrl + F Open find box.
Ctrl + I Italic highlighted selection.
Ctrl + J Aligns the selected text or line to justify the screen.
Ctrl + K Insert link.
Ctrl + L Aligns the line or selected text to the left of the screen.
Ctrl + M Indent the paragraph.
Ctrl + P Open the print window.
Ctrl + R Aligns the line or selected text to the right of the screen.
Ctrl + S Save the open document. Just like Shift + F12.
Ctrl + T Create a hanging indent.
Ctrl + U Underline highlighted selection.
Ctrl + V Paste.
Ctrl + X Cut selected text.
Ctrl + Y Redo the last action performed.
Ctrl + Z Undo last action.
Ctrl + Shift + L Quickly create a bullet point.
Ctrl + Shift + F Change the font.
Ctrl + Shift + > Increase selected font +1pts up to 12pt and then increases font +2pts.
Ctrl + ] Increase selected font +1pts.
Ctrl + Shift + < Decrease selected font -1pts if 12pt or lower, if above 12 decreases font by +2pt.
Ctrl + [ Decrease selected font -1pts.
Ctrl + / + c Insert a cent sign (¢).
Ctrl + Shift + * View or hide non printing characters.
Ctrl + <left arrow> Moves one word to the left.
Ctrl + <right arrow> Moves one word to the right.
Ctrl + <up arrow> Moves to the beginning of the line or paragraph.
Ctrl + <down arrow> Moves to the end of the paragraph.
Ctrl + Del Deletes word to right of cursor.
Ctrl + Backspace Deletes word to left of cursor.
Ctrl + End Moves the cursor to the end of the document.
Ctrl + Home Moves the cursor to the beginning of the document.
Ctrl + Spacebar Reset highlighted text to the default font.
Ctrl + Alt + 1 Changes text to heading 1.
Ctrl + Alt + 2 Changes text to heading 2.
Ctrl + Alt + 3 Changes text to heading 3.
Alt + Ctrl + F2 Open new document.
Ctrl + F1 Open the Task Pane.
Ctrl + F2 Display the print preview.
Ctrl + Shift + > Increases the highlighted text size by one.
Ctrl + Shift + < Decreases the highlighted text size by one.
Ctrl + Shift + F6 Opens to another open Microsoft Word document.
Ctrl + Shift + F12 Prints the document.
F1 Open Help.
F4 Repeat the last action performed (Word 2000+)
F5 Open the find, replace, and go to window in Microsoft Word.
F7 Spellcheck and grammar check selected text or document.
F12 Save as.
Shift + F3 Change case from lower upper and sentence case
Shift + F7 Runs a Thesaurus check on the word highlighted.
Shift + F12 Save the open document. Same as Ctrl + S.
Shift + Enter Create a soft break instead of a new paragraph.
Shift + Insert Paste.
Shift + Alt + D Insert the current date.
Shift + Alt + T Insert the current time.
Posted on July 28, 2014 | Categories:

Friday, 25 July 2014

Magic of V-Lookup

Magic of V-lookup:Magic of V-Lookup

Solution of following questions.
  • How to use vlookup

  • Working of Vlookup?

  • Introduction to vlookup?

As the name implies, V-Lookup, stands for Vertical Lookup, which is used to find specific information column wise vertically that has been stored in excel sheet.

Let’s study the Formula/Syntax of V-lookup function. It consists of four parts.

Lookup_value - This is the index which we have to search in the table.

Table_array, col_index_num - This is table array in which we search the look up value . This argument is a named range or a reference to a range of cells. Here, in above our table range is cell H2 to J7.

Col_index_num- Enter the column number of the table_array from which you want data returned from means which data you want to print as result. In above example, column index is 2 since value of name is 2nd position.

Range_lookup:
  A logical value (TRUE 1 or FALSE 0 only) that indicates whether you want VLOOKUP to find an exact or an approximate match to the lookup_value.

    If TRUE(1) or if this argument is omitted, VLOOKUP will use an approximate match if it cannot find an exact match to the lookup_value. If an exact match is not found, VLOOKUP uses the next largest lookup_value.
    If FALSE(0), VLOOKUP will only use an exact match to the lookup_value. If there are two or more values in the first column of table_array that match the lookup_value, the first value found is used. If an exact match is not found, an #N/A error is returned.
Posted on July 25, 2014 | Categories: ,

Thursday, 24 July 2014

Learn java script.

Calculate n^n using java script.

Learn java script.
Program 1: 

var a = parseInt(prompt("Enter your number"));

 var b = a;

 var i;

 for (i = 0; i <= b; i++)

  

a = a * b;  

 a = a / (b * b);  

alert("the number is: " + a);
var a = prompt("Enter value for Table:"); 
var i; 
for (i = 1; i <= 10; i++) 

c = i * a; 
alert(c); 
}

Print Table in javascript:

Program 2:

var a = prompt("Enter value for Table:");  

var i; for (i = 1; i <= 10; i++) 

  

c = i * a; alert(c); 

 }

Wednesday, 23 July 2014

Hide folder in windows without using software.

Open notepad copy the below code and save file as "tanuj.bat"

Hide folder in windows without using software.

@ECHO OFF
title Folder tanuj
if EXIST “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” goto UNLOCK
if NOT EXIST tanuj goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the folder(Y/N)
set/p “cho=>”
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren tanuj “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
attrib +h +s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
echo Folder locked
goto End
:UNLOCK

echo Enter password to Unlock folder
set/p “pass=>”
if NOT %pass%==password goto FAIL
attrib -h -s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
ren “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” tanuj
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md tanuj
echo tanuj created successfully
goto End
:End
You may use .bat to .exe converter to protect your password.
Posted on July 23, 2014 | Categories:

Tuesday, 22 July 2014

Find Prime No. Using Java Script

Find Prime No. Using Java Script

Find Prime No. Using Java Script

Java script has  very simple code for browser. Generally java script is used to restrict user. But you can learn java script by playing with coding.

Program:

var num =prompt("Enter a number");
parseInt(num);var i;var b=0; if(num==1)
{
alert("A prime number is a number which has only two factors, 1, and itself. But in the case of 1, there is only one factor: 1. So, 1 is not a prime number");
}
else{
for(i=1;i<=num;i++)
{
var result = num%i;
if(result==0)
{
b++;
} }
if(b<=2)
{
alert("Prime no.");
}
else
{
alert("Not Prime");
}
}

Top 5 expensive car in the world

Top 5 expensive/Great car in the world:

When we talking about technology the first world comes in mind is Smart phones, but when live technology is only found in cars. Here are some most expensive cars are listed.

These are the extremely example of technology power and style.

1. Lamborghini Veneno $4M:-

The first world comes to see the image is WOW!!
You are absolutely right here because, its live example of style speed and technology."It's awesome".

2.W Motors Lykan Hypersport $3.4M:


Lykan Hypersport is the first sports car from Lebanon manufactured by W Motors. 
The highest speed that can be touched using this car is 245 miles per hour. It can accelerate from 0 to 100 Km/h in under 3 seconds. 

3.Koenigsegg One:1. $2.0M:

This Sports car is the perfect example of look,style,design and beauty of vehicle.

4.Lamborghini Reventon $1.61M:

This one is also the great car . See its looks and speed. It come with unforgettable look.


Impact of Social Media Technology
Cyber Crime

Posted on July 22, 2014 | Categories:

Saturday, 19 July 2014

Small Businesses Can Benefit From Freelancers

Small Businesses Can Benefit From Freelancers

Need new talent?Use freelansers

Today is the age of technology and everyone is busy in their work, and technology experts have no time to others while freelancing is best way to meet tech-expert with businessman.

Suppose you are a small businessman and you have no resources like office,systems,employees.

Establish a company is very difficult task and require lots of money. So divert to freelancing is best option you can hire skilled persons who are ready to work from home at smallest price.

Now its become in trends.

The "freelance revolution" Benefits of hiring a freelancer


What are the benefits?

  • How to Boost Office Productivity by Freelancers?
Freelancer is the best business solution to boost productivity without investing in office premises, and now a days its in trending and fastest growing online community of professionals because of its thousands of benefits such as work flexibility.
  •  Eliminate Interruptions 
By Freelancing you can start working on your live projects and check the project progress without any interruption by direct communication to your hire. 
  • Best solution of work at cheapest cost. 
Freelancing is the best way to build your productive staff without investing in office infrastructure. By this approach you can hire domain experts and professional at very convenient cost.
  • Easy process and a large choice available. 
Freelancing community is fastest growing community and have a huge numbers of professionals in it. You can choose the best resource by checking their productivity and project delivery and feedback on basis of their last work and ratings.
  • Hire best tech-expert for an hours basis is possible and use their full skill sets. 
And good news is that all tech experts are easily available and full of skill sets. 
  • Best for small work. 
Its a best choice for small work but now a days most of the companies are hiring professionals on freelancer basis because of its cost effective nature.
  • Work without having basic resources 
At initial level of any business, its really important to invest your valued money of the targeted resources and setting up new office is too costly and require high investment hence freelancing is the best option for small business and startups.

  
Posted on July 19, 2014 | Categories:

Home treatment for Mouth Blister

Causes of Mouth Ulcers and How to Treat Them?

Home treatment for Mouth Blister

What is Mouth Ulcer or Canker Sore or Apthous stomatitis?

Mouth Sore start with little red lesions under lips, tongue,throat and some time at the base of your gum and start paining and this pain hurt more while eating and drinking.  Because of this canker sore normal routine looks very difficult and swallowing food becomes very uncomfortable. Mouth Ulcer is very irritating and painful.

Common Symptoms:
  • You can easily recognize mouth ulcer because of its lesions and shape most of time oval shaped.
  • Sometime it start with small white dot.
  • Sometime it looks like little red spot in mouth.
Some time you can face swollen lymph nodes or saliva in  your mouth because of this.

What Causes Mouth Ulcer or Canker Sore?

Here are few main cause of Mouth Ulcer as follows:
  • According to Ayurveda, blisters in the mouth are caused by stomach upset and stomach heat. Indigestion is the main reason of this.
  • Mouth lesions is one of the major cause of ulcer.
  • Excessive consumption of spices is also responsible for mouth ulcer, because if the stomach function is not right, then its reaction may manifest in the form of mouth ulcers.
  • Lack of vitamins may be the root cause of mouth blister.
  • Allergic reaction because of mouth bacteria may be one of the reason of ulcer.
  • Side effects of medicines can also cause mouth ulcers, especially with excessive use of antibiotics. The use of antibiotics in large amounts reduces the number of good bacteria in our intestines. As a result, blisters are formed in the mouth.
  • Apart from this, hereditary may be a major reason of mouth blister and can also occur due to lack of ability to fight against diseases.

What are the common type of mouth Ulcer?

There are three types of mouth ulcers.

Severe Ulcer: 

As the name itself suggests, it is larger in size than a commonly occurring ulcer. This serious ulcer occurs in one in 10 people. But when you find out that you have a severe ulcer, you should immediately contact a good specialist.

Common Ulcer:

Most people who suffer from ulcers are affected by normal ulcers. It is also clear from its name that it does not grow much larger in size and can be cured in about 10 days.

Herpetiform Ulcers: 

Pinpoint ulcer is also another name for herpetiform ulcer. It is about three millimetres in size. Usually only 10 percent of people are affected by this ulcer affecting 5 to 45 years old people. 

How are mouth ulcers diagnosed?

Mouth Ulcer is not a contagious decease most of the time it will recover within 2-3 days.
If it is last longer than this consult your doctor. Here we are talking about best home treatment for mouth blister.  You can use any of them and get instant relief for the pain caused by mouth blister.
  1. Use pure butter (possible home made) at your mouth before sleeping. It really helps to cure your mouth blister.
  2. Drink water as you can because water treated.
  3. To reduce irritation of ulcers, mix turmeric powder in glycerin and massage it on the ulcer area.
  4. Take as much as Vitamin-C rich fruits. For example, drink 2-3 glasses of orange juice daily. You can also get vitamin C from tomatoes.
  5. Applying the icy of ulcer may give the immediate relief in pain but its not the permanent solution. 
  6. Gargle with soda water and salt water reduce the pain of mouth ulcer immediately .  
  7. Take honey and make a paste of it and use it on mouth blister. It reduce your pain.
  8. Avoid heavy food take liquid food and fruit as much as you can.
  9. Mix backing soda with water make a paste and use it on mouth ulcers.
  10. Avoid spicy and fried foods as much as possible.

If you have more cure paste it in comment section. So that everyone can get benefited from it.

Sunday, 13 July 2014

Computer Generation

Generation of Computer:

Generation of Computer

First Generation
The period of first generation: 1946-1959. Vacuum tube based.
Vacuum tube produces lots of heat, and occupies huge space so the size of first generation computer is very high. It’s just start of new era.



Second Generation
The period of second generation: 1959-1965. Transistor based.
Transistor replaces the vacuum tube due to its smaller size, Cost and its Speed.
Third Generation
The period of third generation: 1965-1971. Integrated Circuit based.
IC's are used in third generation. Thousands of transistors are available on single chip. So its speed increases and size reduced to a single table.

Fourth Generation
The period of fourth generation: 1971-1980. VLSI microprocessor based.
VLSI circuits had about 5000 transistors. All high level programming languages are being used in this era.

Fifth Generation
The period of fifth generation: 1980-onwards. ULSI microprocessor based
Parallel processing hardware and AI (Artificial Intelligence) software are being used in fifth generation.

The field of Robotics, Gaming are growing in this generation.

Posted By:Tanuj Kumar 
On:Shareyourconscience

Posted on July 13, 2014 | Categories:

Benefits of Dates

Health advantages of feeding Dates :

Health advantages of feeding Dates

1) Dates area unit free from cholesterin and contain terribly low fat. Dates area unit made in vitamins and minerals.

2) they're made supply of supermolecule, dietary fiber and made in B, B2, B3 and B5 in conjunction with A and C.

3) It helps improve the digest-system  because it contains soluble and insoluble fibers and completely different forms of amino acids.

4) Dates area unit nice energy boosters as they contain natural sugars like aldohexose, saccharose and laevulose. to urge a lot of advantage add dates to exploit and create it a really nourishing snack.

5) Dates area unit terribly low in calories and area unit extraordinarily appropriate for health acutely aware folks.

6) Dates area unit made in K and reduced in Na. This helps regulate a healthy system. Researchers have discovered the actual fact that K intake up to a particular extent will cut back risk of stroke.

7) Dates conjointly facilitate in lowering of the cholesterin.

Dates have high iron content and area unit terribly helpful in treating anemia. The patients will eat several dates for higher benefits.

9) Dates even have element that slows down the method of cavity.

10) It helps folks plagued by constipation. Soak dates nightlong and take it in conjunction with water to own extra advantage.

11) Dates facilitate in weight gain and area unit useful for people who suffer from over slimming downside.

12) Dates area unit glorious for alcoholic intoxication. Cures abdominal cancer.

13) It conjointly helps in rising eye sight and helps in action vision defect in addition.

"The smartest thing is that it doesn't have any aspect result on the body and is totally natural in addition because it works higher than drugs."

Keep Reading HEALTH TIPS only on sHare yOur cOnscience.

Source:click here

10 rules to stay young.

10 rules to stay young..!!!10 rules to stay young.


When I am reading this article I want to write it in my own words but after reading this article I found nothing to edit. Because it rules to follow to make us stress free.
The main point in this is that live free and enjoys every movement of life without tear.
1. Never think about nonessential numbers like age, weight and height.
2. Make only cheerful friends. Those whose makes you happy.
3. Keep learning. Learn more whatever. Never leave your brain free because
"An idle mind is the devil's workshop."
4. Enjoy the small things.
5. Laugh out loud. Laugh until you gasp for breath.
6. Everyone have tears in life. But we have to move on from ups and downs.
7. Look happiness around you, what you love, whether it's family, music, and hobbies, whatever.
8. Take care about your health: If it is good, preserve it. If it is not, try to improve it.
9. Take a trip to the mall, to the next county, to a foreign country but not to where you feel bad.
10. Tell the people that you love them, at every opportunity.
Keep Reading HEALTH TIPS only on sHare yOur cOnscience.
Source:click here

Think Sensibly while Initiating Conversation with Strangers Online

Think Sensibly while Initiating Conversation with Strangers Online:


Introduction:

We all are aware that nowadays we have more interaction with people across the globe with the help of various social media sites. The question that always pops up in our mind is, are these relations that we build online are beneficial for us?
Most of the people have some inner desire, interest and thoughts which they tend to share with friends and the adjoining networks. The relation that we build online impacts our life directly or indirectly. Almost, all the individuals can widen their network online by searching people having similar interest or skills. The gloomy factor is that instead of building legitimate relationship, individuals are trying to sell their profile online by illicit manner. There are numerous ways of meeting new people online like Facbook, Linkedin or Google+ all but most of them are based on fictions that completely sounds waste of time.
I am certain that most of the people will not agree with me, but I am writing this article to make you realize that such social relationship is wasting our precious time and it's my personal experience as well.
Never reveal Personal information with strangers
I would like to communicate with my fellows especially to younger generations and students that we should think sensibly before chatting with strangers or talking with them. We cannot trust people through online or social media since they are positioned at remote location and we are not sure about their actual identity and their motto behind the actual conversation, you can easily fall prey to such crooks.
Below are the lists of some information which should never be published publicly over any social media sites or shared with strangers.
  • Mobile Number
  • Snapshot of your Credit Card
  • Pan Card Number
  • Bank Account Number
  • Password
Moreover, we should never become addicted to it and use social media to share your skills or knowledge and also it is one of the best tools to promote your business and considered as the forms of digital marketing. You can gain confidence of millions of audiences by building a simple online page pertaining to your business and always build relationship with genuine or legitimate people whom you can trust and build long term relationships.