Auroral Zone Upwelling Release Experiment is the full form of Azure. Azure Interview Questions with answers ,Increase T factor.

 Q:

You have run the association rules algorithm on your dataset, and the two rules {banana, apple} => {grape} and {apple, orange} => {grape} have been found to be relevant. What else must be true?


Choose the right answer:


{banana, apple, grape, orange} must be a frequent itemset

{banana, apple} => {orange} must be a relevant rule

{grape} => {banana, apple} must be a relevant rule

{grape, apple} must be a frequent itemset.


ANs:The answer is A: {grape, apple} must be a frequent itemset


Q:

After studying the behavior of a population, you have identified four specific individual types that are valuable to your study. You would like to find all users who are most similar to each individual type. Which algorithm is most appropriate for this study?


Choose the correct option:


K-means clustering

Linear regression

Association rules

Decision trees


ANS:As we are looking for grouping people together specifically by four different similarities,

 it indicates the value of k. Therefore, K-means clustering

 (answer A) is the most appropriate algorithm for this study.


Q:

 We want to predict the probability of death from heart disease based on three risk factors: age, gender, and blood cholesterol level. What is the most appropriate algorithm for this case?


Choose the correct option:


Logistic Regression 

Linear Regression

K-means clustering 

Apriori algorithm


ANS:The most appropriate algorithm for this case is A, logistic regression. 


Q:

Below are the eight actual values of the target variable in the train file. What is the entropy of the target variable?


[0, 0, 0, 1, 1, 1, 1, 1]


Choose the correct answer.


-(5/8 log(5/8) + 3/8 log(3/8))


5/8 log(5/8) + 3/8 log(3/8)


3/8 log(5/8) + 5/8 log(3/8)


5/8 log(3/8) – 3/8 log(5/8)


ANS: The target variable, in this case, is 1.


The formula for calculating the entropy is:


Putting p=5 and n=8, we get


Entropy = A = -(5/8 log(5/8) + 3/8 log(3/8))



Q:

Which of the following machine learning algorithms can be used for inputting missing values of both categorical and continuous variables?


ANS:


K-means clustering

Linear regression 

K-NN (k-nearest neighbor)

Decision trees 

The K nearest neighbor algorithm can be used because it can compute the nearest neighbor and if it doesn't have a value, it just computes the nearest neighbor based on all the other features. 


When you're dealing with K-means clustering or linear regression, you need to do that in your pre-processing, otherwise, they'll crash. Decision trees also have the same problem, although there is some variance.



Q:

You are given a dataset on cancer detection. You have built a classification model and achieved an accuracy of 96 percent. Why shouldn't you be happy with your model performance? What can you do about it?



ANS: Cancer detection results in imbalanced data. In an imbalanced dataset, accuracy should not be based as a measure of performance. It is important to focus on the remaining four percent, which represents the patients who were wrongly diagnosed. Early diagnosis is crucial when it comes to cancer detection, and can greatly improve a patient's prognosis.


Hence, to evaluate model performance, we should use Sensitivity (True Positive Rate), Specificity (True Negative Rate), F measure to determine the class wise performance of the classifier.


Q:

Auroral Zone Upwelling Release Experiment is the full form of Azure.


 a) true


 b) false


ANS: a) true



Q:

What are roles in Windows Azure?


 a) Web Role


 b) Worker Role


 c) VM Role


 d) All of these


ANS: d) All of these


Q:

Azure Storage plays the same role in Azure that ______ plays in Amazon Web Services.


 a) EC2


 b) S3


 c) EC3


 d) All of the mentioned


ANS:Azure Storage plays the same role in Azure that S3 plays in Amazon Web Services.



Q:

How do you register a user control?


 a) Add Source, Tag prefix


 b) Add Tag prefix, Tag name


 c) Add Src, Tagprefix, Tagname


 d) All of these


ANS:

c) Add Src, Tagprefix, Tagname



Q:

What is the different type of services offered in the cloud?


 a) PaaS


 b) IaaS


 c) SaaS


 d) All of these


ANS: d) All of these


Q:

What are the different cloud deployment models?


 a) Private Cloud


 b) Public Cloud


 c) Hybrid Cloud


 d) All the above mentioned



ANS: d) All the above mentioned




Q:

What are roles in Windows Azure?


 a) Worker Role


 b) Web Role


 c) VM Role


 d) All of these


ANS:d) All of these



Q:

Runtime polymorphism is achieved by -


 a) Friend function


 b) Virtual function


 c) Function overloading


 d) Operator overloading

runtime-polymorphism


ANS: c) Function overloading



Q:

What are the options to manage session state in Windows Azure?


 a) SQL Azure


 b) Windows Azure Caching


 c) Azure Table


 d) All of the above


ANS:d) All of the above



Q:

What are the different cloud deployment models?


 a) Private Cloud


 b) Public Cloud


 c) Hybrid Cloud


 d) All of the above


ANS:d) All of the above




Your organization has a website where visitors randomly receive one of two coupons. |Azure Interview Questions|

 Q:

Your organization has a website where visitors randomly receive one of two coupons. It is also possible that visitors to the website will not receive a coupon. You have been asked to determine if offering a coupon to website visitors has any impact on their purchase decisions. Which analysis method should you use?

  1. One-way ANOVA 
  2. K-means clustering
  3. Association rules 
  4. Student's t-test            

The answer is A: One-way ANOVA .



Azure Interview Question

Q: What are the feature vectors? | Azure Interview Questions |

 Q:

What are the feature vectors?

ANS.A feature vector is an n-dimensional vector of numerical features that represent an object. In machine learning, feature vectors are used to represent numeric or symbolic characteristics (called features) of an object in a mathematical way that's easy to analyze.

Q: What are the steps in making a decision tree? |Azure Interview Questions|

 Q:

What are the steps in making a decision tree?

ANS:Below are the steps in making a decision tree
  1. Take the entire data set as input.
  2. Look for a split that maximizes the separation of the classes. A split is any test that divides the data into two sets.
  3. Apply the split to the input data (divide step).
  4. Re-apply steps one and two to the divided data.
  5. Stop when you meet any stopping criteria.
  6. This step is called pruning. Clean up the tree if you went too far doing splits.

Q: What is root cause analysis? | Azure Interview Questions |

 Q:

What is root cause analysis?

ANS.
Root cause analysis was initially developed to analyze industrial accidents but is now widely used in other areas. It is a problem-solving technique used for isolating the root causes of faults or problems. A factor is called a root cause if its deduction from the problem-fault-sequence averts the final undesirable event from recurring.

Intermediate Interview Questions |Azure Interview Questions| Microsoft AZURE |

What are IaaS, PaaS and SaaS?

IaaS: This stands for “Infrastructure as a Service” which provides a set of capabilities like OS, network connectivities, etc which are at the infrastructural level and are delivered as pay per use policy. The infrastructure is used for hosting applications. Examples include Azure VM, VNET, etc.

PaaS: PaaS stands for “Platform as a Service” which is mostly about underlying infrastructure abstraction to the developers for enabling quicker development of the applications without the need for worry about hosting management. Examples include Azure web apps, Storage services, cloud services, etc.

SaaS: SaaS stands for “Software as a Service” and are those applications which are delivered using the service delivery model where the applications are simply consumed and used by an organization. These applications are generally mobilized by making the organization pay for their usage or through ads. Examples include applications like Office 365, Gmail, SharePoint Online, and so on. 


1.

What kind of web applications can be deployed on azure?

2.

Azure storage is similar to what component of AWS (Amazon Web Services)?

3.

Azure storage services and VMs belong to which cloud computing models?

4.

Which Azure service helps to deploy and manage enterprise-level applications with hybrid cloud architecture?

5.

Which among the following Azure tool is used for enterprise-level key management?

6.

Select the correct roles in Azure.

7.

True or False - Azure cloud provides serverless capabilities.

8.

What role is an instance that runs Microsoft IIS Web Server for accepting and responding to HTTP/HTTPS requests?

9.

What are the service components of Azure Cognitive Services?

10.

What role does the task of running background tasks and applications that don’t need IIS?

How many types of PaaS are there?

 Q:

How many types of PaaS are there?

Select the answer from below options

a) 4

b) 3

c) 2

d) 5


There are 4 PaaS types

a) 4

Which one of the following of PaaS type that involves on-demand scaling and application security?

 Q:

Which one of the following of PaaS type that involves on-demand scaling and application security?

Select the answer from below options

a) Stand-alone development environments

b) Open Platform as a service

c) Application delivery-only environments

d) Add-on development facilities


ANS:c) Application delivery-only environments

Which one of the following is a type of PaaS that usually allows customizing the existing SaaS platform?

 Q:

Which one of the following is a type of PaaS that usually allows customizing the existing SaaS platform?

Select the answer from below options

a) Stand-alone development environments

b) Add-on development facilities

c) Open Platform as a service

d) Application delivery-only environments

ANS:b) Add-on development facilities

Which type of PaaS does not contains any type of license or technical dependencies on specific SaaS applications?

 Q:

Which type of PaaS does not contains any type of license or technical dependencies on specific SaaS applications?

Select the answer from below options

a) Add-on development facilities

b) Application delivery-only environments

c) Open Platform as a service

d) Stand-alone development environments

ANS:d) Stand-alone development environments

Which one of the following statements is not true about SaaS?

 Q:

Which one of the following statements is not true about SaaS?

a) SaaS applications are offered in all shapes and sizes.

b) All users with a little knowledge or know how to operate a computer also know about the SaaS.

c) SaaS software is not customizable.

d) None of the above


ANS:d) None of the above

In SaaS, the used open-source software are also known as_____

 Q:

In SaaS, the used open-source software are also known as_____

a) Closed

b) Free

c) Open

d) all of the mentioned

ANS:c) Open

 In SaaS, the used open-source software are also known as Open

Which one of the following can be considered as the most complete cloud computing service model?

 Q:

Which one of the following can be considered as the most complete cloud computing service model?

a) PaaS

b) IaaS

c) CaaS

d) SaaS

ANS:d) SaaS

Which one of the following is not the correct statement?

 Q:

Which one of the following is not the correct statement?

a) SaaS may be also be described as software deployed on a hosted service.

b) The platform can be based on the types of software development languages, frameworks, and several other constructs.

c) SaaS is the cloud-based equivalent of shrink-wrapped software

d) All of the above

ANS:d) All of the above

Which one of the following statements can be considered as the true characteristics of software as a Service (SaaS) model?

 Q:

Which one of the following statements can be considered as the true characteristics of software as a Service (SaaS) model?

a) Software applications are generally maintained by the service provider (or vendor)

b) SaaS provides the best cost-effective applications because they do not need any maintenance at the customer side.

c) They can easily scale up or scale down according to the conditions.

d) All of the above

ANS:d) All of the above

Which one of the following is associated heavily with vendor lock-in?

 Q:

Which one of the following is associated heavily with vendor lock-in?

Select the answer from below options

a) DaaS

b) SaaS

c) IaaS

d) PaaS

ANS:d) PaaS is associated heavily with vendor lock-in

Which of the following is an advantage of IaaS (Infrastructure as service)?

 Q:

Which of the following is an advantage of IaaS (Infrastructure as service)?

Select the answer from below options

a) Efficient and flexible renting of computer hardware.

b) Portability, interoperability with legacy applications.

c) Complete control of the computing resources through administrative access to VMs.

d) All of the above

ANS:d) All of the above

IaaS usually shares issues with the ______.

 Q:

IaaS usually shares issues with the ______.

Select the answer from below options

a) PaaS

b) SaaS

c) Both A and B

d) None of the above


ANS:c) Both A and B

The Infrastructure as a service (IaaS) provides a type of isolated environment to each customer individually by using_____.

 Q:

The Infrastructure as a service (IaaS) provides a type of isolated environment to each customer individually by using_____.

Select the answer from below options

a) renting

b) virtual machine sprawl

c) security vulnerabilities

d) hypervisor

ANS:d) hypervisor

Which of the following is the most commonly used model for description and discovery and is also used with SOAP messaging?

 Q:

Which of the following is the most commonly used model for description and discovery and is also used with SOAP messaging?

Select the answer from below options

a) DHML

b) VMC

c) WSDL

d) SOA


ANS:c) WSDL

Web Services Description Language (WSDL) is the model that is usually used for description and discovery, and it is also used with SOAP messaging.

.

Related Posts Plugin for WordPress, Blogger...

Popular Posts

CLICK HERE

Trending

https://jntubtech.blogspot.com/feeds/posts/default 0.9 always http://jntubtech.blogspot.com 0.9 always 0.9 always