Reasoning

Logic and Fallacies

1,716 Questions

Understand the fundamentals of propositional logic, logical inference rules, and paradoxes. This set includes identifying logical fallacies, including those found in classical Nyaya logic. Strong grasp of these concepts is crucial for scoring well in the reasoning sections of competitive tests.

Propositional logic modelsLogical inference rulesTypes of logical fallaciesParadoxes and contingent truthsNyaya logic concepts

Logic and Fallacies Questions

Multiple choice softskills leadership
  1. similar

  2. self-evident truth requiring no proof

  3. gather into wrinkles or folds

  4. juicy

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

An axiom is a statement or principle that is obviously true and requires no proof or demonstration. 'Self-evident truth requiring no proof' is the exact definition. Axioms are starting points for reasoning.

Multiple choice softskills leadership
  1. logical formula consisting of a major premise, a minor premise and a conclusion

  2. study of artifacts and relics of early mankind

  3. mutually agreed on

  4. reddish

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Concerted means mutually agreed upon, arranged, or planned together; done in cooperation. Option A describes a syllogism in logic. Option B refers to archaeology. Option D ('reddish') describes a ruddy or coppery color.

Multiple choice softskills leadership
  1. make valid

  2. withdrawal

  3. curving outward

  4. logically convincing

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Convex means curving outward or having a surface that curves outward like the exterior of a sphere. Option C is the correct geometric definition. The other options refer to validation, withdrawal, or logical persuasion - all unrelated to shape.

Multiple choice softskills communication
  1. DEDUCTIVE OR THEORETICAL

  2. INDUCTIVE

  3. NOT IMPORTANT

  4. WITH PRIORITY

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

A priori refers to knowledge or reasoning that proceeds from theoretical deduction rather than empirical observation. It describes conclusions drawn from general principles or logic, not from experience. Inductive reasoning is the opposite approach (a posteriori).

Multiple choice softskills communication
  1. HYPOTHETICAL

  2. IMAGINARY

  3. INDUCTIVE OR EXPERIMENTAL

  4. OF NO SENSE

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

A posteriori refers to knowledge derived from empirical observation and inductive reasoning - learning from experience and experimentation. It's the opposite of a priori (deductive reasoning). The other options either don't relate to this philosophical distinction or are incorrect.

Multiple choice softskills communication
  1. dilemma

  2. sure

  3. certain

  4. impossible

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Quandary refers to a state of perplexity or uncertainty over what to do in a difficult situation, making 'dilemma' the correct answer. Sure and certain are antonyms to quandary, while impossible doesn't capture the nuance of being torn between choices.

Multiple choice softskills communication
  1. in fact

  2. as a result

  3. according to

  4. inspite of

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

De facto is Latin for 'in fact' or 'in reality,' referring to something that exists in practice even if not officially established, making 'in fact' the correct answer. The other options don't capture the 'in practice' meaning of de facto.

Multiple choice softskills communication
  1. perfect

  2. evil

  3. not important

  4. essential condition

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Sine qua non is Latin for 'without which not,' meaning an essential condition or prerequisite, making 'essential condition' the correct answer. Perfect and evil are unrelated, while 'not important' is the opposite of sine qua non.

Multiple choice softskills communication
  1. unpredictable

  2. dubious

  3. unchangeable

  4. debatable

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Immutable means unchangeable or permanent - not able to be altered. Option A (unpredictable) is unrelated - something immutable can be predictable. Options B and D (dubious, debatable) suggest uncertainty or questions, which is different from permanence. The word combines 'im-' (not) with 'mutable' (changeable).

Multiple choice softskills communication
  1. fradulent.

  2. pertaining to an incident

  3. proportional in amount.

  4. a self-contradictory and false proposition

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

A paradox is a statement that appears self-contradictory but may reveal a deeper truth. Option D correctly identifies the self-contradictory nature. Options A, B, and C are unrelated words that might sound similar but have completely different meanings.

Multiple choice softskills communication
  1. perpetuous

  2. probable

  3. pessimistic

  4. positive

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Plausible means seeming reasonable or probable; credible. Option B is correct. Options A, C, and D are words starting with P or containing positive sounds, but none match the actual meaning of plausible.

Multiple choice technology testing
  1. Statement coverage

  2. Pole Coverage

  3. Condition Coverage

  4. Path Coverage

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Statement, condition, and path coverage are standard white-box testing metrics. 'Pole coverage' is a fictitious term and not a form of logic coverage.

Multiple choice technology programming languages
  1. if ((x < 3) && (y > 4))

  2. if (x < 3 y >= 4)

  3. if ((x < 3) || (y > = 4))

  4. if ((x > 3) || (y < = 4))

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The expression using the logical OR operator (||) matches the requirement "either x < 3 or y >= 4." The && version requires both, the malformed syntax lacks an operator, and the last option reverses the inequality, making them wrong.

Multiple choice technology mainframe
  1. Natural Functions

  2. Conditions

  3. Values of a variable

  4. No such statement in Natural

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

In Software AG's Natural programming language, the DECIDE FOR statement is specifically designed to evaluate multiple conditions and execute corresponding branches. The DECIDE ON statement, by contrast, is used to evaluate values of a single variable, making the conditions option correct.

Multiple choice technology databases
  1. IN

  2. EXISTS

  3. LIKE

  4. EXIST

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

EXISTS is generally faster than IN for subquery performance, especially with large datasets. EXISTS stops processing as soon as it finds a match (short-circuit evaluation), while IN may evaluate the entire list. Additionally, EXISTS handles NULL values more predictably - IN can return unexpected results when the subquery contains NULLs. Note: 'EXIST' is not valid SQL syntax.