1.agile, Cloud, WebDev
1.agile, Cloud, WebDev
• Scrum team uses the information of scrum team artifacts to make ongoing
decisions. The soundness of these decisions depends on ____
Options :
• Artifact adaptability
• Artifact Transparency (Ans)
• Artifact Agility
• Artifact Format.
Q8. Which of the following is not true about story point in Agile estimation?
Options:
a. Story point help drive cross function behaviour
b. Story point estimate decay with time, like ideal day
c. Story point are pure measure of size
d. Estimating story point is typical faster
Ans :
Story point estimate decay with time, like ideal day
Q15. Most imp characteristics of product backlog item that is necessary to classify
it as ready for selection in sprint ?
options:
a. it should be ordered
b. it should be included in sprint backlog
c. it can be completed in one sprint
Ans : c. it can be completed in one sprint
Q20. Which of the following is main difference between system and component
testing?
Ans : The component testing is more concerned with the functionalities of
individual s/w components, then overall functionalities where the system
testing examines all the functional and non-functional component of the
applications.
Q22. What is the main difference between walkthrough and inspection in terms of
author?
Ans : A walkthrough is lead by an author, while an inspection is lead by a
trained moderator
Q24. Which is the single most important characteristics of a product backlog item
that is neccessary to classify it as ready for selection in sprint?
Ans: It should be included in sprint backlog
CLOUD
Q1. Which of the following is not managed by a service provider in a SaaS model
?
Options :
• OS
• Networking
• Servers
• Deployments
Ans : Deployments
Q4. In a SaaS model what does third party hosts on behalf of the end-user?
Options :
• Application Software
• Application Software and h/w
• Development environment
• All
Ans :
Applcation software
Q7. What ensures that multiple consumers of private cloud can’t access each
other's data?
Ans : Secret-multi tenancy
Q8. Cloud services such as disk, networking or memory are ____ to the users
a. Hidden
b. Transparent
c. Unreachable
d. None
Ans : Hidden
Q9. Which of the following options exists on cloud providers end and responsible
for allocating the services to be consumed by the customer?
Ans :
Q10. What do you understand about a physical private cloud ?
Ans : A physical private cloud is where a firm has physical custody of data
center where cloud is hosted
Ans : Static
Q16. which of the following option exists on cloud providers and responsible for
allocating service to be consumed by the customer
Ans: Hypervisor
Q19. PaaS delivers at a typical firms standards and top of the line
Options:
Ans: development, framework and tools cloud support
Q2.
Q3.
Q5. Which of the following options are correct for deleting a cookie “day =
Monday” (MSQ)
Options:
a. documet.cookie = 'day = ;path=/;expires=Sun, 20 Aug 2000 12:00:00 UTC
b. documet.cookie = 'day = ;path=/;max-age=0';
c. documet.cookie = 'day = ;path=/;max-age = -10';
d. We can delete the cookie explicitely by using a web browser
Ans : documet.cookie = 'day = ;path=/;max-age=0';
Q6. What eventhandler should be used for a user to click on an element from the
option provided ?
Ans : OnClick()
Q7. Which of the following best describes the purpose of the browser event loop in
JS ?
Ans : To handle asynchronous code execution and manage events without
blocking main thread.
Q8.
<script>
var can = document.createElement('canvas');
can.id = "myCanvas";
can.width = 1000;
can.height = 500;
can.style.zindex = 8;
can.style.position = "absolute";
can.style.border = "1px solid"
</script>
Options:
a. The canvas element cannot be created like regular DOM element, hence above
code will not display a canvas
b. the code above will display a canvas
c. the code created in the above code is not inserted into the document body so it
will not be displayed
d. the canvas created will not display since it does not have a
background color
Ans :
the canvas created will not display since it does not have a background color
Q10. There is a html text input field with the id "text", We need to set value to this
field to "game", What is the correct js function to accomplish this ?
Ans: document.getElementById('text').setAttribute('values', 'game')
Q11. Which of the following is used in order to remove the paragraph element?
Ans : $("p").remove();
Q12. Olivia is working with the html code and she is new to DOM manipulation,
suppose she has a line of code that contains a <div> tag, she wants to attach a <h1>
tag which will ____ work?
Ans : .appendchild() / after()
Q16.
login = false
logout = true
____ code:
Ans : Option A - You have logged out
Q19. You have met some styling changes to specific part of the web page thses
changes are applied and override any style defined sheets text and externalsheet
and internal style tags on the page now if you want to make further style
adjustments to that specific part of the page what type of style must you have used
initial changes ?
Ans: Style inline within HTML Tags
Q20. Which of the following is/are correct snippet in order to fetch the value
entered in username textfield (MSQ)
Ans:
document.login.uname.value ;
document.getElementById("p_name").value;
Q21. The browser eventloop consists of multiple phases and microtasks which of
the following statements accurately describes the order of executions during one
iteration of event loop?
Ans: (#a sentence with following sequence)
Handle, Events, MicroTasks, Render
Q23. You want to allow records to be inserted with a blank emailID filled initially
however you need to ensure that this blank field is automatically populated with a
random email id ending with @gmail.com after insertion___
Ans: Default
Q25.
p = 12, q = 14
read p
read q
a = 'exps:$p+$q'
echo $a
Ans : 26
Q27.
const array = [16,32,64,128];
for (var i =0; i<array.lenth; i++){
setTimeout(function() {
console.log('Ind_Val: ' + i + ', elem: ' + array[i]);
}, 3000);
}
Ans:
Ind_Val : 0, elem : 16
Ind_Val : 1, elem : 32
Ind_Val : 2, elem : 64
Ind_Val : 3, elem : 128
Q29.
Give the following HTML element which answer will update the current colour of
the element with blue
var myDiv = document.getElementById("elem")
options:
a. myDiv.style = "blue"
b. myDiv.style.css = "blue"
c. myDiv.style.newcolor = "blue"
d. myDiv.style.color = "blue"
Ans:
myDiv.style.color = "blue"
Q30.
<body>
<form name = "register">
Enter username<input value = "John" id = "name" name = "username">
</form>
</body>
Ans:
document.getElementById("name").value
Q31.
const v = "I am here!";
const n = v.search(/here!/i);
console.log(n)
options:
a. Here!
b. 6
c. 5
d. I am here
Ans: 5
Q32.
let sample = {prop1:"hello"};
sample.prop2 = "JS";
console.log(sample)
options:
a. undefined
b. error
c. {prop1: "hello", prop2: "JS"}
d. {prop1:"hello"}
Q34. let a = b + 3
console.log(a);
Ans: Reference Error