superkarankhan-blog
superkarankhan-blog
Untitled
2 posts
Don't wanna be here? Send us removal request.
superkarankhan-blog · 8 years ago
Text
PHP Training in Pune|Software Training Institute in Pune|DataCouncil
About DATACOUNCIl
•       Data Council since 6 years very efficiently providing a fully integrated Training & Placement service on Software Technologies to thousands fresh technical graduates from various technical colleges of India. Its ISO Certified Company.
•       We are No.1 in fresher’s placement in Pune, Nagpur and Bhilai with a record of placing 500+ students every year at various well-known software companies of India. We are the best providers of java classes in Pune, PHP classes in Pune, Software testing classes in Pune and Digital Marketing/SEO classes in Pune with excellent placements.
Why DATACOUNCIL
¡  IT Sector has brought a major growth in the Indian Education Industry. It has also given India the much needed visibility and recognition in the Global Market.
¡  Datacouncil being amongst the Top IT Training Centers in Pune, offers a unique platform to students wherein they can not only learn the new technology and share knowledge on various subjects with other students and experienced professionals but can also enhance their skill sets through Real-Time Learning Experience.
SCOPE of PHP
•       Php has good career opportunity, before few years ago big MNC companies like, Infosys, Wipro, TCS prefer to hire Java programmers and there was very low recruitment of people with profile of Php.
•       But now lot’s of big companies come with php projects and increase the recruitment in this field as compare to Java and Dot net programmers. You may also check the growth of Php
•       When it comes to variety, php developers works on Most of popular are based on ti’s frameworks and CMS and they all are very valuable and most demanded from eCommerce to blogging industry. That’s right only php will not work fine, you must have good knowledge of php frameworks like, Zend, Laravel, Nette, Symfony2 and others.
PHP Syllabus
CORE PHP
•       Php introduction
•       Php variables
•       Php data types
•       Php strings
•       Php constants
•       Php function
•       Php array
•       Php sorting array
•       Php superglobal variable
•       ADVANCED PHP
•       OOPS(Object Oriented Programming )
•       MYSQL & MYSQLI
•       FRAMEWORK
•       CODEIGNITER
Contact
Karvenagar-Pune, Data Council, SN Tower, Above Jijamata Mahila Sahakari Bank Limited, Karve Nagar, Pune,Maharashtra411052+91 80876 01850,
visit- https://www.datacouncil.in/php-training-pune-php-classes-php-course-pune
The opportunities available for a Web Designer are immense, and their technical knowledge is very valuable. Best of all, to be an expert in PHP Programming, you don’t necessarily have to get a college degree. Just take the right training and improve your skills, and you are eligible to become a Web Designer with us u will have bright future.
0 notes
superkarankhan-blog · 8 years ago
Text
Exception handling in java
What is an Exception- an Exception means a problem arises during execution of main program.
 If an Exception came in between the main program it may disrupt the whole program and it may shut down the program and the flow of main program will be effected therefore one should must take care of An Exception.
Following are the reasons in which an exception may occur 
 It is     possible user might have entered wrong data.
File not     present in the parent directory.
Lost the     network connection while opening file or download.
 Some of these error might cause because of user error or inability of user or other programmer. These are the basic error which causes an Exception in Java.
 There are checked exceptions, unchecked exceptions or Runtime Exceptions.
 Checked Exceptions are occur during compile time, these exceptions cannot be ignored at the time of compilation the programmer should take care of these type of exceptions.
  Unchecked exceptions this type of error occur at the time of execution it’s also called as runtime errors it happen due to programming bugs, logic errors and improper use of an API. This type of exception are ignored at time of compilation.
Exception Hierarchy
All exception are sub types of java.lang.exception class. An Exception class is subclass of throwable class. There is subclass called error which is derived from the Throwable class.
Errors are not normal conditions that happen in case of severe failure these are not handle by java programs. These error are not handled by java programs. These errors are generated to indicate errors generated by run time environment.
  Programmer handles an exception
Exception Handling: user will handle Java exception by handling and managed via five keywords: try, catch, throw & finally.
Throw: - An example is, when the code accesses an array location which is not available then Array Index out Of Bounds Exception is thrown. Pretty nice name right and obviously it explains the problem. All the java exception classes are not having any attributes and standard methods, It is a common design. Class name describes what exception it is and the hierarchy forms an organization chart kind of structure using which java exceptions are used. An Exceptions can be thrown by either java run time environment or by the code itself JRE throws exception when java’s rules are violated.
    Mostly custom exceptions are created based on business conditions. Programmer can use the Java keyword ‘throw’ to generate an exception. It is done by instantiating the exception class of choice and then thrown. Programmer can throw a custom exception or a predefined Java exception. Programmers can throw an exception to indicate a problem condition. Either java’s predefined exceptions can be used or custom exceptions can be created by extending the already available exceptions.
Try – catch
A catch will have an exception identified and it will catch only that type of exception. Type means the same exception and all its sub classes. There can be multiple catch blocks for a try block.
A thrown exception should be handled. If the program does not handles an exception, then it will be handled by the java run time environment. A block of code where an exception is expected should be surrounded by try – catch block. Try indicates the start of the exception handling block and catch the end of the block.
Following catch a block of code can be written which is the exception handling code block. This is the part the handles the exception. When a Java method is going to throw an exception, to indicate that as part of the method signature ‘throws‘ keyword should be used followed by the exception. It means that the caller of this method should handle the exception given in the throws clause. There can be multiple exceptions declared to be thrown by a method. If the caller of that method does not handles the exception, then it propagates to one level higher in the method call stack to the previous caller and similarly till it reaches base of the method call stack which will be the java’s run time system.
 Finally
After catch block there can be one more block of code declared as ‘finally‘. Irrespective of whether an exception is thrown or not, the finally block of code will always be executed. Important piece of code that must be executed, even if a program fails belong to this finally block. Example would be closing a database connection, a file handle, etc.
 This is the just introductory part of tutorial for more details please visit us at 
https://www.datacouncil.in/java-classes-pune-java-training
Feel free to contact us 
+91 80876 01850
0 notes