Data science and event programming Flashcards
What is the main focus of Data Science tools in this course? a) Data Visualization b) Machine Learning c) Natural Language Processing d) Deep Learning
b) Machine Learning
Which cloud platforms provide machine learning services? a) AWS b) Azure c) IBM Cloud d) All of the above
d) All of the above
What is the main task of NLP services? a) Text Translation b) Object Detection c) Sentiment Analysis d) Data Storage
c) Sentiment Analysis
Which of the following is used for text translation in the document? a) Google Translate b) AWS Translate c) Microsoft Translation d) All of the above
d) All of the above
What does MLOps aim to achieve? a) Streamline data collection b) Streamline the end-to-end machine learning lifecycle c) Improve deep learning performance d) Monitor AI models
b) Streamline the end-to-end machine learning lifecycle
What tool is mentioned for tracking experiments in MLOps? a) Weights & Biases b) TensorFlow c) PyTorch d) Keras
a) Weights & Biases
What is the purpose of large language models like GPT? a) Text summarization b) Image recognition c) Code generation d) Both a and c
d) Both a and c
What issue is raised in the section ‘ChatGPT is bullshit’? a) Models are always accurate b) Models do not generalize well and have hallucinations c) Models are infallible d) Models do not make any mistakes
b) Models do not generalize well and have hallucinations
What is the characteristic of blocking I/O? a) API immediately returns the result b) API hangs the thread until the answer is ready c) API runs in the background d) None of the above
b) API hangs the thread until the answer is ready
What is the role of Node.js? a) Frontend JavaScript development b) Backend JavaScript runtime c) Database management d) Text analytics
b) Backend JavaScript runtime
What problem arises when computationally expensive code is executed in the browser? a) Code runs too fast b) The browser becomes unresponsive c) The browser automatically handles it d) No problem occurs
b) The browser becomes unresponsive
Which method is used to make the browser responsive during expensive computations? a) Increase CPU usage b) Use async functions c) Block the thread until completion d) None of the above
b) Use async functions
What does ‘Callback Hell’ refer to? a) Using synchronous functions b) Nested callbacks making code harder to read c) JavaScript framework issues d) All of the above
b) Nested callbacks making code harder to read
Which programming model is introduced to solve callback hell? a) Promises b) Async/Await c) Multithreading d) Both a and b
d) Both a and b
Which function is used to handle tasks asynchronously in JavaScript? a) setTimeout b) async function c) promise d) forEach
a) setTimeout
What is the purpose of the Event Loop in JavaScript? a) Execute synchronous code b) Handle asynchronous callbacks c) Collect and handle garbage collection d) None of the above
b) Handle asynchronous callbacks
What is the purpose of TensorFlow in machine learning? a) Data collection b) Model training c) Data visualization d) Model deployment
b) Model training
Which of the following is NOT a cloud platform mentioned for machine learning? a) AWS b) Azure c) IBM Cloud d) Heroku
d) Heroku
What kind of analysis is typically done using NLP? a) Sentiment Analysis b) Image Classification c) Video Analysis d) Network Traffic Monitoring
a) Sentiment Analysis
Which of the following services is used for image detection in the cloud? a) Google Vision b) AWS Rekognition c) Microsoft Computer Vision d) All of the above
d) All of the above
What does the term ‘AI hallucinations’ refer to? a) AI generating fake data b) AI running out of memory c) AI making false statements d) AI predicting future events
c) AI making false statements
What programming language is commonly used for backend development with Node.js? a) Java b) JavaScript c) Python d) Ruby
b) JavaScript
Which is NOT a feature of Node.js? a) Event-driven architecture b) Non-blocking I/O c) Multi-threaded processing d) Single-threaded execution
c) Multi-threaded processing
What is the main benefit of using asynchronous functions in JavaScript? a) Decreases execution speed b) Allows multiple tasks to run simultaneously without blocking c) Increases memory usage d) Makes the code easier to read
b) Allows multiple tasks to run simultaneously without blocking