Posts

Showing posts from February, 2023

write a QBASIC program to write whether the given number is odd or even.

  write a QBASIC program to write whether the given number is odd or even. CLS PRINT "Enter a number: " ; INPUT n IF n MOD 2 = 0 THEN PRINT n; " is even." ELSE PRINT n; " is odd." END IF

Project on " TO TEST THE HARDNESS OF WATER FROM DIFFERENT SOURCES AND STUDY THE CAUSE OF HARDNESS "

 Project on " TO TEST THE HARDNESS OF WATER FROM DIFFERENT SOURCES AND STUDY THE CAUSE OF HARDNESS " click on download to download  ðŸ‘‰ download

Project on "TO STUDY THE USES OF ALTERNATIVE ENERGY SOURCES IN NEPAL"

 Project on "TO STUDY THE USES OF ALTERNATIVE ENERGY SOURCES IN NEPAL" click on download to download  ðŸ‘‰ download

Project on "TO STUDY THE FACTORS AFFECTING THE RESISTANCE OF THE WIRE"

 Project on "TO STUDY THE FACTORS AFFECTING THE RESISTANCE OF THE WIRE" click on download to download  ðŸ‘‰ download

Class 12 math old is gold solution 2078(new curriculum)

  Class 12 math old is gold solution 2078(new curriculum) Click on Download to download file      👉  Download

Write a C program to read age of 100 students and display youngest and eldest age.

Here's a C program that prompts the user to enter the age of 100 students and then displays the youngest and eldest age:   #include <stdio.h> int main()  {   int i, age, youngest_age=100, eldest_age=0;    for(i=0; i<100; i++)  {       printf("Enter the age o f student %d: ", i+1);       scanf("%d", &age);       if(age < youngest_age)  {          youngest_age = age;       }       if(age > eldest_age)  {          eldest_age = age;       }    }    printf("The youngest age is: %d\n", youngest_age);    printf("The eldest age is: %d\n", eldest_age);    return 0; }

Write a C program to check whether the given number is odd or even.

  Here's a C program to check whether a given number is odd or even: #include <stdio.h> int main() { int n; printf("Enter a number: "); scanf("%d", &n); if (n % 2 == 0) printf("%d is an even number.\n", n); else printf("%d is an odd number.\n", n); return 0; }

NEB class 11and 12 New Syllabus Physics

Image