Posts

Showing posts from November, 2020

CSS QUIZ 9 ANSWERS

  Computer system security quiz 9 Solution | Css quiz week 9 Answer with Reason | css quiz aktu Computer System Security Quiz week  9 Solution Q:1. Which of the following is correct for CSRF attack? 3.Both 1 and 2 CSRF is an attack that tricks the victim into submitting a malicious request. It inherits the identity and privileges of the victim to perform an undesired function on the victim’s behalf. For most sites, browser requests automatically include any credentials associated with the site, such as the user’s session cookie, IP address, Windows domain credentials, and so forth Q:2. One of the ways to prevent CSRF attack is that you should use _____ validation. 4.Both 1 and 2 In order to stay safe from Cross-site Request Forgery (CSRF) attacks, make use of the suggested and the most widely used prevention techniques which are known as an anti-CSRF token, also sometimes referred to as the synchronizer tokens. Q:3. Some of the vulnerability of a websites is/are ? 4.All of the above Mo

AKTU PYTHON QUIZ 8

  Python Programming Quiz 8th Week Quiz Solution 2020 | python quiz 8 solution 2020   Python Programming Quiz – 8th Week Quiz Solution 2020 [1] A class definition in python begins with the keyword – (a): def , file  (b): class , object (c): self , py file (d): None of these Answer: (b) class , object Reason:-  Python  is an “object-oriented programming language.” This  means  that almost all the code is implemented using a special construct called  classes . ... This is done using the  keyword  “ class ,” which is a grouping of object-oriented constructs. By the end of this tutorial you will be able to:  Define  what is a  class. Q-2. What will be the output of the following  python code ? class Roll: def __init__(self, id): self.id = id id = 231 return id val = Roll(321) print (val.id). (a): TypeError (b): 231 (c): 321 (d): None of these https://youtu.be/w9LXF1MYRes  please subscribe this channel for the answers of future quizes Answer: (b): 231 Reason:- its return value id 231 becaus

CSS QUIZ 8

Image
  1.Upper case and lower-case letters, numbers and symbols computer system security quiz 8 solution                         computer      system security quiz 8 solutio       Q:1. Password should be combination of ____. (according to the video lecture). 1.Lower case letters only 2.Memorable names and dates 3.Upper case and lower-case letters, numbers and non letter characters 4.Upper case and lower-case letters, numbers and symbols Answer:- 4 .Upper case and lower-case letters, numbers and symbols Reason:-  The key aspects of a strong password are length (the longer the better); a mix of letters (upper and lower case), numbers, and symbols, no ties to your personal information, and no dictionary words Q:2. The cookies we use, are sent with ______, which in general, _____ the performance. 1.only when requested,improves 2.every request, degrades 3.extra information, is useless for 4.None of the mentioned Answer:- 2.every request, degrades Reason :-  typically cookies are used for a varie