Ask questions which are clear, concise and easy to understand.
Ask QuestionPosted by Mahesh Mutum 5 years, 11 months ago
- 2 answers
Shivankar Anand 5 years, 11 months ago
Posted by Najmath Nasar 5 years, 11 months ago
- 1 answers
Posted by Mahesh Mutum 5 years, 11 months ago
- 1 answers
Sia ? 5 years, 11 months ago
Step 1 : Divide (43)10 successively by 2 until the quotient is 0:
43/2 = 21, remainder is 1
21/2 = 10, remainder is 1
10/2 = 5, remainder is 0
5/2 = 2, remainder is 1
2/2 = 1, remainder is 0
1/2 = 0, remainder is 1
Step 2 : Read from the bottom (MSB) to top (LSB) as 101011. This is the binary equivalent of decimal number 43
Posted by Kanti Devi Inter College Gaya 5 years, 11 months ago
- 1 answers
Sheela Narang 5 years, 11 months ago
Posted by Himanshu Chaturvedi 5 years, 11 months ago
- 0 answers
Posted by T D E The Deadliest 5 years, 11 months ago
- 0 answers
Posted by Upinder Thind0713 5 years, 11 months ago
- 0 answers
Posted by Chetan Kushwah 5 years, 11 months ago
- 1 answers
Sia ? 5 years, 11 months ago
Pandas (software) In computer programming, pandas is a software library written for the Pythonprogramming language for data manipulation and analysis. In particular, it offers data structures and operations for manipulating numerical tables and time series.
Posted by Naresh Kumari 6 years ago
- 1 answers
Gaurav Seth 6 years ago
"ANIMATION" is a subject which contains the moving pictures or the illusion of moving pictures with a rapid display of sequence of images.
The word “ANIMATE” comes from the Latin verb “ANIMARE” means to make alive or to fill with breathe.
Animation is the rapid display of a sequence of images to create an illusion of movement. The most common method of presenting animation is as a motion picture or video program.
In simpler word animation means giving life to our imagination.
There are three types of animation:
1. 2D Animation
2. 3D Animation
3. Stop Motion Animation
Posted by Priya Chouksey 6 years ago
- 1 answers
Yogita Ingle 6 years ago
Database Systems: Systems comprising of Databases and Database Management Systems are simply referred as database systems.
Examples of Common Database Management Systems: MySQL ,INGRES, POSTGRES, ORACLE, DB2.
Posted by Manju Yadav 6 years ago
- 0 answers
Posted by Abhay Verma 6 years ago
- 1 answers
Nizi Patel 5 years, 11 months ago
Posted by Soumyadeep Mandal 6 years ago
- 1 answers
Sia ? 6 years ago
A string literal is a type of literal in programming for the representation of a string value within the source code of a computer program.
Posted by Muskan Singh 6 years ago
- 1 answers
Posted by Narinder Singh 6 years ago
- 0 answers
Posted by Sejal Gupta 6 years ago
- 1 answers
Devansh Pandey 5 years, 10 months ago
Posted by Seb Cj 6 years ago
- 0 answers
Posted by Chandra Mani 6 years ago
- 1 answers
Posted by Palak Patel 6 years ago
- 2 answers
Posted by Astha Mandal 6 years ago
- 1 answers
Sia ? 6 years ago
#include <stdio.h>
int main()
{ int low, high, i, flag;
printf("Enter two numbers(intervals): ");
scanf("%d %d", &low, &high);
printf("Prime numbers between %d and %d are: ", low, high);
while (low < high)
{ flag = 0;
for(i = 2; i <= low/2; ++i)
{ if(low % i == 0)
{ flag = 1;
break; } }
if (flag == 0)
printf("%d ", low);
++low; }
return 0; }
Posted by Nishant Singh 6 years ago
- 3 answers
Posted by Dilpreet Singh 6 years ago
- 0 answers
Posted by Ishika Goyal 6 years ago
- 0 answers
Posted by Gursevak Singh 6 years ago
- 0 answers
Posted by Dhwani P 6 years ago
- 0 answers
Posted by Akash G Jatti Jatti 6 years ago
- 0 answers
Posted by Santosh Chandawat 6 years, 1 month ago
- 1 answers
Sia ? 6 years, 1 month ago
# Python3 program to find compound
# interest for given values.
def compound_interest(principle, rate, time):
# Calculates compound interest
CI = principle * (pow((1 + rate / 100), time))
print("Compound interest is", CI)
# Driver Code
compound_interest(10000, 10.25, 5)
myCBSEguide
Trusted by 1 Crore+ Students
Test Generator
Create papers online. It's FREE.
CUET Mock Tests
75,000+ questions to practice only on myCBSEguide app
Isha Ranta 5 years, 11 months ago
1Thank You