Sunkadakatte, Bangalore, India - 560082.
Details verified of Sharath Kumar Sadar✕
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
CBSE, ICSE, State, IGCSE, International Baccalaureate
IB Subjects taught
Science, Mathematics
CBSE Subjects taught
Computers
ICSE Subjects taught
Mathematics, Computer Science, Chemistry, Physics
IGCSE Subjects taught
Science, Mathematics
Taught in School or College
No
State Syllabus Subjects taught
Mathematics, Science
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
CBSE, ICSE, State, IGCSE, International Baccalaureate
IB Subjects taught
Science, Mathematics
CBSE Subjects taught
Computers
ICSE Subjects taught
Mathematics, Computer Science, Chemistry, Physics
IGCSE Subjects taught
Science, Mathematics
Taught in School or College
No
State Syllabus Subjects taught
Mathematics, Science
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
CBSE, ICSE, State, IGCSE, International Baccalaureate
IB Subjects taught
Science, Mathematics
CBSE Subjects taught
Computers
ICSE Subjects taught
Mathematics, Computer Science, Chemistry, Physics
IGCSE Subjects taught
Science, Mathematics
Taught in School or College
No
State Syllabus Subjects taught
Mathematics, Science
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Board
State, ICSE, CBSE
CBSE Subjects taught
Science, Information and Comunication Technology, Computer Practices, Mathematics
ICSE Subjects taught
Chemistry, Technical Drawing Applications, Mathematics, Physics, Computer Application
Taught in School or College
No
State Syllabus Subjects taught
Mathematics, Science
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Board
State, ICSE, CBSE
CBSE Subjects taught
Science, Information and Comunication Technology, Computer Practices, Elements of business, Mathematics
ICSE Subjects taught
Chemistry, Commercial Studies, Technical Drawing Applications, Commercial Applications, Mathematics, Physics, Computer Application
Taught in School or College
No
State Syllabus Subjects taught
Mathematics, EVS, Science
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
BSc Computer Science Subjects
Programming Fundamentals, Computer Systems Architecture, Software Testing, Data Structures, Software Engineering
Type of class
Crash Course
Class strength catered to
One on one/ Private Tutions, Group Classes
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
State, CBSE
CBSE Subjects taught
Computer Science, Business Studies
Taught in School or College
No
State Syllabus Subjects taught
Computer Science
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
Relational Data Base Management Systems, Management Information Systems, Software Testing, Object Oriented Programming, Data Structure, Software Engineering
Engineering Diploma Branch
Computer Engineering Diploma, Information Technology Engineering Diploma
Computer Engineering Diploma Subject
Applied Mathematics, Software Testing, Data Structure Using 'C', Software Engineering, Object Oriented Programming, Basics of C Programming, Relational Database Management Systems
Type of class
Crash Course
Class strength catered to
One on one/ Private Tutions, Group Classes
Taught in School or College
No
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
CBSE, ICSE, State, IGCSE, International Baccalaureate
IB Subjects taught
Science, Mathematics
CBSE Subjects taught
Computers
ICSE Subjects taught
Mathematics, Computer Science, Chemistry, Physics
IGCSE Subjects taught
Science, Mathematics
Taught in School or College
No
State Syllabus Subjects taught
Mathematics, Science
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
CBSE, ICSE, State, IGCSE, International Baccalaureate
IB Subjects taught
Science, Mathematics
CBSE Subjects taught
Computers
ICSE Subjects taught
Mathematics, Computer Science, Chemistry, Physics
IGCSE Subjects taught
Science, Mathematics
Taught in School or College
No
State Syllabus Subjects taught
Mathematics, Science
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
CBSE, ICSE, State, IGCSE, International Baccalaureate
IB Subjects taught
Science, Mathematics
CBSE Subjects taught
Computers
ICSE Subjects taught
Mathematics, Computer Science, Chemistry, Physics
IGCSE Subjects taught
Science, Mathematics
Taught in School or College
No
State Syllabus Subjects taught
Mathematics, Science
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Board
State, ICSE, CBSE
CBSE Subjects taught
Science, Information and Comunication Technology, Computer Practices, Mathematics
ICSE Subjects taught
Chemistry, Technical Drawing Applications, Mathematics, Physics, Computer Application
Taught in School or College
No
State Syllabus Subjects taught
Mathematics, Science
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Board
State, ICSE, CBSE
CBSE Subjects taught
Science, Information and Comunication Technology, Computer Practices, Elements of business, Mathematics
ICSE Subjects taught
Chemistry, Commercial Studies, Technical Drawing Applications, Commercial Applications, Mathematics, Physics, Computer Application
Taught in School or College
No
State Syllabus Subjects taught
Mathematics, EVS, Science
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
BSc Computer Science Subjects
Programming Fundamentals, Computer Systems Architecture, Software Testing, Data Structures, Software Engineering
Type of class
Crash Course
Class strength catered to
One on one/ Private Tutions, Group Classes
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
State, CBSE
CBSE Subjects taught
Computer Science, Business Studies
Taught in School or College
No
State Syllabus Subjects taught
Computer Science
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
Relational Data Base Management Systems, Management Information Systems, Software Testing, Object Oriented Programming, Data Structure, Software Engineering
Engineering Diploma Branch
Computer Engineering Diploma, Information Technology Engineering Diploma
Computer Engineering Diploma Subject
Applied Mathematics, Software Testing, Data Structure Using 'C', Software Engineering, Object Oriented Programming, Basics of C Programming, Relational Database Management Systems
Type of class
Crash Course
Class strength catered to
One on one/ Private Tutions, Group Classes
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;
}
Post your Learning Need
Let us shortlist and give the best tutors and institutes.
or
Send Enquiry to Sharath Kumar Sadar
Let Sharath Kumar Sadar know you are interested in their class
Reply to 's review
Enter your reply*
Your reply has been successfully submitted.