Tag: science & technology

Questions Related to science & technology

Multiple choice general knowledge science & technology
  1. spiderman

  2. heman

  3. nauman

  4. dharmendra

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

"With great power comes great responsibility" is the iconic quote from Spider-Man's origin story, originally spoken by Uncle Ben in the comics. This phrase encapsulates Spider-Man's core philosophy that his powers must be used ethically to help others, making him unique among superheroes.

Multiple choice general knowledge science & technology
  1. parvej khan

  2. shadab khan

  3. sharukh khan

  4. amir khan

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

The quote "Bade bade shehron mein choti batein hoti rehti hain" is a famous dialogue from the Bollywood film "Dilwale Dulhania Le Jayenge" (1995), spoken by the character Raj Malhotra played by Shah Rukh Khan. The hints "king khan" and "not a super hero but no less than anyone" directly point to Shah Rukh Khan, who is often called "King Khan" in Bollywood.

Multiple choice general knowledge science & technology
  1. tipu sultan

  2. ninja king

  3. sindbaad

  4. heman

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

The tagline "A sword will choose a master, a boy will become a man.." is from the animated series "He-Man and the Masters of the Universe". He-Man, also known as Prince Adam, is the main character who wields the Power Sword and transforms into the mighty warrior He-Man.

Multiple choice general knowledge science & technology
  1. 7

  2. 2

  3. 14

  4. 0

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

Pure water has a pH of 7, which is considered neutral on the pH scale (0-14). A pH of 7 means the concentration of hydrogen ions equals the concentration of hydroxide ions. pH values below 7 are acidic, while values above 7 are basic (alkaline). Pure water at 25°C has this neutral pH value.

Multiple choice general knowledge science & technology
  1. Pervious directory

  2. Current directory

  3. Parent directory

  4. none of the above

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

In Linux directory listings, the single dot (.) represents the current directory you're in, while the double dot (..) represents the parent directory. This is a fundamental concept in Linux file system navigation and is visible in the output of the 'ls -a' command which shows all files including hidden ones.

Multiple choice general knowledge science & technology
  1. remount recursively and forcefully

  2. remove recursively and forcefully

  3. remodulate recursively and forcefully

  4. remanifacture recursively and forcefully

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

The 'rm -rf' command in Linux combines two flags: '-r' for recursive (removing directories and their contents) and '-f' for force (ignoring nonexistent files and never prompt). Together, these create a powerful command that removes files and directories recursively and forcefully without confirmation, making option B the correct explanation.

Multiple choice general knowledge science & technology
  1. GRUB

  2. LILO

  3. SBOOTUP

  4. NTLDR

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

GRUB (Grand Unified Bootloader), LILO (LInux LOader), and NTLDR (NT Loader for Windows) are all well-known boot loaders used in different operating systems. SBOOTUP is not a real boot loader - it appears to be a fabricated option among legitimate boot loading programs, making option C the correct choice for 'not a boot loader.'

Multiple choice general knowledge science & technology
  1. Read-Write-Execute for Owner-Group-Others

  2. Read-Execute-Write for Other-Group-Owner

  3. Read-Execute-Write for Group-other-Owner

  4. Read-Write-Execute for Other-Group-Owner

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

The standard Linux file permission notation uses three groups (owner, group, others) with three characters each (read, write, execute). The pattern 'xxx xxx xxx' represents the rwx/rwx/rwx format, where each xxx shows Read-Write-Execute permissions for Owner-Group-Others respectively. This is the fundamental Unix permission model.

Multiple choice general knowledge science & technology
  1. 1000

  2. 101

  3. 0

  4. 007

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

The root user in Unix and Linux systems always has the user ID (UID) of 0. This is a fundamental convention across all Unix-like operating systems. UID 0 grants unlimited system privileges, which is why the root account has complete control over the system. All other regular users typically have UIDs starting from 1000.

Multiple choice general knowledge science & technology
  1. userchange

  2. logas

  3. su

  4. uchangeto

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

The 'su' command (short for substitute user or switch user) is the standard Unix/Linux command used to change to another user account, most commonly root. When executed without arguments, it attempts to switch to root and prompts for the root password. Modern systems also use 'sudo' for temporary privilege escalation, but su is the direct user-switching tool.