Home Programming Practice

Programming Practice

Print the square and cube symbol in the area of a rectangle and volume of a cylinder

Python: Print the square and cube symbol in the area of a rectangle and...

Write a python program to print the square and cube symbol in the area of a rectangle and volume of a cylinder.Python Code:-area =...
Area of Triangle C++ Program in Hindi

Program to Accept value of base & height and Calculate Area of Triangle c++...

Area of Triangle C++ Program in Hindiसमस्या को समझना:-हमें एक ऐसा प्रोग्राम लिखना होता है जो यूजर से त्रिभुज की तीन भुजाओं को...
reverse string python

Reverse string in python | Syntax for reverse() List Method in Python.

Python - reversereverse() method is used to reverse the given list.Flowchart:-Syntax for reverse() List Method in Pythonlist.reverse()Parameter : There is no parameter for reverse()...
operator overloading in c++ full details

operator overloading in c++ example in hindi | operator overloading in c++ full details.

Operator overloading in C++ऑपरेटर ओवरलोडिंग एक संकलन-समय बहुरूपता है जिसमें उपयोगकर्ता द्वारा परिभाषित डेटा प्रकार को विशेष अर्थ प्रदान करने के लिए ऑपरेटर को...
Python Split a string on the last occurrence of the delimiter

Python: Split a string on the last occurrence of the delimiter| split string last...

Write a python program to split a string on the last occurrence of the delimiter.Program:-str1 = "s,i,r,f,p,a,d,h,a,i" print(str1.rsplit(',' , 1) print(str1.rsplit(',' , 2) print(str1.rsplit(',' , 5)Output:-'s,i,r,f,p,a,d,h,a','i' 's,i,r,f,p,a,d,h', 'a','i' 's,i,r,f,p',...
reverse a string in java

reverse a string in Java |how to reverse a string in Java |simply reverse...

reverse a string in JavaHow to Reverse a String in Java or Reverse a String in Java How to Reverse a String. This is...
move spaces to the front of a given string

Python: move spaces to the front of a given string

write a python program to move spaces to the front of a given string.Program:-def move_Spaces_front(str1): noSpaces_char = spaces_char = len(str1) - len(nospaces_char) result = ' '*spaces_char result...
program in C to check given no is leap year or not in Hindi

leap year condition in Hindi |Write a program in C to check given no...

इस पोस्ट में, आप सी में अलग-अलग तरीकों से सीखेंगे, कि यह जांचने के लिए कि कोई विशेष वर्ष लीप वर्ष है या नहीं।एक...
Write a Python program to move all spaces to the front of a given string in single traversal.

Python: Move all spaces to the front of a given string in single traversal

Write a Python program to move all spaces to the front of a given string in single traversal.Let's see some sample test cases before...
c program to print hello world

How to print Hello World in c languages|C program to print Hello world

How to print Hello World in c languages"Hello, World!" program. It's the first program many of us learn when we start programming. for...