Sanam asked a question

First learn basic HTML, then CSS and responsive CSS for Static websites and thereafter JavaScript and PHP for dynamic pages. If you also want to learn jQuery for more better works learn it at the same time with JavaScript

3 Thanks
2 Answers
Samriddhi Sharma asked a question

In benzene molecule, carbon and carbon bond can't have polarity because there is not any electronegativity difference and the carbon hydrogen is also not much polar because the electronegativity difference is almost zero and also the small pull due to small difference in Electronegativity is balanced due to even pull from all directions.

In chlorobenzene the electronegativity difference between carbon and chlorine is very high so, it is polar.


(to compare polarity first check electronegativity...

0 Thanks
2 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