Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 728 Bytes

README.md

File metadata and controls

24 lines (15 loc) · 728 Bytes

This repo is created to learn DSA together in any language with resources and questions to practice

ARRAY QUESTIONS

Problem 1: Write a c++ program to find the maximum and minimum numbers from the given array.

Problem 2: Write a c++ program to search for a given value from the given array.

Problem 3: Given an array, count numbers whose last element is 2, 3, or 9.

Problem 4: Write a program to input two matrices and check whether they are equal.

Problem 5: Write a program to find the position of an element in a 2d array.

Problem 6: Write a program to print sum of the first row and last row separately.