Wednesday, August 10, 2011

Format a number in php

 for this we have a function called : number_fomat();

Syntax is:

< ?php

$myno=123456;

$myno_after_format=number_format($myno);

echo $myno_after_format;

output is:123,456


also another way:


$myno=1234.56;

# this will show only one decimal digit.
$myno_after_format=number_format($myno,1);


echo $myno_after_format;

output is:
1234.5


? >



Friday, August 5, 2011

what is Cloud Computing simple and easy defination


Cloud Computing

First of all know what is cloud computing: ,
A very clean and simple language/words Defination of Cloud Computing is::
  • In old system, we purchase the computer software and other software. Each time we need a CD or DVD so that again install or reinstall that kind of software.
  • This is the problem for every household as well as IT Companies.
  • So to resolve this Big IT Gaint like Google, Yahoo, IBM start the Cloud way.
  • Now you able to understand the definition:
    • Cloud computing is the way to store your software or data in Internet (server) and you simply use this either free or sometime paid.
  • Hope you understand!!  :) 



    what is exactly success in every Field?

    Today i share some experience word with all of you, regarding the Word SUCCESS.if you really want to got success in your field then simple follow some tips that i share.

    1. Success is not for those who are lazy, it's true.
    2. So if you are lazy, then be become punctual and obey the rule.
    3. Count your seconds, it automatically fruitful for you..
      • Above line means never waste time.
    4. Don't fear About Interview, it is the time when you learn most of the things you don't know.SO enjoy it with relief and comfort.
    5. Face the challenge and fix the target.
    6. Till you not set any target you never succeed.
    7. So Set the Target work upon it and see the result.
      1. if something Wrong then  Improve that..




      How to change the width of dropdown list in HTML,PHP,JAVA,DOT NET

      Let us assume the drop down list is this one:--



      <select name="drop-list" style="width: 200px;">
      <option> First value <option>
      <option> second value <option>
      <option> third value <option>
      <option> fourth value <option>
      <option> fifth value <option>
      <select>
       output is :




      It is very simple just do this way:

      ------------------------------------------------------------------------------------

      Now see the large width Drop down List


      Type the following code:

      <select name="drop-list" style="width: 400px;">
      <option> First value <option>
      <option> second value <option>
      <option> third value <option>
      <option> fourth value <option>
      <option> fifth value <option>
      <select>


      see the output:

      Tuesday, August 2, 2011

      Php Array types

      Array is a datatype in php...

      It is mostly used to store multiple item under a single variable name.

      Types of array in PHP:

      1.Numeric or Index array.
      2.Associative array.
      3.Multi-dimensional array.



      1. Numeric array:

      syntax to create this:

      php code begin here


      /*
        #Write a program to Numeric array in PHP
       #comment: make a array variable name $var
       #Author : amit sharma
       */


      $var = array (value1,value2,value3...);

      #in detail

      $var = array(10,20,30,40,50,60);

      now in above line we create a array name $var in php that store 6 values 10,20,30,40,50 and 60 .

      php code end here


      Wednesday, July 27, 2011

      JOB IN NIT HAMIRPUR



      JOB in Faculty NIT Hamirpur center, Himachal Pradesh

      LAST DATE is 26th and 27 july 2011


      more info click here:  NIT hamirpur

      please hurry to enroll your interview time 2:30 sharp

      Monday, July 25, 2011

      PHP difference between single and double quotes

      1. Single quote treat all variable as string. while double quotes treat variable and string diferent.
      2. 'Single quote ' are effective with . (concatenation operator), while less need of . operator by using "double quote"

      example:

      Double Quote


      $my_var_name=120;


      echo "the value is $_my_var_name";


      output is:


      the value is 120


      ----------------------------------------------------------



      Single Quote

      $my_var_name=120;

      echo "the value is $_my_var_name";

      output is:

      the value is $_my_var_name 



      So i think ,the difference clear to you.


      Thursday, July 14, 2011

      Business communication

      Mode of communication in Business:

      1. Written Communication
      2. Oral Communication
      3. E-mail communication

      Written communication:
        • Neat and clean
        • Clear idea
        • No large sentance
        • Proper grammar
        • use of picture if possible
      • It must be 
      1. complete
        •  Means full and clear information about content
      2. concise
        • Means straight-foreword 
        • To the point
        • Relevant
        •  Simple Language
      3. clear
        •  
      4. concrete
        •  
      5. correct
        •  
      6. considerate
        •  
      7. courteous. 


      Best Public busines communication notes are:

      Best Business Communication notes

        Thursday, June 23, 2011

        How to Install RAR software for Ubantu

        it is very simple and easy:

        follw these steps:


        open the command prompt; Go to applicaton->Accessories->Terminal


        step 1: copy and paste this command    "   sudo apt-get install unrar-free  
        then if ask for super user password then type your password.




        step 2: copy and paste this command    "  sudo apt-get install unrar  


        Enjoy...

        Friday, June 10, 2011

        cost gurd Job

        INDIAN COAST GUARD
        (MINISTRY OF DEFENCE)
        EXCELLENT OPPORTUNITY FOR MEN AND WOMEN TO BECOME OFFICERS
        IN INDIAN COAST GUARD - 01/2012 BATCH
        (TRAINING COMMENCING – JAN 2012)


        1.
        The Indian Coast Guard, an Armed Force of the Union, offers a challenging
        and inspiring career as a Group ‘A’ Gazetted Officer in the pay scale for
        Assistant Commandant at Rs.15600-39100 with Grade Pay Rs 5400.


        2.click here for more info:   


        http://www.indiancoastguard.nic.in/indiancoastguard/jobs/jobs.html










        ========================================

        Sunday, June 5, 2011

        CGPA TO Percentage convert here

        Grade Point  Equivalent
        Percentage
        6.25  55%
        6.75  60%
        7.25  65%
        7.75  70%
        8.25  75%

        Saturday, May 21, 2011

        PHP 5 with new exiting features


        New OOPs Concept with PHP5.

        Here i am begin small tutorial for beginner as well as Professional..


        Class:- It is an real world entity, like Person, Car, Employee etc
        it contain properties also call variable and functions or Methods.

        Object:- it is the instance of class. it like a variable , that is capable of using all class member variable as well as class member function.

        Constructor: it is the important part of Class,behave like a function. It is  a class function that execute automatically when we declare the object of that class.
        their is no need to execute constructor by calling method. example 

        class className
        {
        //in php5 
        function __construct()
        {// this is the constructor , here we mention such type of statements that execute automatically when the object is created.
        }

        }// end of class 

        ACCESS MODIFIERS :
        the access modifiers are those who will specify the Scope of variable as well as functions...
        here the name of some are as:
        • Private
        • Public
        • Protected
        • Final
        • Abstruct


        Tuesday, May 10, 2011

        PHP 5 with new exiting features

        Technology news

         Google and Yahoo start collaboration with Indian Govt.

        Google and Yahoo start collaboration with Indian Govt. to set up approximate 20 new IIIT  in different parts of the country. This Venture is named as PPP public private partnership.



        It's celebration time at Mahindra Satyam...

         

        Tuesday, March 1, 2011

        SQL SERVER 2005 Notes

        SQL- Structured Query Language is an DataBase Management language(DBML).and sql server is an DBMS.

        Mysql,oracle etc are name of different kind of DBMS..

        database is a collection of tables;
        and table is a collection of fields or columns.
        further record is a collection of related columns value.


        Database:

        How to create data base:
        Sql is case in-sensitive. so be happy buddy and enjoy your typing. keep in mind spelling is correct.:)...

        Syntax is:

        Create Database databaseName

        then execute this: by press F5 or {!excute} button on tool bar.


        Create database Mydatabase

        after creating you have to Use this database.

        Syntax for this is:

        Use Database databasename

        use database mydatabase
        then (F5)

        Monday, February 7, 2011

        Commanly asked questions ans their answers.

        1. Introduction

        First important  question in interviews is about your introduction.
        You must have a short statement pre-pared in your mind.Also keep in Mind it does seems to be  look like rehearsed. always use less words to explain.Never use large sentence for any answer.


        2. Why did you leave your previous job?


        Stay positive when such kind of questioning is being done .Also Never mention your problem with the  organization and never use hatred words for seniors, co-employers or the organization. If you do like that ,you never be ale to get the right kind of job. make smiley face, with pleasant answers. 

        3. Experience
        Another important question is experience in certain field you want to join.
        if you have good experience than tell them, otherwise simply say i am less experience in this field.
         
        4. Wording of colleagues about you:
        another crucial question is your colleague expression about you. say some nice wording that you often listen about your self from the mouth of your friends.

        6. knowledge about Employer organization?
        Before going to interview you must have to investigate about the company of organization you want to visit for interview.
        •    Name of  MD
        •    Any achievement of company or organization.


        A lot more please stay visit here for more updation....

        Saturday, January 29, 2011

        Bank Demands More people as Most of staff going to retire....

        So there is a chance to all of you get involved in it and Enjoy it.

        Friday, September 24, 2010

        Bank Job , SARKARI Requriment, Private Naukari Job Job Job Liknks,सरकारी नौकरी


        Results of Written Test held on 16.01.2011 Corporation Bank.

        Congrts All....

        Please click below for:

        1. Probationary General Officers:
        2. HR MMGS II:
        3. HR JMGS I:
        4. AFO MMGS II:
        5. Marketing Officers [On Contract]:
        6. Bio-data Form:
        7. Certificate to be submitted:
        a] Backward Class:
        b] SC/ST:



          • ==========================================================
            Thanks AmitSharma Hopes For your Better Success

             

        Thursday, August 26, 2010

        Latest Event In the World and India ,GK , Bank Exams, UGC, NET

        August 2010 onwards  latest Gk and events Helps you to Clear theCompetition Exams.Like Bank Clerks, PO, SSC, UPSC, UGC and Other's.

        I am Wishes for your success.All The Best...


        1. August Arjun Singh Atwal  an Indian who won the First Time International PGA Tour in America.He is a Golf Player.this Event is occour on 22 August 2010.He belong to Kolkata. The name of tournament is Wyndham Championship.


        2. Google offers free voice calls via Gmail 

        3. Indian Economy Grow at 8.8 at the April-June quarter in 2010.(it is expected that it will grow at the 8.6 or 8.7 percent)
        1. Also Financial services got the growth in economy, which had recorded 6 per cent growth rate in April-June 2009-10.
        2. Manufacturing expanded by strong 12.4 per cent in April-June, 2010.
        3. Construction too grew by 7.5 per cent compared to 4.6 per cent. 
        4. Deputy chairman of the Planning Commission," Montek Singh Ahluwalia "said that India's economy could grow better than "8.5" percent in the fiscal year that ends in March 2011.
        5. Another-one trade, hotels and communication services rose by 12.2 per cent, against 5.5 per cent during April-June 2009 
        5. Wholesale price index(WHI), India's main inflation Guard, roses 9.97 percent in July, it is the  slowest pace in six months, but underlying price pressures remain.
        6. The consumer price index (CPI) also rose 11.25 percent in July, slower than an annual rise of 13.73 percent a month ago, data on Tuesday 31 August 2010 showed  here.
        7 .Rearch In Motion RIM a canada Based Company Fall in trouble as their security system in not right
        Basically BlackBerry Email & Messanger messages are not accessible so government took such action.
        all is done to reduce the terriost activity .
        At present10 lac total no of user in India of RIM BlackBerry On aygust2010.


        September 2010
        ------------------------------------------------------------------>
        1. Sonia Gandhi, set to be re-elected as Congress chief for a "Record fourth term" after holding the Top Post for 12 years she  leading the UPA.
        2. Also she the Sonia Gandhi officially took charge of the 125-year-old Congress party as its president in 1998.
        3.  On Sept 21 WASHINGTON release that India is listed as the third most powerful country in the world after the US and China and the fourth most powerful bloc after the US, China and the European Union in a new official US report.

          The new global power line-up for 2010 also predicted that New Delhi's clout in the world will further rise by 2025, according to "Global Governance 2025" jointly issued by the National Intelligence Council (NIC) of the US and the European Union's Institute for Security Studies (EUISS).


         Missile Test
         
        • A user trial of the nuclear weapons capable, surface-to-surface Prithvi-II ballistic missile from Chandipur in Orissa ended in an embarassing failure for the government as the missile did not take off on sept 23 2010
        • The nine metre-tall, single stage liquid propelled missile with a maximum range of 350 kilometres was fired from a mobile launcher at 10.03 am from the Integrated Test Range in Chandipur-on-sea, Orissa. But sources in the Defence Research and Development Organisation said the missile just did not launch as the launchpad was enveloped in smoke
        India's first Super Hercules plane readies for maiden flight
         :
        • The first of India's six C-130J Super Hercules airlifters, considered the world's most advanced transport aircraft, is being prepared for its maiden flight early next month(October 2010)
        •  Purchased from the US in a $1 billion deal, India's six stretched-fuselage C-130J-30s would provide the Indian Army and Indian Air Force "new special operations capabilities using the world's most advanced airlifter", according to Lockheed
        • Note that "Lockheed Corporation", was a major United States aircraft manufacturer
        • The Supreme Court on Wednesday slammed "rampant corruption" in the Commonwealth Games and castigated the government for the collapse of the foot overbridge "like a pack of cards" near Jawaharlal Nehru Stadium on 29 sept 2010

        India to compile 'world's biggest' ID database

        India has launched a huge national identity scheme aimed at cutting fraud and improving access to state benefits.