Ayya Gounder St Valappadi, Vazhapadi, India - 636115.
Details verified of Vigneshwar✕
Identity
Education
Know how UrbanPro verifies Tutor details
Identity is verified based on matching the details uploaded by the Tutor with government databases.
Tamil Mother Tongue (Native)
English Proficient
Kannada Basic
SSN College of Engineering, Chennai 2015
Bachelor of Technology (B.Tech.)
Ayya Gounder St Valappadi, Vazhapadi, India - 636115
ID Verified
Phone Verified
Email Verified
Report this Profile
Is this listing inaccurate or duplicate? Any other problem?
Please tell us about the problem and we will fix it.
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in Spring Training
7
Teaching Experience in detail in Spring Training
I have taken classes to batch of students in several colleges
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in Docker Training
7
Teaching Experience in detail in Docker Training
I have taken Docker and Kubernetes to students from several colleges.
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in Kubernetes
7
Teaching Experience in detail in Kubernetes
I have taken Kubernetes classes for batch of students in several colleges.
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in Java Training Classes
8
Teaches
JSP (Java Server Pages), Java Full Stack Developer, Servlet, Hibernate, Spring, Web services, J2EE, Java Real Time Projects, Core Java
Certification training offered
No
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in Python Training classes
8
Course Duration provided
3-6 months, 1-3 months, 6-12 months
Seeker background catered to
Educational Institution, Individual
Certification provided
No
Python applications taught
Testing with Python, Automation with Python , Web Scraping with Python , Web Development with Python
Teaching Experience in detail in Python Training classes
I have conducted Python Programming classes to graduates of several colleges.
1. Which classes do you teach?
I teach Docker Training, Java Training, Kubernetes, Python Training and Spring Classes.
2. Do you provide a demo class?
Yes, I provide a free demo class.
3. How many years of experience do you have?
I have been teaching for 7 years.
Answered on 19/11/2023 Learn IT Courses/Java
The do-while
loop is a type of loop in programming that is similar to the while
loop, but with one key difference: the do-while
loop guarantees that the block of code inside the loop is executed at least once, regardless of whether the loop condition is true or false.
Here is a sample do while loop:
do {
// code to be executed
} while (condition);
The flow of a do-while
loop is as follows:
do
statement is executed.do-while
loop.int i = 6;
do {
System.out.println(i);
i++;
} while (i <= 5);
This loop will print the numbers 6.
The loop will execute at least once even if the initial value of i is greater than 5. The loop condition is checked after the first execution of the code block.
Answered on 19/11/2023 Learn IT Courses/Java
In Java, memory allocation for objects is managed by the Java Virtual Machine (JVM) through a process known as dynamic memory allocation or garbage collection.
Java objects are stored in the heap memory, which is a region of the computer's memory that is managed by the JVM.
The heap is divided into different segments, such as the Young Generation, Old Generation (Tenured), and Perm (or Metaspace).
Newly created objects are initially allocated in the Young Generation and will eventually travel to Old Generation after survival through multiple GC.
Answered on 06/11/2023 Learn IT Courses/Java
Answered on 06/11/2023 Learn IT Courses/Java
By using new keyword. For example, lets take below class.
public class SampleClass {
// Fields, methods, and constructor can be defined here
}
Here is how you create instance of this class
SampleClass sampleClassInstance = new SampleClass();
Answered on 06/11/2023 Learn IT Courses/Java
List is an array of Objects. List maintains the inserted order. List allows duplicates
Set is an array of Objects. Set doesn't maintain the inserted order. It always stores element in sorted order. Set doesn't allow Duplicate Objects.
Map is a collection that stores key-value pairs. Each key is associated with a value, and the keys are unique within the Map.
Map allows you to retrieve values based on their keys efficiently.
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in Spring Training
7
Teaching Experience in detail in Spring Training
I have taken classes to batch of students in several colleges
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in Docker Training
7
Teaching Experience in detail in Docker Training
I have taken Docker and Kubernetes to students from several colleges.
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in Kubernetes
7
Teaching Experience in detail in Kubernetes
I have taken Kubernetes classes for batch of students in several colleges.
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in Java Training Classes
8
Teaches
JSP (Java Server Pages), Java Full Stack Developer, Servlet, Hibernate, Spring, Web services, J2EE, Java Real Time Projects, Core Java
Certification training offered
No
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in Python Training classes
8
Course Duration provided
3-6 months, 1-3 months, 6-12 months
Seeker background catered to
Educational Institution, Individual
Certification provided
No
Python applications taught
Testing with Python, Automation with Python , Web Scraping with Python , Web Development with Python
Teaching Experience in detail in Python Training classes
I have conducted Python Programming classes to graduates of several colleges.
Answered on 19/11/2023 Learn IT Courses/Java
The do-while
loop is a type of loop in programming that is similar to the while
loop, but with one key difference: the do-while
loop guarantees that the block of code inside the loop is executed at least once, regardless of whether the loop condition is true or false.
Here is a sample do while loop:
do {
// code to be executed
} while (condition);
The flow of a do-while
loop is as follows:
do
statement is executed.do-while
loop.int i = 6;
do {
System.out.println(i);
i++;
} while (i <= 5);
This loop will print the numbers 6.
The loop will execute at least once even if the initial value of i is greater than 5. The loop condition is checked after the first execution of the code block.
Answered on 19/11/2023 Learn IT Courses/Java
In Java, memory allocation for objects is managed by the Java Virtual Machine (JVM) through a process known as dynamic memory allocation or garbage collection.
Java objects are stored in the heap memory, which is a region of the computer's memory that is managed by the JVM.
The heap is divided into different segments, such as the Young Generation, Old Generation (Tenured), and Perm (or Metaspace).
Newly created objects are initially allocated in the Young Generation and will eventually travel to Old Generation after survival through multiple GC.
Answered on 06/11/2023 Learn IT Courses/Java
Answered on 06/11/2023 Learn IT Courses/Java
By using new keyword. For example, lets take below class.
public class SampleClass {
// Fields, methods, and constructor can be defined here
}
Here is how you create instance of this class
SampleClass sampleClassInstance = new SampleClass();
Answered on 06/11/2023 Learn IT Courses/Java
List is an array of Objects. List maintains the inserted order. List allows duplicates
Set is an array of Objects. Set doesn't maintain the inserted order. It always stores element in sorted order. Set doesn't allow Duplicate Objects.
Map is a collection that stores key-value pairs. Each key is associated with a value, and the keys are unique within the Map.
Map allows you to retrieve values based on their keys efficiently.
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.