Laxman Khatri about 1 year ago
0 Claps
1 Comments
SONU NIGAM SAH

Quality of life refers to the overall well-being, satisfaction, and happiness that an individual or a community experiences in various aspects of their lives.

Bijaya Rajbhandari asked a question

the symbols used in the story are:

  1. house and shops- it symbolizes Aksionov's family and material possessions
  2. nightmare-it symbolizes a bad omen.
  3. blood-stained knife- it indicates Aksionov's lack of control over his fate.
  4. the prison- Aksionov's pain and subsequent mystical transformation are symbolized by the prison.
  5. the book(the lives of the saints)- gives an impression of religiosity.
1 Thanks
2 Answers
Mousham khatiwada 12 months ago
4 Claps
1 Comments
Rabin Kalikote

Happy Mother's Day, sir.

Reply 12mo
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