Solution and Answers for queries in Information Technology Industry


Latest Post

C Language

How to write simple C Program for Fibonacci series using for loop

Fibonacci series means a series of numbers in which each number is the sum of the two preceding numbers. Example...
Read More
Python

Python program to reverse string using for loop

Below is running program in python which accept input string from user. using for loop it is reversing the string....
Read More
C Language

C Program for smallest, largest of three number using ternary operator

Below running code will accept 3 Numbers from user. Based on results given in expression in ternary operator program will...
Read More
C Language

C Program for Smallest of three numbers without comparing

There are many ways to find smallest. Below program will accept 3 integer numbers from user We are using while...
Read More
Python

Use of interactive prompt or mode in python

On starting python interactive mode we get below output Python 3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit...
Read More
Python

How python code get executed – architecture

Python is interpreted language. When user execute any python file then internally it compiles the code in bytecode format. Byte...
Read More
C Language

C Program to find even ,odd numbers and their sum and average

Below program will accept the range for example 62 to 70. Program will count all even and odd numbers from...
Read More
C Language

C Program to find length of string with or without function

//Program Name: To find length of the string with and without function. #include<stdio.h> #include<string.h> void main() { char str[250]; //to...
Read More
Python

Python code to check if character is alphabet or number

Below python code will identify character whether it is alphabet or number using comparison and built in function like isalpha,...
Read More
Python

Solved AttributeError: ‘str’ object has no attribute ‘IsAlpha’

python is case sensitive language. so better to write python IsAlpha function like isalpha in lower case without any spelling...
Read More
C Language

C Program to Identify Even Odd numbers from user input.

Below program will first accept total number which user want to enter. Then user has to enter numbers one by...
Read More
Public API

List of Public API for Continuous Integration, Cloud Storage & File Sharing

APIDescriptionLinkAuthAbstract Public HolidaysData on national, regional, and religious holidays via APIhttps://www.abstractapi.com/holidays-apiapiKeyCalendar IndexWorldwide Holidays and Working Dayshttps://www.calendarindex.com/apiKeyGoogle CalendarDisplay, create and modify...
Read More
Public API

New list of Public API for Books, Business category

Below is the list of public API for books and business category. More information on documentation is available after visiting...
Read More
Public API

List of Public API Information for Anime, Anti-Malware, Authentication

List of public free APIs for Anime, Anti-Malware, Art & Design, Authentication. With Details like API Name, Description, Link, and...
Read More
Public API

List of Public API for Animals

List of Public API for Animals APIDescriptionAuthHTTPSCorsLinkAxolotlCollection of axolotl pictures and factstrueunknownhttps://theaxolotlapi.netlify.app/Cat FactsDaily cat factstruenohttps://alexwohlbruck.github.io/cat-facts/CataasCat as a service (cats pictures...
Read More
C Language

C Program to count total vowel, consonant in sentence

This program will accept input from user. and then by iterating each character from sentence it will count number of...
Read More
C Language

C Program to Calculate Area of circle, circumference , volume of sphere

Program is accepting radius of circle and using below formula area of circle : A=πr2 Circumference of circle = 2πr...
Read More
C Language

C Program for Sum of digits using recursive function

Below program first accept the positive number from user and then find out the sum of digits. for example if...
Read More