/> 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 class via Zoom
Student's Home
Tutor's Home
Years of Experience in PL/SQL Classes
1
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Years of Experience in C Language Classes
1
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Years of Experience in Class 6 Tuition
1
Board
CBSE, Cambridge Assessment International Education (CAIE), International Baccalaureate, State, ICSE
Subjects taught
Computers, Science, Chemistry, Computer Science, Mathematics, Physics
Taught in School or College
No
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Years of Experience in Class 7 Tuition
1
Board
CBSE, Cambridge Assessment International Education (CAIE), International Baccalaureate, State, ICSE
Subjects taught
Chemistry, Computer Science, Computers, Mathematics, Physics, Science
Taught in School or College
No
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Years of Experience in Class 8 Tuition
1
Board
CBSE, Cambridge Assessment International Education (CAIE), International Baccalaureate, State, ICSE
Subjects taught
Computers, Mathematics, Chemistry, Computer Science, Science, Physics
Taught in School or College
No
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Board
ICSE, CBSE, State
Subjects taught
Mathematics, Chemistry, Computer Application, Information and Comunication Technology, Computer Practices, Physics, Science, Technical Drawing Applications
Taught in School or College
No
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Board
ICSE, CBSE, State
Subjects taught
Chemistry, Computer Application, Technical Drawing Applications, Physics, Commercial Applications, Science, Information and Comunication Technology, Mathematics, Elements of business, Computer Practices, EVS, Commercial Studies
Taught in School or College
No
Class Location
Online class via Zoom
Student's Home
Tutor's Home
BSc Computer Science Subjects
Software Engineering, Computer Systems Architecture, Software Testing, Data Structures, Programming Fundamentals
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 class via Zoom
Student's Home
Tutor's Home
Board
CBSE, State
Subjects taught
Computer Science, Business Studies
Taught in School or College
No
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Years of Experience in Engineering Diploma Tuition
1
Information Technology Engineering Diploma Subject
Management Information Systems, Object Oriented Programming, Software Testing, Software Engineering, Data Structure, Relational Data Base Management Systems
Engineering Diploma Branch
Computer Engineering Diploma, Information Technology Engineering Diploma
Computer Engineering Diploma Subject
Software Engineering, Relational Database Management Systems, Object Oriented Programming, Applied Mathematics, Data Structure Using 'C', Basics of C Programming, Software Testing
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
Ask a Question
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
Ask a Question
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
Ask a Question
#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
Ask a Question
#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
Ask a Question
#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;
}
Ask a Question
Also have a look at
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Years of Experience in PL/SQL Classes
1
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Years of Experience in C Language Classes
1
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Years of Experience in Class 6 Tuition
1
Board
CBSE, Cambridge Assessment International Education (CAIE), International Baccalaureate, State, ICSE
Subjects taught
Computers, Science, Chemistry, Computer Science, Mathematics, Physics
Taught in School or College
No
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Years of Experience in Class 7 Tuition
1
Board
CBSE, Cambridge Assessment International Education (CAIE), International Baccalaureate, State, ICSE
Subjects taught
Chemistry, Computer Science, Computers, Mathematics, Physics, Science
Taught in School or College
No
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Years of Experience in Class 8 Tuition
1
Board
CBSE, Cambridge Assessment International Education (CAIE), International Baccalaureate, State, ICSE
Subjects taught
Computers, Mathematics, Chemistry, Computer Science, Science, Physics
Taught in School or College
No
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Board
ICSE, CBSE, State
Subjects taught
Mathematics, Chemistry, Computer Application, Information and Comunication Technology, Computer Practices, Physics, Science, Technical Drawing Applications
Taught in School or College
No
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Board
ICSE, CBSE, State
Subjects taught
Chemistry, Computer Application, Technical Drawing Applications, Physics, Commercial Applications, Science, Information and Comunication Technology, Mathematics, Elements of business, Computer Practices, EVS, Commercial Studies
Taught in School or College
No
Class Location
Online class via Zoom
Student's Home
Tutor's Home
BSc Computer Science Subjects
Software Engineering, Computer Systems Architecture, Software Testing, Data Structures, Programming Fundamentals
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 class via Zoom
Student's Home
Tutor's Home
Board
CBSE, State
Subjects taught
Computer Science, Business Studies
Taught in School or College
No
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Years of Experience in Engineering Diploma Tuition
1
Information Technology Engineering Diploma Subject
Management Information Systems, Object Oriented Programming, Software Testing, Software Engineering, Data Structure, Relational Data Base Management Systems
Engineering Diploma Branch
Computer Engineering Diploma, Information Technology Engineering Diploma
Computer Engineering Diploma Subject
Software Engineering, Relational Database Management Systems, Object Oriented Programming, Applied Mathematics, Data Structure Using 'C', Basics of C Programming, Software Testing
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
Ask a Question
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
Ask a Question
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
Ask a Question
#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
Ask a Question
#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
Ask a Question
#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;
}
Ask a Question
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.