UrbanPro
true
Vigneshwar Spring trainer in Valapady

Vigneshwar

IT Professional with 8 years of experience in Cloud Software Development

Ayya Gounder St Valappadi, Vazhapadi, India - 636115.

Referral Discount: Get ₹ 500 off when you make a payment to start classes. Get started by Booking a Demo.

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.

Overview

I studied B. Tech IT in SSN College of Engineering, Chennai.
I'm currently a Senior Applications Engineer in Oracle. I have 8 years of experience in cloud native Software development.
I can teach the following with hands on experience
- Java 11
- Python
- MySQL
- Spring Boot & Hibernate
- Docker
- Kubernetes
- Git
- Maven
- JSP
- AWS
- OCI
- Microservices

Languages Spoken

Tamil Mother Tongue (Native)

English Proficient

Kannada Basic

Education

SSN College of Engineering, Chennai 2015

Bachelor of Technology (B.Tech.)

Address

Ayya Gounder St Valappadi, Vazhapadi, India - 636115

Verified Info

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.

Please describe the problem that you see in this page.

Type the letters as shown below *

Please enter the letters as show below

Teaches

Spring Training

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

Docker Training

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.

Kubernetes

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.

Java Training Classes

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in Java Training Classes

8

Teaches

Java Full Stack Developer, Java Real Time Projects, J2EE, Servlet, Spring, JSP (Java Server Pages), Hibernate, Core Java, Web services

Certification training offered

No

Python Training classes

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

6-12 months, 1-3 months, 3-6 months

Seeker background catered to

Individual, Educational Institution

Certification provided

No

Python applications taught

Automation with Python , Web Development with Python , Web Scraping with Python , Testing with Python

Teaching Experience in detail in Python Training classes

I have conducted Python Programming classes to graduates of several colleges.

Courses

Reviews

No Reviews yet!

FAQs

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.

Answers by Vigneshwar (6)

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... ...more

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:

  1. Execution of Code Block:
    • The code block inside the do statement is executed.
  2. Evaluation of Condition:
    • After the code block is executed, the loop condition is evaluated.
  3. Loop Continuation or Termination:
    • If the condition is true, the loop will execute the code block again.
    • If the condition is false, the loop terminates, and the program continues with the next statement after the 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.

 

 

Answers 1 Comments
Dislike Bookmark

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... ...more

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.

 

Answers 1 Comments
Dislike Bookmark

Answered on 06/11/2023 Learn IT Courses/Java

The main method is the starting point for the execution of a Java application. When you run a Java program, the Java Virtual Machine (JVM) looks for the main method and begins executing the code within it.
Answers 1 Comments
Dislike Bookmark

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(); ...more

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();

 

Answers 1 Comments
Dislike Bookmark

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... ...more

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.

Answers 1 Comments
Dislike Bookmark

Teaches

Spring Training

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

Docker Training

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.

Kubernetes

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.

Java Training Classes

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in Java Training Classes

8

Teaches

Java Full Stack Developer, Java Real Time Projects, J2EE, Servlet, Spring, JSP (Java Server Pages), Hibernate, Core Java, Web services

Certification training offered

No

Python Training classes

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

6-12 months, 1-3 months, 3-6 months

Seeker background catered to

Individual, Educational Institution

Certification provided

No

Python applications taught

Automation with Python , Web Development with Python , Web Scraping with Python , Testing with Python

Teaching Experience in detail in Python Training classes

I have conducted Python Programming classes to graduates of several colleges.

Courses

No Reviews yet!

Answers by Vigneshwar (6)

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... ...more

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:

  1. Execution of Code Block:
    • The code block inside the do statement is executed.
  2. Evaluation of Condition:
    • After the code block is executed, the loop condition is evaluated.
  3. Loop Continuation or Termination:
    • If the condition is true, the loop will execute the code block again.
    • If the condition is false, the loop terminates, and the program continues with the next statement after the 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.

 

 

Answers 1 Comments
Dislike Bookmark

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... ...more

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.

 

Answers 1 Comments
Dislike Bookmark

Answered on 06/11/2023 Learn IT Courses/Java

The main method is the starting point for the execution of a Java application. When you run a Java program, the Java Virtual Machine (JVM) looks for the main method and begins executing the code within it.
Answers 1 Comments
Dislike Bookmark

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(); ...more

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();

 

Answers 1 Comments
Dislike Bookmark

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... ...more

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.

Answers 1 Comments
Dislike Bookmark

Book a Demo

Load More

Vigneshwar describes himself as IT Professional with 8 years of experience in Cloud Software Development. He conducts classes in Docker Training, Java Training and Kubernetes. Vigneshwar is located in Ayya Gounder St Valappadi, Valapady. Vigneshwar takes Online Classes- via online medium. He has 8 years of teaching experience . Vigneshwar has completed Bachelor of Technology (B.Tech.) from SSN College of Engineering, Chennai in 2015. HeĀ is well versed in English, Tamil and Kannada.

X

Share this Profile

Recommended Profiles

Poorani S.

Poorani S. photo Neelankarai, Chennai

Prabhu Thangavel

Prabhu Thangavel photo Kadubeesanahalli, Bangalore

Apexcode Institute

Apexcode Institute photo Gachibowli, Hyderabad

Ajay Bongani

Ajay Bongani photo Moti Nagar, Hyderabad

Nabin Kuldeep Jena

Nabin Kuldeep Jena photo Marathahalli, Bangalore

Eshan

Eshan photo Sector 82, Gurgaon

Reply to 's review

Enter your reply*

1500/1500

Please enter your reply

Your reply should contain a minimum of 10 characters

Your reply has been successfully submitted.

Certified

The Certified badge indicates that the Tutor has received good amount of positive feedback from Students.

Different batches available for this Course

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more