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?

1 Answer

Answer :

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

Related questions

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 : 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 : Is the sum of an even whole number and an odd whole number always odd?

Last 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.

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 : Show that If m > 1, then the sum of the mth powers of underline (n)even numbers is greater than n (n + 1)^m -Maths 9th

Last Answer : answer:

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 : 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 : 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 : he Radius (or diameter) of bright rings in Newton's rings is (a) Directly proportional to the square root of odd numbers (b) Inversely proportional to the square root of natural numbers (c) ... to the square root of even numbers (d) Directly proportional to the square root of natural numbers

Last Answer : (a) Directly proportional to the square root of odd numbers

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 : Two dice are thrown together. Find the probability that the sum of the numbers obtained is even a. 1/4 b. 1/6 c. 1/3 d. 1/2

Last Answer : d. 1/2

Description : There are two sets of five numbers each - set P and set Q. P is a set of consecutive even numbers and Q is a set of consecutive numbers. The sum of the numbers of P is 230. The second least number in Q is 33 less ... the sum of the numbers in Q. 1 : 260 2 : 250 3 : 240 4 : 270 5 : None of these

Last Answer : 1 : 260

Description : The sum of the first n even natural numbers is ___________

Last Answer : The sum of the first n even natural numbers is ___________

Description : What is the algorithm to compute the sum of even numbers between 7 and 50?

Last Answer : (7 to 50).filter(_ % 2 == 0).sum

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 : 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 : 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 : 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 : Write a shell script to accept a number from user check whether number is even or odd.

Last Answer : 2 8

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 : The sum of the first n odd natural number is

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

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

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

Description : when adding mixed numbers,is it always necessary to write the sum as a mixed number Explain?

Last Answer : what is 2+@

Description : Write an algorithm and draw the flowchart to find sum of series of numbers. 

Last Answer : Algorithim to find sum of series of numbers: 1. Initialize data segment 2. Initialize byte counter and memory pointer to read number from array. 3. Initialize sum variable to 0 4. sum=sum+number from array ... Decrement byte counter 9. If byte counter=0 then step 10 else step 4 10. Stop

Description : If the sum of two +ve numbers is 18 then the maximum value of their product is

Last Answer : If the sum of two +ve numbers is 18 then the maximum value of their product is A. 8,10 B. 9,9 C. 6,12 D. None of these

Description : The LCM of two numbers is 45 times their HCF. If one of the numbers is 125 and the sum of HCF and LCM is 1150, then the other number is? a) 100 b) 125 c) 250 d) 225 e) 180

Last Answer : LCM = 45× HCF LCM + HCF = 46× HCF = 1150 HCF = 25, LCM =1125. product of 2 numbers = LCM×HCF required number = (25× 1125) / 125 = 225. Answer: d)

Description : The L.C.M. of two numbers is 48. The numbers are in the ratio 2 : 3. Then sum of the number is: A.30 B.22 C.40 D.60 E.None of these

Last Answer : Answer – C (40) Explanation – Let the numbers be 2x and 3x. Then, their L.C.M. = 6x. So, 6x = 48 or x = 8. The numbers are 16 and 24. Hence, required sum = (16 + 24) = 40.

Description : The L.C.M of two numbers is 14 times their H.C.F . The sum of the L.C.M. and the H.C.F . is 600. If one number is 280 , then the other number is (a) 40 (b) 60 (c) 80 (d) 100

Last Answer : 80

Description : Find four numbers, the sum of which is 45, so that if 2 is added to the first number, 2 is subtracted from the second number, the third number is multiplied by 2 and the fourth number is divided by 2, then the four numbers so produced are all the same. What are the four numbers? -Riddles

Last Answer : 8 + 2 = 10 12 - 2 = 10 5 x 2 = 10 20 ÷ 2 = 10 45

Description : If a1, a2, .... an are positive numbers such that a1.a2.a3 .... an = 1, then their sum is -Maths 9th

Last Answer : answer:

Description : If arithmetic of 6 numbers is 17 then the sum of numbers is---- (a) 102 (b) 103 © 150 (d) 120.

Last Answer : (a) 102

Description : The sum of three numbers is 210. If the ratio between the first and second number be 2:3 and that between the second and third be 4:5, then the difference between the first and third number? a) 21 b) 35 c) 42 d) 56 e) None of these

Last Answer : Answer: C a: b = 2:3 and b:c = 4:5 a:b:c = 8:12:15 Difference between first and third number = (7/35)*210 = 42

Description : The square of a two digit number is divided by half the number. After 36 is added to the quotient, this sum is then divided by 2. The digits of the resulting number are the same as those in ... 's place of the original number is equal to twice the difference between its digits. What is the number?

Last Answer : Answer: 46

Description : Q: Can two odd numbers add up to give an odd number? -General Knowledge

Last Answer : No. Two odd numbers will always sum up to give an even number.

Description : What is so odd about odd numbers?

Last Answer : They never get in pairs. So they lack evenness, and that IS odd.

Description : What are three ways you can add 4 odd numbers and get ten? -Riddles

Last Answer : 1+1+3+5=10 1+1+1+7=10 1+3+3+3=10

Description : Is it possible to get 50 by adding any 5 odd numbers between 1-50 ?

Last Answer : The sum of an odd number of odd numbers will always be odd , since it is not possible to say 50 or even. However, if the answer is as follows: Roman 3 + 13 + 7 + 15 + 1 = 50 , that is , 1 + 3 + 7 + 13 + 15 = 3 + 13 + 7 + 15 ... = 2 (1 + 11 + 5) + 15 + 1 = 2 (17) +16 = 34 + 16 = 50

Last Answer : 1 From 100 Of In Odd Numbers 25 T.

Description : How many odd numbers between?

Last Answer : 18

Description : What are the Odd numbers less than 21?

Last Answer : 1,3,5,7,9,11,13,15,17,19,21

Description : How many of the first 30 numbers of the Fibonacci sequence are odd?

Last Answer : 20 of them.

Description : What is the smallest odd number you can make out of the numbers 8,6,4,3?

Last Answer : 3