Niharika IT Solution

BOOK /NOTES/NEWS

Recent Post

C ++ Program to add two numbers

  #include <iostream> using namespace std; int main() {   int first_number, second_number, sum;        cout << "Enter two i...

JavaScript Program to Add Two Numbers

 const num1 = 5; const num2 = 3; const sum = num1 + num2; console.log('The sum of ' + num1 + ' and ' + num2 + ' is: '...

The SQL CODE TO CREATE TABLE Statement

  CREATE   TABLE  Persons (     PersonID int,     LastName varchar( 255 ),     FirstName varchar( 255 ),     Address varchar( 255 ),     Cit...

Java Program to Add Two Integers

 class Main {  public static void main(String[] args) {     int first = 10;     int second = 20;     int sum = first + second;     System.ou...

C# program to calculate the sum of two numbers using Function.

using System; public class funcexer3 { public static int Sum(int num1, int num2) { int total; total = num1 + num2; return total; } public s...

Program to add two numbers using class in C++

 #include <iostream> using namespace std; //class definition class Numbers { private:     int a;     int b; public:     //member funct...

Science teacher job vacancy in shree Narayani Bidhyamandir secondary school,Bhaktapur Municipality 14. Chitwan

Advertisement number: 2080/081/01 Position: Teacher Level: Secondary Subject: Science Required number: 1 Exam fee: Rs. 1500 Qualification: B...

Science teacher job vacancy in shree tandi secondary school, Miklajung Morang

Post: Science Teacher Level: Secondary level No of vacancy: 1  Qualification:  Bachelor in Chemistry Age: Not above 40 year Salary:  As per ...

Write a c Program to add two number using function.

 #include <stdio.h> int main() {         int number1, number2, sum;          printf("Enter two integers: ");     scanf("...

Write a C program to add two number .

 #include <stdio.h> int main() {         int number1, number2, sum;          printf("Enter two integers: ");     scanf("...