Bridge & Roof Co. India Ltd. job vacancies 2009-B&R Kolkata jobs 2009

August 21, 2009 by Nitin · Leave a Comment
Filed under: 2009, jobs 

Here invite job for experiance candidate in  premier Construction company.

Apply Online between 18th August 09 to 4th September 2009.

click here for more information

http://www.bridgeroof.co.in/recruitment.aspx

Freshers CCE Jobs at Miran Solutions Chandigarh

August 11, 2009 by Nitin · Leave a Comment
Filed under: 2009, jobs 

Freshers CCE Jobs at Miran Solutions Chandigarh.Here oppurtunity to become part of one of best call center & best salory package.For more information click on

http://www.miransolutions.com

Sportspersons job in Income Tax Gujarat Aug09

August 8, 2009 by Nitin · Leave a Comment
Filed under: 2009, jobs 

Sportspersons job in Income Tax Gujarat Aug09.Job of meritorious sportperson in income tax department Gujarat.Here is link

http://sites.google.com/site/sarkari-naukri/Home/IT-Gujarat-Sportperson-Job.jpg?attredirects=0

UPSC Advt. No. 15/2009 for various jobs

August 8, 2009 by Nitin · Leave a Comment
Filed under: 2009, jobs 

UPSC publish application on prescribed forms by 27/08/2009 (03/09/09 for the candidates from far flung areas) for different seat in various Govt of india ministry and Departments in the prescribed format.Here is link

http://upsc.gov.in/recruitment/advt/2009/advt1509.htm.

Sarva Shiksha Abhiyan Society, Chandigarh U.T.,Chandigarh Teaching Jobs – SSA Chandigarh Teachers recruitment 2009

August 7, 2009 by Nitin · Leave a Comment
Filed under: 2009, education, jobs 

Sarva Shiksha Abhiyan Society, Chandigarh U.T.,Chandigarh Teaching Jobs – SSA Chandigarh Teachers recruitment 2009 publish application from eligible candidates in the prescribed format for job of teachers on contract basis up to 31.3.2010 .For detail information click on

http://www.babujobs.com/sarva-shiksha-abhiyan-ssa-society-chandigarh-recruitment-tgtjbt-vacancies-2009/

Basic things to do after creating wordpress blog

May 11, 2009 by Nitin · 4 Comments
Filed under: Blogging 

wordpress

I moved to wordpress after my long time duration experience on blogger. If you are just moved to wordpress then you must have to do following things for getting highly indexed in the search engine. Here are the few steps

Edit web URLs link format Basic web URLs format for any site is like http://tech.funmit.com/?p=123 which is needed to be changed . Main reason behind it is, that Search engine can match the keywords from your URL link . To change that you need to login to Dashboard and now goto Settings panel click on Permalinks and just choose what so ever format you would like to choose. Most popular format is http://tech.funmit.com/2009/05/sample-post/

Select cool wordpress theme Remember my friend first impression is the last impression so select a quality wordpress theme according to your content. I will shortly post the Free wordpress themes for you. Kindly check upcoming posts.

Installing wordpress Plugins Plugins are one of thew most extensive feature of wordpress unlike the blogger.Here you can add HTML code without directly writing it individualy with no chance of eraing of code if you changed the theme. Initially the plugins were to be uploaded manually but thanks to Janis Elsts. He made the task of installing plugin so easy that you can easily do it one step. Just download the One Click Plugin Updater

Join various bookmarking sites How to get initial traffic? this question arises in everybody’s mind but answer is so simple Join Social bookmarking sites . now a days No of sites are providing this stuff. Sites like DIGG, Funmit,Indianpad are famous in this service.

Maintain unique content and do post frequently Adrevenue will be more if one can manage unique content in his blog.One can have the question that what should be the no of post a blogger can? Generally 2-5 post are sufficient to keep your active ness. Regular posting is another name of money generator. Subscribe me for further Blogging related News from me!

LEARN THE BASIC “C” PROGRAMS

May 10, 2009 by Nitin · Leave a Comment
Filed under: "C" language, Compter & Internet 

c_language

I am very glad to post this topic on “C” language, as I am big fan of “C” language. Although you might have basic knowledge about “c” but still I am giving you few basic programs who are on a verge to start their carrier in “ C”. Learn the basic “C” in one day! First of all you should have TURBO C SOFTWARE install on your pc.

Tips for beginners:

1.Every program of “C” starts with main() Every instruction ends with semicolon ;

2. main() is nothing but the main program inside which the instruction to execute certain task will be written within curly bracket that is main() { }.

3. scanf instruction is use to read data entered on screen in any variable like s4,f5,j,o… depending upon the prototype defined that is %d for integer %f for float.And the data is scanned by ‘&’ that is address.

4.printf is exactly opposite to scanf, used to display data on screen.

5.getch() is used to hold the screen until any key is pressed.

6.Initially we have to define the variable is integer or float or anything else by int float like default key words. Here is the program to add two nos…

main()

{ int a,b,c;

clrscr();

printf(“enter the number”);

scanf(“%d%d”,&a,&b);

c=a+b;

printf(“addition=%d”,c); getch();

}

Here is the program to subtract two nos…

main()

{ int a,b,c; clrscr();

printf(“enter the number”);

scanf(“%d%d”,&a,&b);

c=a-b;

printf(“subtraction=%d”,c);

getch();

}

Here is the program to multiply two nos…

main()

{ int a,b,c;

clrscr();

printf(“enter the number”);

scanf(“%d%d”,&a,&b);

c=a*b;

printf(“multiplication=%d”,c); getch();

}

Similerly you can do for others. If you want to directly copy these program. Create a new text document copy n paste a program to it. Rename that file as .c extension now go to turbo c open that file n run it!

Next Page »