Is the sum of an even whole number and an odd whole number always odd?

1 Answer

Answer :

Yes---------------------------------------------Let n be an integer. Then 2n is an even numberLet m be an integer. Then 2m is an even number and 2m + 1 is anodd number.Then:even + odd = (2n) + (2m + 1)= (2n + 2m) + 1= 2(n + m) + 1= 2k + 1 (where k = m + n) which is an odd number.

Related questions

Description : How do you write If the sum of any two numbers is odd then the prodduct of those two numbers is even in logic statement?

Last Answer : {(X, Y belong to N) and (X + Y = 1 mod(2))} => X*Y = 0mod(2).

Description : Which method is used to detect double errors and pinpoint erroneous bits. a. Even parity method b. Odd parity method c. Check sum method. d. All of these

Last Answer : c. Check sum method.

Description : I am a puzzle with a wordy facade. There's always an answer, even if it seems odd. Only the clever can understand my code. If you don't answer, then you'll never know. What am I? -Riddles

Last Answer : A riddle.

Description : Is the gcf of two odd numbers always even?

Last Answer : No not always as for example the GCF of 7 and 21 is 7

Description : The sum of the first n odd natural number is

Last Answer : The sum of the first n odd natural number is

Description : What three consecvtive odd numbers have the the sum of 45?

Last Answer : They are: 13+15+17 = 45

Description : What is the sum of the odd numbers smaller than ten?

Last Answer : If by "smaller than ten" you mean closer to zero than 10,thensum = -9 + -7 + ... + -1 + 1 + ... + 7 + 9 = 0If you mean the numbers less than 10, then:sum = 9 + 7 + ... + 1 + -1 + -3 + ... = -∞If you mean the ... numbers less than 10, then:sum = 1 + 3 + 5 + 7 + 9 = ½ 5 (1 + 9) = ½ 5 10 = 25

Description : What is the sum of 800 odd consecutive numbers?

Last Answer : What is the answer ?

Description : Find three consecutive odd integers whose sum is (-75)?

Last Answer : Those three odd integers are 43, 45, and 47.

Description : Write a program to calculate sum of all the odd numbers between 1 to 20.

Last Answer : Write a program to calculate sum of all odd element of 1D array

Description : Write a program to sum all the odd numbers between 1 to 20. 

Last Answer : #include<stdio.h> #include<conio.h> void main() { int sum=0,i; clrscr(); for(i=1;i<=20;i++)  { if(i%2==1) sum=sum+i; }  printf(“sum of odd no“s between 1 to 20 is %d”,sum); getcht); }

Description : Is zero an odd or even number?

Last Answer : I think technically it’s even as it’s a multiple of 2 and therefore shares all the traits of even numbers.

Description : I am an odd number. When I remove a letter from the word, I become even. What is the value of my number? -Riddles

Last Answer : Seven. When I remove the s, I become even.

Description : 1. Write a program to take a number and print whether it is an odd number or even number. -Artificial Intelligence

Last Answer : num = int(input("Enter a number: ")) mod = num % 2 if mod > 0: print("This is an odd number.") else: print("This is an even number.")

Description : How to write a Python program (i)to calculate area of a circle and (ii)to find if a given number is even or odd. -Python

Last Answer : (i) # 1.Circle pi = 3.14 r = int(input("Please enter the Radius of the circle:")) area = pi*r*r print("Area of the circle is" + str(area) + "sq ms") (ii) # 2. Odd Number & Even Number Number = int( ... Number % 2 == 0): print("This is an Even Number") else: print("It's an Odd Number")

Description : I am an odd number. Take away a letter and I become even. What number am I? -Riddles

Last Answer : I am an odd number. Take away a letter and I become even. I am Seven.

Description : A number ending with a even number is it a odd or even number?

Last Answer : It is even

Description : Is 25 an odd number or an even number?

Last Answer : 25 is an odd number

Description : suppose you roll a number cube 30 times write a ratio to describe the theoretical probability of rolling each of the following: (show all your work) 1,4,6,7 an even number an odd number please help I need this thankyou?

Last Answer : Please help NOW SOS

Description : The fatty acids containing even number and odd number of carbon atoms as well as the unsaturated fatty acids are oxidized by (A) α-oxidation (B) β-oxidation (C) ω-oxidation (D) All of these

Last Answer : Answer : B

Description : Display Odd/ Even number of records?

Last Answer : Odd number of records: select * from emp where (rowid,1) in (select rowid, mod(rownum,2) from emp); Output:- 1 3 5 Even number of records: select * from emp where (rowid,0) in (select rowid, mod(rownum,2) from emp) Output:- 2 4 6

Description : I am an odd number. Take away one letter and I become even. What number am I?

Last Answer : A: Seven (take away the “s’”and it becomes “even”).

Description : n2 – 1 is divisible by 8, if n is (a) an integer (b) a natural number (c) an odd integer (d) an even integer

Last Answer : (c) an odd integer

Description : If m and n are two odd prime numbers such that m (a) an even number (b) an odd number (c) an odd prime number (d) a prime number

Last Answer : (a) an even number

Description : While transmitting odd-parity coded symbols, the number of zeros in each symbol is a. odd b. even c. a and b both d. unknown

Last Answer : unknown

Description : A simpleparity-check code can detect__________ errors. A) an even-number of B) two C) no errors D) an odd-number of

Last Answer : an odd-number of

Description : A simple parity-check code can detect __________ errors A. an even-number of B. two C. no errors D. an odd-number of

Last Answer : D. an odd-number of

Description : In Newton's Ring experiments , the diameter of dark rings is proportional to A. Odd Natural numbers B. Natural Number C. Even Natural Number D. Square root of natural number

Last Answer : In Newton's Ring experiments , the diameter of dark rings is proportional to A. Odd Natural numbers B. Natural Number C. Even Natural Number D. Square root of natural number

Description : n Newton's Ring experiments , the diameter of bright rings is proportional to A. Square root of Odd Natural numbers B. Natural Number C. Even Natural Number D. Square root of natural number

Last Answer : B. Natural Number

Description : When an organisation sets a limited number of prices for selected groups of merchandise, this idea is commonly referred to as A)prestige pricing. B)price lining. C)customary pricing. D)odd-even pricing. E)ethical pricing.

Last Answer : B)price lining.

Description : Write a C++ program to find whether the entered number is even or odd.

Last Answer : #include<iostream.h> #include<conio.h> void main()  { int num; clrscr(); cout<<"\nEnter a Number "; cin>>num; if(num%2==0)  { cout<<"\nEntered ... else  { cout<<"\nEntered number is odd";  } getch();  }

Description : Write an algorithm to determine the given number is odd or even.

Last Answer : Step 1- Start Step 2- Read / input the number. Step 3- if n%2==0 then number is even. Step 4- else number is odd. Step 5- display the output. Step 6- Stop

Description : Draw flowchart for checking whether given number is even or odd. 

Last Answer : flowchart for checking whether given number is even or odd.  

Description : Write a program to create two threads one thread will print even no. between 1 to 50 and other will print odd number between 1 to 50.

Last Answer : import java.lang.*; class Even extends Thread { public void run() { try { for(int i=2;i<=50;i=i+2) { System.out.println("\t Even thread :"+i); sleep(500); } } ... public static void main(String args[]) { new Even().start(); new Odd().start(); } }

Description : Write a shell script to accept a number from user check whether number is even or odd.

Last Answer : 2 8

Description : What is used to identify whether a data word has an odd or even number of 1’s ? (1) Carry bit (2) Sign bit (3) Zero bit (4) Parity bit

Last Answer : Parity bit

Description : What is the smallest whole number that is equal to seven times the sum of its digits? -Riddles

Last Answer : The answer to this math riddle is 21. You probably just guessed to answer this math riddle, which is fine, but you can also work it out algebraically. The two-digit number ab stands for 10a + b since the ... a = 2b. That is, the second digit must be twice the first. The smallest such number is 21.

Description : I am a five-digit whole number, read the same forward, backward and upside down. My second digit is half my third digit; my fifth digit is the product of my first and last digits; and the sum of my whole is ten. What am I? -Riddles

Last Answer : 10801

Description : If a whole number between 100 and 999 has 3 different non zero digits What is the least possible value of the sum of its digits?

Last Answer : 6

Description : The square of an odd number is always odd .Is the given statement true?

Last Answer : The square of an odd number is always odd .Is the given statement true?

Description : Is the product of 5 and any number always odd?

Last Answer : No. If the number by which you multiply 5 is even, the product will always end in "0" and will be even:5 x 2 = 105 x 8 = 405 x 18 = 90If the number by which you multiply 5 is odd, the product will always end in "5" and will be odd:5 x 3 = 155 x 9 = 455 x 31 = 155

Description : What is the Cube root of an odd number is always an?

Last Answer : What is the answer ?

Description : Have you ever known someone who did not know the rules for adding and multiplying even and odd numbers?

Last Answer : Just about anybody in Afghanistan, or Wahabis in Saudi Arabia. They think that is Satanic influence. Plus just about any student in American urban schools

Description : Hey : what ‘Odd Jobs’ have you taken that had a strange, unexpected, or even scary outcome?

Last Answer : I worked at a weird old college bookstore for a sweet 85-year old woman and her nasty, insulting husband. On the plus side, they were friends with Gabriel Garcia Marquez and I got to meet him.

Description : I am even, add one letter and I’m odd. What am I? -Riddles

Last Answer : Seven.

Description : In the Print dialog box, you can select the pages for printing. (a) Even pages (b) Odd pages (c) All pages in range (d) All of these -Technology

Last Answer : (d) You can select the even, odd and all pages in range for printing.

Description : is 81,203 even or odd

Last Answer : It is odd. Good luck

Description : cube root of a perfect even cube is ___________and the perfect odd cube is ______________

Last Answer : cube root of a perfect even cube is ___________and the perfect odd cube is ______________

Description : What is 47 even or odd?

Last Answer : odd

Description : Is 239 odd or even?

Last Answer : 239 is an odd number