Kundalahalli, Bangalore, India - 560066.
Details verified of Sana M.✕
Identity
Education
Know how UrbanPro verifies Tutor details
Identity is verified based on matching the details uploaded by the Tutor with government databases.
Urdu
Hindi
English
UPTU 2012
Bachelor of Technology (B.Tech.)
Kundalahalli, Bangalore, India - 560066
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 Painting Classes
12
Age groups catered to
10 yrs to 15 yrs, 16 yrs to 25 yrs, Above 25 yrs, Below 10 yrs
Teaches
Oil Painting, Glass Painting, Warli Painting, Water color Painting, Fabric Painting, Acrylic Painting, Tanjore Painting, Canvas Painting, Madhubani Painting
Age group catered to
22- 50 years old, 2- 5 years-old, 5- 13 years-old, Above 50 years, 14- 21 years old
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Drawing Classes
10
Age groups catered to
10 yrs to 15 yrs, 16 yrs to 25 yrs, Above 25 yrs, Below 10 yrs
Teaches
Cartoon Drawing, Anime Drawing, Portrait Drawing
Age group catered to
22- 50 years old, 5- 13 years-old, Above 50 years, 14- 21 years old
Teaching Experience in detail in Drawing Classes
With close to 12 years of experience in teaching Drawing and Painting to kids and adults, I have deviced my own ways to make learning a fun filled activity. Please do watch my YouTube channel by the name "Smart ArtClass" where I regularly post painting and DIY tutorials. This might help you give an insight to my style of explaining and indulging in arts while igniting your interest at the same time.
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Coding for Kids
10
Teaching Experience in detail in Coding for Kids
I am an IT professional working as a software developer for an MNC. With 10 years of professional experience in coding, I do have abundant experience in teaching coding to kids
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Class 12 Tuition
8
NIOS Subjects taught
Computer Science
Board
International Baccalaureate, State, CBSE, ISC/ICSE, NIOS, IGCSE
IB Subjects taught
Computer Science
CBSE Subjects taught
Computer Science
IGCSE Subjects taught
Computer Science
Taught in School or College
No
Teaching Experience in detail in Class 12 Tuition
All the syllabus topics will be covered along with suggested practical coding practice problems. Students will be provided support with hands on coding and understanding all concepts in detail and with demo sessions Additional practice sessions and doubt clearing sessions also available
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Flower Making Classes
10
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Class 11 Tuition
8
NIOS Subjects taught
Computer Science
Board
International Baccalaureate, State, CBSE, ISC/ICSE, NIOS, IGCSE
CBSE Subjects taught
Computer Science
Taught in School or College
No
Teaching Experience in detail in Class 11 Tuition
Unit I: Computer Systems and Organisation ● Basic computer organisation: description of a computer system and mobile system, CPU, memory, hard disk, I/O, battery. ● Types of software: Application software, System software and Utility software. ● Memory Units: bit, byte, MB, GB, TB, and PB. ● Boolean logic: NOT, AND, OR, NAND, NOR, XOR, NOT, truth tables and De Morgan’s laws, Logic circuits ● Number System: numbers in base 2, 8, 16 and binary addition. ● Encoding Schemes: ASCII, UTF8, UTF32, ISCII and Unicode. 2 ● Concept of Compiler and Interpreter ● Operating System (OS) - need for an operating system, brief introduction to functions of OS, user interface ● Concept of cloud computing and cloud services (SaaS,IaaS,PaaS), cloud (public/private), Blockchain technology Unit II: Computational Thinking and Programming - 1 Introduction to Problem solving: Problem solving cycle - Analysing a problem, designing algorithms and representation of algorithm using flowchart and pseudo-code. Decomposition - concept, need for decomposing a problem, examples of problem solving using decomposition. Familiarization with the basics of Python programming: a simple “hello world" program, the process of writing a program (Interactive & Script mode), running it and print statements; simple data-types: integer, float and string. ● Features of Python, Python Character Set, Token & Identifiers, Keywords, Literals, Delimiters, Operators. ● Comments: (Single line & Multiline/ Continuation statements), Clarity & Simplification of expression ● Introduce the notion of a variable and methods to manipulate it (concept of L-value and R-value even if not taught explicitly). ● Knowledge of data types and operators: accepting input from the console, assignment statement, expressions, operators and their precedence. ● Operators & types: Binary operators-Arithmetic, Relational Operators, Logical Operators, Augmented Assignment Operators. ● Execution of a program, errors- syntax error, run-time error and logical error. ● Conditional statements: if, if-else, if-elif-else; simple programs: e.g.: absolute value, sort 3 numbers and divisibility of a number. ● Notion of iterative computation and control flow: for(range(),len()), while, using flowcharts, suggested programs: calculation of simple and compound interests, finding the factorial of a positive number etc. ● Strings: Traversal, operations – concatenation, repetition, membership; functions/methods–len(), capitalize(), title(), upper(), lower(), count(), find(), index(), isalnum(), islower(), isupper(), isspace(), isalpha(), isdigit(), split(), partition(), strip(), lstrip(), rstrip(), replace(); String slicing. ● Lists: Definition, Creation of a list, Traversal of a list. Operations on a list - concatenation, repetition, membership; functions/methods–len(), list(), 3 append(), extend(), insert(), count(), index(), remove(), pop(), reverse(), sort(), min(), max(), sum(); Lists Slicing; Nested lists; finding the maximum, minimum, mean of numeric values stored in a list; linear search on list of numbers and counting the frequency of elements in a list. ● Tuples: Definition, Creation of a Tuple, Traversal of a tuple. Operations on a tuple - concatenation, repetition, membership; functions/methods – len(), tuple(), count(), index(), sorted(), min(), max(), sum(); Nested tuple; Tuple slicing; finding the minimum, maximum, mean of values stored in a tuple; linear search on a tuple of numbers, counting the frequency of elements in a tuple. ● Dictionary: Definition, Creation, Accessing elements of a dictionary, add an item, modify an item in a dictionary; Traversal, functions/methods – len(), dict(), keys(), values(), items(), get(), update(), del(), del, clear(), fromkeys(), copy(), pop(), popitem(), setdefault(), max(), min(), count(), sorted() copy(); Suggested programs : count the number of times a character appears in a given string using a dictionary, create a dictionary with names of employees, their salary and access them. ● Sorting algorithm: bubble and insertion sort; count the number of operations while sorting. ● Introduction to Python modules: Importing math module (pi, e, sqrt, ceil, floor, pow, fabs, sin, cos, tan); random module (random, randint, randrange), statistics module (mean, median, mode). Unit III: Society, Law and Ethics ● Cyber safety: safely browsing the web, identity protection, confidentiality, social networks, cyber trolls and bullying. ● Appropriate usage of social networks: spread of rumours, and common social networking sites (Twitter, LinkedIn, and Facebook) and specific usage rules. ● Safely accessing web sites: adware, malware, viruses, trojans ● Safely communicating data: secure connections, eavesdropping, phishing and identity verification. ● Intellectual property rights, plagiarism, digital rights management, and licensing (Creative Commons, GPL and Apache), open source, open data, privacy. ● Privacy laws, fraud; cyber-crime- phishing, illegal downloads, child pornography, scams; cyber forensics, IT Act, 2000. ● Technology and society: ● understanding of societal issues and cultural changes induced by technology. ● E-waste management: proper disposal of used electronic gadgets. 4 ● Identity theft, unique ids and biometrics. ● Gender and disability issues while teaching and using computers. All the above topics will be covered along with suggested practical coding practice problems. Students will be provided support with hands on coding and understanding all concepts in detail and with demo Additional demo sessions and doubt clearing sessions also available
1. Which classes do you teach?
I teach Art and Craft, Class 11 Tuition, Class 12 Tuition, Coding for Kids, Drawing, Flower Making and Painting 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 12 years.
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Painting Classes
12
Age groups catered to
10 yrs to 15 yrs, 16 yrs to 25 yrs, Above 25 yrs, Below 10 yrs
Teaches
Oil Painting, Glass Painting, Warli Painting, Water color Painting, Fabric Painting, Acrylic Painting, Tanjore Painting, Canvas Painting, Madhubani Painting
Age group catered to
22- 50 years old, 2- 5 years-old, 5- 13 years-old, Above 50 years, 14- 21 years old
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Drawing Classes
10
Age groups catered to
10 yrs to 15 yrs, 16 yrs to 25 yrs, Above 25 yrs, Below 10 yrs
Teaches
Cartoon Drawing, Anime Drawing, Portrait Drawing
Age group catered to
22- 50 years old, 5- 13 years-old, Above 50 years, 14- 21 years old
Teaching Experience in detail in Drawing Classes
With close to 12 years of experience in teaching Drawing and Painting to kids and adults, I have deviced my own ways to make learning a fun filled activity. Please do watch my YouTube channel by the name "Smart ArtClass" where I regularly post painting and DIY tutorials. This might help you give an insight to my style of explaining and indulging in arts while igniting your interest at the same time.
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Coding for Kids
10
Teaching Experience in detail in Coding for Kids
I am an IT professional working as a software developer for an MNC. With 10 years of professional experience in coding, I do have abundant experience in teaching coding to kids
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Class 12 Tuition
8
NIOS Subjects taught
Computer Science
Board
International Baccalaureate, State, CBSE, ISC/ICSE, NIOS, IGCSE
IB Subjects taught
Computer Science
CBSE Subjects taught
Computer Science
IGCSE Subjects taught
Computer Science
Taught in School or College
No
Teaching Experience in detail in Class 12 Tuition
All the syllabus topics will be covered along with suggested practical coding practice problems. Students will be provided support with hands on coding and understanding all concepts in detail and with demo sessions Additional practice sessions and doubt clearing sessions also available
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Flower Making Classes
10
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Class 11 Tuition
8
NIOS Subjects taught
Computer Science
Board
International Baccalaureate, State, CBSE, ISC/ICSE, NIOS, IGCSE
CBSE Subjects taught
Computer Science
Taught in School or College
No
Teaching Experience in detail in Class 11 Tuition
Unit I: Computer Systems and Organisation ● Basic computer organisation: description of a computer system and mobile system, CPU, memory, hard disk, I/O, battery. ● Types of software: Application software, System software and Utility software. ● Memory Units: bit, byte, MB, GB, TB, and PB. ● Boolean logic: NOT, AND, OR, NAND, NOR, XOR, NOT, truth tables and De Morgan’s laws, Logic circuits ● Number System: numbers in base 2, 8, 16 and binary addition. ● Encoding Schemes: ASCII, UTF8, UTF32, ISCII and Unicode. 2 ● Concept of Compiler and Interpreter ● Operating System (OS) - need for an operating system, brief introduction to functions of OS, user interface ● Concept of cloud computing and cloud services (SaaS,IaaS,PaaS), cloud (public/private), Blockchain technology Unit II: Computational Thinking and Programming - 1 Introduction to Problem solving: Problem solving cycle - Analysing a problem, designing algorithms and representation of algorithm using flowchart and pseudo-code. Decomposition - concept, need for decomposing a problem, examples of problem solving using decomposition. Familiarization with the basics of Python programming: a simple “hello world" program, the process of writing a program (Interactive & Script mode), running it and print statements; simple data-types: integer, float and string. ● Features of Python, Python Character Set, Token & Identifiers, Keywords, Literals, Delimiters, Operators. ● Comments: (Single line & Multiline/ Continuation statements), Clarity & Simplification of expression ● Introduce the notion of a variable and methods to manipulate it (concept of L-value and R-value even if not taught explicitly). ● Knowledge of data types and operators: accepting input from the console, assignment statement, expressions, operators and their precedence. ● Operators & types: Binary operators-Arithmetic, Relational Operators, Logical Operators, Augmented Assignment Operators. ● Execution of a program, errors- syntax error, run-time error and logical error. ● Conditional statements: if, if-else, if-elif-else; simple programs: e.g.: absolute value, sort 3 numbers and divisibility of a number. ● Notion of iterative computation and control flow: for(range(),len()), while, using flowcharts, suggested programs: calculation of simple and compound interests, finding the factorial of a positive number etc. ● Strings: Traversal, operations – concatenation, repetition, membership; functions/methods–len(), capitalize(), title(), upper(), lower(), count(), find(), index(), isalnum(), islower(), isupper(), isspace(), isalpha(), isdigit(), split(), partition(), strip(), lstrip(), rstrip(), replace(); String slicing. ● Lists: Definition, Creation of a list, Traversal of a list. Operations on a list - concatenation, repetition, membership; functions/methods–len(), list(), 3 append(), extend(), insert(), count(), index(), remove(), pop(), reverse(), sort(), min(), max(), sum(); Lists Slicing; Nested lists; finding the maximum, minimum, mean of numeric values stored in a list; linear search on list of numbers and counting the frequency of elements in a list. ● Tuples: Definition, Creation of a Tuple, Traversal of a tuple. Operations on a tuple - concatenation, repetition, membership; functions/methods – len(), tuple(), count(), index(), sorted(), min(), max(), sum(); Nested tuple; Tuple slicing; finding the minimum, maximum, mean of values stored in a tuple; linear search on a tuple of numbers, counting the frequency of elements in a tuple. ● Dictionary: Definition, Creation, Accessing elements of a dictionary, add an item, modify an item in a dictionary; Traversal, functions/methods – len(), dict(), keys(), values(), items(), get(), update(), del(), del, clear(), fromkeys(), copy(), pop(), popitem(), setdefault(), max(), min(), count(), sorted() copy(); Suggested programs : count the number of times a character appears in a given string using a dictionary, create a dictionary with names of employees, their salary and access them. ● Sorting algorithm: bubble and insertion sort; count the number of operations while sorting. ● Introduction to Python modules: Importing math module (pi, e, sqrt, ceil, floor, pow, fabs, sin, cos, tan); random module (random, randint, randrange), statistics module (mean, median, mode). Unit III: Society, Law and Ethics ● Cyber safety: safely browsing the web, identity protection, confidentiality, social networks, cyber trolls and bullying. ● Appropriate usage of social networks: spread of rumours, and common social networking sites (Twitter, LinkedIn, and Facebook) and specific usage rules. ● Safely accessing web sites: adware, malware, viruses, trojans ● Safely communicating data: secure connections, eavesdropping, phishing and identity verification. ● Intellectual property rights, plagiarism, digital rights management, and licensing (Creative Commons, GPL and Apache), open source, open data, privacy. ● Privacy laws, fraud; cyber-crime- phishing, illegal downloads, child pornography, scams; cyber forensics, IT Act, 2000. ● Technology and society: ● understanding of societal issues and cultural changes induced by technology. ● E-waste management: proper disposal of used electronic gadgets. 4 ● Identity theft, unique ids and biometrics. ● Gender and disability issues while teaching and using computers. All the above topics will be covered along with suggested practical coding practice problems. Students will be provided support with hands on coding and understanding all concepts in detail and with demo Additional demo sessions and doubt clearing sessions also available
Post your Learning Need
Let us shortlist and give the best tutors and institutes.
or
Send Enquiry to Sana M.
Let Sana M. know you are interested in their class
Reply to 's review
Enter your reply*
Your reply has been successfully submitted.