Gurgaon HO, Gurgaon, India - 122001
Verified 26
Details verified of Hradyesh Chaturvedi✕
Identity
Education
Know how UrbanPro verifies Tutor details
Identity is verified based on matching the details uploaded by the Tutor with government databases.
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Magento eCommerce Training
3
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in PHP Classes
5
Teaches
Php MySQL, PHP Realtime Project, PHP Web 2.0, PHP CMS, Php AJAX, Advanced PHP
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in WordPress Training
4
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Web Development Classes
4
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in CodeIgniter Training
3
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in BCA Tuition
8
BCA Subject
IT, Data structures, Microprocessor, Computer Basics and PC Software , Database Management Systems , Systems Analysis and Design , Software Engineering , Unix Shell programming, Network Programming and Administration , Algorithm Design , Operating System Concepts and Networking Management , C Language Programming, Computer Oriented Numerical Techniques , E-Commerce , Java Programming, Data and File Structures , Digital Electronics, Web Programming, Computer Architecture, Assembly Language Programming, Internet Concepts and Web Design , Object Oriented Technologies, Statistical Techniques , Programming in C++ , Data Communication and Networks, Computer Networks
Type of class
Regular Classes, Crash Course
Class strength catered to
Group Classes, One on one/ Private Tutions
Taught in School or College
Yes
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in C Language Classes
5
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in C++ Language Classes
7
Proficiency level taught
Advanced C++, Basic C++
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Web Designing Classes
7
Teaches web designing at proficiency level
Advanced Web Designing, Basic Web Designing
5 out of 5 20 reviews
Pallavi Sharma
"He is a very good person. His teaching skills are very convincing. I would highly recommended his as trainer for web development classes. "
Pragya Dwivedi
"Hradyesh Sir's teaching skills is very good.He is always friendly to her student.He also gives important notes.He is having a very good knowledge. Thank you Sir. "
Honey
"He is very great.help me work with live projects.I could be able to start my carrier in IT Sector. Thanks sir. "
Garima Dwivedi
"Hradyesh Chaturvedi is good teacher along with nature.His teaching quality is very convincing. "
Answered on 18/01/2023 Learn IT Courses/Java/Spring
In Java Spring, constructor-based dependency injection is a way to provide dependencies to a class by passing them in through the constructor. This is done by annotating the constructor with the @Autowired
annotation. When a class is instantiated, Spring will automatically call the constructor and pass in any dependencies that have been defined.
Answered on 18/01/2023 Learn IT Courses/Java/Spring
Self-studying Java Spring can be a challenging but rewarding process. Here are a few tips to help you get started:
Start with the basics: Before diving into the details of Spring, make sure you have a solid understanding of the Java programming language. Spring is built on top of Java, so it's important to be comfortable with the language before trying to learn the framework.
Use online tutorials and documentation: The Spring Framework documentation is a great place to start learning the basics of the framework. Additionally, there are many online tutorials and articles that cover different aspects of Spring and provide examples to help you understand the concepts.
Practice and experiment: The best way to learn Spring is by building your own applications. Try to build small projects that implement the features you're learning, and don't be afraid to experiment and try new things.
Join a community: There are many online communities, such as forums and social media groups, where developers share their experiences and knowledge about Spring. Joining a community can be a great way to get help when you're stuck and to learn new things from more experienced developers.
Take a course or read a book: There are many courses and books available that can help you learn Spring, such as the popular book "Spring in Action" by Craig Walls. These resources can provide a structured learning experience and can be a great way to supplement your self-study.
Remember to take your time, don't get overwhelmed and don't hesitate to seek help if needed. With patience and persistence, you'll be able to master the Spring Framework.
Answered on 18/01/2023 Learn IT Courses/Java/Spring
Here are a few resources that may be helpful for beginners learning Java Spring:
The Spring Framework documentation: This is the official documentation for the Spring Framework and is a great place to start learning the basics. It provides detailed information on each aspect of the framework and includes examples to help you understand the concepts.
"Spring in Action" by Craig Walls: This book is a great resource for learning the Spring Framework and is written in a way that is easy for beginners to understand. It covers the core features of Spring and includes practical examples to help you learn.
Spring Framework Guru: This website provides a variety of tutorials and articles on Spring, including a "Spring Boot for Beginners" course that covers the basics of the framework and how to use it to build web applications.
Spring Framework YouTube channel: Spring Framework's official YouTube channel provides a number of videos that can help beginners learn Spring Framework, including tutorials on specific features and best practices.
Spring Boot's Getting Started Guides: Spring Boot is a popular choice for building Spring-based applications and provides a variety of getting started guides that can help beginners learn the basics of using Spring Boot.
It's important to note that, it's always recommended to practice and experiment with the framework to solidify the understanding.
Answered on 18/01/2023 Learn IT Courses/Java/Spring
The MEAN stack (MongoDB, Express.js, AngularJS, and Node.js) is becoming more popular in web development because it allows for full-stack JavaScript development, which can make the development process more efficient and streamlined. Additionally, MongoDB's use of JSON-like documents can make data storage and retrieval more flexible and efficient. The JavaScript-based stack also has a wider pool of developers to draw from, as JavaScript is one of the most widely-used programming languages.
Java Spring is a powerful framework for building enterprise-grade applications, but it requires more experienced developers and can be more complex to learn and use. Spring is still a very popular choice for building Java-based web applications, especially in enterprise environments, but the MEAN stack offers a more lightweight and streamlined option for smaller projects and teams.
Answered on 12/09/2018 Learn IT Courses/Programming Languages/PHP
SomePage.php
<a href="download.php?FileNo=<?echo $FileNo;?>">File Name</a>
download.php
$FileNo=$_GET['FileNO'];
//Use Mysql Query to find the 'full path' of file using $FileNo.
// I Assume $FilePaths as 'Full File Path'.
download_file($FilePaths);
function download_file( $fullPath )
{
if( headers_sent() )
die('Headers Sent');
if(ini_get('zlib.output_compression'))
ini_set('zlib.output_compression', 'Off');
if( file_exists($fullPath) )
{
$fsize = filesize($fullPath);
$path_parts = pathinfo($fullPath);
$ext = strtolower($path_parts["extension"]);
switch ($ext)
{
case "pdf": $ctype="application/pdf"; break;
case "exe": $ctype="application/octet-stream"; break;
case "zip": $ctype="application/zip"; break;
case "doc": $ctype="application/msword"; break;
case "xls": $ctype="application/vnd.ms-excel"; break;
case "ppt": $ctype="application/vnd.ms-powerpoint"; break;
case "gif": $ctype="image/gif"; break;
case "png": $ctype="image/png"; break;
case "jpeg":
case "jpg": $ctype="image/jpg"; break;
default: $ctype="application/force-download";
}
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: private",false);
header("Content-Type: $ctype");
header("Content-Disposition: attachment; filename=\"".basename($fullPath)."\";" );
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".$fsize);
ob_clean();
flush();
readfile( $fullPath );
}
else
die('File Not Found');
}
Share this Profile
Also have a look at
Reply to 's review
Enter your reply*
Your reply has been successfully submitted.
Certified
The Certified badge indicates that the Tutor has received good amount of positive feedback from Students.