C++ in Urdu

(0 review)
Rs.2,000
View cart
C++ in Urdu

C++ in urdu tutorial is my one of my most comprehensive and detailed urdu video tutorial. Here I have tried my level best to provide as much explanation along with example as I could. Till today, I have made more than 37 complete urdu video tutorials but C++ in urdu can be considered as my masterpiece.

I have designed this course keeping in view 2 types of users/students. Firstly those students who don’t have any prior programming experience and don’t know what is program and programming language but they are willing to put their first step in the world of programming. As this urdu video course is for learning c++ in urdu starts from scratch describing every thing about the program, programming language, syntax and such other things.

Secondly, those users who have been using C++ for some time but are not comfortable with it due to lack of practice or absence of programming concepts. It does not matter at all what type of user you are, if you want to learn C++, then its for you.

Course Features

  • Lectures 136
  • Quizzes 1
  • Duration 10 hours
  • Skill level All level
  • Language Urdu
  • Students 0
  • Assessments Self
  • Chapter 1

    • Lecture 1.1 1. Welcome 2m
    • Lecture 1.2 2. Pre-Requisites Locked 2m
  • Chapter 2

    • Lecture 2.1 1. What is Programming Locked 9m
    • Lecture 2.2 2. Tools we need to Learn C++ Locked 0m
    • Lecture 2.3 3. Downloading Visual C++ 2010 Locked 3m
    • Lecture 2.4 . Visual C++ Interface Locked 3m
    • Lecture 2.5 5. Setting First Program in Visual C++ Locked 6m
    • Lecture 2.6 6. Understanding First Program (Part 1) Locked 8m
    • Lecture 2.7 7. Understanding First Program (Part 2) Locked 4m
    • Lecture 2.8 8. White Space and New Line Locked 6m
  • Chapter 3

    • Lecture 3.1 1. What is Memory and Variables 9m
    • Lecture 3.2 2. Data Types and Integer Data Type Locked 10m
    • Lecture 3.3 3. Float and Character Data Type Locked 3m
    • Lecture 3.4 4. Variable Declaration Rules Locked 6m
    • Lecture 3.5 5. Variable initialization and Assignment statement Locked 2m
    • Lecture 3.6 6. Assignment Operator Program Locked 3m
    • Lecture 3.7 7. What is Compound Assignment Statement Locked 2m
    • Lecture 3.8 . What are Constants Locked 0m
    • Lecture 3.9 9. Difference Between Variables and Constants 3m
    • Lecture 3.10 10. Increment and Decrements Operators Locked 0m
    • Lecture 3.11 11. Binary and Arithmetic Operators Locked 4m
    • Lecture 3.12 12. Operators precedence Locked 5m
  • Chapter 4

    • Lecture 4.1 1. Input and Out Concepts Locked 3m
    • Lecture 4.2 2. Standard Cout Program Locked 3m
    • Lecture 4.3 3. Escape Sequence Locked 3m
    • Lecture 4.4 4. Backspace Escape Sequence Locked 3m
    • Lecture 4.5 5. New line Escape Sequence Locked 2m
    • Lecture 4.6 6. Carriage Return Escape Sequence Locked 1m
    • Lecture 4.7 7. Single and Double Quote Escape Sequence Locked 2m
    • Lecture 4.8 8. Standard Input in C++ Locked 3m
  • Chapter 5

    • Lecture 5.1 1. What is Conditional Structure Locked 7m
    • Lecture 5.2 2. Understanding If Statement Locked 3m
    • Lecture 5.3 3. Using Equality Operator With If Statement Locked 3m
    • Lecture 5.4 4. Using Multiple If Statements Locked 6m
    • Lecture 5.5 5. Using Multiple Statements in If Statement Locked 3m
    • Lecture 5.6 6. What is If Else Statement Locked 2m
    • Lecture 5.7 7. Using If Else Statement for Determining Even or Odd Numbers Locked 3m
    • Lecture 5.8 8. Calculating Bonus and New Salary using If Else Statement Locked 4m
    • Lecture 5.9 9. What is If Else If Statement Locked 2m
    • Lecture 5.10 10. Determining Grade Using If Else If Statement Locked 3m
    • Lecture 5.11 11. Using Compound Logical Operators Locked 2m
    • Lecture 5.12 12. Determining Highest Value Using AND Operator Locked 4m
    • Lecture 5.13 13. What is OR Logical Operator Locked 2m
    • Lecture 5.14 14. Using OR Logical Operator to Determine the Vowels Locked 3m
    • Lecture 5.15 15. What is NOT Operator Locked 1m
    • Lecture 5.16 16. Using NOT Operator To Determine Even or Odd Numbers Locked 2m
  • Chapter 6

    • Lecture 6.1 1. What are Loops Locked 3m
    • Lecture 6.2 2. What is While Loop Locked 2m
    • Lecture 6.3 3. Printing 1 to 10 Counting On Screen Locked 3m
    • Lecture 6.4 4. Printing a Statement for Multiple Times Locked 3m
    • Lecture 6.5 5. Printing Values and Totaling With While Loop Locked 4m
    • Lecture 6.6 6. Taking Square of Multiple Values Using While Loop Locked 3m
    • Lecture 6.7 7. Generating Table of Any Number Using While Loop Locked 4m
    • Lecture 6.8 8. Printing Even or Odd Numbers Between a Range Using While Loop Locked 6m
    • Lecture 6.9 9. Terminating a Loop on A Specific Character or Number Locked 4m
    • Lecture 6.10 10. Avoiding Infinite Loop Locked 3m
    • Lecture 6.11 11. What is Do While Loop Locked 3m
    • Lecture 6.12 12. How Does While Loops Work Locked 2m
    • Lecture 6.13 13. What is For Loop Locked 4m
    • Lecture 6.14 14. How Does For Loop Work Locked 2m
    • Lecture 6.15 15. Finding Product of Odd Numbers Between A Range Using For Loop Locked 5m
    • Lecture 6.16 16. Using Continue Statement in Loop Locked 2m
    • Lecture 6.17 17. A Program With For Loop Using Continue Statement Locked 3m
    • Lecture 6.18 18. Using Break Statement in Loop Locked 2m
  • Chapter 7

    • Lecture 7.1 1. What are Arrays 5m
    • Lecture 7.2 2. Array Initialization Locked 4m
    • Lecture 7.3 3. Simple Program for Storing and Fetching Values From Arrays Locked 3m
    • Lecture 7.4 4. Using Loops With Arrays Locked 7m
    • Lecture 7.5 5. Finding Maximum Value Using Loops In Array Locked 10m
    • Lecture 7.6 6. Finding Minimum Value Using Loops In Array Locked 4m
    • Lecture 7.7 7. Reversing An Array Using Loop Locked 6m
    • Lecture 7.8 8. What is Sequential Search Locked 2m
    • Lecture 7.9 9. Finding a Value in Array Using Sequential Search Locked 8m
    • Lecture 7.10 10. What is Binary search 4m
    • Lecture 7.11 11. Finding a Value in Array Using Binary Search Locked 11m
    • Lecture 7.12 12. Visual Elaboration of Binary Search Locked 7m
    • Lecture 7.13 13. What is Selection Sort Locked 4m
    • Lecture 7.14 14. Sequential Sorting Locked 9m
    • Lecture 7.15 15. Visual Elaboration of Sequential Sorting Array Locked 8m
    • Lecture 7.16 16. What is 2D Array Locked 3m
    • Lecture 7.17 17. A Program to Store and Retrieve Values From 2D Array Locked 5m
  • Chapter 8

    • Lecture 8.1 1. What are Structures 2m
    • Lecture 8.2 2. How Structures Are Declared Locked 4m
    • Lecture 8.3 3. Defining Structural Variables Locked 6m
    • Lecture 8.4 4. Cin and Cout Using Structure Locked 5m
    • Lecture 8.5 5. Comparing Values of Two Structures Locked 6m
    • Lecture 8.6 6. Initializing Structure Variables Locked 3m
    • Lecture 8.7 7. Assigning One Structure Variable to Other Locked 5m
    • Lecture 8.8 8. Using Array As Structure Member Locked 9m
  • Chapter 9

    • Lecture 9.1 1. What are Functions 6m
    • Lecture 9.2 2. User Defined Functions Declaration Locked 7m
    • Lecture 9.3 3. Declaring User Defined Functions 3m
    • Lecture 9.4 4. Defining User Defined Functions Locked 8m
    • Lecture 9.5 5. Using Parameters in Functions Locked 2m
    • Lecture 9.6 6. Add function using Parameters Locked 10m
    • Lecture 9.7 7. Parameters Pass by Value Locked 8m
    • Lecture 9.8 8. Parameters Pass by Reference Locked 4m
    • Lecture 9.9 9. Finding Higher Number Using Function Locked 3m
    • Lecture 9.10 10. What are Local Variables Locked 6m
    • Lecture 9.11 11. What are Global Variables Locked 5m
    • Lecture 9.12 12. Life of Local Variable Locked 5m
    • Lecture 9.13 13. Life of Global Variable Locked 4m
    • Lecture 9.14 14. Static Variable Locked 3m
    • Lecture 9.15 15. Default Parameters Locked 5m
    • Lecture 9.16 16. Function Overloading Locked 7m
  • Chapter 10

    • Lecture 10.1 1.What are Built In Functions Locked 1m
    • Lecture 10.2 2. Getch Function Locked 3m
    • Lecture 10.3 3. Getche and kbhit function Locked 4m
    • Lecture 10.4 4. Absolute and Float Locked 4m
    • Lecture 10.5 5. Ceil and Floor Functions Locked 2m
    • Lecture 10.6 6. Sin Tand and Log Functions Locked 2m
    • Lecture 10.7 7. Raise To Power Function Locked 3m
  • Chapter 11

    • Lecture 11.1 1. Memory Address Concept 5m
    • Lecture 11.2 2. Displaying The Address of A Variable Locked 2m
    • Lecture 11.3 3. What are Pointers and Pointers Declaration Locked 4m
    • Lecture 11.4 4. Pointers Declaration and Initialization Locked 3m
    • Lecture 11.5 5. What is Void Type Pointer Locked 1m
    • Lecture 11.6 6. Using Void Type Pointers Locked 4m
    • Lecture 11.7 7. What is De-Reference Operator Locked 3m
    • Lecture 11.8 8. Using De-Reference Operator Locked 1m
    • Lecture 11.9 9. A Program With De-referennce Operator Locked 6m
    • Lecture 11.10 10. Arithmatic Functions On Pointers and Array Locked 5m
    • Lecture 11.11 11. Using Pointers With Arrays Locked 4m
    • Lecture 11.12 12. Memory Addresses Of Array Locked 1m
  • Chapter 12

    • Lecture 12.1 1. What is String Locked 4m
    • Lecture 12.2 2. String Declaration Locked 4m
    • Lecture 12.3 3. String input Locked 3m
    • Lecture 12.4 4. String Concatenation Function Locked 2m
    • Lecture 12.5 5. String N Concatenation Function Locked 3m
    • Lecture 12.6 6. Strchr Function Locked 4m
    • Lecture 12.7 7. Strcopy Function Locked 5m
    • Lecture 12.8 8. Strncopy Function Locked 2m
    • Lecture 12.9 9. Strlen Function Locked 4m
    • Lecture 12.10 10.Strrev Function Locked 3m
    • Lecture 12.11 11. Strlwr Function Locked 3m
    • Lecture 12.12 12. Strupr function Locked 2m
Awais Kamran has been in the field of IT and Teaching for last 10 Years. Having a dual master degree in Computer Science and Commerce, he has been serving in the top educational institute of Pakistan "Punjab Group Of Colleges". He is the pioneer of Urdu Video Tutorials in Urdu language. He has completed more than 50 Urdu Video Tutorials in last 7 years. Beside coaching, he is an expert Web Developer and Search Engine Optimizer. He belongs to the city of Saints (Multan).

Reviews

Average Rating

0
0 rating

Detailed Rating

5 stars
0
4 stars
0
3 stars
0
2 stars
0
1 stars
0
Rs.2,000
View cart