google.com, pub-4617457846989927, DIRECT, f08c47fec0942fa0 Learn to enjoy every minute of your life.Only I can change my life.

Monday, November 30, 2015

HSC time table 2016 maharashtra board

HSC time table 2016 of Maharashtra Board
for Science, Arts and Commerce released.
Date
First Half
Second Half
Timings
Subjects
Timings
Subjects
February 18, 2016
11 AM to 2 PM
English
February 20, 2016
11 AM to 2 PM
Marathi, Gujarati, Kannada, Sindhi, Malayalam, Tamil, Telugu, Punjabi, Bengali
3 PM to 6 PM
Urdu, French, Pali
February 22, 2016
11 AM to 2 PM
Hindi
3 PM to 6 PM
German, Ardhamagadhi, Persian, Avesta - Pahalavi 
February 23, 2015
11 AM to 2 PM
History & Development of Indian Music
3 PM to 6 PM
English Literature
February 24, 2016
11 AM to 2 PM
Secretarial Practice and Physics
3 PM to 6 PM
Political Science
Physics
February 25, 2016
11 AM to 2 PM
Sociology
February 26, 2016
11 AM to 2 PM
Mathematics & Statistics (A/S)
3 PM to 6 PM
Hindi Applied
Mathematics & Statistics (C)
February 27, 2016
11 AM to 2 PM
Economics
February 29, 2016
11 AM to 2 PM
Organisation of Commerce , Management, Chemistry
3 PM to 6 PM
History
March 02, 2016
11 AM to 2 PM
Textiles
3 PM to 6 PM
Marathi Literature
March 04, 2016
11 AM to 2 PM
Book Keeping & Accountancy, Biology
3 PM to 6 PM
Philosophy
March 09, 2016
11 AM to 2 PM
Geography
3 PM to 6 PM
Japanese
March 11, 2015 
11 AM to 2 PM
Biofocal Courses paper I, General Civil Engineering, Electronics, Computer Science,
Commerce Group Paper-I
Banking,
Office Management
Marketing and Salesmenship
Small Industries and Self Employment
Fishery Group Paper - I
Fish processing technology
Fresh Water Fish Culture
3 PM to 6 PM 
Education 
11 AM to 1.30 PM
Electrical Maintenance, Mechanical Maintenance, Scooter Motor Cycle Serving
11 AM to 1 PM
Agricultural Group Paper-I
Animal Science and Dairying
Crop Science
Horticulture 
March 14, 2016
11 AM to 2 PM
Vocational Biofocal Courses Paper-II
TECHNICAL GROUP

General Civil Engineering
Electronics
Computer Science
Commerce Group Paper-II 
Banking
Office Management
Marketing and Salesmenship
Small Industries and Self Employment
Fishery Group Paper - II
Fish processing technology
Fresh Water Fish Culture
Occupational Orientation
Library & information Science
11 AM to 1 PM
Agricultural Group Paper-II
Animal Science and Dairying
Crop Science
Horticulture 
11 AM to 1.30 PM
Electrical Maintenance
Mechanical Maintenance
Scooter and Motorcycle Servicing 
March 16, 2016
11 AM to 2 PM
Co-operation, Geology
3 PM to 6 PM
Percussion
March 17, 2016
3 PM to 6 PM
Psychology
March 18, 2016
11 AM to 2 PM
Sanskrit
March 19, 2016
11 AM to 2 PM
Russian, Arabic
3 PM to 6 PM 
Child Development (A/S)
Agricultural Science and Technology
Animal Science and Technology  
11 AM to 1 PM
General Knowledge (for Military Schools)
March 21, 2016
3 PM to 6 PM
Logic
March 22, 2016
11 AM to 2 PM
History of Art and Appreciation
3 PM to 6 PM
Defence Studies
March 23, 26 and 28, 2016
11 AM to 1.30 PM
ONLINE EXAM
Information Technology
Science
Arts
Commerce
3 PM to 5.30 PM
ONLINE EXAM 
Information Technology
Science
Arts
Commerce 


*****BEST OF LUCK FOR YOUR EXAM*****

Update (03.09.2015) : Maharashtra HSC Time Table 2016 Exam has been released by the Maharashtra board on 03rd September.

Friday, October 23, 2015

php notes

Special data type in php
 Null is a special data type which can have only one value: NULL.
A variable of data type NULL is a variable that has no value assigned to it.
Ex:-
<?php
$x = "Hello world!";
$x = null;
var_dump($x);
?>
Output:- NULL



Abstract class in php:-
1. PHP 5 introduces abstract classes and methods. Classes defined as abstract may not be instantiated, and any class that contains at least one abstract method must also be abstract. Methods defined as abstract simply declare the method's signature - they cannot define the implementation.
2. When inheriting from an abstract class, all methods marked abstract in the parent's class declaration must be defined by the child; additionally, these methods must be defined with the same (or a less restricted) visibility.
3. For example, if the abstract method is defined as protected, the function implementation must be defined as either protected or public, but not private. Furthermore the signatures of the methods must match, i.e. the type hints and the number of required arguments must be the same.
4. For example, if the child class defines an optional argument, where the abstract method's signature does not, there is no conflict in the signature. This also applies to constructors as of PHP 5.4. Before 5.4 constructor signatures could differ.
Abstract example:-
<?php
abstract class AbstractClass
{
    // Our abstract method only needs to define the required arguments
    abstract protected function prefixName($name);

}

class ConcreteClass extends AbstractClass
{

    // Our child class may define optional arguments not in the parent's signature
    public function prefixName($name, $separator = ".") {
        if ($name == "Pacman") {
            $prefix = "Mr";
        } elseif ($name == "Pacwoman") {
            $prefix = "Mrs";
        } else {
            $prefix = "";
        }
        return "{$prefix}{$separator} {$name}";
    }
}

$class = new ConcreteClass;
echo $class->prefixName("Pacman"), "\n";
echo $class->prefixName("Pacwoman"), "\n";
?>
The above example will output:
Mr. Pacman
Mrs. Pacwoman


COOKIE IN PHP:
A cookie is often used to identify a user. A cookie is a small file that the server embeds on the user's computer. Each time the same computer requests a page with a browser, it will send the cookie too. With PHP, you can both create and retrieve cookie values.

Purpose of cookie:-
Cookies make the interaction between users and web sites faster and easier. Without cookies, it would be very difficult for a web site to allow a visitor to fill up a shopping cart or to remember the user's preferences or registration details for a future visit.

Web sites use cookies mainly because they save time and make the browsing experience more efficient and enjoyable. Web sites often use cookies for the purposes of collecting demographic information about their users.

Cookies enable web sites to monitor their users' web surfing habits and profile them for marketing purposes (for example, to find out which products or services they are interested in and send them targeted advertisements).
 In php :-
1. PHP transparently supports HTTP cookies.
2. Cookies are a mechanism for storing data in the remote browser and thus tracking or identifying return users.
3. We can set cookies using the setcookie() or setrawcookie() function.
4. Cookies are part of the HTTP header, so setcookie() must be called before any output is sent to the browser. This is the same limitation that header() has
5. We can use the output buffering functions to delay the script output until you have decided whether or not to set any cookies or send any headers.
6. Any cookies sent to you from the client will automatically be included into a $_COOKIE auto-global array if variables_order contains "C". To assign multiple values to a single cookie, just add [ ] to the cookie name.
7. Depending on register_globals, regular PHP variables can be created from cookies. However it's not recommended to rely on them as this feature is often turned off for the sake of security
Setting new cookie:-
<?php
setcookie("name","value",time()+$int);
/*name is your cookie's name
value is cookie's value
$int is time of cookie expires*/
?>
Getting Cookie:-
<?php
echo $_COOKIE["your cookie name"];
?>
Updating Cookie:-
<?php
setcookie("color","red");
echo $_COOKIE["color"];
/*color is red*/
/* your codes and functions*/
setcookie("color","blue");
echo $_COOKIE["color"];
/*new color is blue*/
?>
Deleting Cookie:-
<?php
unset($_COOKIE["yourcookie"]);
/*Or*/
setcookie("yourcookie","yourvalue",time()-1);
/*it expired so it's deleted*/
?>.


अच्छे विचार करे विचार

  पहचान की नुमाईश, जरा कम करें... जहाँ भी "मैं" लिखा है, उसे "हम" करें... हमारी "इच्छाओं" से ज़्यादा "सुन...