Answer is 2 i’m pretty sure
Answer:
The solution code is written in Python
- input_numbers = [5, 7, 1, 12, 9, 34, 22, 97, 112]
-
- evenVec = []
- oddVec = []
-
- for x in input_numbers:
- if x % 2 == 0:
- evenVec.append(x)
- else:
- oddVec.append(x)
-
- num2D = [evenVec, oddVec]
-
- print(num2D)
Explanation:
Let's create a sample input numbers that mixed with odd and even values (Line 1)
Next, create evenVec and oddVec variables to hold the even and odd numbers from the input_numbers (Line 3 - 4).
Create a for-loop to traverse through the input_numbers and check if current number, x, is divisible by 2 using the modulus operator %. If so, x % 2 will be evaluated to 0 and append the current x to evenVec or else append to oddVec (Line 6 - 10).
Next, create a variable num2D to hold the two dimensional arrays with first column is evenVec and second column is oddVec (Line 12).
When printing the num2D (Line 14), we shall get
[[12, 34, 22, 112], [5, 7, 1, 9, 97]]
Answer:
Bloomberg , Inc.
Explanation:
Oleg zezev is Kazakhstani who accessed Bloomberg L.P.’s Manhattan computer system and accessed computer data and copied personal information for purposes of extorting money from Bloomberg in 1999. He was arrested on August 10, 2000 in London, England and prosecuted on February 27, 2003.
Hypertext Markup Language, a standardized system for tagging text files to achieve font, colour, graphic, and hyperlink effects on World Wide Web pages.
this information was taken from google
Answer:
Option 4) is correct
Explanation:
The Federal Trade Commission is an agency that is headed by 5 Commissioners such that each of the commissioners has served a seven year term.
Missions of the Federal Trade Commission are as follows:
1. Implementation of civil U.S. antitrust law
2. Encouragement of consumer protection
The Federal Trade Commission FIP principle of Notice/Awareness states that websites must disclose their information practices before collecting data.
So,
Option 4) is correct