Nallagandla, Hyderabad, India - 500019.
Verified
Details verified of Srikanth Puli✕
Identity
Education
Know how UrbanPro verifies Tutor details
Identity is verified based on matching the details uploaded by the Tutor with government databases.
Telugu Mother Tongue (Native)
English Proficient
Hindi Basic
Osmania University 2010
Master of Computer Applications (M.C.A.)
Nallagandla, Hyderabad, India - 500019
ID Verified
Education Verified
Phone Verified
Email Verified
Facebook 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 (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in C++ Language Classes
8
Proficiency level taught
Basic C++, Advanced C++
1. For what proficiency level do you teach ?
Basic C++ and Advanced C++
2. Which classes do you teach?
I teach C++ Language Class.
3. Do you provide a demo class?
No, I don't provide a demo class.
4. How many years of experience do you have?
I have been teaching for 8 years.
Answered on 24/01/2019 Learn IT Courses/Programming Languages/C Language
Using recursion;
#include<iostream>
void printNTimes(int nTimes)
{
if(nTimes <= 0)
return;
std::cout<<"I love programming\n";
printNTimes(--nTimes);
}
int main()
{
int n = 0;
std::cin>>n;
printNTimes(n);
}
Answered on 17/01/2019 Learn IT Courses/Programming Languages/C Language
Answered on 17/01/2019 Learn IT Courses/Programming Languages/C Language
I ask the below questions:
1) Declare a structure with int, float and char variables. (This will lead to structure padding in C, then full details of structure padding like... what is it? why it is required?)
2) Pointers... what is the best use of pointers? Why pointers required? What happens when a pointer is allocated memory and when it got freed?
3) Memory layout of a program... Heap, Stack.
4) What happens when a function is called?
5) What happens when a C program is compiled? Phases like preprocessing, compilation. And about few compiler flags like -g, -O3, -E.
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in C++ Language Classes
8
Proficiency level taught
Basic C++, Advanced C++
Answered on 24/01/2019 Learn IT Courses/Programming Languages/C Language
Using recursion;
#include<iostream>
void printNTimes(int nTimes)
{
if(nTimes <= 0)
return;
std::cout<<"I love programming\n";
printNTimes(--nTimes);
}
int main()
{
int n = 0;
std::cin>>n;
printNTimes(n);
}
Answered on 17/01/2019 Learn IT Courses/Programming Languages/C Language
Answered on 17/01/2019 Learn IT Courses/Programming Languages/C Language
I ask the below questions:
1) Declare a structure with int, float and char variables. (This will lead to structure padding in C, then full details of structure padding like... what is it? why it is required?)
2) Pointers... what is the best use of pointers? Why pointers required? What happens when a pointer is allocated memory and when it got freed?
3) Memory layout of a program... Heap, Stack.
4) What happens when a function is called?
5) What happens when a C program is compiled? Phases like preprocessing, compilation. And about few compiler flags like -g, -O3, -E.
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.