Javascript Program To Reverse Words In A Given String
Example: Let the input string be “i like this program very much”. The function should change the string to “much very program this like i”...
read more
Javascript Program to Efficiently compute sums of diagonals of a matrix
Given a 2D square matrix, find the sum of elements in Principal and Secondary diagonals. For example, consider the following 4 X 4 input matrix....
read more
Php Program to Efficiently compute sums of diagonals of a matrix
Given a 2D square matrix, find the sum of elements in Principal and Secondary diagonals. For example, consider the following 4 X 4 input matrix....
read more
Reverse words in a given string
Given a string, the task is to reverse the order of the words in the given string....
read more
Program for average of an array (Iterative and Recursive)
Given an array, the task is to find average of that array. Average is the sum of array elements divided by the number of elements....
read more
C++ Program To Reverse Words In A Given String
Example: Let the input string be “i like this program very much”. The function should change the string to “much very program this like i”...
read more
Java Program To Reverse Words In A Given String
Example: Let the input string be “i like this program very much”. The function should change the string to “much very program this like i”...
read more
Pass Array to Functions in C
In C, the whole array cannot be passed as an argument to a function. However, you can pass a pointer to an array without an index by specifying the array’s name....
read more
Java Program to Efficiently compute sums of diagonals of a matrix
Given a 2D square matrix, find the sum of elements in Principal and Secondary diagonals. For example, consider the following 4 X 4 input matrix....
read more
CBSE Class10 English Answer Key 2024 Out For Set 1,2,3
The CBSE Class 10 English Exam 2024 was successfully given by the Central Board of Secondary Education on February 26, 2024, during the morning shift, from 10:30 a.m. to 1:30 p.m. Students would race to get their hands on the Class 10 English Answer Key 2024 after the exam. They can verify their answers twice and predict the results with the aid of the CBSE English answer key for class 10 in 2024. Stay put and compare your responses to the CBSE Class 10 English Question Paper 2024 All Sets Solved PDF that is accessible on this page....
read more
Python Program To Reverse Words In A Given String
Example: Let the input string be “i like this program very much”. The function should change the string to “much very program this like i”...
read more
Array Reverse in C/C++/Java/Python/JavaScript
Array reverse or reverse a array means changing the position of each number of the given array to its opposite position from end, i.e. if a number is at position 1 then its new position will be Array.length, similarly if a number is at position 2 then its new position will be Array.length – 1, and so on....
read more