Results for "Math Operations"

Total results: 215

  1. Java Program to find area of circle
  2. Java Program to find area of square
  3. Java Program to find area of rectangle
  4. Java Program to find perimeter of circle
  5. Java Program to find perimeter of square
  6. Java Program to find perimeter of rectangle
  7. Java Program to Print Lower Triangle Matrix Excluding Principal Diagonal Matrix
  8. Java Program to Print Upper Triangle Matrix Excluding Principal Diagonal Matrix
  9. Java Program to Print Lower Triangle Matrix Including Principal Diagonal Matrix
  10. Java Program to Print Upper Triangle Matrix Including Principal Diagonal Matrix
  11. Java Program to find Sum of Lower Triangle Matrix Excluding Principal Diagonal Matrix
  12. Java Program to find Sum of Upper Triangle Matrix Excluding Principal Diagonal Matrix
  13. Java Program to find Sum of Lower Triangle Matrix Including Principal Diagonal Matrix
  14. Java Program to find Sum of Upper Triangle Matrix Including Principal Diagonal Matrix
  15. Java Program to Rename a File
  16. Java Program to find area of different shapes using inheritance
  17. Java Program for Stack Simulation
  18. Java Program for Queue Simulation
  19. Java Program for Div Zero Exception
  20. Java Program to convert Array to ArrayList
  21. Java Program to demonstrate stack class in Collection framework
  22. Java Program to check if Integer element is present in an array
  23. Java program to concatenate two arrays using Stream API
  24. Java program to reverse ArrayList
  25. Java program to sort array using temporary variable
  26. Java Program to divide two binary numbers using ParseInt
  27. Python Program to find sum of two integer numbers
  28. Python Program to find difference of two integer numbers
  29. Python Program to find product of two integer numbers
  30. Python Program to find division of two integer numbers
  31. Python Program to find biggest of two integer numbers
  32. Python Program to find biggest of three numbers
  33. Python Program to find area of circle
  34. Python Program to find area of pentagon
  35. Python Program to find swap two numbers without temp variable (Addition and Subtraction Method)
  36. Python Program to check whether a given number is an Armstrong Number or not using lambda and list
  37. Python Program to find maximum element in an array
  38. Python Program to find sum of array elements using for
  39. Python Program to find sum of array elements using sum function
  40. Python Program to find the square root of a given number
  41. Python Program to convert Celsius to Fahrenheit
  42. Python Program to convert Fahrenheit to Celsius
  43. C Program to find the sum of two integer numbers
  44. C Program to find the difference of two integer numbers
  45. C Program to find the product of two integer numbers
  46. C Program to find the division of two integer numbers
  47. C Program to perform arithmetic operations using floating point variables
  48. C Program to find distance between two straight lines
  49. C Program to find area of equilateral triangle
  50. C Program to find area of scalene triangle
  51. C Program to find area of triangle given three sides of a triangle
  52. C Program to swap two variables using addition and subtraction without using temporary variable
  53. C Program to swap two variables using temporary variable
  54. C Program to swap two variables using multiply and division operation without using temporary variable
  55. C Program to swap two variables by shifting bits
  56. C Program to calculate Compound Interest
  57. C Program to check whether a given number is an Armstrong Number or not using in built power function
  58. C Program to find biggest of three numbers using Binary Minus
  59. C Program for simple calculator to perform addition subtraction multiplication and division based on the symbol using if else ladder statement
  60. C Program for simple calculator to perform addition subtraction multiplication and division based on the symbol using switch statement
  61. C Program to find roots of a quadratic equation using If Else statement
  62. C Program to convert lower case alphabet to upper case and upper case to lower case using Built In functions
  63. C Program to find the sum of first n natural numbers using for loop
  64. C Program to find the sum of first n natural numbers using while loop
  65. C Program to sum of n natural numbers using do while
  66. C Program to find the factorial of a given number
  67. C Program to find factorial of a number using functions
  68. C Program to find GCD and LCM of a given two number
  69. C Program to reverse string using while
  70. C Program to find area of Ellipse
  71. C Program to find area of Regular Polygon sides
  72. C Program to find area of Rhombus
  73. C Program to find area of Sector
  74. C Program to find area of Triangular Prism lateral surface
  75. C Program to find the area of a pentagon
  76. C Program to find area of trapezoid
  77. C Program to find power of a number without inbuilt function
  78. C Program to find Permutations nPr
  79. C Program to find Combinations nCr
  80. C Program to print the sum of n even numbers using while
  81. C Program to print the sum of n even numbers using do while
  82. C Program to print the sum of n even numbers within range using for
  83. C Program to print the sum of n even numbers within range using while
  84. C Program to convert binary to octal number
  85. C Program to convert a decimal to octal number
  86. C Program to convert octal to binary number
  87. C Program to convert octal to hexadecimal number
  88. C Program to add two matrix
  89. C Program to subtract two matrix
  90. C Program to find sum of lower triangle matrix
  91. C Program to find sum of upper triangle matrix
  92. C Program to add principal diagonal elements in a matrix
  93. C Program to transpose a matrix
  94. C Program to check if the entered matrix is magic square or not
  95. C Program to implement basic operation of Stacks using global variables
  96. C Program to implement basic operation of Stacks using arrays and pointers
  97. C Program to implement basic operation of Stacks using structures
  98. C Program to implement Stacks using Singly Linked List
  99. C Program to implement Stacks using Circular Linked List
  100. C Program to convert a valid Infix expression to postfix using Stacks
  101. C Program to evaluate a valid Postfix expression using Stacks
  102. C Program to find the factorial of a given number using recursion
  103. C Program to generate fibonacci series using recursion
  104. C Program to find nth fibonacci number using recursion
  105. C Program to implement basic operations of Linear Queue using arrays and pointers
  106. C Program to implement basic operations of Circular Queue using arrays and pointers
  107. C Program to implement Priority Queues using array of structures
  108. C Program to implement Singly Linked List to insert and delete a node from front and display the contents of the Singly List
  109. C Program to implement Singly Linked List to insert and delete a node from rear and display the contents of the Singly List
  110. C Program to implement Singly Linked List to insert and delete a node at a specified position and display the contents of the Singly List
  111. C Program to implement Singly Linked List to insert and delete a node from front and display the contents of the Singly List using Header Node
  112. C Program to implement Singly Linked List to insert and delete a node from rear and display the contents of the Singly List using Header Node
  113. C Program to implement Singly Linked List to insert and delete a node from position and display the contents of the Singly List using Header Node
  114. C Program to implement Linear Queue using Singly Linked List
  115. C Program to implement Circular Linked List to insert and delete a node from front and display the contents of the Circular List
  116. C Program to implement Circular Linked List to insert and delete a node from rear and display the contents of the Circular List
  117. C Program to implement Circular Linked List to insert and delete a node from front and display the contents of the Circular List using Header Node
  118. C Program to implement Doubly Linked List to insert and delete a node from front and display the contents of the Doubly Linked List
  119. C Program to implement Doubly Linked List to insert and delete a node from rear and display the contents of the Doubly Linked List
  120. C Program to reverse a digit using recursion
  121. C Program to solve N Queens using greedy method
  122. C Program to find square of a number using macro functions
  123. C Program to illustrate basic concept of pointers
  124. C Program to add two complex numbers using structures
  125. C Program to read a text file
  126. C Program to copy contents from file to another file
  127. C++ Program to find the sum of two integer numbers
  128. C++ Program to find the difference of two integer numbers
  129. C++ Program to find the product of two integer numbers
  130. C++ Program to find the division of two integer numbers
  131. C++ Program for simple calculator to perform addition subtraction multiplication and division based on the symbol using switch statement
  132. C++ Program to find factorial of a number using copy constructor
  133. C++ Program to convert binary to octal
  134. C++ Program to convert octal to binary
  135. C++ Program to find area of square using constructor
  136. C++ Program to find area of rectangle using constructor
  137. C++ Program to find area of shapes using constructor overloading
  138. C# Program to add two numbers
  139. C# Program to subtract two numbers
  140. C# Program to multiply two numbers
  141. C# Program to divide two numbers
  142. C# Program to calculate area of pentagon
  143. C# program to find Area of Circle
  144. C# program to find Area of Equilateral Triangle
  145. C# program to find Area of Isoceles Triangle
  146. C# program to find Area of Scalene Triangle
  147. C# program to find Area of Triangle by Sides
  148. C# program to find Compound Interest
  149. Shell Script to find sum of n numbers
  150. Shell Script to find biggest of three numbers using nested if
  151. ADA Program to print a integer number entered by user
  152. ADA Program to print a character entered by user
  153. ADA Program to find the sum of two integer number
  154. ADA Program to find the difference of two integer number
  155. ADA Program to find the product of two integer number
  156. ADA Program to find the division of two integer number
  157. ADA Program to find perimeter of square
  158. ADA Program to find area of rectangle
  159. ADA Program to find perimeter of rectangle
  160. Haskell Program to add two numbers
  161. Haskell Program to subtract two numbers
  162. Haskell Program to multiply two numbers
  163. Haskell Program to divide two numbers
  164. Haskell Program to convert string to lower case
  165. Haskell Program to convert string to upper case
  166. Kotlin Program to demonstrate ArrayList
  167. Lua Program to add two numbers
  168. Lua Program to subtract two numbers
  169. Lua Program to multiply two numbers
  170. F# program to perform Arithmetic Operations
  171. F# program to perform Boolean Operations
  172. Lists in Python
  173. Tuples in Python
  174. Sets in Python
  175. Dictionary in Python
  176. File Handling in Python
  177. Passage 14
  178. Passage 22
  179. Passage 59
  180. Passage 67
  181. Passage 80
  182. Passage 82
  183. Passage 104
  184. Passage 108
  185. Passage 111
  186. Passage 120
  187. Passage 143
  188. Passage 161
  189. Passage 163
  190. Passage 168
  191. Passage 178
  192. Passage 222
  193. Passage 239
  194. Passage 244
  195. Passage 246
  196. Passage 265
  197. Passage 279
  198. Passage 285
  199. Passage 290
  200. Question 22
  201. Ganesha Ashtottara Shatanamavali English
  202. Vinayaka Ashtottara Shatanamavali English
  203. Shiva Ashtottara Shatanamavali English
  204. Sri Saraswati Ashtottara Shatanamavali English
  205. Sri Rama Ashtottara Shatanamavali English
  206. Sri Sita Ashtottara Shatanamavali (Type 2) English
  207. Sri Anjaneya Ashtottara Shatanamavali English
  208. Ayyappa Ashtottara Shatanamavali English
  209. Sri Tulasi Ashtottara Shatanamavali English
  210. Sri Santanalakshmi Ashtottara Shatanamavali English
  211. Sri Kukke Subrahmanya Temple (Subramanya)
  212. Sri Krishna Matha (Udupi)
  213. Sharadamba Temple (Sringeri)
  214. Guru Narasimha Temple (Saligrama)
  215. Shri Jagadguru Badari Shankaracharya Samsthanam (Shakatapuram)