loading="eager" fetchpriority="high" decoding="sync" /> Sunkadakatte, Bangalore, India - 560082.
1 yr of Exp
Details verified of Sharath✕
Identity
Education
Know how UrbanPro verifies Tutor details
Identity is verified based on matching the details uploaded by the Tutor with government databases.
Kannada Mother Tongue (Native)
English Proficient
Hindi Proficient
BMS Institute of Technology 2017
Bachelor of Engineering (B.E.)
Sunkadakatte, Bangalore, India - 560082
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.
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in PL/SQL Classes
1
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in C Language Classes
1
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Class 6 Tuition
1
Board
ICSE, Cambridge Assessment International Education (CAIE), CBSE, International Baccalaureate, State
Subjects taught
Mathematics, Chemistry, Computer Science, Physics, Computers, Science
Taught in School or College
No
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Class 7 Tuition
1
Board
ICSE, Cambridge Assessment International Education (CAIE), CBSE, International Baccalaureate, State
Subjects taught
Mathematics, Computers, Chemistry, Physics, Science, Computer Science
Taught in School or College
No
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Class 8 Tuition
1
Board
ICSE, Cambridge Assessment International Education (CAIE), CBSE, International Baccalaureate, State
Subjects taught
Computer Science, Computers, Science, Mathematics, Chemistry, Physics
Taught in School or College
No
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Board
ICSE, CBSE, State
Subjects taught
Information and Comunication Technology, Physics, Chemistry, Computer Application, Computer Practices, Science, Technical Drawing Applications, Mathematics
Taught in School or College
No
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Board
ICSE, CBSE, State
Subjects taught
Mathematics, Information and Comunication Technology, Chemistry, Technical Drawing Applications, Computer Application, Physics, Elements of business, Computer Practices, Commercial Applications, Science, EVS, Commercial Studies
Taught in School or College
No
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
BSc Computer Science Subjects
Data Structures, Computer Systems Architecture, Programming Fundamentals, Software Engineering, Software Testing
Type of class
Crash Course
Class strength catered to
Group Classes, One on one/ Private Tutions
Taught in School or College
No
BSc Branch
BSc Computer Science
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Board
CBSE, State
Subjects taught
Business Studies, Computer Science
Taught in School or College
No
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Engineering Diploma Tuition
1
Information Technology Engineering Diploma Subject
Management Information Systems, Relational Data Base Management Systems, Object Oriented Programming, Software Engineering, Software Testing, Data Structure
Engineering Diploma Branch
Information Technology Engineering Diploma, Computer Engineering Diploma
Computer Engineering Diploma Subject
Data Structure Using 'C', Relational Database Management Systems, Software Testing, Applied Mathematics, Software Engineering, Basics of C Programming, Object Oriented Programming
Type of class
Crash Course
Class strength catered to
Group Classes, One on one/ Private Tutions
Taught in School or College
No
Upcoming Live Classes
1. Which classes do you teach?
I teach BSc Tuition, C Language, Class 10 Tuition, Class 12 Tuition, Class 6 Tuition, Class 7 Tuition, Class 8 Tuition, Class 9 Tuition, Engineering Diploma Tuition and PL/SQL 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 1 year.
Answered on 12/12/2018 Learn IT Courses/Programming Languages/C Language
Its all about perspective. You like something , I like something else.
I like C# more than java, you migth like java.
Basically Agile development is incremental devlivery. Example: Take your android application, They launch the very first version of it. Then people with use and write they feed back, bugs, issues faced. Company will take the feedback and fix them. Or introduce new features.
This is how aglie methodology works. And its cool. As a software professional we dont hate agile development. :)
Most of the IT gaints use the same methodology.
Answered on 12/12/2018 Learn IT Courses/Programming Languages/C Language
Practise makes man perfect. If you practice a lot of examples then it would help.
1. Understand the problem
2. what is your approach in order to find solution to it?
if you have solid explaination to both the above question then continue with below approach,
And also use algothrimic method to approach the problem or flowchart method. This is how we approach problem in IT industry
Answered on 12/12/2018 Learn IT Courses/Programming Languages/C Language
#include <stdio.h>
#include <math.h>
int main()
{
int x,beta,z,k=0;
/*k=3.14+ x * tanh (beta), when x is equal to 20 and beta is divisible by 8 */
do{
printf("k=3.14+ x * tanh (beta)\n");
printf("Enter the value of x: \n");
scanf("%d",&x);
printf("Enter the value of beta: \n");
scanf("%d",&beta);
if(beta%8 == 0)
{
k=3.14+x*tanh(beta);
printf("The value of K is %d \n",k);
}
else
printf("Enter Beta value which is divisible by 8");
printf("If you want to continue press 1, else press 0 to exit");
scanf("%d",&z);
if(z==0)
return 0;
}while(z==1);
}
Answered on 12/12/2018 Learn IT Courses/Programming Languages/C Language
#include <stdio.h>
#include <math.h>
int main()
{
int x,n, sum1 =0, sum2=0;
printf("Enter the upper range value: \n");
scanf("%d",&n);
if (n>=1)
{
for(x=1;x<=n;x++)
{
sum1 = pow(3,x) + pow(4,x);
sum2 = pow(5,x);
if ((sum1==sum2) && (sum1 >0) && (sum2 >0))
printf("The feasible x value is %d, 3^%d+4^%d = %d, 5^%d = %d \n",x,x,x,sum1,x,sum2);
}
return 0;
}
else
printf("Please enter value greater than or equal to 1");
}
Answered on 12/12/2018 Learn IT Courses/Programming Languages/C Language
#include <stdio.h>
int main()
{
int j,i,n,factor;
printf("Enter the last number of the sequence:");
scanf("%d",&j);
for(n=2;n<=j;n++)
{
for(i=1;i<n;i++)
{
if(n%i==0)
{
factor=i;/*finds the largest proper divisor*/
}
}
if(factor>1)
{
printf ("%d, ",n);
}
}
return 0;
}
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in PL/SQL Classes
1
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in C Language Classes
1
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Class 6 Tuition
1
Board
ICSE, Cambridge Assessment International Education (CAIE), CBSE, International Baccalaureate, State
Subjects taught
Mathematics, Chemistry, Computer Science, Physics, Computers, Science
Taught in School or College
No
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Class 7 Tuition
1
Board
ICSE, Cambridge Assessment International Education (CAIE), CBSE, International Baccalaureate, State
Subjects taught
Mathematics, Computers, Chemistry, Physics, Science, Computer Science
Taught in School or College
No
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Class 8 Tuition
1
Board
ICSE, Cambridge Assessment International Education (CAIE), CBSE, International Baccalaureate, State
Subjects taught
Computer Science, Computers, Science, Mathematics, Chemistry, Physics
Taught in School or College
No
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Board
ICSE, CBSE, State
Subjects taught
Information and Comunication Technology, Physics, Chemistry, Computer Application, Computer Practices, Science, Technical Drawing Applications, Mathematics
Taught in School or College
No
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Board
ICSE, CBSE, State
Subjects taught
Mathematics, Information and Comunication Technology, Chemistry, Technical Drawing Applications, Computer Application, Physics, Elements of business, Computer Practices, Commercial Applications, Science, EVS, Commercial Studies
Taught in School or College
No
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
BSc Computer Science Subjects
Data Structures, Computer Systems Architecture, Programming Fundamentals, Software Engineering, Software Testing
Type of class
Crash Course
Class strength catered to
Group Classes, One on one/ Private Tutions
Taught in School or College
No
BSc Branch
BSc Computer Science
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Board
CBSE, State
Subjects taught
Business Studies, Computer Science
Taught in School or College
No
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Engineering Diploma Tuition
1
Information Technology Engineering Diploma Subject
Management Information Systems, Relational Data Base Management Systems, Object Oriented Programming, Software Engineering, Software Testing, Data Structure
Engineering Diploma Branch
Information Technology Engineering Diploma, Computer Engineering Diploma
Computer Engineering Diploma Subject
Data Structure Using 'C', Relational Database Management Systems, Software Testing, Applied Mathematics, Software Engineering, Basics of C Programming, Object Oriented Programming
Type of class
Crash Course
Class strength catered to
Group Classes, One on one/ Private Tutions
Taught in School or College
No
Answered on 12/12/2018 Learn IT Courses/Programming Languages/C Language
Its all about perspective. You like something , I like something else.
I like C# more than java, you migth like java.
Basically Agile development is incremental devlivery. Example: Take your android application, They launch the very first version of it. Then people with use and write they feed back, bugs, issues faced. Company will take the feedback and fix them. Or introduce new features.
This is how aglie methodology works. And its cool. As a software professional we dont hate agile development. :)
Most of the IT gaints use the same methodology.
Answered on 12/12/2018 Learn IT Courses/Programming Languages/C Language
Practise makes man perfect. If you practice a lot of examples then it would help.
1. Understand the problem
2. what is your approach in order to find solution to it?
if you have solid explaination to both the above question then continue with below approach,
And also use algothrimic method to approach the problem or flowchart method. This is how we approach problem in IT industry
Answered on 12/12/2018 Learn IT Courses/Programming Languages/C Language
#include <stdio.h>
#include <math.h>
int main()
{
int x,beta,z,k=0;
/*k=3.14+ x * tanh (beta), when x is equal to 20 and beta is divisible by 8 */
do{
printf("k=3.14+ x * tanh (beta)\n");
printf("Enter the value of x: \n");
scanf("%d",&x);
printf("Enter the value of beta: \n");
scanf("%d",&beta);
if(beta%8 == 0)
{
k=3.14+x*tanh(beta);
printf("The value of K is %d \n",k);
}
else
printf("Enter Beta value which is divisible by 8");
printf("If you want to continue press 1, else press 0 to exit");
scanf("%d",&z);
if(z==0)
return 0;
}while(z==1);
}
Answered on 12/12/2018 Learn IT Courses/Programming Languages/C Language
#include <stdio.h>
#include <math.h>
int main()
{
int x,n, sum1 =0, sum2=0;
printf("Enter the upper range value: \n");
scanf("%d",&n);
if (n>=1)
{
for(x=1;x<=n;x++)
{
sum1 = pow(3,x) + pow(4,x);
sum2 = pow(5,x);
if ((sum1==sum2) && (sum1 >0) && (sum2 >0))
printf("The feasible x value is %d, 3^%d+4^%d = %d, 5^%d = %d \n",x,x,x,sum1,x,sum2);
}
return 0;
}
else
printf("Please enter value greater than or equal to 1");
}
Answered on 12/12/2018 Learn IT Courses/Programming Languages/C Language
#include <stdio.h>
int main()
{
int j,i,n,factor;
printf("Enter the last number of the sequence:");
scanf("%d",&j);
for(n=2;n<=j;n++)
{
for(i=1;i<n;i++)
{
if(n%i==0)
{
factor=i;/*finds the largest proper divisor*/
}
}
if(factor>1)
{
printf ("%d, ",n);
}
}
return 0;
}
Share this Profile
Also have a look at
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.