Complete Question Index

Browse through all 2134 assessment questions (Page 10 of 15)

Software EngineeringLooping Statements

What is true about FOR LOOP?

Software EngineeringLooping 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 EngineeringLooping 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 EngineeringLooping Statements

What is the output for FOR-loop snippet? FOR i <--1 to 15 PRINT i i <-- i+3 END FOR

Software EngineeringLooping Statements

Which of the following symbols is inappropriate in building the flowchart pertaining to sequential flow of program?

Software EngineeringLooping Statements

The statement / statements within the loop must get executed at least once except for do-while statement. State True/False.

Software EngineeringLooping Statements

Which of the following statements are true with respect to looping statements?

Software EngineeringLooping Statements

Which of the following statements are true?

Software EngineeringLooping 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 EngineeringLooping 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 EngineeringLooping Statements

Identify the logic which suits the flowchart?

Software EngineeringLooping 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 EngineeringLooping Statements

Looping statements are also called ____________ a. Program logic b. Iteration logic c. Selection logic d. Sequence logic

Software EngineeringLooping Statements

Select the appropriate code snippet for the given problem statement provided as pseudocode. Problem Statement : Strong number Check if a given number ...

Software EngineeringLooping 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 EngineeringSelection Statement

______________must be used when a set of statements needs to be executed only if a condition is met.

Software EngineeringSelection 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 EngineeringSelection Statement

From the option, find the correct pseudo-code to find the greatest of three numbers

Software EngineeringSelection Statement

READ age IF age>18 THEN PRINT Eligible to vote ENDIF The given pseudo-code snippet is an example for_______

Software EngineeringSelection Statement

By default, the flow of a program is________

Software EngineeringSelection Statement

If there are 6 chocolates and you take away 4, how many do you have?

Software EngineeringSelection Statement

What do you infer from this statement? Only if Alvin is happy, then he does not go to work.

Software EngineeringSelection Statement

Go to statements in the algorithm is

Software EngineeringSelection Statement

Identify the logic which suits the flowchart

Software EngineeringSelection 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 EngineeringSelection Statement

Which statement logic implements multiple-way selection?

Software EngineeringSelection Statement

Manual execution of the steps in the algorithm is called as _____

Software EngineeringSelection Statement

When a single if-else logic is used, how many possible choices can be there?

Software EngineeringSelection 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 EngineeringSelection Statement

Which of the following is not a keyword used in a pseudo-code

Software EngineeringSelection 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 EngineeringSelection Statement

Decision statements are also called as _______________. a. Selection logic b. Iteration logic c. Program logic d. Sequence logic

Software EngineeringSelection 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 EngineeringSelection 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 EngineeringSelection Statement

Which of the keyword is used to close the IF block, while writing a pseudo-code?

Web TechnologyHtml

Consider the below webpage: Which of the following is used to do this ?

Web TechnologyHtml

If the phone number should accept only 10 digit numbers, which of the following options will suit?

Web TechnologyHtml

Ram has designed a portal with 'like' and 'unlike' image buttons that redirect to 'thanks.html'. Which HTML code correctly implements this?

Web TechnologyHtml

HTML stands for __________

Web TechnologyHtml

Which element is a container for all the head elements, and may include the document title, scripts, styles, meta information, and more?

Web TechnologyHtml

An application that lets you search and see material on the internet is

Web TechnologyJavascript

Choose the correct JavaScript statement which helps you to write "World of JavaScript" in a web page.

Web TechnologyJavascript

Which of the below is the correct syntax for exectuing some code if "amt" is equal to 5000?

Web TechnologyJavascript

Polson needs to extract every character from a text string for email validation. Which JavaScript method is best suited?

Web TechnologyJavascript

Ram's banking website has a 'Check Interest Rates' button that should redirect users to a separate page. Which JavaScript code accomplishes this?

Web TechnologyJavascript

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 TechnologyJavascript

What is the output of the below code snippet <script type="text/javascript"> amt=55+"55"; document.write(amt); </script>

Web TechnologyJavascript

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 TechnologyJavascript

When a user views a page containing a JavaScript program, which machine actually executes the script?

Web TechnologyJavascript

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 TechnologyJavascript

When you want to enclose; some JavaScript statements to an HTML file, which is the correct tag you have to use?

Web TechnologyJavascript

Which of the below statements are used to comment a line in JavaScript file?

Web TechnologyJavascript

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 TechnologyJavascript

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 TechnologyJquery

Rhita wants to replace jQuery's $(document).ready(fun) with an equivalent shorter method.

Web TechnologyJquery

$("#name").remove(); This will remove the text field when you click on the button. State true or false.

Web TechnologyJquery

jQuery is a JavaScript Object Notation library

Web TechnologyJquery

Bind an event handler to the "blur" JavaScript event on an element.

Web TechnologyJquery

Raju wants to remove an event handler that was attached with on() function.Help him to select the correct option.

Web TechnologyJquery

John sets an element's CSS position property to its default value and applies jQuery animations. What is the output?

Web TechnologyJquery

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 TechnologyJquery

Some users don't want animations to interfere with their web page experience. How can a user turn off animations?

Web TechnologyJquery

When referencing an HTML element using jQuery preceded by a # , what JavaScript function is this equivalent to?

Web TechnologyJquery

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 TechnologyJquery

Which of the following is most appropriate tag in html 5 to divide the document into logical document groups?

Web TechnologyJquery

The following elements are newly added elements in HTML5: <section> <article> <aside> These elements are called _____________

[DUMP]AWS CloudAWS 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 CloudAWS 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 CloudAWS 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 CloudAWS Cloud Arch Design - PostQuiz

What is the primary goal of the "Security" pillar in the Well-Architected

[DUMP]AWS CloudAWS Cloud Arch Design - PostQuiz

A pillar focuses on ensuring a system/workload delivers maximum performance for a set of AWS resources utilized.

[DUMP]AWS CloudAWS Cloud Arch Design - PostQuiz

What AWS service is used to convert speech to text?

[DUMP]AWS CloudAWS Cloud Arch Design - PostQuiz

____________ is a small, rugged, and secure edge computing and data transfer device.

[DUMP]AWS CloudAWS 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 CloudAWS Cloud Arch Design - PostQuiz

Which of the following is NOT a pillar of the AWS Well-Architected Framework?

[DUMP]AWS CloudAWS Cloud Arch Design - PostQuiz

How does the "Cost Optimization" pillar suggest handling unused or underutilized resources?

[DUMP]AWS CloudAWS Cloud Arch Design - PostQuiz

Close change request

[DUMP]AWS CloudAWS Cloud Arch design Principles - PreQuiz

AWS IAM belongs to which piller in Well Architected Framework?

[DUMP]AWS CloudAWS Cloud Arch design Principles - PreQuiz

How many pillers are there in Well Architected Framework?

[DUMP]AWS CloudAWS Cloud Arch design Principles - PreQuiz

Which of the piller responsible for automatic recovery?

[DUMP]AWS CloudAWS 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 CloudAWS Cloud Arch design Principles - PreQuiz

AWS WAF tool is used for reviewing existing infrastructure.

[DUMP]AWS CloudAWS Cloud Arch design Principles - PreQuiz

What does the Operational Excellence pillar of the Well-Architected

[DUMP]AWS CloudAWS Cloud Arch design Principles - PreQuiz

Well Architected Framework provide on-demand access to the best practices developed by architects(True/False)

[DUMP]AWS CloudAWS Cloud Arch design Principles - PreQuiz

Which of the following is a best practice for cost optimization in AWS?

[DUMP]AWS CloudAWS 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 CloudAWS Cloud Arch design Principles - PreQuiz

Which of the following is not a AWS WAF pillar?

[DUMP]AWS CloudAWS Resource for Tech Support - PostQuiz

Which of the following messaging services is based on pub/sub messaging model.

[DUMP]AWS CloudAWS Resource for Tech Support - PostQuiz

Which of the following provides shared storage for Linux workloads

[DUMP]AWS CloudAWS Resource for Tech Support - PostQuiz

Cloudwatch can monitor custom metrics in-addition to built-in metrics.

[DUMP]AWS CloudAWS Resource for Tech Support - PostQuiz

Which is the AWS service used for configuring Content Delivery Network(CDN)?

[DUMP]AWS CloudAWS Resource for Tech Support - PostQuiz

Which AWS service used for enabling asynchronous communication between services.

[DUMP]AWS CloudAWS Resource for Tech Support - PostQuiz

__________ is a serverless container orchestration service

[DUMP]AWS CloudAWS Resource for Tech Support - PostQuiz

Which of the following database services support dynamic schema.

[DUMP]AWS CloudAWS Resource for Tech Support - PostQuiz

Which of the following load balancers support content based routing?

[DUMP]AWS CloudAWS Resource for Tech Support - PostQuiz

Choose the infrastructure automation service from the given list?

[DUMP]AWS CloudAWS Resource for Tech Support - PostQuiz

Which of the following is a serverless computing?

[DUMP]AWS CloudAWS Resource for Tech Support - PreQuiz

Monitoring the resources helps in ___________

[DUMP]AWS CloudAWS Resource for Tech Support - PreQuiz

Which of the following service is used for monitoring resources in AWS.

[DUMP]AWS CloudAWS Resource for Tech Support - PreQuiz

How manual scaling is done in EC2 auto scaling

[DUMP]AWS CloudAWS Resource for Tech Support - PreQuiz

Which CloudWatch component allows you to create and manage custom alarms?

[DUMP]AWS CloudAWS Resource for Tech Support - PreQuiz

Which of the following entity used for temporary access to resources.

[DUMP]AWS CloudAWS Resource for Tech Support - PreQuiz

AWS DynamoDB is a serverless nosql database

[DUMP]AWS CloudAWS Resource for Tech Support - PreQuiz

AutoScaling increases/decreases the capacity of an EC2 instance automatically.(True/False)

[DUMP]AWS CloudAWS Resource for Tech Support - PreQuiz

Which of the following is NOT a benefit of using Amazon CloudWatch?

[DUMP]AWS CloudAWS Resource for Tech Support - PreQuiz

Which of the following database is keyvalue pair or document database.?

[DUMP]AWS CloudAWS Resource for Tech Support - PreQuiz

Which of the following database service is postgresql and mysql compatible database.

[DUMP]AWS CloudBilling 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 CloudBilling and Pricing - PostQuiz

Cloud Computing Pricing models have been broadly classified as _________

[DUMP]AWS CloudBilling and Pricing - PostQuiz

Amazon S3 pricing is based on factors namely __________

[DUMP]AWS CloudBilling 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 CloudBilling and Pricing - PostQuiz

The auction based pricing system is called _______

[DUMP]AWS CloudBilling and Pricing - PostQuiz

Which AWS service allows you to centrally manage multiple AWS accounts?

[DUMP]AWS CloudBilling and Pricing - PostQuiz

Which of the following Amazon EC2 tenancy model allow customers to use existing server-bound software licenses?

[DUMP]AWS CloudBilling and Pricing - PostQuiz

Which attribute determines the costing of an on-demand EC2 instance?

[DUMP]AWS CloudBilling and Pricing - PostQuiz

Which of the following pricing model used for application with consistent load

[DUMP]AWS CloudBilling and Pricing - PostQuiz

Which tool is used for getting the estimated monthly cost for your setup?

[DUMP]AWS CloudBilling and Pricing - PreQuiz

Which AWS service is closely integrated with AWS Budgets to provide cost and usage data?

[DUMP]AWS CloudBilling and Pricing - PreQuiz

Which tenancy model is least expensive model?

[DUMP]AWS CloudBilling and Pricing - PreQuiz

Which EC2 pricing option is most cheapest among below

[DUMP]AWS CloudBilling and Pricing - PreQuiz

In AWS, you need to buy servers to host application.(True/False)

[DUMP]AWS CloudBilling and Pricing - PreQuiz

Cost varies between regions(True/False)

[DUMP]AWS CloudBilling and Pricing - PreQuiz

Amazon EBS pricing includes three factors,

[DUMP]AWS CloudBilling and Pricing - PreQuiz

Which of the pricing option, customers pay per hour for compute.

[DUMP]AWS CloudBilling and Pricing - PreQuiz

For how long can you use the AWS Free Tier?

[DUMP]AWS CloudBilling and Pricing - PreQuiz

Which tenancy model is most expensive?

[DUMP]AWS CloudBilling and Pricing - PreQuiz

The pricing models of the cloud providers can help the customers in ____________

[DUMP]AWS CloudIntroduction 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 CloudIntroduction to AWS Cloud - PostQuiz

AWS eliminate guessing on your infrastructure capacity needs.

[DUMP]AWS CloudIntroduction 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 CloudIntroduction to AWS Cloud - PostQuiz

When did AWS start offering IT infrastructure services as web services?

[DUMP]AWS CloudIntroduction to AWS Cloud - PostQuiz

Which of the following is NOT a characteristic of cloud computing?

[DUMP]AWS CloudIntroduction to AWS Cloud - PostQuiz

How does cloud computing compare to traditional data centers in terms of obtaining new resources?

[DUMP]AWS CloudIntroduction to AWS Cloud - PostQuiz

When could a company decide to use a hybrid deployment model for cloud computing?

[DUMP]AWS CloudIntroduction to AWS Cloud - PostQuiz

Which of the following consists of one or more data centres?

[DUMP]AWS CloudIntroduction 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 CloudIntroduction to AWS Cloud - PostQuiz

Which one of the following is Cloud Platform by Amazon?

[DUMP]AWS CloudIntroduction to AWS Cloud - PreQuiz

Select a benefit of a datacenter from the following options

[DUMP]AWS CloudIntroduction to AWS Cloud - PreQuiz

Customer has to choose the nearest _______ to the customers to reduce latency.

[DUMP]AWS CloudIntroduction to AWS Cloud - PreQuiz

In which of the following model application host completely on cloud.

[DUMP]AWS CloudIntroduction to AWS Cloud - PreQuiz

Which of the following service, customer has access to OS?

[DUMP]AWS CloudIntroduction to AWS Cloud - PreQuiz

Which of the following is not a cloud service model?

[DUMP]AWS CloudIntroduction to AWS Cloud - PreQuiz

One of the benefit of the cloud is agility, resource can be provisioned with few click.True/False

[DUMP]AWS CloudIntroduction to AWS Cloud - PreQuiz

What does SaaS stand for in cloud computing?

[DUMP]AWS CloudIntroduction to AWS Cloud - PreQuiz

What is cost optimization?

[DUMP]AWS CloudIntroduction to AWS Cloud - PreQuiz

Which of the following is not a management interface in AWS

[DUMP]AWS CloudIntroduction to AWS Cloud - PreQuiz

Which cloud deployment model involves a single organization using a cloud service exclusively?

[DUMP]AWS CloudSecurity and Compliance - PostQuiz

What is the primary purpose of AWS IAM?

[DUMP]AWS CloudSecurity and Compliance - PostQuiz

Which AWS service protects applications running on AWS against DDoS attacks.

[DUMP]AWS CloudSecurity and Compliance - PostQuiz

Which AWS service provides access to security and compliance documents?

PreviousPage 10 of 15Next