Thottakkad, Chirayinkeezhu, India - 695605.
Details verified of Kalyani S.✕
Identity
Education
Know how UrbanPro verifies Tutor details
Identity is verified based on matching the details uploaded by the Tutor with government databases.
Malayalam Mother Tongue (Native)
English Proficient
Tamil Basic
Hindi Basic
Kerala university Pursuing
Bvoc software development
Thottakkad, Chirayinkeezhu, India - 695605
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
Fees
₹ 200.0 per hour
Board
CBSE, State
State boards taught
Delhi State Board
CBSE Subjects taught
EVS, Science, Mathematics, Computers, Malayalam, English
Taught in School or College
No
State Syllabus Subjects taught
EVS, Science, Computer Science, English, Malayalam, Mathematics
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Board
CBSE
CBSE Subjects taught
English, Computer Science
Taught in School or College
No
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Board
CBSE, State
State boards taught
Delhi State Board
CBSE Subjects taught
Computer Science
Taught in School or College
No
State Syllabus Subjects taught
Computer Science, English
1. Which school boards of Class 1-5 do you teach for?
CBSE and State
2. Have you ever taught in any School or College?
No
3. Which classes do you teach?
I teach Class 11 Tuition, Class 12 Tuition and Class I-V Tuition Classes.
4. Do you provide a demo class?
Yes, I provide a free demo class.
5. How many years of experience do you have?
I have been teaching for less than a year.
Answered on 10/04/2021 Learn Tuition
Without using a third variable:
#include<stdio.h>
int main()
{
int a=10, b=20;
printf("Before swap a=%d b=%d",a,b);
a=a+b;//a=30 (10+20)
b=a-b;//b=10 (30-20)
a=a-b;//a=20 (30-10)
printf("\nAfter swap a=%d b=%d",a,b);
return 0;
}
With and help of pointers:
#include <stdio.h>
int main()
{
int var1, var2, *num1, *num2, temp;
printf("Enter the value of var1 and var2n");
scanf("%d%d", &var1, &var2);
printf("Before Swappingnvar1 = %dnvar2 = %dn", var1, var2);
num1 = &var1;
num2 = &var2;
temp = *num2;
*num2 = *num1;
*num1 = temp;
printf("After Swappingnvar1 = %dnvar2 = %dn", var1, var2);
return 0;
}
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Fees
₹ 200.0 per hour
Board
CBSE, State
State boards taught
Delhi State Board
CBSE Subjects taught
EVS, Science, Mathematics, Computers, Malayalam, English
Taught in School or College
No
State Syllabus Subjects taught
EVS, Science, Computer Science, English, Malayalam, Mathematics
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Board
CBSE
CBSE Subjects taught
English, Computer Science
Taught in School or College
No
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Board
CBSE, State
State boards taught
Delhi State Board
CBSE Subjects taught
Computer Science
Taught in School or College
No
State Syllabus Subjects taught
Computer Science, English
Answered on 10/04/2021 Learn Tuition
Without using a third variable:
#include<stdio.h>
int main()
{
int a=10, b=20;
printf("Before swap a=%d b=%d",a,b);
a=a+b;//a=30 (10+20)
b=a-b;//b=10 (30-20)
a=a-b;//a=20 (30-10)
printf("\nAfter swap a=%d b=%d",a,b);
return 0;
}
With and help of pointers:
#include <stdio.h>
int main()
{
int var1, var2, *num1, *num2, temp;
printf("Enter the value of var1 and var2n");
scanf("%d%d", &var1, &var2);
printf("Before Swappingnvar1 = %dnvar2 = %dn", var1, var2);
num1 = &var1;
num2 = &var2;
temp = *num2;
*num2 = *num1;
*num1 = temp;
printf("After Swappingnvar1 = %dnvar2 = %dn", var1, var2);
return 0;
}
Post your Learning Need
Let us shortlist and give the best tutors and institutes.
or
Send Enquiry to Kalyani S.
Let Kalyani S. know you are interested in their class
Reply to 's review
Enter your reply*
Your reply has been successfully submitted.