UrbanPro
true
Vigneshwar Spring trainer in Valapady

Vigneshwar

locationImg Ayya Gounder St Valappadi, Vazhapadi
7 yrs of Exp
Book a Free Demo
Book a Free 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.

IT Professional with 8 years of experience in Cloud Software Development

Online Classes
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 class via Zoom

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 class via Zoom

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 class via Zoom

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 class via Zoom

Student's Home

Tutor's Home

Years of Experience in Java Training Classes

8

Teaches

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

Certification training offered

No

Python Training classes

Class Location

Online class via Zoom

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

Individual, Educational Institution

Certification provided

No

Python applications taught

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

Teaching Experience in detail in Python Training classes

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

Reviews

No Reviews yet!

Answers by Vigneshwar

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

Ask a Question

Post a Lesson

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

Ask a Question

Post a Lesson

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

Ask a Question

Post a Lesson

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

Ask a Question

Post a Lesson

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

Ask a Question

Post a Lesson

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
x

Ask a Question

Please enter your Question

Please select a Tag

Teaches

Spring Training

Class Location

Online class via Zoom

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 class via Zoom

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 class via Zoom

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 class via Zoom

Student's Home

Tutor's Home

Years of Experience in Java Training Classes

8

Teaches

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

Certification training offered

No

Python Training classes

Class Location

Online class via Zoom

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

Individual, Educational Institution

Certification provided

No

Python applications taught

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

Teaching Experience in detail in Python Training classes

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

No Reviews yet!

Answers by Vigneshwar

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

Ask a Question

Post a Lesson

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

Ask a Question

Post a Lesson

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

Ask a Question

Post a Lesson

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

Ask a Question

Post a Lesson

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

Ask a Question

Post a Lesson

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
x

Ask a Question

Please enter your Question

Please select a Tag

Book a Demo

Load More
  • Want to learn from Vigneshwar?

  • Book a Demo
X

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