Skip to main content

Digital Primar Question & Answer


Which of the following products does not benefit from Network Effects
Cars

You are the CEO of Netflix. Who do you say that you consider to be your primary competition recently?

Sleep

You want to bring a new product to the market for which there are many large incumbents. Which of the following are strategies worth considering?

All the options

You operate a hotel chain that targets the low market, low margin segment. Who will be your competitor in a Digital world?

Airbnb

The Internet has reduced the _.

All the options

Elastic Scaling refers to ___.

All the options

When you use Gmail and Google Drive for your enterprise, what model are you using?

SaaS

What are the key properties of Big Data?

All the options

Which of the following is important for solving a big data problem?

All the options

Name the programming model for developing Hadoop based applications.

Mapreduce

HDFS is inspired by which of following Google project?

GFS

What are the usecases of social media marketing?

All the options

Why does social media marketing trump marketing via TV?

All the options

You are a CIO and want to build an AI system - what will you do?

Assemble training dataset, build algorithmic models and engineer using technology partners                       

What is required to build an AI system?

All the options

Which of the below is not an example of AI?

Both, Amazon showing similar products recommendations based on our purchasing behavior and Google building a car that can drive itself.

What are the most common types of Machine learning tasks?

All the options

What is the most common limitation for creating breakthroughs in AI?

Lack of availability of training datasets but major algorithms are already available

Comments

Popular posts from this blog

Microservice Architecture

Agile development & Deployment is difficult in case of ____ Monolithic Software built as microservices can, by definition, be broken down into multiple component services ? True Separating components with conflicting resource requirements falls under the bucket of _ Microservices Complexity of developing, testing & deploying distributed system, Handling partial failures account to disadvantages of Microservices Benefits of Microservices include - All the options Decomposition of Microservices based on 2 categories namely Business capability , Subdomain Simple to Develop, Test, Deploy, Scale represents ____ Monolithic Is Microservice is considered as subset of SOA ? True The 3Cs of Microservices includes all these except Control Microservice Architecture adapts following concepts All the options The client expects a timely response from the service and might even block while it waits represents__client service interaction styles Synch...

What is Document/View Architecture in MFC?

By default MFC application wizard creats with an skeleton with a document class and another is view class.MFC seperates data management into these two class.The document class store the data and print the data and view display the data and manages the user interaction with it. Notepad is simple example for SDI application. or ALL MFC application which have user interface follow this architecture. Any MFC application creates with two basic skeleton one is document class and another is view class.document manages the data for multiple view,and view class displays the data. MFC document/view architecture makes it easy to support multiple view,multiple document types, splitter windows and other valuable user interface features. . For exm:- in SDI application we have following major class:- 1. CMainFrameApp:- Frame class derived  from the CFrameWnd 2. CMySDIView :- View class derived  from the CView class 3. CMainDoc :- Document class derived  from the CDoc...