Microsoft Azure Interview Questions – Set 03

Explain the Migration Assistant tool in Microsoft Azure. The migration assistant tool examines our IIS installation and recognizes the sites that can be migrated to the cloud, featuring any components which can’t be relocated or not supported by the platform. This tool similarly creates websites and databases provided under the given Azure membership. How to … Read more

Oracle Interview Questions – Set 03

Can you create a synonym without having a table? Yes. We can create a synonym without having a base table. How do you store pictures in a database? Yes, you can store pictures in a database using Long Raw Data type. This data type is used to store binary data for 2 gigabytes of length. … Read more

MySQL Interview Questions – Set 03

How to give user privilages for a db. Login as root. Switch to the MySQL db. Grant privs. Update privs # mysql -u root -p # mysql -u root -p mysql> use mysql; mysql> INSERT INTO user (Host,Db,User,Select_priv,Insert_priv,Update_priv,Delete_priv,Create_priv,Drop_priv) VALUES (‘%’,’databasename’,’username’,’Y’,’Y’,’Y’,’Y’,’Y’,’N’); mysql> flush privileges; or mysql> grant all privileges on databasename.* to username@localhost; mysql> flush privileges … Read more

DevOps Interview Questions – Set 03

How DevOps is helpful to developers? DevOps is very helpful for developers to fix the bugs and quickly implement the new features. It also helps in more transparent communication between the team members. Explain pair programming regarding DevOps? Pair programming is an engineering practice of Extreme Programming Rules. In this case, two programmers work on … Read more

Machine Learning Interview Questions – Set 03

What does NLP stand for? NLP stands for Natural Language Processing. It is a branch of artificial intelligence that gives machines the ability to read and understand human languages. What distance metrics can be used in KNN? Following distance metrics can be used in KNN. Manhattan Minkowski Tanimoto Jaccard Mahalanobis What is algorithm independent machine learning? Machine … Read more

Angular Interview Questions – Set 03

What is MEAN stack development? MEAN stack is a collection of JavaScript based technologies which are used to develop web applications. MEAN stands for MongoDB, ExpressJS, AngularJS and Node.js. It provides client and server based technologies along with Database that’s why it also called Full-stack development. Here, Angular is for client-side, Node.js is a server side JavaScript … Read more

Node.js Interview Questions – Set 02

How “Control Flow” controls the functions calls? The control flow does the following job: Control the order of execution Collect data Limit concurrency Call the next step in a program What does Node.js TTY module contains? The Node.js TTY module contains tty.ReadStream and tty.WriteStream classes. In most cases, there is no need to use this … Read more

Backbone.js Interview Questions – Set 02

What are the configuration options available in Backbone.js? There are the following configuration options available in Backbone.js. modelSetOptions boundAttributes supressThrows converter change Triggers InitialCopyDirection Which are the three js files that are required to setup Backbone.js? Following are the three js files that you require to setup Backbone.js: jQuery Backbone Underscore What are the advantages … Read more

Applet AWT Swing Java Interview Questions – Set 02

Which containers use a Flow layout as their default layout?- Panel and Applet classes use the FlowLayout as their default layout. What interface is extended by AWT event listeners All AWT event listeners extend the java.util.EventListener interface. Name four Container classes. Window, Frame, Dialog, FileDialog, Panel, Applet, or ScrollPane. What is the relationship between clipping and repainting When a window is repainted by … Read more

Angular 8 Interview Questions – Set 02

What is the usage of NgUpgrade in Angular 8? The NgModules in Angular 8 is used for the following things: The NgModule is a class marked by the @NgModule decorator where the @NgModule decorator is used to take a metadata object that describes how to compile a component’s template and how to create an injector … Read more