UrbanPro
true
Kamal Java trainer in Chennai

Kamal

Computer Expert

Chennai International Airport, Chennai, India - 600027.

1 Student

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

Details verified of Kamal

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 m having 10+ years of experience. I teach programming in a unique way that one can understand. I teach how to make logic and then how to program so that you can write any given program yourself. I have participated in many programming contests and I like making game programs and any kind of program/projects. You can also learn all these. 100% satisfaction assured.

Languages Spoken

Hindi

English

Education

Bangalore university 2005

Master of Computer Applications (M.C.A.)

Address

Chennai International Airport, Chennai, India - 600027

Verified Info

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

Java Training Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Java Training Classes

10

Teaches

Core Java

Certification training offered

No

BCA Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BCA Tuition

10

BCA Subject

Java Programming, C Language Programming, Programming in C++

Type of class

Regular Classes, Crash Course

Class strength catered to

One on one/ Private Tutions

Taught in School or College

Yes

C Language Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in C Language Classes

10

C++ Language Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in C++ Language Classes

10

Proficiency level taught

Basic C++

Class 11 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 11 Tuition

10

Board

ISC/ICSE, International Baccalaureate, IGCSE, CBSE, State

IB Subjects taught

Computer Science, Information Technology

ISC/ICSE Subjects taught

Computer Science

CBSE Subjects taught

Computer Science

Taught in School or College

Yes

State Syllabus Subjects taught

Computer Science

Class 12 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 12 Tuition

10

Board

ISC/ICSE, International Baccalaureate, IGCSE, CBSE, State

IB Subjects taught

Computer Science, Information Technology

ISC/ICSE Subjects taught

Computer Science

CBSE Subjects taught

Computer Science

Taught in School or College

Yes

State Syllabus Subjects taught

Computer Science

Reviews

No Reviews yet! Be the first one to Review

FAQs

1. What type of Java programming do you teach?

Core Java

2. Which classes do you teach?

I teach BCA Tuition, C Language, C++ Language, Class 11 Tuition, Class 12 Tuition and Java Training Classes.

3. Do you provide a demo class?

Yes, I provide a free demo class.

4. How many years of experience do you have?

I have been teaching for 10 years.

Answers by Kamal (2)

Answered on 15/09/2016 Learn IT Courses/Programming Languages/C Language

An n dimensional matrix can be of any dimension. Adding a dimension is adding one more index number (to access the element). In 1-D array you the elements are linearly arranged and can be addressed as a, a, .. . in 2-D array elements are logically in the form of matrix having row and column index and... ...more
An n dimensional matrix can be of any dimension. Adding a dimension is adding one more index number (to access the element). In 1-D array you the elements are linearly arranged and can be addressed as a[0], a[1], .. . in 2-D array elements are logically in the form of matrix having row and column index and can be represented as a[0][0], a[0][1] etc. and they are stored row wise in the memory, because the memory is linear. Now a 3-D array is nothing but a logical structure which can be accessed by 3 index numbers. If the array is of size 3 in all the dimensions(int a[3][3][3] then it is stored in the memory in the following order a[0][0][0], a[0][0][1], a[0][0][2], a[0][1][0], a[0][1][1], a[0][1][2], a[0][2][0], a[0][2][1], a[0][2][2], a[1][0][0], a[1][0][1] and so on. Now to find the address of any element of the array based on the given index number and given dimension size, given element size(data type size) and given base address: Suppose the array is of n-dimension having the size of each dimension as S1,S2,S3. . .. Sn And the element size is ES, Base Address is BA And the index number of the element to find the address is given as i1, i2, i3, . . . .in Then the formula will be: Address of A[i1][ i2][ i3]. . . .[ in] = BA + ES*[ i1*( S2* S3* S4 *. . ..* Sn) + i2*( S3* S4* S5 *.. .. * Sn) + .. . . .. + in-2*( Sn-1*Sn) + in-1*Sn + in ] Example-1: An int array A[100][50] is stored at the address 1000. Find the address of A[40][25]. Solution: BA=1000, ES=2, S1=100, S2=50, i1=40, i2=25 Address of A[40][25]=1000+2*[40*50 + 25]=1450 Example-2: An int array A[50][40][30] is stored at the address 1000. Find the address of A[40][20][10]. Solution: BA=1000, ES=2, S1=50, S2=40, S3=30, i1=40, i2=20, i3=10 Address of A[40][20][10]=1000+2*[40*40*30 + 20*30 + 10]=98220
Answers 21 Comments
Dislike Bookmark

Answered on 15/09/2016 Learn IT Courses/Programming Languages/C Language

An n dimensional matrix can be of any dimension. Adding a dimension is adding one more index number (to access the element). e.g in 1-D array you the elements are linearly arranged and can be addressed as a, a,... in 2-D array elements are logically in the form of matrix having row and column index and... ...more
An n dimensional matrix can be of any dimension. Adding a dimension is adding one more index number (to access the element). e.g in 1-D array you the elements are linearly arranged and can be addressed as a[0], a[1],... in 2-D array elements are logically in the form of matrix having row and column index and can be represented as a[0][0], a[0][1] etc. and they are stored row wise in the memory, because the memory is linear. Now a 3-D array is nothing but a logical structure which can be accessed by 3 index numbers. If the array is of size 3 in all the dimensions(int a[3][3][3] then it is stored in the memory in the following order a[0][0][0], a[0][0][1], a[0][0][2], a[0][1][0], a[0][1][1], a[0][1][2], a[0][2][0], a[0][2][1], a[0][2][2], a[1][0][0], a[1][0][1] and so on. Now to find the address of any element of the array based on the given index number and given dimension size, given element size(data type size) and given base address: Suppose the array is of n-dimension having the size of each dimension as S1,S2,S3....Sn And the element size is ES, Base Address is BA And the index number of the element to find the address is given as i1, i2, i3, ....in Then the formula will be: Address of A[i1][ i2][ i3]....[ in] = BA + ES*[ i1*( S2* S3* S4*....* Sn) + i2*( S3* S4* S5*....* Sn) + ...... + in-2*( Sn-1*Sn) + in-1*Sn + in ] Example-1: An int array A[100][50] is stored at the address 1000. Find the address of A[40][25]. Solution: BA=1000, ES=2, S1=100, S2=50, i1=40, i2=25 Address of A[40][25]=1000+2*[40*50 + 25]=1450 Example-2: An int array A[50][40][30] is stored at the address 1000. Find the address of A[40][20][10]. Solution: BA=1000, ES=2, S1=50, S2=40, S3=30, i1=40, i2=20, i3=10 Address of A[40][20][10]=1000+2*[40*40*30 + 20*30 + 10]=98220
Answers 21 Comments
Dislike Bookmark

Teaches

Java Training Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Java Training Classes

10

Teaches

Core Java

Certification training offered

No

BCA Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BCA Tuition

10

BCA Subject

Java Programming, C Language Programming, Programming in C++

Type of class

Regular Classes, Crash Course

Class strength catered to

One on one/ Private Tutions

Taught in School or College

Yes

C Language Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in C Language Classes

10

C++ Language Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in C++ Language Classes

10

Proficiency level taught

Basic C++

Class 11 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 11 Tuition

10

Board

ISC/ICSE, International Baccalaureate, IGCSE, CBSE, State

IB Subjects taught

Computer Science, Information Technology

ISC/ICSE Subjects taught

Computer Science

CBSE Subjects taught

Computer Science

Taught in School or College

Yes

State Syllabus Subjects taught

Computer Science

Class 12 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 12 Tuition

10

Board

ISC/ICSE, International Baccalaureate, IGCSE, CBSE, State

IB Subjects taught

Computer Science, Information Technology

ISC/ICSE Subjects taught

Computer Science

CBSE Subjects taught

Computer Science

Taught in School or College

Yes

State Syllabus Subjects taught

Computer Science

No Reviews yet! Be the first one to Review

Answers by Kamal (2)

Answered on 15/09/2016 Learn IT Courses/Programming Languages/C Language

An n dimensional matrix can be of any dimension. Adding a dimension is adding one more index number (to access the element). In 1-D array you the elements are linearly arranged and can be addressed as a, a, .. . in 2-D array elements are logically in the form of matrix having row and column index and... ...more
An n dimensional matrix can be of any dimension. Adding a dimension is adding one more index number (to access the element). In 1-D array you the elements are linearly arranged and can be addressed as a[0], a[1], .. . in 2-D array elements are logically in the form of matrix having row and column index and can be represented as a[0][0], a[0][1] etc. and they are stored row wise in the memory, because the memory is linear. Now a 3-D array is nothing but a logical structure which can be accessed by 3 index numbers. If the array is of size 3 in all the dimensions(int a[3][3][3] then it is stored in the memory in the following order a[0][0][0], a[0][0][1], a[0][0][2], a[0][1][0], a[0][1][1], a[0][1][2], a[0][2][0], a[0][2][1], a[0][2][2], a[1][0][0], a[1][0][1] and so on. Now to find the address of any element of the array based on the given index number and given dimension size, given element size(data type size) and given base address: Suppose the array is of n-dimension having the size of each dimension as S1,S2,S3. . .. Sn And the element size is ES, Base Address is BA And the index number of the element to find the address is given as i1, i2, i3, . . . .in Then the formula will be: Address of A[i1][ i2][ i3]. . . .[ in] = BA + ES*[ i1*( S2* S3* S4 *. . ..* Sn) + i2*( S3* S4* S5 *.. .. * Sn) + .. . . .. + in-2*( Sn-1*Sn) + in-1*Sn + in ] Example-1: An int array A[100][50] is stored at the address 1000. Find the address of A[40][25]. Solution: BA=1000, ES=2, S1=100, S2=50, i1=40, i2=25 Address of A[40][25]=1000+2*[40*50 + 25]=1450 Example-2: An int array A[50][40][30] is stored at the address 1000. Find the address of A[40][20][10]. Solution: BA=1000, ES=2, S1=50, S2=40, S3=30, i1=40, i2=20, i3=10 Address of A[40][20][10]=1000+2*[40*40*30 + 20*30 + 10]=98220
Answers 21 Comments
Dislike Bookmark

Answered on 15/09/2016 Learn IT Courses/Programming Languages/C Language

An n dimensional matrix can be of any dimension. Adding a dimension is adding one more index number (to access the element). e.g in 1-D array you the elements are linearly arranged and can be addressed as a, a,... in 2-D array elements are logically in the form of matrix having row and column index and... ...more
An n dimensional matrix can be of any dimension. Adding a dimension is adding one more index number (to access the element). e.g in 1-D array you the elements are linearly arranged and can be addressed as a[0], a[1],... in 2-D array elements are logically in the form of matrix having row and column index and can be represented as a[0][0], a[0][1] etc. and they are stored row wise in the memory, because the memory is linear. Now a 3-D array is nothing but a logical structure which can be accessed by 3 index numbers. If the array is of size 3 in all the dimensions(int a[3][3][3] then it is stored in the memory in the following order a[0][0][0], a[0][0][1], a[0][0][2], a[0][1][0], a[0][1][1], a[0][1][2], a[0][2][0], a[0][2][1], a[0][2][2], a[1][0][0], a[1][0][1] and so on. Now to find the address of any element of the array based on the given index number and given dimension size, given element size(data type size) and given base address: Suppose the array is of n-dimension having the size of each dimension as S1,S2,S3....Sn And the element size is ES, Base Address is BA And the index number of the element to find the address is given as i1, i2, i3, ....in Then the formula will be: Address of A[i1][ i2][ i3]....[ in] = BA + ES*[ i1*( S2* S3* S4*....* Sn) + i2*( S3* S4* S5*....* Sn) + ...... + in-2*( Sn-1*Sn) + in-1*Sn + in ] Example-1: An int array A[100][50] is stored at the address 1000. Find the address of A[40][25]. Solution: BA=1000, ES=2, S1=100, S2=50, i1=40, i2=25 Address of A[40][25]=1000+2*[40*50 + 25]=1450 Example-2: An int array A[50][40][30] is stored at the address 1000. Find the address of A[40][20][10]. Solution: BA=1000, ES=2, S1=50, S2=40, S3=30, i1=40, i2=20, i3=10 Address of A[40][20][10]=1000+2*[40*40*30 + 20*30 + 10]=98220
Answers 21 Comments
Dislike Bookmark

Kamal describes himself as Computer Expert. He conducts classes in BCA Tuition, C Language and C++ Language. Kamal is located in Chennai International Airport, Chennai. Kamal takes at students Home and Online Classes- via online medium. He has 10 years of teaching experience . Kamal has completed Master of Computer Applications (M.C.A.) from Bangalore university in 2005. HeĀ is well versed in Hindi and English.

X
X

Post your Learning Need

Let us shortlist and give the best tutors and institutes.

or

Send Enquiry to Kamal

Let Kamal know you are interested in their class

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.

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