Accenture
Primers
Assessments
Accenture Dumps
Coding Bank
Blog
Topics
Must Know
Mock Assessment 2026
Complete Question Index
Browse through all 2134 assessment questions (Page 10 of 15)
Software Engineering • Looping Statements
What is true about FOR LOOP?
Software Engineering • Looping Statements
Jack wants to book flight tickets in Feather-Airways online portal for his family of five. Passenger details like name, age, gender etc. should be ent...
Software Engineering • Looping Statements
What will be the output for WHILE loop? BEGIN DECLARE number SET number <-- 30 WHILE number>0 number <-- number-4 END WHILE PRINT number END
Software Engineering • Looping Statements
What is the output for FOR-loop snippet? FOR i <--1 to 15 PRINT i i <-- i+3 END FOR
Software Engineering • Looping Statements
Which of the following symbols is inappropriate in building the flowchart pertaining to sequential flow of program?
Software Engineering • Looping Statements
The statement / statements within the loop must get executed at least once except for do-while statement. State True/False.
Software Engineering • Looping Statements
Which of the following statements are true with respect to looping statements?
Software Engineering • Looping Statements
Which of the following statements are true?
Software Engineering • Looping Statements
Consider you have a Rubik cube with different colors in each face. To solve this cube, you will continue to rotate the sides until you reach same colo...
Software Engineering • Looping Statements
d f a o n w h g r l e t m p i DOWN: 1) Step by step list of instructions 4) When you know the exact number of iterations, this loop is used Across: 2)...
Software Engineering • Looping Statements
Identify the logic which suits the flowchart?
Software Engineering • Looping Statements
It's Halloween. You go from house to house, tricking or treating. You get 2 candies from each house that you go to. You must return home once you coll...
Software Engineering • Looping Statements
Looping statements are also called ____________ a. Program logic b. Iteration logic c. Selection logic d. Sequence logic
Software Engineering • Looping Statements
Select the appropriate code snippet for the given problem statement provided as pseudocode. Problem Statement : Strong number Check if a given number ...
Software Engineering • Looping Statements
Choose the pseudocode for the below problem statement. Problem Statement : Vehicle Registration Mr.William buys a new Audi car. During the vehicle reg...
Software Engineering • Selection Statement
______________must be used when a set of statements needs to be executed only if a condition is met.
Software Engineering • Selection Statement
Consider the pseudo-code snippet. What output do you think the snippet will produce if the sample input for number is 3? BEGIN DECLARE number READ num...
Software Engineering • Selection Statement
From the option, find the correct pseudo-code to find the greatest of three numbers
Software Engineering • Selection Statement
READ age IF age>18 THEN PRINT Eligible to vote ENDIF The given pseudo-code snippet is an example for_______
Software Engineering • Selection Statement
By default, the flow of a program is________
Software Engineering • Selection Statement
If there are 6 chocolates and you take away 4, how many do you have?
Software Engineering • Selection Statement
What do you infer from this statement? Only if Alvin is happy, then he does not go to work.
Software Engineering • Selection Statement
Go to statements in the algorithm is
Software Engineering • Selection Statement
Identify the logic which suits the flowchart
Software Engineering • Selection Statement
Try some!!! If a doctor gives you 3 pills and tells you to take one pill every half hour, how long would it take before all the pills had been taken?
Software Engineering • Selection Statement
Which statement logic implements multiple-way selection?
Software Engineering • Selection Statement
Manual execution of the steps in the algorithm is called as _____
Software Engineering • Selection Statement
When a single if-else logic is used, how many possible choices can be there?
Software Engineering • Selection Statement
You are returning home from a hotel. On the way, you find a sealed envelope in a street, fully addressed with unused stamps on it. What would you do??...
Software Engineering • Selection Statement
Which of the following is not a keyword used in a pseudo-code
Software Engineering • Selection Statement
Choose the correct options to complete the pseudo-code and determine whether the number is positive, zero, or negative. BEGIN DECLARE number READ numb...
Software Engineering • Selection Statement
Decision statements are also called as _______________. a. Selection logic b. Iteration logic c. Program logic d. Sequence logic
Software Engineering • Selection Statement
A computer program must either use conditional statements or looping statements or sequential statements to solve a problem. All of them must not appe...
Software Engineering • Selection Statement
Identify the correct pseudo-code logic for checking a number divisible by 5 or 11. a. DECLARE number READ number IF number%5==0 THEN PRINT number divi...
Software Engineering • Selection Statement
Which of the keyword is used to close the IF block, while writing a pseudo-code?
Web Technology • Html
Consider the below webpage: Which of the following is used to do this ?
Web Technology • Html
If the phone number should accept only 10 digit numbers, which of the following options will suit?
Web Technology • Html
Ram has designed a portal with 'like' and 'unlike' image buttons that redirect to 'thanks.html'. Which HTML code correctly implements this?
Web Technology • Html
HTML stands for __________
Web Technology • Html
Which element is a container for all the head elements, and may include the document title, scripts, styles, meta information, and more?
Web Technology • Html
An application that lets you search and see material on the internet is
Web Technology • Javascript
Choose the correct JavaScript statement which helps you to write "World of JavaScript" in a web page.
Web Technology • Javascript
Which of the below is the correct syntax for exectuing some code if "amt" is equal to 5000?
Web Technology • Javascript
Polson needs to extract every character from a text string for email validation. Which JavaScript method is best suited?
Web Technology • Javascript
Ram's banking website has a 'Check Interest Rates' button that should redirect users to a separate page. Which JavaScript code accomplishes this?
Web Technology • Javascript
Predict the output of the following JavaScript code: <html> <head> <script> var txt= "pass 70% fail 30%"; var pattern = /\D/g; var res= txt.match(patt...
Web Technology • Javascript
What is the output of the below code snippet <script type="text/javascript"> amt=55+"55"; document.write(amt); </script>
Web Technology • Javascript
The parseInt() method converts the string to a integer. Before applying this function, Ram wants to know the type of the argument that is passed to th...
Web Technology • Javascript
When a user views a page containing a JavaScript program, which machine actually executes the script?
Web Technology • Javascript
David, a beginner in web development trying to perform one particular operation using client side JavaScript. Choose the correct option(s) that he can...
Web Technology • Javascript
When you want to enclose; some JavaScript statements to an HTML file, which is the correct tag you have to use?
Web Technology • Javascript
Which of the below statements are used to comment a line in JavaScript file?
Web Technology • Javascript
Sita wishes to greet the user when the user clicks on "Greet Me" button. In which event does she need to write the JavaScript code for greeting the us...
Web Technology • Javascript
Which of the below java script code helps to change the content of the paragraph tag dynamically? <p id="pid1">Aim Higher.. Sky is your limit
Web Technology • Jquery
Rhita wants to replace jQuery's $(document).ready(fun) with an equivalent shorter method.
Web Technology • Jquery
$("#name").remove(); This will remove the text field when you click on the button. State true or false.
Web Technology • Jquery
jQuery is a JavaScript Object Notation library
Web Technology • Jquery
Bind an event handler to the "blur" JavaScript event on an element.
Web Technology • Jquery
Raju wants to remove an event handler that was attached with on() function.Help him to select the correct option.
Web Technology • Jquery
John sets an element's CSS position property to its default value and applies jQuery animations. What is the output?
Web Technology • Jquery
Kiran wants to remove all the child nodes from the given div element. Help him to select the correct option to remove all the child node from the div ...
Web Technology • Jquery
Some users don't want animations to interfere with their web page experience. How can a user turn off animations?
Web Technology • Jquery
When referencing an HTML element using jQuery preceded by a # , what JavaScript function is this equivalent to?
Web Technology • Jquery
If you want to change the color of a link to red when moving mouse pointer on top of it, which CSS property you need to change?
Web Technology • Jquery
Which of the following is most appropriate tag in html 5 to divide the document into logical document groups?
Web Technology • Jquery
The following elements are newly added elements in HTML5: <section> <article> <aside> These elements are called _____________
[DUMP]
AWS Cloud • AWS Cloud Arch Design - PostQuiz
Which pillar is a combination of processes, continuous improvement, and monitoring system that delivers business value and continuously improve suppor...
[DUMP]
AWS Cloud • AWS Cloud Arch Design - PostQuiz
___________focuses on achieving the lowest price for a system/workload. Optimize the cost while considering the account needs without ignoring factors...
[DUMP]
AWS Cloud • AWS Cloud Arch Design - PostQuiz
Which pillar of the Well-Architected Framework focuses on the ability to recover from failures and meet customer demands?
[DUMP]
AWS Cloud • AWS Cloud Arch Design - PostQuiz
What is the primary goal of the "Security" pillar in the Well-Architected
[DUMP]
AWS Cloud • AWS Cloud Arch Design - PostQuiz
A pillar focuses on ensuring a system/workload delivers maximum performance for a set of AWS resources utilized.
[DUMP]
AWS Cloud • AWS Cloud Arch Design - PostQuiz
What AWS service is used to convert speech to text?
[DUMP]
AWS Cloud • AWS Cloud Arch Design - PostQuiz
____________ is a small, rugged, and secure edge computing and data transfer device.
[DUMP]
AWS Cloud • AWS Cloud Arch Design - PostQuiz
The AWS Well-Architected Tool provides a plan on how to architect for the cloud using established best practices.
[DUMP]
AWS Cloud • AWS Cloud Arch Design - PostQuiz
Which of the following is NOT a pillar of the AWS Well-Architected Framework?
[DUMP]
AWS Cloud • AWS Cloud Arch Design - PostQuiz
How does the "Cost Optimization" pillar suggest handling unused or underutilized resources?
[DUMP]
AWS Cloud • AWS Cloud Arch Design - PostQuiz
Close change request
[DUMP]
AWS Cloud • AWS Cloud Arch design Principles - PreQuiz
AWS IAM belongs to which piller in Well Architected Framework?
[DUMP]
AWS Cloud • AWS Cloud Arch design Principles - PreQuiz
How many pillers are there in Well Architected Framework?
[DUMP]
AWS Cloud • AWS Cloud Arch design Principles - PreQuiz
Which of the piller responsible for automatic recovery?
[DUMP]
AWS Cloud • AWS Cloud Arch design Principles - PreQuiz
Which pillar of the Well-Architected Framework focuses on ensuring that information, systems, and assets are adequately protected?
[DUMP]
AWS Cloud • AWS Cloud Arch design Principles - PreQuiz
AWS WAF tool is used for reviewing existing infrastructure.
[DUMP]
AWS Cloud • AWS Cloud Arch design Principles - PreQuiz
What does the Operational Excellence pillar of the Well-Architected
[DUMP]
AWS Cloud • AWS Cloud Arch design Principles - PreQuiz
Well Architected Framework provide on-demand access to the best practices developed by architects(True/False)
[DUMP]
AWS Cloud • AWS Cloud Arch design Principles - PreQuiz
Which of the following is a best practice for cost optimization in AWS?
[DUMP]
AWS Cloud • AWS Cloud Arch design Principles - PreQuiz
Well Architected Framework designed to help you build the most secure, high-performing, resilient and efficient infrastructure(True/False)
[DUMP]
AWS Cloud • AWS Cloud Arch design Principles - PreQuiz
Which of the following is not a AWS WAF pillar?
[DUMP]
AWS Cloud • AWS Resource for Tech Support - PostQuiz
Which of the following messaging services is based on pub/sub messaging model.
[DUMP]
AWS Cloud • AWS Resource for Tech Support - PostQuiz
Which of the following provides shared storage for Linux workloads
[DUMP]
AWS Cloud • AWS Resource for Tech Support - PostQuiz
Cloudwatch can monitor custom metrics in-addition to built-in metrics.
[DUMP]
AWS Cloud • AWS Resource for Tech Support - PostQuiz
Which is the AWS service used for configuring Content Delivery Network(CDN)?
[DUMP]
AWS Cloud • AWS Resource for Tech Support - PostQuiz
Which AWS service used for enabling asynchronous communication between services.
[DUMP]
AWS Cloud • AWS Resource for Tech Support - PostQuiz
__________ is a serverless container orchestration service
[DUMP]
AWS Cloud • AWS Resource for Tech Support - PostQuiz
Which of the following database services support dynamic schema.
[DUMP]
AWS Cloud • AWS Resource for Tech Support - PostQuiz
Which of the following load balancers support content based routing?
[DUMP]
AWS Cloud • AWS Resource for Tech Support - PostQuiz
Choose the infrastructure automation service from the given list?
[DUMP]
AWS Cloud • AWS Resource for Tech Support - PostQuiz
Which of the following is a serverless computing?
[DUMP]
AWS Cloud • AWS Resource for Tech Support - PreQuiz
Monitoring the resources helps in ___________
[DUMP]
AWS Cloud • AWS Resource for Tech Support - PreQuiz
Which of the following service is used for monitoring resources in AWS.
[DUMP]
AWS Cloud • AWS Resource for Tech Support - PreQuiz
How manual scaling is done in EC2 auto scaling
[DUMP]
AWS Cloud • AWS Resource for Tech Support - PreQuiz
Which CloudWatch component allows you to create and manage custom alarms?
[DUMP]
AWS Cloud • AWS Resource for Tech Support - PreQuiz
Which of the following entity used for temporary access to resources.
[DUMP]
AWS Cloud • AWS Resource for Tech Support - PreQuiz
AWS DynamoDB is a serverless nosql database
[DUMP]
AWS Cloud • AWS Resource for Tech Support - PreQuiz
AutoScaling increases/decreases the capacity of an EC2 instance automatically.(True/False)
[DUMP]
AWS Cloud • AWS Resource for Tech Support - PreQuiz
Which of the following is NOT a benefit of using Amazon CloudWatch?
[DUMP]
AWS Cloud • AWS Resource for Tech Support - PreQuiz
Which of the following database is keyvalue pair or document database.?
[DUMP]
AWS Cloud • AWS Resource for Tech Support - PreQuiz
Which of the following database service is postgresql and mysql compatible database.
[DUMP]
AWS Cloud • Billing and Pricing - PostQuiz
Now that you have started your migration to the cloud, you want to find out which service you use the most and where the majority of your traffic is c...
[DUMP]
AWS Cloud • Billing and Pricing - PostQuiz
Cloud Computing Pricing models have been broadly classified as _________
[DUMP]
AWS Cloud • Billing and Pricing - PostQuiz
Amazon S3 pricing is based on factors namely __________
[DUMP]
AWS Cloud • Billing and Pricing - PostQuiz
Amazon EC2 ________ allow you to request spare Amazon EC2 computing capacity for up to 90 percent off the On-Demand price.
[DUMP]
AWS Cloud • Billing and Pricing - PostQuiz
The auction based pricing system is called _______
[DUMP]
AWS Cloud • Billing and Pricing - PostQuiz
Which AWS service allows you to centrally manage multiple AWS accounts?
[DUMP]
AWS Cloud • Billing and Pricing - PostQuiz
Which of the following Amazon EC2 tenancy model allow customers to use existing server-bound software licenses?
[DUMP]
AWS Cloud • Billing and Pricing - PostQuiz
Which attribute determines the costing of an on-demand EC2 instance?
[DUMP]
AWS Cloud • Billing and Pricing - PostQuiz
Which of the following pricing model used for application with consistent load
[DUMP]
AWS Cloud • Billing and Pricing - PostQuiz
Which tool is used for getting the estimated monthly cost for your setup?
[DUMP]
AWS Cloud • Billing and Pricing - PreQuiz
Which AWS service is closely integrated with AWS Budgets to provide cost and usage data?
[DUMP]
AWS Cloud • Billing and Pricing - PreQuiz
Which tenancy model is least expensive model?
[DUMP]
AWS Cloud • Billing and Pricing - PreQuiz
Which EC2 pricing option is most cheapest among below
[DUMP]
AWS Cloud • Billing and Pricing - PreQuiz
In AWS, you need to buy servers to host application.(True/False)
[DUMP]
AWS Cloud • Billing and Pricing - PreQuiz
Cost varies between regions(True/False)
[DUMP]
AWS Cloud • Billing and Pricing - PreQuiz
Amazon EBS pricing includes three factors,
[DUMP]
AWS Cloud • Billing and Pricing - PreQuiz
Which of the pricing option, customers pay per hour for compute.
[DUMP]
AWS Cloud • Billing and Pricing - PreQuiz
For how long can you use the AWS Free Tier?
[DUMP]
AWS Cloud • Billing and Pricing - PreQuiz
Which tenancy model is most expensive?
[DUMP]
AWS Cloud • Billing and Pricing - PreQuiz
The pricing models of the cloud providers can help the customers in ____________
[DUMP]
AWS Cloud • Introduction to AWS Cloud - PostQuiz
_______ eliminates the management of the underlying infrastructure (usually hardware and operating systems) and allows customer to focus on deploying ...
[DUMP]
AWS Cloud • Introduction to AWS Cloud - PostQuiz
AWS eliminate guessing on your infrastructure capacity needs.
[DUMP]
AWS Cloud • Introduction to AWS Cloud - PostQuiz
AWS Cloud's global footprint enables you to easily deploy applications to consumers all around the world (True/False)
[DUMP]
AWS Cloud • Introduction to AWS Cloud - PostQuiz
When did AWS start offering IT infrastructure services as web services?
[DUMP]
AWS Cloud • Introduction to AWS Cloud - PostQuiz
Which of the following is NOT a characteristic of cloud computing?
[DUMP]
AWS Cloud • Introduction to AWS Cloud - PostQuiz
How does cloud computing compare to traditional data centers in terms of obtaining new resources?
[DUMP]
AWS Cloud • Introduction to AWS Cloud - PostQuiz
When could a company decide to use a hybrid deployment model for cloud computing?
[DUMP]
AWS Cloud • Introduction to AWS Cloud - PostQuiz
Which of the following consists of one or more data centres?
[DUMP]
AWS Cloud • Introduction to AWS Cloud - PostQuiz
Cloud computing is the on-demand delivery of cloud services via the Internet with pay-as-you-go pricing.
[DUMP]
AWS Cloud • Introduction to AWS Cloud - PostQuiz
Which one of the following is Cloud Platform by Amazon?
[DUMP]
AWS Cloud • Introduction to AWS Cloud - PreQuiz
Select a benefit of a datacenter from the following options
[DUMP]
AWS Cloud • Introduction to AWS Cloud - PreQuiz
Customer has to choose the nearest _______ to the customers to reduce latency.
[DUMP]
AWS Cloud • Introduction to AWS Cloud - PreQuiz
In which of the following model application host completely on cloud.
[DUMP]
AWS Cloud • Introduction to AWS Cloud - PreQuiz
Which of the following service, customer has access to OS?
[DUMP]
AWS Cloud • Introduction to AWS Cloud - PreQuiz
Which of the following is not a cloud service model?
[DUMP]
AWS Cloud • Introduction to AWS Cloud - PreQuiz
One of the benefit of the cloud is agility, resource can be provisioned with few click.True/False
[DUMP]
AWS Cloud • Introduction to AWS Cloud - PreQuiz
What does SaaS stand for in cloud computing?
[DUMP]
AWS Cloud • Introduction to AWS Cloud - PreQuiz
What is cost optimization?
[DUMP]
AWS Cloud • Introduction to AWS Cloud - PreQuiz
Which of the following is not a management interface in AWS
[DUMP]
AWS Cloud • Introduction to AWS Cloud - PreQuiz
Which cloud deployment model involves a single organization using a cloud service exclusively?
[DUMP]
AWS Cloud • Security and Compliance - PostQuiz
What is the primary purpose of AWS IAM?
[DUMP]
AWS Cloud • Security and Compliance - PostQuiz
Which AWS service protects applications running on AWS against DDoS attacks.
[DUMP]
AWS Cloud • Security and Compliance - PostQuiz
Which AWS service provides access to security and compliance documents?
Previous
Page 10 of 15
Next