• Home
  • Ask a Question
  • About
  • Contact
  • Advertise
  • Sitemap
MENU

Anthropology MCQ

  • Home
  • Translate
Archive for September 2017

Floating-point values that appear in source code are known as floating-point literals and are the type float by default.

September 30, 2017

Floating-point values that appear in source code are known as floating-point literals and are the type float by default.



Answer: False

The number of arguments in the method call must match the number of parameters in the method declaration's parameter list.

September 30, 2017

The number of arguments in the method call must match the number of parameters in the method declaration's parameter list.



Answer: True

Any class that contains public static void main(String[] args) can be used to execute an app.

September 30, 2017

Any class that contains public static void main(String[] args) can be used to execute an app.



Answer: True

Reference-type instance variables are initialized by default to the value null.

September 30, 2017

Reference-type instance variables are initialized by default to the value null.



Answer: True

Primitive-type local variables are initialized by default.

September 30, 2017

Primitive-type local variables are initialized by default.



Answer: False

Every method's body is delimited by left and right braces.

September 30, 2017

Every method's body is delimited by left and right braces.



Answer: True

Variables declared in the body of a particular method are known as instance variables and can be used in all methods of the class.

September 30, 2017

Variables declared in the body of a particular method are known as instance variables and can be used in all methods of the class.




Answer: False

True or false? A primitive-type variable can be used to invoke a method.

September 30, 2017

True or false? A primitive-type variable can be used to invoke a method.



Answer: False

True or false? Empty parentheses following a method name in a method declaration indicate that the method does not require any parameters to perform its task.

September 30, 2017

True or false? Empty parentheses following a method name in a method declaration indicate that the method does not require any parameters to perform its task.




Answer: True

True or false? An import declaration is not required when one class in a package uses another in the same package.

September 30, 2017

True or false? An import declaration is not required when one class in a package uses another in the same package.



Answer: True

True or false? By convention, method names begin with an uppercase first letter, and all subsequent words in the name begin with a capital first letter.

September 30, 2017

True or false? By convention, method names begin with an uppercase first letter, and all subsequent words in the name begin with a capital first letter.



Answer: False

Types in Java are divided into two categories- ____ types and ____ types.

September 30, 2017

Types in Java are divided into two categories- ____ types and ____ types.



Answer: Primitive, reference

The format specifier ____ is used to output values of type float or double.

September 30, 2017

The format specifier ____ is used to output values of type float or double.



Answer: %f

Variables of type float represent ____-precision floating-point numbers.

September 30, 2017

Variables of type float represent ____-precision floating-point numbers.



Answer: Single

A(n) ____ is a number with a decimal point, such as 7.33.

September 30, 2017

A(n) ____ is a number with a decimal point, such as 7.33.



Answer: Floating-point number

A(n) ____ is not required if you always refer to a class with its fully qualified class name.

September 30, 2017

A(n) ____ is not required if you always refer to a class with its fully qualified class name.



Answer: Import declaration

Class String is in package ____.

September 30, 2017

Class String is in package ____.



Answer: java.lang

Scanner method ____ reads characters until it encounters a newline character, then returns those character as a String.

September 30, 2017

Scanner method ____ reads characters until it encounters a newline character, then returns those character as a String.



Answer: nextLine

Return type ____ indicates that a method will not return a value.

September 30, 2017

Return type ____ indicates that a method will not return a value.



Answer: Void

Keyword public is an access ____.

September 30, 2017

Keyword public is an access ____.



Answer: Modifier

Scanner method ____ returns a double value.

September 30, 2017

Scanner method ____ returns a double value.



Answer: nextDouble

Variables of type double represent ____ floating-point numbers.

September 30, 2017

Variables of type double represent ____ floating-point numbers.



Answer: Double-precision

Java provides two primitive types for storing floating-point numbers in memory ____ and ___.

September 30, 2017

Java provides two primitive types for storing floating-point numbers in memory ____ and ___.




Answer: Float, double


By default, classes that are compiled in the same directory are considered to be in the same package, known as the ____.

September 30, 2017

By default, classes that are compiled in the same directory are considered to be in the same package, known as the ____.



Answer: Default package

Each parameter must specify both a(n) ____ and a(n) ____.

September 30, 2017

Each parameter must specify both a(n) ____ and a(n) ____.



Answer: Type, name

Keyword ____ requests memory from the system to store an object, then calls the corresponding class's constructor to initialize the object.

September 30, 2017

Keyword ____ requests memory from the system to store an object, then calls the corresponding class's constructor to initialize the object.



Answer: New

Keyword ____ in a class declaration is followed immediately by the class's name.

September 30, 2017

Keyword ____ in a class declaration is followed immediately by the class's name.



Answer: Class

Each class declaration that begins with keyword ___ must be stored in a file that has exactly the same name as the class and ends with the .java filename extension.

September 30, 2017

Each class declaration that begins with keyword ___ must be stored in a file that has exactly the same name as the class and ends with the .java filename extension.



Answer: Public

True or false? The arithmetic operators *, /, %, +, and - all have the same levels of precedence.

September 30, 2017

True or false? The arithmetic operators *, /, %, +, and - all have the same levels of precedence.



Answer: False

True or false? The remainder operator (%) can be used only with integer operands.

September 30, 2017

True or false? The remainder operator (%) can be used only with integer operands.



Answer: False

True or false? Java considers the variables number and NuMbEr to be identical.

September 30, 2017

True or false? Java considers the variables number and NuMbEr to be identical.



Answer: False

True or false? All variables must be given a type when they are declared.

September 30, 2017

True or false? All variables must be given a type when they are declared.



Answer: True

True or false? Comments cause the computer to print the text after the // on the screen when the program executes.

September 30, 2017

True or false? Comments cause the computer to print the text after the // on the screen when the program executes.





Answer: False

Methods ______, ______, and ______ display information in a command window.

September 30, 2017

Methods ______, ______, and ______ display information in a command window.



Answer: System.out.println, System.out.printf

Java applications begin execution at method ______.

September 30, 2017

Java applications begin execution at method ______.



Answer: Main

______ are reserved for use by Java.

September 30, 2017

______ are reserved for use by Java.



Answer: Keywords

______, ______, and ______ are called white space.

September 30, 2017

______, ______, and ______ are called white space.



Answer: Space characters, newlines, and tabs

_____ begins and end-of-line comment.

September 30, 2017

_____ begins and end-of-line comment.



Answer: //

You can use the ______ statement to make decisions.

September 30, 2017

You can use the ______ statement to make decisions.


Answer: If

A(n) ______ begins the body of every method, and a(n) ______ ends the body of every method.

September 30, 2017

A(n) ______ begins the body of every method, and a(n) ______ ends the body of every method.



Answer: Left brace, right brace

What is the representation of the third element in an array called a?

September 30, 2017

What is the representation of the third element in an array called a?



Answer: a[2]

Variables defined in the method header are called ______.

September 30, 2017

Variables defined in the method header are called ______.



Answer: Parameters

_____ is a simple but incomplete version of a method.

September 30, 2017

_____ is a simple but incomplete version of a method.



Answer: A stub

When you invoke a method with a parameter, the value of the argument is passed to the parameter. This is referred to as ______.

September 30, 2017

When you invoke a method with a parameter, the value of the argument is passed to the parameter. This is referred to as ______.



Answer: Pass by value

Each time a method is invoked, the system stores parameters and local variables in an area of memory, known as ______, which stores elements in last-in first-out fashion.

September 30, 2017

Each time a method is invoked, the system stores parameters and local variables in an area of memory, known as ______, which stores elements in last-in first-out fashion.



Answer: A stack

The signature of a method consists of ______.

September 30, 2017

The signature of a method consists of ______.



Answer: method name and parameter list.

Suppose your method does not return any value, which of the following keywords can be used as a return type?

September 30, 2017

Suppose your method does not return any value, which of the following keywords can be used as a return type?



Answer: Void

The Unicode of 'a' is 97. What is the Unicode for 'c'?

September 30, 2017

The Unicode of 'a' is 97. What is the Unicode for 'c'?



Answer: 99

___translates high-level language program into machine language program.

September 30, 2017

___translates high-level language program into machine language program.




Answer: a compiler

___is the physical aspect of the computer that can be seen.

September 30, 2017

___is the physical aspect of the computer that can be seen.




Answer: hardware

The default value for data field of a boolean type, numeric type, object type is ________, respectively.

September 30, 2017

The default value for data field of a boolean type, numeric type, object type is ________, respectively.



Answer: false, 0, null

______ is invoked to create an object.

September 30, 2017

______ is invoked to create an object.



Answer: A constructor

The keyword ________ is required to declare a class.

September 30, 2017

The keyword ________ is required to declare a class.




Answer: class

An object is an instance of a ________

September 30, 2017

An object is an instance of a ________



Answer: class

______ is a construct that defines objects of the same type.

September 30, 2017

______ is a construct that defines objects of the same type.




Answer: A class

________ represents an entity in the real world that can be distinctly identified.

September 30, 2017

________ represents an entity in the real world that can be distinctly identified.




Answer: An Object

The Dmanisi cranial remains show that the very early European specimens had large brains.

September 18, 2017

The Dmanisi cranial remains show that the very early European specimens had large brains.



Answer: False

The transition between premodern and anatomically modern forms of humans may have occurred as early as 500,000 years ago in Africa.

September 18, 2017

The transition between premodern and anatomically modern forms of humans may have occurred as early as 500,000 years ago in Africa.



Answer: False

According to the film Becoming Human Part 3 Neandertals grew up at a much slower rate than modern H. sapiens.

September 18, 2017

According to the film Becoming Human Part 3 Neandertals grew up at a much slower rate than modern H. sapiens.



Answer: False

Homo erectus is the first hominin for which we have evidence of wide geographical dispersion.

September 18, 2017

Homo erectus is the first hominin for which we have evidence of wide geographical dispersion.



Answer: True

The main effect of fluctuating climates in Africa during the Pleistocene was to change rainfall patterns.

September 18, 2017

The main effect of fluctuating climates in Africa during the Pleistocene was to change rainfall patterns.




Answer: True

The A. afarensis hand, wrist, and foot bones are indistinguishable from those of modern humans.

September 18, 2017

The A. afarensis hand, wrist, and foot bones are indistinguishable from those of modern humans.



Answer: False

Given the newest dates for the Ngandong Homo erectus material on Java, it is possible that Homo erectus could have existed contemporaneously with Homo sapiens.

September 18, 2017

Given the newest dates for the Ngandong Homo erectus material on Java, it is possible that Homo erectus could have existed contemporaneously with Homo sapiens.




Answer: True

The oldest New World primate fossil was found in Bolivia and dates to the Oligocene epoch.

September 18, 2017

The oldest New World primate fossil was found in Bolivia and dates to the Oligocene epoch.



Answer: True

Thanks to the modern medicine, many infectious diseases such as tuberculosis and cholera are no longer a threat to human populations.

September 18, 2017

Thanks to the modern medicine, many infectious diseases such as tuberculosis and cholera are no longer a threat to human populations.



Answer: False

The term race currently has only biological connotations and is without any social significance.

September 18, 2017

The term race currently has only biological connotations and is without any social significance.



Answer: False

The bow and arrow seems to have appeared during the Magdalenian.

September 18, 2017

The bow and arrow seems to have appeared during the Magdalenian.




Answer: True

The Upper Paleolithic was a period during which there were rapid shifts in climatic conditions.

September 18, 2017

The Upper Paleolithic was a period during which there were rapid shifts in climatic conditions.



Answer: True

Genetic evidence indicates that all native Australians are descendants of a single migration 50 k.y.a.

September 18, 2017

Genetic evidence indicates that all native Australians are descendants of a single migration 50 k.y.a.



Answer: True

There is evidence of chronological overlap in occupation of the Near East by Neandertals and modern humans.

September 18, 2017

There is evidence of chronological overlap in occupation of the Near East by Neandertals and modern humans.




Answer: True

Lagar Velho is a site located in the Near East.

September 18, 2017

Lagar Velho is a site located in the Near East.




Answer: False

As a group, the specimens from Skhul all have modern human features and none show any hints of pre modern features.

September 18, 2017

As a group, the specimens from Skhul all have modern human features and none show any hints of pre modern features.




Answer: False

Recent analyses have shown that the mtDNA from fossil modern human skeletons is exactly the same as the mtDNA from Neandertal skeletons.

September 18, 2017

Recent analyses have shown that the mtDNA from fossil modern human skeletons is exactly the same as the mtDNA from Neandertal skeletons.



Answer: False

The first modern Homo sapiens, known as Cro-Magnon, evolved from Western Europe.

September 18, 2017

The first modern Homo sapiens, known as Cro-Magnon, evolved from Western Europe.



Answer: False

Anatomically modern forms of Homo sapiens may have occurred as early as 200,000 years ago in Africa.

September 18, 2017

Anatomically modern forms of Homo sapiens may have occurred as early as 200,000 years ago in Africa.




Answer: True

Bone tools, beads, and decorated ocher fragments were found at Blombos Cave as old as 73,000 years old.

September 18, 2017

Bone tools, beads, and decorated ocher fragments were found at Blombos Cave as old as 73,000 years old.




Answer: True

The Neanderthal boy from Scladina Cave grew up at a much slower rate than modern H. sapiens.

September 18, 2017

The Neanderthal boy from Scladina Cave grew up at a much slower rate than modern H. sapiens.




Answer: False

The Chatelperronian tool industry is associated with Neandertals and Homo sapiens.

September 18, 2017

The Chatelperronian tool industry is associated with Neandertals and Homo sapiens.



Answer: True

All archaeologists agree that Homo erectus appears to have been an efficient big game hunter who rarely gathered wild plant foods.

September 18, 2017

All archaeologists agree that Homo erectus appears to have been an efficient big game hunter who rarely gathered wild plant foods.



Answer: False

If you are examining the fossil remains of the genus Dryopithecus, they are most likely from China.

September 18, 2017

If you are examining the fossil remains of the genus Dryopithecus, they are most likely from China.



Answer: False

The Acheulian biface or "hand axe" is a basic tool of the Acheulean technological tradition.

September 18, 2017

The Acheulian biface or "hand axe" is a basic tool of the Acheulean technological tradition.




Answer: True

Given the newest dates for the Ngandong Homo erectus material on Java, it is possible that Homo erectus could have existed contemporaneously with Homo sapiens.

September 18, 2017

Given the newest dates for the Ngandong Homo erectus material on Java, it is possible that Homo erectus could have existed contemporaneously with Homo sapiens.



Answer: True

The oldest New World primate fossil was found in Bolivia and dates to the Oligocene epoch.

September 18, 2017

The oldest New World primate fossil was found in Bolivia and dates to the Oligocene epoch.



Answer: True

Carbon 14 dating is a relative dating method used to date rocks and minerals.

September 18, 2017

Carbon 14 dating is a relative dating method used to date rocks and minerals.



Answer: False
Subscribe to: Posts (Atom)

Search your questions here...

Trending Questions

  • Primatology helps anthropologists make inferences about the early social organization of hominids and untangle issues of human nature and the origins of culture. Of particular relevance to these types of questions are two kinds of primates:
    Primatology helps anthropologists make inferences about the early social organization of hominids and untangle issues of human nature and ...
  • What is meant by the cultivation continuum?
    What is meant by the cultivation continuum? a) Subsistence exists on a continuum because no society has just one subsistence pattern ...
  • The social connections linking human beings who engage in different production tasks and who must work together are called
    The social connections linking human beings who engage in different production tasks and who must work together are called Answer: rela...

Blog Archive

  • September 2018 (120)
  • June 2018 (49)
  • February 2018 (76)
  • September 2017 (84)
  • July 2017 (75)
  • March 2017 (75)

Label

AIIMS 1993-November Anthropology Java Chapter 2 Java Chapter 3 Java Programming
Powered by Blogger.
Copyright © 2015 Anthropology MCQ | Term Of Service | Disclaimer | Privacy Policy | DMCA