Skip to content

MyUstaadG

Learn to Serve

  • Computer Science
    • Software
    • Computer Tips
    • Coding
      • Conditional Structures Exercises
      • Loops Exercises
      • Arrays Exercises
      • Python Exercises
    • Microsoft Office
      • MS Excel
      • MS Word
  • Videos
    • Funny Videos
    • Health and Fitness Videos
    • PUBG Videos
    • Technology Videos
  • News
  • Funny
  • Memes
  • Playwright Tutorials
  • Tutorials
  • Toggle search form

Tag: Practical C++ Programming

Write a program that initializes values in two tables A and B. It adds tables A and B and stores result into table C. It also displays the values of three tables in tabular form on the screen.

Posted on October 26, 2021 By myustaadg.com

Write a program that initializes values in two tables A and B. It adds tables A and B and stores result into table C. It also displays the values of three tables in tabular form on the screen. Note: The addition of matrices A and B is obtained by adding the elements of A to…

Read More “Write a program that initializes values in two tables A and B. It adds tables A and B and stores result into table C. It also displays the values of three tables in tabular form on the screen.” »

Arrays Exercises, Programming Exercises

Develop a program that inputs ‘n’ values in a list and prints the product of the value and the position at which it resides in the list.

Posted on October 26, 2021 By myustaadg.com

Develop a program that inputs ‘n’ values in a list and prints the product of the value and the position at which it resides in the list, i.e. product L(1)*1, product L(2)*2, and so on. For example:Position 1 2 3 4 5Value 5 3 7 1 4Output 5 6 21 4 20Note: The list does…

Read More “Develop a program that inputs ‘n’ values in a list and prints the product of the value and the position at which it resides in the list.” »

Arrays Exercises, Programming Exercises

Write a program that inputs ages of different persons in an array and counts the number of persons that have ages between 65 and 80.

Posted on October 26, 2021 By myustaadg.com

Write a program that inputs ages of different persons in an array and counts the number of persons that have ages between 65 and 80. So let’s Write Code: Let’s build logic First: Algorithm for code: Start Declare an array capible of holding 5 integer values. Input Integers in Array. Store Integer into the array….

Read More “Write a program that inputs ages of different persons in an array and counts the number of persons that have ages between 65 and 80.” »

Arrays Exercises, Programming Exercises

Copyright © 2022 MyUstaadG.

Powered by PressBook Blog WordPress theme