A) Plantae
B) Protista
C) Monera
D) Prokaryotae
View Answer
Option – B.
More Questions
Trip planning helps reduce
You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4 to create an application. The application connects to a Microsoft SQL Server database. The application stores encrypted credit card numbers in the database. You need to ensure that credit card numbers can be extracted from the database. Which cryptography provider should you use?
On which day ‘ National Science Day ‘ is celebrated in India ?
16 men and 12 women can complete a work in 20 days. 18 women can complete the same work in 40 days. In how many days will 12 men 27 women complete the same work?
How long does a basketball game last?
311, 230, 294, ?, 281, 256 What will come in place of the question mark (?) in the above number series?
In a class of 180, where girls are twice the number of boys, Rupesh[a boy] ranked 34th from the top. If there are 18 girls ahead of Rupesh, how many boys are after him in rank?
A sum of Rs.1890 has to be used to give 9 prizes to the customers of a super market for their overall academic purchases. If each prize is Rs.30 less than its preceding price, what is the least value of the price ?
What is backup?
What is the output of this program ? class main_arguments { public static void main(String [ ] args) { String [][] argument = new String[2][2]; int x; argument[0] = args; x = argument[0].length; for (int y = 0; y < x; y++) System.out.print(" " + argument[0][y]); } }