PREVIOUS YEAR SOLVED PAPERS - July 2016 Paper 3

66. A perceptron has input weights W1 = – 3.9 and W2 = 1.1 with threshold value T = 0.3. What output does it give for the input x1 = 1.3 and x2 = 2.2 ?

  • Option : C
  • Explanation :
    According to given question w1 = – 3.9 and w2 = 1.1 and x1 = 1.3 and x2 = 2.2 weighted sum = w1 * x1 + w2 * x2 + . . . wn * xn i.e. -3.9 * 1.3 + 1.1 * 2.2 = -5.07 + 2.42 = -2.65 Now we will compare the weighted sum -2.65 to the threshold 0.3. -2.65 < 0.3
    Then output will be zero.
    So, option (C) is correct.
Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *


67. What is the function of following UNIX command ?
WC – l
b&

Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *


68. Which of the following statement is not correct with reference to cron daemon in UNIX O.S. ?

  • Option : D
  • Explanation :
  • The cron daemon is the standard tool for running commands on a pre-determined schedule.Correct
  • The cron starts when the system boots and runs as long as the system is up.Correct
  • Cron reads configuration files that contain list of command lines and the times at which they invoked.Correct
  • Crontab for individual users are not stored.Incorrect Crontab is stored for individual user.
  • So, option (D) is correct.
Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *


69. In Unix, files can be protected by assigning each one a 9-bit mode called rights bits. Now, consider the following two statements:
I. A mode of 641 (octal) means that the owner can read and write the file, other members of the owner’s group can read it, and users can execute only.
II. A mode of 100 (octal) allows the owner to execute the file, but prohibits all other access.
Which of the following options is correct with reference to above statements ?

  • Option : C
  • Explanation :
    In Unix:
  • Files can be protected by assigning each one a 9-bit mode called rights bits.
  • A mode of 641 (octal) means that the owner can read and write the file, other members of the owner’s group can read it, and users can execute only.
  • A mode of 100 (octal) allows the owner to execute the file, but prohibits all other access.
  • Both statement are correct regarding to UNIX. So, option (C) is correct.
Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *


70. Consider the statement, “Either – 2 ≤ x ≤ – 1 or 1 ≤ x ≤2”. The negation of this statement is

  • Option : A
  • Explanation :
    “Either – 2 ≤ x ≤ – 1 or 1 ≤ x ≤2”. i.e. Eiter x ≥ -2 or x ≤ -1 or 1 ≤ x or x ≤ 2” We have to find negation of above statement: Negation of x ≥ -2 is x < 2. Negation of x ≤ -1 is x > -1. Negation of 1 ≤ x is x < 1 Negation of x ≤ 2 is x > 2. i.e. x < – 2 or 2 < x or – 1 < x < 1. So, option (A) is correct.
Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *


Related Quiz.
July 2016 Paper 3