Raunak Kumar asked a question

BODMAS=Bracket, Order, Division, Multiplication, Addition and Subtraction. In certain regions, PEMDAS (Parentheses, Exponents, Multiplication, Division, Addition and Subtraction) is the synonym of BODMAS. It explains the order of operations to solve an expression.

10 Thanks
2 Answers
Rakesh Yadav asked a question

Books Review

Title: "Atomic Habits" by James Clear

Introduction:

"Atomic Habits" by James Clear is a transformative self-help book that delves into the power of small habits and their impact on personal growth and success. With a captivating writing style and practical advice, this book provides readers with valuable insights and actionable strategies to create positive change in their lives.

Summary:In "Atomic Habits," Clear introduces the concept of "atomic habits," emphasizing the profound...

2 Thanks
2 Answers
Abinistha Maharjan asked a question

1. sol:

P

q

~p

~p ^ q

T

T

F

F

T

F

T

F

F

F

T

T

F

F

T

F

2 Thanks
4 Answers
Bishesh Gautam asked a question

Dextrorotatory and dextrorotation are terms used in chemistry to describe the direction in which a substance rotates plane-polarized light. When a substance is said to be dextrorotatory, it means that it rotates plane-polarized light to the right or clockwise direction, whereas when it is levorotatory, it rotates plane-polarized light to the left or counterclockwise direction.

The terms "dextrorotatory" and "levorotatory" come from the Latin words "dexter" meaning "right" and "lævus" meaning...

1 Thanks
2 Answers
Nikas Ghimire asked a question


#include<stdio.h>

#include<conio.h>

#include<string.h>


int main() {

int i, nextTerm;

int t1 = 2, t2 = 2;

nextTerm = t1+t2;


printf("%d, %d, ", t1, t2);

for (i = 3; i <= 10; ++i) {

printf("%d, ", nextTerm);

t1 = t2;

t2 = nextTerm;

nextTerm = t1 + t2;

}


return 0;

}


2 Thanks
2 Answers
Close Open App