UrbanPro
true
Ratikanta Sahoo C Language trainer in Bangalore

Ratikanta Sahoo

Tutor

Kadugodi Post Office, Bangalore, India - 560067.

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

Details verified of Ratikanta Sahoo

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 am software professional, having 7+ years of experience. My working area is C, C++, Data structure, Oracle, Unix, Shell Scripting. If you talk about my teaching experience, I am providing teaching to our fresher in our company and also doing private tuition. So I am having 4 years of teaching experience.

Languages Spoken

Oriya

English

Hindi

Education

BPUT 2005

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

Address

Kadugodi Post Office, Bangalore, India - 560067

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

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

11

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

11

Proficiency level taught

Basic C++, Advanced C++

Linux Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Linux Training

11

Teaches

Linux Basics

Oracle Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Oracle Training

11

Oracle Products taught

Oracle 11i Financial, Oracle PL/SQL, Oracle Database

Computer Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Computer Classes

11

Type of Computer course taken

Training in Computer tools usage, Training in Software application usage, Basics of Computer usage, Software Programming

OBIEE Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in OBIEE Training

3

Courses

Reviews

No Reviews yet! Be the first one to Review

FAQs

1. Which classes do you teach?

I teach C Language, C++ Language, Computer, Linux, OBIEE and Oracle Training 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 11 years.

Answers by Ratikanta Sahoo (2)

Answered on 04/02/2015 Learn IT Courses/Programming Languages/C Language

2D Array ===================== 1. Array always contains contnineous memory address. 2. Array index is always start from 0 3. Ex of 1D array: int 1dArray = {10,20,30,40} Memory Alocation of above array : Index Address Value ============================================================================= 1dArray... ...more
2D Array ===================== 1. Array always contains contnineous memory address. 2. Array index is always start from 0 3. Ex of 1D array: int 1dArray[4] = {10,20,30,40} Memory Alocation of above array : Index Address Value ============================================================================= 1dArray[0] 10008 10 1dArray[1] 10008+4(int size in 64 bit)= 10012 20 1dArray[2] 10012+4(int size in 64 bit)= 10016 30 1dArray[3] 10016+4(int size in 64 bit)= 10020 40 4. Ex of 2D array: int 1dArray[2][2] = {10,20,30,40} Memory Alocation of above array : Index Address Value ============================================================================= 1dArray[0][0] 10008 10 1dArray[0][1] 10008+4(int size in 64 bit)= 10012 20 1dArray[1][0] 10012+4(int size in 64 bit)= 10016 30 1dArray[1][1] 10016+4(int size in 64 bit)= 10020 40 [0][0] [0][1] 10008 10012 10016 10020 [1][0] [1][1]
Answers 43 Comments
Dislike Bookmark

Answered on 27/01/2015 Learn IT Courses/Programming Languages/C++ Language

1. calloc(...) allocates a block of memory for an array of elements of a certain size. By default the block is initialized with 0. The total number of memory allocated will be (number_of_elements * size). Ex : int * array = (int *) calloc (10, sizeof (int)); malloc(...) takes only a single argument... ...more
1. calloc(...) allocates a block of memory for an array of elements of a certain size. By default the block is initialized with 0. The total number of memory allocated will be (number_of_elements * size). Ex : int * array = (int *) calloc (10, sizeof (int)); malloc(...) takes only a single argument which is the memory required in bytes. malloc(...) allocated bytes of memory and not blocks of memory like calloc(...). Ex : double * p = (double *) malloc (sizeof (double)); 2. malloc(...) allocates memory blocks and returns a void pointer to the allocated space, or NULL if there is insufficient memory available. calloc(...) allocates an array in memory with elements initialized to 0 and returns a pointer to the allocated space.
Answers 72 Comments
Dislike Bookmark

Teaches

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

11

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

11

Proficiency level taught

Basic C++, Advanced C++

Linux Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Linux Training

11

Teaches

Linux Basics

Oracle Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Oracle Training

11

Oracle Products taught

Oracle 11i Financial, Oracle PL/SQL, Oracle Database

Computer Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Computer Classes

11

Type of Computer course taken

Training in Computer tools usage, Training in Software application usage, Basics of Computer usage, Software Programming

OBIEE Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in OBIEE Training

3

Courses

No Reviews yet! Be the first one to Review

Answers by Ratikanta Sahoo (2)

Answered on 04/02/2015 Learn IT Courses/Programming Languages/C Language

2D Array ===================== 1. Array always contains contnineous memory address. 2. Array index is always start from 0 3. Ex of 1D array: int 1dArray = {10,20,30,40} Memory Alocation of above array : Index Address Value ============================================================================= 1dArray... ...more
2D Array ===================== 1. Array always contains contnineous memory address. 2. Array index is always start from 0 3. Ex of 1D array: int 1dArray[4] = {10,20,30,40} Memory Alocation of above array : Index Address Value ============================================================================= 1dArray[0] 10008 10 1dArray[1] 10008+4(int size in 64 bit)= 10012 20 1dArray[2] 10012+4(int size in 64 bit)= 10016 30 1dArray[3] 10016+4(int size in 64 bit)= 10020 40 4. Ex of 2D array: int 1dArray[2][2] = {10,20,30,40} Memory Alocation of above array : Index Address Value ============================================================================= 1dArray[0][0] 10008 10 1dArray[0][1] 10008+4(int size in 64 bit)= 10012 20 1dArray[1][0] 10012+4(int size in 64 bit)= 10016 30 1dArray[1][1] 10016+4(int size in 64 bit)= 10020 40 [0][0] [0][1] 10008 10012 10016 10020 [1][0] [1][1]
Answers 43 Comments
Dislike Bookmark

Answered on 27/01/2015 Learn IT Courses/Programming Languages/C++ Language

1. calloc(...) allocates a block of memory for an array of elements of a certain size. By default the block is initialized with 0. The total number of memory allocated will be (number_of_elements * size). Ex : int * array = (int *) calloc (10, sizeof (int)); malloc(...) takes only a single argument... ...more
1. calloc(...) allocates a block of memory for an array of elements of a certain size. By default the block is initialized with 0. The total number of memory allocated will be (number_of_elements * size). Ex : int * array = (int *) calloc (10, sizeof (int)); malloc(...) takes only a single argument which is the memory required in bytes. malloc(...) allocated bytes of memory and not blocks of memory like calloc(...). Ex : double * p = (double *) malloc (sizeof (double)); 2. malloc(...) allocates memory blocks and returns a void pointer to the allocated space, or NULL if there is insufficient memory available. calloc(...) allocates an array in memory with elements initialized to 0 and returns a pointer to the allocated space.
Answers 72 Comments
Dislike Bookmark

Ratikanta Sahoo describes himself as Tutor. He conducts classes in C Language, C++ Language and Computer. Ratikanta is located in Kadugodi Post Office, Bangalore. Ratikanta takes at students Home and Online Classes- via online medium. He has 11 years of teaching experience . Ratikanta has completed Master of Computer Applications (M.C.A.) from BPUT in 2005. HeĀ is well versed in Oriya, English and Hindi.

X
X

Post your Learning Need

Let us shortlist and give the best tutors and institutes.

or

Send Enquiry to Ratikanta Sahoo

Let Ratikanta Sahoo 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