{ // 获取包含Hugging Face文本的span元素 const spans = link.querySelectorAll('span.whitespace-nowrap, span.hidden.whitespace-nowrap'); spans.forEach(span => { if (span.textContent && span.textContent.trim().match(/Hugging\s*Face/i)) { span.textContent = 'AI快站'; } }); }); // 替换logo图片的alt属性 document.querySelectorAll('img[alt*="Hugging"], img[alt*="Face"]').forEach(img => { if (img.alt.match(/Hugging\s*Face/i)) { img.alt = 'AI快站 logo'; } }); } // 替换导航栏中的链接 function replaceNavigationLinks() { // 已替换标记,防止重复运行 if (window._navLinksReplaced) { return; } // 已经替换过的链接集合,防止重复替换 const replacedLinks = new Set(); // 只在导航栏区域查找和替换链接 const headerArea = document.querySelector('header') || document.querySelector('nav'); if (!headerArea) { return; } // 在导航区域内查找链接 const navLinks = headerArea.querySelectorAll('a'); navLinks.forEach(link => { // 如果已经替换过,跳过 if (replacedLinks.has(link)) return; const linkText = link.textContent.trim(); const linkHref = link.getAttribute('href') || ''; // 替换Spaces链接 - 仅替换一次 if ( (linkHref.includes('/spaces') || linkHref === '/spaces' || linkText === 'Spaces' || linkText.match(/^s*Spacess*$/i)) && linkText !== 'OCR模型免费转Markdown' && linkText !== 'OCR模型免费转Markdown' ) { link.textContent = 'OCR模型免费转Markdown'; link.href = 'https://fast360.xyz'; link.setAttribute('target', '_blank'); link.setAttribute('rel', 'noopener noreferrer'); replacedLinks.add(link); } // 删除Posts链接 else if ( (linkHref.includes('/posts') || linkHref === '/posts' || linkText === 'Posts' || linkText.match(/^s*Postss*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } // 替换Docs链接 - 仅替换一次 else if ( (linkHref.includes('/docs') || linkHref === '/docs' || linkText === 'Docs' || linkText.match(/^s*Docss*$/i)) && linkText !== '模型下载攻略' ) { link.textContent = '模型下载攻略'; link.href = '/'; replacedLinks.add(link); } // 删除Enterprise链接 else if ( (linkHref.includes('/enterprise') || linkHref === '/enterprise' || linkText === 'Enterprise' || linkText.match(/^s*Enterprises*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } }); // 查找可能嵌套的Spaces和Posts文本 const textNodes = []; function findTextNodes(element) { if (element.nodeType === Node.TEXT_NODE) { const text = element.textContent.trim(); if (text === 'Spaces' || text === 'Posts' || text === 'Enterprise') { textNodes.push(element); } } else { for (const child of element.childNodes) { findTextNodes(child); } } } // 只在导航区域内查找文本节点 findTextNodes(headerArea); // 替换找到的文本节点 textNodes.forEach(node => { const text = node.textContent.trim(); if (text === 'Spaces') { node.textContent = node.textContent.replace(/Spaces/g, 'OCR模型免费转Markdown'); } else if (text === 'Posts') { // 删除Posts文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } else if (text === 'Enterprise') { // 删除Enterprise文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } }); // 标记已替换完成 window._navLinksReplaced = true; } // 替换代码区域中的域名 function replaceCodeDomains() { // 特别处理span.hljs-string和span.njs-string元素 document.querySelectorAll('span.hljs-string, span.njs-string, span[class*="hljs-string"], span[class*="njs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换hljs-string类的span中的域名(移除多余的转义符号) document.querySelectorAll('span.hljs-string, span[class*="hljs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换pre和code标签中包含git clone命令的域名 document.querySelectorAll('pre, code').forEach(element => { if (element.textContent && element.textContent.includes('git clone')) { const text = element.innerHTML; if (text.includes('huggingface.co')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 处理特定的命令行示例 document.querySelectorAll('pre, code').forEach(element => { const text = element.innerHTML; if (text.includes('huggingface.co')) { // 针对git clone命令的专门处理 if (text.includes('git clone') || text.includes('GIT_LFS_SKIP_SMUDGE=1')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 特别处理模型下载页面上的代码片段 document.querySelectorAll('.flex.border-t, .svelte_hydrator, .inline-block').forEach(container => { const content = container.innerHTML; if (content && content.includes('huggingface.co')) { container.innerHTML = content.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 特别处理模型仓库克隆对话框中的代码片段 try { // 查找包含"Clone this model repository"标题的对话框 const cloneDialog = document.querySelector('.svelte_hydration_boundary, [data-target="MainHeader"]'); if (cloneDialog) { // 查找对话框中所有的代码片段和命令示例 const codeElements = cloneDialog.querySelectorAll('pre, code, span'); codeElements.forEach(element => { if (element.textContent && element.textContent.includes('huggingface.co')) { if (element.innerHTML.includes('huggingface.co')) { element.innerHTML = element.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { element.textContent = element.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); } // 更精确地定位克隆命令中的域名 document.querySelectorAll('[data-target]').forEach(container => { const codeBlocks = container.querySelectorAll('pre, code, span.hljs-string'); codeBlocks.forEach(block => { if (block.textContent && block.textContent.includes('huggingface.co')) { if (block.innerHTML.includes('huggingface.co')) { block.innerHTML = block.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { block.textContent = block.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); }); } catch (e) { // 错误处理但不打印日志 } } // 当DOM加载完成后执行替换 if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', () => { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); }); } else { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); } // 增加一个MutationObserver来处理可能的动态元素加载 const observer = new MutationObserver(mutations => { // 检查是否导航区域有变化 const hasNavChanges = mutations.some(mutation => { // 检查是否存在header或nav元素变化 return Array.from(mutation.addedNodes).some(node => { if (node.nodeType === Node.ELEMENT_NODE) { // 检查是否是导航元素或其子元素 if (node.tagName === 'HEADER' || node.tagName === 'NAV' || node.querySelector('header, nav')) { return true; } // 检查是否在导航元素内部 let parent = node.parentElement; while (parent) { if (parent.tagName === 'HEADER' || parent.tagName === 'NAV') { return true; } parent = parent.parentElement; } } return false; }); }); // 只在导航区域有变化时执行替换 if (hasNavChanges) { // 重置替换状态,允许再次替换 window._navLinksReplaced = false; replaceHeaderBranding(); replaceNavigationLinks(); } }); // 开始观察document.body的变化,包括子节点 if (document.body) { observer.observe(document.body, { childList: true, subtree: true }); } else { document.addEventListener('DOMContentLoaded', () => { observer.observe(document.body, { childList: true, subtree: true }); }); } })(); \r\n "},"choices":{"kind":"list like","value":["name is a framework of Javascript","{{ is framework of Javascript }}","Angular is the framework of Javascript","Type Error."],"string":"[\n \"name is a framework of Javascript\",\n \"{{ is framework of Javascript }}\",\n \"Angular is the framework of Javascript\",\n \"Type Error.\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":302,"cells":{"task_id":{"kind":"string","value":"k00303"},"question":{"kind":"string","value":"Which directive specifies the CSS classes on every odd appearance of the HTML element?"},"choices":{"kind":"list like","value":["ng-class-value","ng-class-odd","ng-even","ng-copy"],"string":"[\n \"ng-class-value\",\n \"ng-class-odd\",\n \"ng-even\",\n \"ng-copy\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":303,"cells":{"task_id":{"kind":"string","value":"k00304"},"question":{"kind":"string","value":"Which directive of AngluarJS is used to apply custom behavior when an element is clicked?"},"choices":{"kind":"list like","value":["ng-dbclick","ng-hide","ng-click","ng-show"],"string":"[\n \"ng-dbclick\",\n \"ng-hide\",\n \"ng-click\",\n \"ng-show\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":304,"cells":{"task_id":{"kind":"string","value":"k00305"},"question":{"kind":"string","value":"Which below pattern is used to add up pattern (regex pattern) validator to ngModel on input HTML element?"},"choices":{"kind":"list like","value":["ng-blur","ng-checked","ng-pattern","ng-readOnly"],"string":"[\n \"ng-blur\",\n \"ng-checked\",\n \"ng-pattern\",\n \"ng-readOnly\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":305,"cells":{"task_id":{"kind":"string","value":"k00306"},"question":{"kind":"string","value":"Which below is the correct syntax for the ng-bind directive?"},"choices":{"kind":"list like","value":[" Contents... "," Contents... "," Contents... "," Contents... "],"string":"[\n \" Contents... \",\n \" Contents... \",\n \" Contents... \",\n \" Contents... \"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":306,"cells":{"task_id":{"kind":"string","value":"k00307"},"question":{"kind":"string","value":"Which directive is used to specify the message to display according to the en-us localization rules in jquery?"},"choices":{"kind":"list like","value":["ng-even","ng-bind","ng-pluralize","ng-switch"],"string":"[\n \"ng-even\",\n \"ng-bind\",\n \"ng-pluralize\",\n \"ng-switch\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":307,"cells":{"task_id":{"kind":"string","value":"k00308"},"question":{"kind":"string","value":"Which of the below Angular Js function is responsible for the comparing the two object value?"},"choices":{"kind":"list like","value":["angular.equals()","angular.match()","angular.element()","angular.concat()"],"string":"[\n \"angular.equals()\",\n \"angular.match()\",\n \"angular.element()\",\n \"angular.concat()\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":308,"cells":{"task_id":{"kind":"string","value":"k00309"},"question":{"kind":"string","value":"The component which is used for adding the dependency in AngularJS application are:"},"choices":{"kind":"list like","value":["Value","Factory","Constant","Application Module"],"string":"[\n \"Value\",\n \"Factory\",\n \"Constant\",\n \"Application Module\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":309,"cells":{"task_id":{"kind":"string","value":"k00310"},"question":{"kind":"string","value":"Which Azure service allows a seamless connection to on-premises servers using point-to-site VPN, site-to-site VPN, or ExpressRoute connections?"},"choices":{"kind":"list like","value":["Azure Traffic Manager","Azure Active Directory","Azure Virtual Network Gateway","Azure Content Delivery Network (CDN)"],"string":"[\n \"Azure Traffic Manager\",\n \"Azure Active Directory\",\n \"Azure Virtual Network Gateway\",\n \"Azure Content Delivery Network (CDN)\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":310,"cells":{"task_id":{"kind":"string","value":"k00311"},"question":{"kind":"string","value":"If you're tasked with implementing Azure Policy, which of these scenarios are you most likely addressing ?"},"choices":{"kind":"list like","value":["Ensuring encryption-at-rest for all storage accounts","Establishing low-latency data transfers for applications","Streamlining the deployment of Azure Functions","Setting up a multi-model database system"],"string":"[\n \"Ensuring encryption-at-rest for all storage accounts\",\n \"Establishing low-latency data transfers for applications\",\n \"Streamlining the deployment of Azure Functions\",\n \"Setting up a multi-model database system\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":311,"cells":{"task_id":{"kind":"string","value":"k00312"},"question":{"kind":"string","value":"How would you implement a serverless real-time analytics and machine learning architecture in Azure ?"},"choices":{"kind":"list like","value":["By using Azure Databricks","By using Azure Analysis Services","By using Azure Data Factory","By using Azure Cosmos DB"],"string":"[\n \"By using Azure Databricks\",\n \"By using Azure Analysis Services\",\n \"By using Azure Data Factory\",\n \"By using Azure Cosmos DB\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":312,"cells":{"task_id":{"kind":"string","value":"k00313"},"question":{"kind":"string","value":"What's the most appropriate use case for Azure Spot Virtual Machines ?"},"choices":{"kind":"list like","value":["Workloads that require guaranteed access to VM resources","Workloads that are time-critical and sensitive to interruptions","Stateful applications that need continuous availability","Workloads that can withstand interruptions and don't need to be always up and running"],"string":"[\n \"Workloads that require guaranteed access to VM resources\",\n \"Workloads that are time-critical and sensitive to interruptions\",\n \"Stateful applications that need continuous availability\",\n \"Workloads that can withstand interruptions and don't need to be always up and running\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":313,"cells":{"task_id":{"kind":"string","value":"k00314"},"question":{"kind":"string","value":"In an Azure Kubernetes Service (AKS) cluster, you're looking to apply a network policy to control the traffic flow between pods. Which network policy option should you consider ?"},"choices":{"kind":"list like","value":["Azure Network Policy","Calico Network Policy","Both Azure Network Policy and Calico Network Policy can be used","AKS does not support network policies"],"string":"[\n \"Azure Network Policy\",\n \"Calico Network Policy\",\n \"Both Azure Network Policy and Calico Network Policy can be used\",\n \"AKS does not support network policies\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":314,"cells":{"task_id":{"kind":"string","value":"k00315"},"question":{"kind":"string","value":"Consider an application that needs to securely communicate with Azure SQL Database. How can the application use Managed Identities for Azure Resources to authenticate ?"},"choices":{"kind":"list like","value":["By using the Azure CLI to fetch an access token and then using it to connect to the SQL database","Managed Identities can't be used for Azure SQL Database authentication","By directly using the managed identity's client ID in the connection string","Managed identities don't require any authentication"],"string":"[\n \"By using the Azure CLI to fetch an access token and then using it to connect to the SQL database\",\n \"Managed Identities can't be used for Azure SQL Database authentication\",\n \"By directly using the managed identity's client ID in the connection string\",\n \"Managed identities don't require any authentication\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":315,"cells":{"task_id":{"kind":"string","value":"k00316"},"question":{"kind":"string","value":"Which Azure service can be used to deploy Docker containers that require rapid scaling and must respond to events?"},"choices":{"kind":"list like","value":["Azure Functions","Azure Container Instances","Azure Kubernetes Service (AKS)","Azure App Service"],"string":"[\n \"Azure Functions\",\n \"Azure Container Instances\",\n \"Azure Kubernetes Service (AKS)\",\n \"Azure App Service\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":316,"cells":{"task_id":{"kind":"string","value":"k00317"},"question":{"kind":"string","value":"In Azure Event Grid, what are 'topics' and 'subscriptions' ?"},"choices":{"kind":"list like","value":["'Topics' are specific Azure events, 'subscriptions' are user accounts","'Topics' are sources of events, 'subscriptions' are where handlers are set to react to these events","'Topics' are categories of resources, 'subscriptions' are Azure payment plans","'Topics' are queues for events, 'subscriptions' are the consumers of these events"],"string":"[\n \"'Topics' are specific Azure events, 'subscriptions' are user accounts\",\n \"'Topics' are sources of events, 'subscriptions' are where handlers are set to react to these events\",\n \"'Topics' are categories of resources, 'subscriptions' are Azure payment plans\",\n \"'Topics' are queues for events, 'subscriptions' are the consumers of these events\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":317,"cells":{"task_id":{"kind":"string","value":"k00318"},"question":{"kind":"string","value":"Which service in Azure would you utilize to manage secrets, keys, and certificates, and to control access to them based on Azure Active Directory ?"},"choices":{"kind":"list like","value":["Azure Key Vault","Azure Policy","Azure Security Center","Azure Active Directory Domain Services"],"string":"[\n \"Azure Key Vault\",\n \"Azure Policy\",\n \"Azure Security Center\",\n \"Azure Active Directory Domain Services\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":318,"cells":{"task_id":{"kind":"string","value":"k00319"},"question":{"kind":"string","value":"Consider an Azure Function app that needs to access secrets stored in Azure Key Vault. Which method could the Function app use to authenticate to Azure Key Vault without storing any credentials in code ?"},"choices":{"kind":"list like","value":["Azure Function Managed Identity","Azure Service Principal","Azure AD Connect","Azure VPN Gateway"],"string":"[\n \"Azure Function Managed Identity\",\n \"Azure Service Principal\",\n \"Azure AD Connect\",\n \"Azure VPN Gateway\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":319,"cells":{"task_id":{"kind":"string","value":"k00320"},"question":{"kind":"string","value":"If you want to allow an Azure Logic App to access an Azure SQL Database without storing credentials, how can you accomplish this ?"},"choices":{"kind":"list like","value":["By using Azure Logic App Managed Identity","By using Azure Virtual Network Gateways","Azure SQL Database doesn't support Managed Identities","By using Azure Service Bus"],"string":"[\n \"By using Azure Logic App Managed Identity\",\n \"By using Azure Virtual Network Gateways\",\n \"Azure SQL Database doesn't support Managed Identities\",\n \"By using Azure Service Bus\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":320,"cells":{"task_id":{"kind":"string","value":"k00321"},"question":{"kind":"string","value":"If you have an Azure VM that needs to call Azure Resource Manager APIs, how can it authenticate without storing credentials in the VM ?"},"choices":{"kind":"list like","value":["By using Azure VM Managed Identity","By using Azure Disk Encryption","Azure VMs can't call Azure Resource Manager APIs","By using Azure Firewall"],"string":"[\n \"By using Azure VM Managed Identity\",\n \"By using Azure Disk Encryption\",\n \"Azure VMs can't call Azure Resource Manager APIs\",\n \"By using Azure Firewall\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":321,"cells":{"task_id":{"kind":"string","value":"k00322"},"question":{"kind":"string","value":"In a scenario where a user's access to secrets in Azure Key Vault needs to be controlled based on group membership and conditional access policies, which Azure service should be implemented ?"},"choices":{"kind":"list like","value":["Azure Privileged Identity Management","Azure Active Directory","Azure Information Protection","Azure Policy"],"string":"[\n \"Azure Privileged Identity Management\",\n \"Azure Active Directory\",\n \"Azure Information Protection\",\n \"Azure Policy\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":322,"cells":{"task_id":{"kind":"string","value":"k00323"},"question":{"kind":"string","value":"If an application running on an Azure Kubernetes Service (AKS) cluster needs to pull images from Azure Container Registry (ACR) without storing credentials in the application or AKS configuration, how can you accomplish this ?"},"choices":{"kind":"list like","value":["By using Azure Blob Storage","By using ACR Managed Identities","By setting up Azure Private Link between AKS and ACR","By using AKS Managed Identities"],"string":"[\n \"By using Azure Blob Storage\",\n \"By using ACR Managed Identities\",\n \"By setting up Azure Private Link between AKS and ACR\",\n \"By using AKS Managed Identities\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":323,"cells":{"task_id":{"kind":"string","value":"k00324"},"question":{"kind":"string","value":"When you need to deploy, manage, and monitor APIs for your back-end services, which Azure service should you utilize ?"},"choices":{"kind":"list like","value":["Azure Logic Apps","Azure API Management","Azure Active Directory","Azure Service Bus"],"string":"[\n \"Azure Logic Apps\",\n \"Azure API Management\",\n \"Azure Active Directory\",\n \"Azure Service Bus\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":324,"cells":{"task_id":{"kind":"string","value":"k00325"},"question":{"kind":"string","value":"How would you manage application secrets (like database connection strings, API keys) in Azure in a secure manner ?"},"choices":{"kind":"list like","value":["Store them in plain text within the application code","Use Azure Key Vault to store and access them","Store them in environment variables of the Azure Web App service","Encrypt them and store them in Azure Storage"],"string":"[\n \"Store them in plain text within the application code\",\n \"Use Azure Key Vault to store and access them\",\n \"Store them in environment variables of the Azure Web App service\",\n \"Encrypt them and store them in Azure Storage\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":325,"cells":{"task_id":{"kind":"string","value":"k00326"},"question":{"kind":"string","value":"Which of the following would you use to implement autoscaling of VM instances in response to changes in workload demand in Azure?"},"choices":{"kind":"list like","value":["Azure Logic Apps","Azure Functions","Azure VM Scale Sets","Azure Service Fabric"],"string":"[\n \"Azure Logic Apps\",\n \"Azure Functions\",\n \"Azure VM Scale Sets\",\n \"Azure Service Fabric\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":326,"cells":{"task_id":{"kind":"string","value":"k00327"},"question":{"kind":"string","value":"You need to implement an Event-Driven architecture in Azure. Which service would you use to trigger a function in response to events in Azure services like Blob Storage or Cosmos DB?"},"choices":{"kind":"list like","value":["Azure Logic Apps","Azure Functions","Azure Service Fabric","Azure Kubernetes Service (AKS)"],"string":"[\n \"Azure Logic Apps\",\n \"Azure Functions\",\n \"Azure Service Fabric\",\n \"Azure Kubernetes Service (AKS)\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":327,"cells":{"task_id":{"kind":"string","value":"k00328"},"question":{"kind":"string","value":"How would you ensure that your Azure Web App is always running and distributed across multiple regions ?"},"choices":{"kind":"list like","value":["Use Azure Traffic Manager to route traffic to multiple deployed instances of the app","Use Azure Active Directory to manage app authentication across regions","Use Azure Logic Apps to keep the app instances in sync","Use Azure Machine Learning to predict traffic and allocate resources accordingly"],"string":"[\n \"Use Azure Traffic Manager to route traffic to multiple deployed instances of the app\",\n \"Use Azure Active Directory to manage app authentication across regions\",\n \"Use Azure Logic Apps to keep the app instances in sync\",\n \"Use Azure Machine Learning to predict traffic and allocate resources accordingly\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":328,"cells":{"task_id":{"kind":"string","value":"k00329"},"question":{"kind":"string","value":"In Azure, what is the Azure Resource Manager (ARM) primarily responsible for ?"},"choices":{"kind":"list like","value":["Handling virtual machine (VM) storage","Managing network traffic to Azure services","Deploying and managing resources","Securing data transmissions across Azure services"],"string":"[\n \"Handling virtual machine (VM) storage\",\n \"Managing network traffic to Azure services\",\n \"Deploying and managing resources\",\n \"Securing data transmissions across Azure services\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":329,"cells":{"task_id":{"kind":"string","value":"k00330"},"question":{"kind":"string","value":"Which of the below class in bootstrap is used to create thumbnail images ?"},"choices":{"kind":"list like","value":[".img-crop",".img-thumb",".img-thumbnail-image",".img-thumbnail"],"string":"[\n \".img-crop\",\n \".img-thumb\",\n \".img-thumbnail-image\",\n \".img-thumbnail\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":330,"cells":{"task_id":{"kind":"string","value":"k00331"},"question":{"kind":"string","value":"Which contextual class in bootstrap indicates that successful action ?"},"choices":{"kind":"list like","value":[".text-warning",".text-primary",".text-success","None of these"],"string":"[\n \".text-warning\",\n \".text-primary\",\n \".text-success\",\n \"None of these\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":331,"cells":{"task_id":{"kind":"string","value":"k00332"},"question":{"kind":"string","value":"Which class applies the hover color to a particular row or cell of a table in bootstrap ?"},"choices":{"kind":"list like","value":[".warning",".danger",".active",".success"],"string":"[\n \".warning\",\n \".danger\",\n \".active\",\n \".success\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":332,"cells":{"task_id":{"kind":"string","value":"k00333"},"question":{"kind":"string","value":"Which of the below layout in bootstrap is used for providing 100% width in Bootstrap ?"},"choices":{"kind":"list like","value":["Fixed layout","Fluid layout","Constraint layout","Linear layout"],"string":"[\n \"Fixed layout\",\n \"Fluid layout\",\n \"Constraint layout\",\n \"Linear layout\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":333,"cells":{"task_id":{"kind":"string","value":"k00334"},"question":{"kind":"string","value":"What is the global default font-size and line-height?"},"choices":{"kind":"list like","value":["15px, 1.428","14px, 1.5","14px, 1.428","None of the above"],"string":"[\n \"15px, 1.428\",\n \"14px, 1.5\",\n \"14px, 1.428\",\n \"None of the above\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":334,"cells":{"task_id":{"kind":"string","value":"k00335"},"question":{"kind":"string","value":"Which bootstrap property used to get different size items for .pagination ?"},"choices":{"kind":"list like","value":[".menu-lg, .lg-sm",".pagination-lg, .pagination-sm",".menu-lg, .menu-sm","None of the above."],"string":"[\n \".menu-lg, .lg-sm\",\n \".pagination-lg, .pagination-sm\",\n \".menu-lg, .menu-sm\",\n \"None of the above.\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":335,"cells":{"task_id":{"kind":"string","value":"k00336"},"question":{"kind":"string","value":"Which of the below properties is used to extend the default form controls by adding text or buttons on either side of textual inputs ?"},"choices":{"kind":"list like","value":["form group","text group","output group","Input Groups"],"string":"[\n \"form group\",\n \"text group\",\n \"output group\",\n \"Input Groups\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":336,"cells":{"task_id":{"kind":"string","value":"k00337"},"question":{"kind":"string","value":"Which of the below is the correct syntax for adding the alert in the bootstrap component ?"},"choices":{"kind":"list like","value":["
component
","
component
","
component
","
component
"],"string":"[\n \"
component
\",\n \"
component
\",\n \"
component
\",\n \"
component
\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":337,"cells":{"task_id":{"kind":"string","value":"k00338"},"question":{"kind":"string","value":"Which of the below properties is used to make the rows of the table hoverable ?"},"choices":{"kind":"list like","value":["table-collapse","table-row","table-hover","table-hide"],"string":"[\n \"table-collapse\",\n \"table-row\",\n \"table-hover\",\n \"table-hide\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":338,"cells":{"task_id":{"kind":"string","value":"k00339"},"question":{"kind":"string","value":"Which of the below bootstrap class are used to color the panels ?"},"choices":{"kind":"list like","value":["panel-primary","panel-success","panel-info","All of the above"],"string":"[\n \"panel-primary\",\n \"panel-success\",\n \"panel-info\",\n \"All of the above\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":339,"cells":{"task_id":{"kind":"string","value":"k00340"},"question":{"kind":"string","value":"Which of the following class is used to change the size of wells ?"},"choices":{"kind":"list like","value":[".well-sm",".well-xl",".well-md","None of the above"],"string":"[\n \".well-sm\",\n \".well-xl\",\n \".well-md\",\n \"None of the above\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":340,"cells":{"task_id":{"kind":"string","value":"k00341"},"question":{"kind":"string","value":"Which of the below bootstrap classes is used to create the big box in bootstrap ?"},"choices":{"kind":"list like","value":[".box",".container",".container-fluid",".jumbotron"],"string":"[\n \".box\",\n \".container\",\n \".container-fluid\",\n \".jumbotron\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":341,"cells":{"task_id":{"kind":"string","value":"k00342"},"question":{"kind":"string","value":"Which bootstrap class is used to create a button as a link ?"},"choices":{"kind":"list like","value":[".btn-hyperlink",".btn-link",".btn-anchor","None of the above"],"string":"[\n \".btn-hyperlink\",\n \".btn-link\",\n \".btn-anchor\",\n \"None of the above\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":342,"cells":{"task_id":{"kind":"string","value":"k00343"},"question":{"kind":"string","value":"How do we create a black navigation bar in Bootstrap ?"},"choices":{"kind":"list like","value":[".navbar-default",".navbar-inverse",".navbar-black",".navbar-dark"],"string":"[\n \".navbar-default\",\n \".navbar-inverse\",\n \".navbar-black\",\n \".navbar-dark\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":343,"cells":{"task_id":{"kind":"string","value":"k00344"},"question":{"kind":"string","value":"Which of the below bootstrap class is used to convert image to circle ?"},"choices":{"kind":"list like","value":[".img-rounded",".img-circle",".img-rounded","None of the above"],"string":"[\n \".img-rounded\",\n \".img-circle\",\n \".img-rounded\",\n \"None of the above\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":344,"cells":{"task_id":{"kind":"string","value":"k00345"},"question":{"kind":"string","value":"Which of the below classes is used to make the responsive images in Bootstrap ?"},"choices":{"kind":"list like","value":[".img-fix class",".img-width class",".img-center class",".img-fluid class"],"string":"[\n \".img-fix class\",\n \".img-width class\",\n \".img-center class\",\n \".img-fluid class\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":345,"cells":{"task_id":{"kind":"string","value":"k00346"},"question":{"kind":"string","value":"How we can fix the width of the container in Bootstrap ?"},"choices":{"kind":"list like","value":[".container-fixed",".container-fluid",".container",".container-default"],"string":"[\n \".container-fixed\",\n \".container-fluid\",\n \".container\",\n \".container-default\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":346,"cells":{"task_id":{"kind":"string","value":"k00347"},"question":{"kind":"string","value":"Which of the following bootstrap styles can be used to create a Stacked progress bar?"},"choices":{"kind":"list like","value":["Stacked form","Striped form","Rounded form","None of the above"],"string":"[\n \"Stacked form\",\n \"Striped form\",\n \"Rounded form\",\n \"None of the above\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":347,"cells":{"task_id":{"kind":"string","value":"k00348"},"question":{"kind":"string","value":"In Bootstrap 4 .col-LG is used to-"},"choices":{"kind":"list like","value":["To make width size","To make height size","To make width and height both","To make character entry size"],"string":"[\n \"To make width size\",\n \"To make height size\",\n \"To make width and height both\",\n \"To make character entry size\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":348,"cells":{"task_id":{"kind":"string","value":"k00349"},"question":{"kind":"string","value":"Which of the below is true about Glyphicons in Bootstrap ?"},"choices":{"kind":"list like","value":["It is used to set different icons on a webpage.","It is used for Removing different icons on the page.","It is used for Selecting different icons on the page.","None of the above."],"string":"[\n \"It is used to set different icons on a webpage.\",\n \"It is used for Removing different icons on the page.\",\n \"It is used for Selecting different icons on the page.\",\n \"None of the above.\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":349,"cells":{"task_id":{"kind":"string","value":"k00350"},"question":{"kind":"string","value":"Which of the below is a feature of Bootstrap which is used for styling and formatting the text content ?"},"choices":{"kind":"list like","value":["List group","Typography","Popover","None of the above"],"string":"[\n \"List group\",\n \"Typography\",\n \"Popover\",\n \"None of the above\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":350,"cells":{"task_id":{"kind":"string","value":"k00351"},"question":{"kind":"string","value":"Which of the below is the correct syntax for adding flexbox in Bootstrap pages ?"},"choices":{"kind":"list like","value":["
","
","
","
"],"string":"[\n \"
\",\n \"
\",\n \"
\",\n \"
\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":351,"cells":{"task_id":{"kind":"string","value":"k00352"},"question":{"kind":"string","value":"Which object in bootstraps aligned to the left or to the right of some content in an easy and efficient manner ?"},"choices":{"kind":"list like","value":["media-left","media-right","media-body","All of the above"],"string":"[\n \"media-left\",\n \"media-right\",\n \"media-body\",\n \"All of the above\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":352,"cells":{"task_id":{"kind":"string","value":"k00353"},"question":{"kind":"string","value":"Which bootstrap class is used to create something like an alert dialog that disappears in a short time?"},"choices":{"kind":"list like","value":["Toast","Alert","Timer","Navs"],"string":"[\n \"Toast\",\n \"Alert\",\n \"Timer\",\n \"Navs\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":353,"cells":{"task_id":{"kind":"string","value":"k00354"},"question":{"kind":"string","value":"Which class is used to display additional information about any element and is displayed on click of mouse pointer over that element."},"choices":{"kind":"list like","value":["Popover","Scrollspy","Typography","Grid"],"string":"[\n \"Popover\",\n \"Scrollspy\",\n \"Typography\",\n \"Grid\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":354,"cells":{"task_id":{"kind":"string","value":"k00355"},"question":{"kind":"string","value":"Which bootstrap class is used to display a series of content in an organized way ?"},"choices":{"kind":"list like","value":["Tool","List Groups","Tooltip","Toast"],"string":"[\n \"Tool\",\n \"List Groups\",\n \"Tooltip\",\n \"Toast\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":355,"cells":{"task_id":{"kind":"string","value":"k00356"},"question":{"kind":"string","value":"Which of the below is a flexible and extensible content container in bootstrap?"},"choices":{"kind":"list like","value":["Footer","Flexbox","Cards","Spinner"],"string":"[\n \"Footer\",\n \"Flexbox\",\n \"Cards\",\n \"Spinner\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":356,"cells":{"task_id":{"kind":"string","value":"k00357"},"question":{"kind":"string","value":"How do we create the dropdown menu in bootstrap ?"},"choices":{"kind":"list like","value":[".dropdown",".select",".select-list","None of the above"],"string":"[\n \".dropdown\",\n \".select\",\n \".select-list\",\n \"None of the above\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":357,"cells":{"task_id":{"kind":"string","value":"k00358"},"question":{"kind":"string","value":"Which plugin is used to create a cycle through elements as a slideshow ?"},"choices":{"kind":"list like","value":["slideshow","scroll spy","carousel","None of the above"],"string":"[\n \"slideshow\",\n \"scroll spy\",\n \"carousel\",\n \"None of the above\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":358,"cells":{"task_id":{"kind":"string","value":"k00359"},"question":{"kind":"string","value":"Which of the following class in Bootstrap is used to create a basic list group ?"},"choices":{"kind":"list like","value":[".grouped-list",".select-list",".list-group",".list-grouped"],"string":"[\n \".grouped-list\",\n \".select-list\",\n \".list-group\",\n \".list-grouped\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":359,"cells":{"task_id":{"kind":"string","value":"k00360"},"question":{"kind":"string","value":"What is the maximum number of columns in the bootstrap grid system?"},"choices":{"kind":"list like","value":["3","12","9","15"],"string":"[\n \"3\",\n \"12\",\n \"9\",\n \"15\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":360,"cells":{"task_id":{"kind":"string","value":"k00361"},"question":{"kind":"string","value":"How we create a large button in Bootstrap ?"},"choices":{"kind":"list like","value":[".btn-xl",".btn-lrg",".btn-large",".btn-lg"],"string":"[\n \".btn-xl\",\n \".btn-lrg\",\n \".btn-large\",\n \".btn-lg\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":361,"cells":{"task_id":{"kind":"string","value":"k00362"},"question":{"kind":"string","value":"Which class in bootstrap makes a table more compact by cutting cell padding in half ?"},"choices":{"kind":"list like","value":[".table-bordered",".table-responsive",".table-striped",".table-condensed"],"string":"[\n \".table-bordered\",\n \".table-responsive\",\n \".table-striped\",\n \".table-condensed\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":362,"cells":{"task_id":{"kind":"string","value":"k00363"},"question":{"kind":"string","value":"Which bootstrap classes is used to add a zebra stripe to the table ?"},"choices":{"kind":"list like","value":[".tab-striped",".zebra-strip",".table-stripped",".table-striped"],"string":"[\n \".tab-striped\",\n \".zebra-strip\",\n \".table-stripped\",\n \".table-striped\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":363,"cells":{"task_id":{"kind":"string","value":"k00364"},"question":{"kind":"string","value":"Which of the below classes in bootstrap is used to set the button in the entire width of their parent element ?"},"choices":{"kind":"list like","value":["btn-fix","btn-set","btn-block","btn-container"],"string":"[\n \"btn-fix\",\n \"btn-set\",\n \"btn-block\",\n \"btn-container\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":364,"cells":{"task_id":{"kind":"string","value":"k00365"},"question":{"kind":"string","value":"Which of the below bootstrap style is used to create pagination ?"},"choices":{"kind":"list like","value":[".breadcrumb",".pagination",".menu","None of the above"],"string":"[\n \".breadcrumb\",\n \".pagination\",\n \".menu\",\n \"None of the above\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":365,"cells":{"task_id":{"kind":"string","value":"k00366"},"question":{"kind":"string","value":"How we create the default progress bar in bootstrap ?"},"choices":{"kind":"list like","value":[".progress, .progress-bar",".nav-progress",".link-progress-bar","None of the above"],"string":"[\n \".progress, .progress-bar\",\n \".nav-progress\",\n \".link-progress-bar\",\n \"None of the above\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":366,"cells":{"task_id":{"kind":"string","value":"k00367"},"question":{"kind":"string","value":"Which of the below bootstrap class indicates a warning that might need attention from the user ?"},"choices":{"kind":"list like","value":[".active",".success",".warning",".danger"],"string":"[\n \".active\",\n \".success\",\n \".warning\",\n \".danger\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":367,"cells":{"task_id":{"kind":"string","value":"k00368"},"question":{"kind":"string","value":"How do we make uppercased text in bootstrap ?"},"choices":{"kind":"list like","value":[".text-capitalize",".text-upper",".uppercase",".text-uppercase"],"string":"[\n \".text-capitalize\",\n \".text-upper\",\n \".uppercase\",\n \".text-uppercase\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":368,"cells":{"task_id":{"kind":"string","value":"k00369"},"question":{"kind":"string","value":"Which bootstrap feature targets the navigation bar contents automatically on scrolling the area?"},"choices":{"kind":"list like","value":["Scrollspy","div.scroll","spinner-border","Carousel"],"string":"[\n \"Scrollspy\",\n \"div.scroll\",\n \"spinner-border\",\n \"Carousel\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":369,"cells":{"task_id":{"kind":"string","value":"k00370"},"question":{"kind":"string","value":"Which bootstrap classes are used to control the layout of flexbox components ?"},"choices":{"kind":"list like","value":["Layout","Alert","Flex","Box"],"string":"[\n \"Layout\",\n \"Alert\",\n \"Flex\",\n \"Box\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":370,"cells":{"task_id":{"kind":"string","value":"k00371"},"question":{"kind":"string","value":"Which bootstrap classes are used for create different styles of the spinner to display the loading state of projects ?"},"choices":{"kind":"list like","value":["Spinners","Alert","Progress bar","NabBar"],"string":"[\n \"Spinners\",\n \"Alert\",\n \"Progress bar\",\n \"NabBar\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":371,"cells":{"task_id":{"kind":"string","value":"k00372"},"question":{"kind":"string","value":"Which bootstrap class is used in
element to wrap the container element."},"choices":{"kind":"list like","value":[".custom-alert",".custom-color",".custom-checkbox",".custom-carousel"],"string":"[\n \".custom-alert\",\n \".custom-color\",\n \".custom-checkbox\",\n \".custom-carousel\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":372,"cells":{"task_id":{"kind":"string","value":"k00373"},"question":{"kind":"string","value":"Which of the below class in bootstrap is used to add additional information to the content ?"},"choices":{"kind":"list like","value":[".alert",".notify",".badge",".warning"],"string":"[\n \".alert\",\n \".notify\",\n \".badge\",\n \".warning\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":373,"cells":{"task_id":{"kind":"string","value":"k00374"},"question":{"kind":"string","value":"Which class is used to make form horizontal in bootstrap ?"},"choices":{"kind":"list like","value":[".horizontal",".form-horizontal",".horizontal","None of the above"],"string":"[\n \".horizontal\",\n \".form-horizontal\",\n \".horizontal\",\n \"None of the above\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":374,"cells":{"task_id":{"kind":"string","value":"k00375"},"question":{"kind":"string","value":"The Query.noConflict(true) in jQuery is used as"},"choices":{"kind":"list like","value":["free up the $ symbol by other libraries","Improve compatibility","Remove all jQuery variables","All of the above"],"string":"[\n \"free up the $ symbol by other libraries\",\n \"Improve compatibility\",\n \"Remove all jQuery variables\",\n \"All of the above\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":375,"cells":{"task_id":{"kind":"string","value":"k00376"},"question":{"kind":"string","value":"Which method is used to check whether an element is selected or not ?"},"choices":{"kind":"list like","value":["hasClass()","toggleClass()","find()","addClass()"],"string":"[\n \"hasClass()\",\n \"toggleClass()\",\n \"find()\",\n \"addClass()\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":376,"cells":{"task_id":{"kind":"string","value":"k00377"},"question":{"kind":"string","value":"How we set all the div elements of 130px high"},"choices":{"kind":"list like","value":["$(\"div\").height(130);","$(\"div\").height = \"130\" ;","$(\"div\").height = 130 ;","All of the above"],"string":"[\n \"$(\\\"div\\\").height(130);\",\n \"$(\\\"div\\\").height = \\\"130\\\" ;\",\n \"$(\\\"div\\\").height = 130 ;\",\n \"All of the above\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":377,"cells":{"task_id":{"kind":"string","value":"k00378"},"question":{"kind":"string","value":"Which of the below method is responsible for merging the two or more objects into the first object ?"},"choices":{"kind":"list like","value":["check() Method","find() Method","obj() Method","extend() Method"],"string":"[\n \"check() Method\",\n \"find() Method\",\n \"obj() Method\",\n \"extend() Method\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":378,"cells":{"task_id":{"kind":"string","value":"k00379"},"question":{"kind":"string","value":"Which jQuery method is used to make the Ajax call?"},"choices":{"kind":"list like","value":["ready(url, [data], [callback] )","load( url, [data], [callback] )","reload(url, [data], [callback] )","None of the above."],"string":"[\n \"ready(url, [data], [callback] )\",\n \"load( url, [data], [callback] )\",\n \"reload(url, [data], [callback] )\",\n \"None of the above.\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":379,"cells":{"task_id":{"kind":"string","value":"k00380"},"question":{"kind":"string","value":"Which method is select all enable forms in jQuery?"},"choices":{"kind":"list like","value":[":enabled selector",":file selector",":reset selector",":button selector"],"string":"[\n \":enabled selector\",\n \":file selector\",\n \":reset selector\",\n \":button selector\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":380,"cells":{"task_id":{"kind":"string","value":"k00381"},"question":{"kind":"string","value":"How to find the current selection against an expression in jQuery ?"},"choices":{"kind":"list like","value":["getIs( selector )","findls( selector )","is( selector )","None of the above"],"string":"[\n \"getIs( selector )\",\n \"findls( selector )\",\n \"is( selector )\",\n \"None of the above\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":381,"cells":{"task_id":{"kind":"string","value":"k00382"},"question":{"kind":"string","value":"Which one of the following is the correct option for the toggle() in jQuery?"},"choices":{"kind":"list like","value":["Element will hide and show","Element will Fade In and Out","Element will up and down","Element will Animate and Hide"],"string":"[\n \"Element will hide and show\",\n \"Element will Fade In and Out\",\n \"Element will up and down\",\n \"Element will Animate and Hide\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":382,"cells":{"task_id":{"kind":"string","value":"k00383"},"question":{"kind":"string","value":"Which one is the utility function used in the jquery?"},"choices":{"kind":"list like","value":["jQuery.parseJSON()","jQuery.noConflict()","jQuery.Conflict()","jQuery.each()"],"string":"[\n \"jQuery.parseJSON()\",\n \"jQuery.noConflict()\",\n \"jQuery.Conflict()\",\n \"jQuery.each()\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":383,"cells":{"task_id":{"kind":"string","value":"k00384"},"question":{"kind":"string","value":"If you hide the selected element in jquery which jquery method did you have to choose from below?"},"choices":{"kind":"list like","value":["display(none) Method","hidden(element) Method","hide() Method","visible(false) Method"],"string":"[\n \"display(none) Method\",\n \"hidden(element) Method\",\n \"hide() Method\",\n \"visible(false) Method\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":384,"cells":{"task_id":{"kind":"string","value":"k00385"},"question":{"kind":"string","value":"Which of the below defines a single global function?"},"choices":{"kind":"list like","value":["$()","local()","jQuery()","global()"],"string":"[\n \"$()\",\n \"local()\",\n \"jQuery()\",\n \"global()\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":385,"cells":{"task_id":{"kind":"string","value":"k00386"},"question":{"kind":"string","value":"Which jQuery method is used to check that event.stopPropagation() method was ever called on event object ?"},"choices":{"kind":"list like","value":["isDefaultPrevented( ) Method","isPropagationStopped( ) Method","isImmediatePropagationStopped( ) Method","None of the above."],"string":"[\n \"isDefaultPrevented( ) Method\",\n \"isPropagationStopped( ) Method\",\n \"isImmediatePropagationStopped( ) Method\",\n \"None of the above.\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":386,"cells":{"task_id":{"kind":"string","value":"k00387"},"question":{"kind":"string","value":"Which one of the following options is true for selecting the specified text?"},"choices":{"kind":"list like","value":[":target()",":selects()",":choose","None of the them"],"string":"[\n \":target()\",\n \":selects()\",\n \":choose\",\n \"None of the them\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":387,"cells":{"task_id":{"kind":"string","value":"k00388"},"question":{"kind":"string","value":"Which attribute is used to select all elements with a name attribute that contains the specified string."},"choices":{"kind":"list like","value":["$(\"[attribute~=\\'string\\']\")","$(\"attribute~=\\'string\\'\")","$(\"[attribute==\\'value\\']\")","$(\"[attribute==\\'char\\']\")"],"string":"[\n \"$(\\\"[attribute~=\\\\'string\\\\']\\\")\",\n \"$(\\\"attribute~=\\\\'string\\\\'\\\")\",\n \"$(\\\"[attribute==\\\\'value\\\\']\\\")\",\n \"$(\\\"[attribute==\\\\'char\\\\']\\\")\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":388,"cells":{"task_id":{"kind":"string","value":"k00389"},"question":{"kind":"string","value":"Find the context of assigning a value from the below code snippets:\rvariable: var geeks = this. In TypeScript"},"choices":{"kind":"list like","value":["printScope => console.log this","geek = this printScope -> console.log geek","printScope => console.log @","All of the following"],"string":"[\n \"printScope => console.log this\",\n \"geek = this printScope -> console.log geek\",\n \"printScope => console.log @\",\n \"All of the following\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":389,"cells":{"task_id":{"kind":"string","value":"k00390"},"question":{"kind":"string","value":"Which jQuery attribute is used to select each element that doesn’t have the specified attribute and value?"},"choices":{"kind":"list like","value":["$(\"[attribute@=\\'value\\']\")","$(\"[attribute$=\\'value\\']\")","$(\"[attribute!=\\'value\\']\")","$(\"[attribute|=\\'value\\']\")"],"string":"[\n \"$(\\\"[attribute@=\\\\'value\\\\']\\\")\",\n \"$(\\\"[attribute$=\\\\'value\\\\']\\\")\",\n \"$(\\\"[attribute!=\\\\'value\\\\']\\\")\",\n \"$(\\\"[attribute|=\\\\'value\\\\']\\\")\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":390,"cells":{"task_id":{"kind":"string","value":"k00391"},"question":{"kind":"string","value":"Out of the below jQuery method which one is used to find the highest property of the element ?"},"choices":{"kind":"list like","value":["height( )","getCSSheight( )","getheight( )","All of the above."],"string":"[\n \"height( )\",\n \"getCSSheight( )\",\n \"getheight( )\",\n \"All of the above.\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":391,"cells":{"task_id":{"kind":"string","value":"k00392"},"question":{"kind":"string","value":"Which selector selects in jQuery is used to select the just “next” element of the specified “element”?"},"choices":{"kind":"list like","value":["element + next Selector","$(\":not(nextSelector)\")","$(element) + $(Selector)","element + next Selector"],"string":"[\n \"element + next Selector\",\n \"$(\\\":not(nextSelector)\\\")\",\n \"$(element) + $(Selector)\",\n \"element + next Selector\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":392,"cells":{"task_id":{"kind":"string","value":"k00393"},"question":{"kind":"string","value":"Which of the below jQuery method is used to find all the ancestor elements between two given elements in a DOM tree?"},"choices":{"kind":"list like","value":["$(selector).siblings(function)","$(selector1).parentsUntil(selector2)","$(selector).parent()","$(selector).slice(para1, para2)"],"string":"[\n \"$(selector).siblings(function)\",\n \"$(selector1).parentsUntil(selector2)\",\n \"$(selector).parent()\",\n \"$(selector).slice(para1, para2)\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":393,"cells":{"task_id":{"kind":"string","value":"k00394"},"question":{"kind":"string","value":"Which of the below jQuery method is used to find the set of elements that is the closest parent to the specified selector?"},"choices":{"kind":"list like","value":["getNearest( selector )","getClosest( [selector])","closest(selector)","None of the above."],"string":"[\n \"getNearest( selector )\",\n \"getClosest( [selector])\",\n \"closest(selector)\",\n \"None of the above.\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":394,"cells":{"task_id":{"kind":"string","value":"k00395"},"question":{"kind":"string","value":"Which of the below cookie plugin is used in jQuery?"},"choices":{"kind":"list like","value":["Dazzler","Session","Dough","None of these"],"string":"[\n \"Dazzler\",\n \"Session\",\n \"Dough\",\n \"None of these\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":395,"cells":{"task_id":{"kind":"string","value":"k00396"},"question":{"kind":"string","value":"Which of the below method is used to show the asynchronous request?"},"choices":{"kind":"list like","value":["jQuery.ajaxAsync()","jQuery.ajaxLoad()","jQuery.ajax()","All of the following"],"string":"[\n \"jQuery.ajaxAsync()\",\n \"jQuery.ajaxLoad()\",\n \"jQuery.ajax()\",\n \"All of the following\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":396,"cells":{"task_id":{"kind":"string","value":"k00397"},"question":{"kind":"string","value":"Which of the following function is used to stop the jquery?"},"choices":{"kind":"list like","value":["stop()","delay()","pause()","shutdown()"],"string":"[\n \"stop()\",\n \"delay()\",\n \"pause()\",\n \"shutdown()\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":397,"cells":{"task_id":{"kind":"string","value":"k00398"},"question":{"kind":"string","value":"Which of the following is best suited for jQuery?"},"choices":{"kind":"list like","value":["Client Scripting","Server Scripting","Both of them","None of them"],"string":"[\n \"Client Scripting\",\n \"Server Scripting\",\n \"Both of them\",\n \"None of them\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":398,"cells":{"task_id":{"kind":"string","value":"k00399"},"question":{"kind":"string","value":"Which of the below code snippet is ask for the set the div element in the jQuery?"},"choices":{"kind":"list like","value":["var find= $(div);","var find= #(\"div\");","var find= jQuery(\"div\");","var find = $(\"div\");"],"string":"[\n \"var find= $(div);\",\n \"var find= #(\\\"div\\\");\",\n \"var find= jQuery(\\\"div\\\");\",\n \"var find = $(\\\"div\\\");\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":399,"cells":{"task_id":{"kind":"string","value":"k00400"},"question":{"kind":"string","value":"Which method is used to check whether an element is selected or not?"},"choices":{"kind":"list like","value":["hasClass() Method","toggleClass() Method","find() Method","addClass() Method"],"string":"[\n \"hasClass() Method\",\n \"toggleClass() Method\",\n \"find() Method\",\n \"addClass() Method\"\n]"},"answer":{"kind":"string","value":"A"}}}],"truncated":false,"partial":false},"paginationData":{"pageIndex":3,"numItemsPerPage":100,"numTotalItems":701,"offset":300,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1NjMxMjEwNSwic3ViIjoiL2RhdGFzZXRzL25tZDJrL3Rlc3RjbSIsImV4cCI6MTc1NjMxNTcwNSwiaXNzIjoiaHR0cHM6Ly9odWdnaW5nZmFjZS5jbyJ9.sTW3Tuz4cxQO0KVpZyPi8OULffAr1PkaUxmBPTLIgeANNI3i4ug-ZA2dN7X1sRwxBHdyZXcZmBXcUmGFHnNLBw","displayUrls":true},"discussionsStats":{"closed":6,"open":3,"total":9},"fullWidth":true,"hasGatedAccess":true,"hasFullAccess":true,"isEmbedded":false,"savedQueries":{"community":[],"user":[]}}">
task_id
stringlengths
6
6
question
stringlengths
12
399
choices
listlengths
2
4
answer
stringclasses
4 values
k00301
Which of the following type of components in AngularJs is used to create a custom directive ?
[ "Element directives", "Attribute", "CSS", "All of the above." ]
D
k00302
What is the output of the below code snippets:<html> <head> <title>AngularJS ng-app Directive</title> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"> </script> </head> <h2>ng-app directive</h2> <div ng-app="" ng-init="name='Angular'"> <p>{{ name }} is framework of Javascript</p> </div> </body> </html>
[ "name is a framework of Javascript", "{{ is framework of Javascript }}", "Angular is the framework of Javascript", "Type Error." ]
C
k00303
Which directive specifies the CSS classes on every odd appearance of the HTML element?
[ "ng-class-value", "ng-class-odd", "ng-even", "ng-copy" ]
B
k00304
Which directive of AngluarJS is used to apply custom behavior when an element is clicked?
[ "ng-dbclick", "ng-hide", "ng-click", "ng-show" ]
C
k00305
Which below pattern is used to add up pattern (regex pattern) validator to ngModel on input HTML element?
[ "ng-blur", "ng-checked", "ng-pattern", "ng-readOnly" ]
C
k00306
Which below is the correct syntax for the ng-bind directive?
[ "<element ng-bind=\"expression\"> Contents... </element>", "<element ng-mousedown=\"expression\"> Contents... </element>", "<element ng-value=\"expression\"> Contents... </element>", "<element ng-keypress=\"expression\"> Contents... </element>" ]
A
k00307
Which directive is used to specify the message to display according to the en-us localization rules in jquery?
[ "ng-even", "ng-bind", "ng-pluralize", "ng-switch" ]
C
k00308
Which of the below Angular Js function is responsible for the comparing the two object value?
[ "angular.equals()", "angular.match()", "angular.element()", "angular.concat()" ]
A
k00309
The component which is used for adding the dependency in AngularJS application are:
[ "Value", "Factory", "Constant", "Application Module" ]
D
k00310
Which Azure service allows a seamless connection to on-premises servers using point-to-site VPN, site-to-site VPN, or ExpressRoute connections?
[ "Azure Traffic Manager", "Azure Active Directory", "Azure Virtual Network Gateway", "Azure Content Delivery Network (CDN)" ]
C
k00311
If you're tasked with implementing Azure Policy, which of these scenarios are you most likely addressing ?
[ "Ensuring encryption-at-rest for all storage accounts", "Establishing low-latency data transfers for applications", "Streamlining the deployment of Azure Functions", "Setting up a multi-model database system" ]
A
k00312
How would you implement a serverless real-time analytics and machine learning architecture in Azure ?
[ "By using Azure Databricks", "By using Azure Analysis Services", "By using Azure Data Factory", "By using Azure Cosmos DB" ]
A
k00313
What's the most appropriate use case for Azure Spot Virtual Machines ?
[ "Workloads that require guaranteed access to VM resources", "Workloads that are time-critical and sensitive to interruptions", "Stateful applications that need continuous availability", "Workloads that can withstand interruptions and don't need to be always up and running" ]
D
k00314
In an Azure Kubernetes Service (AKS) cluster, you're looking to apply a network policy to control the traffic flow between pods. Which network policy option should you consider ?
[ "Azure Network Policy", "Calico Network Policy", "Both Azure Network Policy and Calico Network Policy can be used", "AKS does not support network policies" ]
C
k00315
Consider an application that needs to securely communicate with Azure SQL Database. How can the application use Managed Identities for Azure Resources to authenticate ?
[ "By using the Azure CLI to fetch an access token and then using it to connect to the SQL database", "Managed Identities can't be used for Azure SQL Database authentication", "By directly using the managed identity's client ID in the connection string", "Managed identities don't require any authentication" ]
A
k00316
Which Azure service can be used to deploy Docker containers that require rapid scaling and must respond to events?
[ "Azure Functions", "Azure Container Instances", "Azure Kubernetes Service (AKS)", "Azure App Service" ]
B
k00317
In Azure Event Grid, what are 'topics' and 'subscriptions' ?
[ "'Topics' are specific Azure events, 'subscriptions' are user accounts", "'Topics' are sources of events, 'subscriptions' are where handlers are set to react to these events", "'Topics' are categories of resources, 'subscriptions' are Azure payment plans", "'Topics' are queues for events, 'subscriptions' are the consumers of these events" ]
B
k00318
Which service in Azure would you utilize to manage secrets, keys, and certificates, and to control access to them based on Azure Active Directory ?
[ "Azure Key Vault", "Azure Policy", "Azure Security Center", "Azure Active Directory Domain Services" ]
A
k00319
Consider an Azure Function app that needs to access secrets stored in Azure Key Vault. Which method could the Function app use to authenticate to Azure Key Vault without storing any credentials in code ?
[ "Azure Function Managed Identity", "Azure Service Principal", "Azure AD Connect", "Azure VPN Gateway" ]
A
k00320
If you want to allow an Azure Logic App to access an Azure SQL Database without storing credentials, how can you accomplish this ?
[ "By using Azure Logic App Managed Identity", "By using Azure Virtual Network Gateways", "Azure SQL Database doesn't support Managed Identities", "By using Azure Service Bus" ]
A
k00321
If you have an Azure VM that needs to call Azure Resource Manager APIs, how can it authenticate without storing credentials in the VM ?
[ "By using Azure VM Managed Identity", "By using Azure Disk Encryption", "Azure VMs can't call Azure Resource Manager APIs", "By using Azure Firewall" ]
A
k00322
In a scenario where a user's access to secrets in Azure Key Vault needs to be controlled based on group membership and conditional access policies, which Azure service should be implemented ?
[ "Azure Privileged Identity Management", "Azure Active Directory", "Azure Information Protection", "Azure Policy" ]
B
k00323
If an application running on an Azure Kubernetes Service (AKS) cluster needs to pull images from Azure Container Registry (ACR) without storing credentials in the application or AKS configuration, how can you accomplish this ?
[ "By using Azure Blob Storage", "By using ACR Managed Identities", "By setting up Azure Private Link between AKS and ACR", "By using AKS Managed Identities" ]
D
k00324
When you need to deploy, manage, and monitor APIs for your back-end services, which Azure service should you utilize ?
[ "Azure Logic Apps", "Azure API Management", "Azure Active Directory", "Azure Service Bus" ]
B
k00325
How would you manage application secrets (like database connection strings, API keys) in Azure in a secure manner ?
[ "Store them in plain text within the application code", "Use Azure Key Vault to store and access them", "Store them in environment variables of the Azure Web App service", "Encrypt them and store them in Azure Storage" ]
B
k00326
Which of the following would you use to implement autoscaling of VM instances in response to changes in workload demand in Azure?
[ "Azure Logic Apps", "Azure Functions", "Azure VM Scale Sets", "Azure Service Fabric" ]
C
k00327
You need to implement an Event-Driven architecture in Azure. Which service would you use to trigger a function in response to events in Azure services like Blob Storage or Cosmos DB?
[ "Azure Logic Apps", "Azure Functions", "Azure Service Fabric", "Azure Kubernetes Service (AKS)" ]
B
k00328
How would you ensure that your Azure Web App is always running and distributed across multiple regions ?
[ "Use Azure Traffic Manager to route traffic to multiple deployed instances of the app", "Use Azure Active Directory to manage app authentication across regions", "Use Azure Logic Apps to keep the app instances in sync", "Use Azure Machine Learning to predict traffic and allocate resources accordingly" ]
A
k00329
In Azure, what is the Azure Resource Manager (ARM) primarily responsible for ?
[ "Handling virtual machine (VM) storage", "Managing network traffic to Azure services", "Deploying and managing resources", "Securing data transmissions across Azure services" ]
C
k00330
Which of the below class in bootstrap is used to create thumbnail images ?
[ ".img-crop", ".img-thumb", ".img-thumbnail-image", ".img-thumbnail" ]
D
k00331
Which contextual class in bootstrap indicates that successful action ?
[ ".text-warning", ".text-primary", ".text-success", "None of these" ]
C
k00332
Which class applies the hover color to a particular row or cell of a table in bootstrap ?
[ ".warning", ".danger", ".active", ".success" ]
C
k00333
Which of the below layout in bootstrap is used for providing 100% width in Bootstrap ?
[ "Fixed layout", "Fluid layout", "Constraint layout", "Linear layout" ]
B
k00334
What is the global default font-size and line-height?
[ "15px, 1.428", "14px, 1.5", "14px, 1.428", "None of the above" ]
C
k00335
Which bootstrap property used to get different size items for .pagination ?
[ ".menu-lg, .lg-sm", ".pagination-lg, .pagination-sm", ".menu-lg, .menu-sm", "None of the above." ]
B
k00336
Which of the below properties is used to extend the default form controls by adding text or buttons on either side of textual inputs ?
[ "form group", "text group", "output group", "Input Groups" ]
D
k00337
Which of the below is the correct syntax for adding the alert in the bootstrap component ?
[ "<div class=\"Warning\"> component<div>", "<div class=\"alert\"> component<div>", "<div class=\"popup\"> component<div>", "<div class=\"danger\"> component<div>" ]
B
k00338
Which of the below properties is used to make the rows of the table hoverable ?
[ "table-collapse", "table-row", "table-hover", "table-hide" ]
C
k00339
Which of the below bootstrap class are used to color the panels ?
[ "panel-primary", "panel-success", "panel-info", "All of the above" ]
D
k00340
Which of the following class is used to change the size of wells ?
[ ".well-sm", ".well-xl", ".well-md", "None of the above" ]
A
k00341
Which of the below bootstrap classes is used to create the big box in bootstrap ?
[ ".box", ".container", ".container-fluid", ".jumbotron" ]
D
k00342
Which bootstrap class is used to create a button as a link ?
[ ".btn-hyperlink", ".btn-link", ".btn-anchor", "None of the above" ]
B
k00343
How do we create a black navigation bar in Bootstrap ?
[ ".navbar-default", ".navbar-inverse", ".navbar-black", ".navbar-dark" ]
B
k00344
Which of the below bootstrap class is used to convert image to circle ?
[ ".img-rounded", ".img-circle", ".img-rounded", "None of the above" ]
B
k00345
Which of the below classes is used to make the responsive images in Bootstrap ?
[ ".img-fix class", ".img-width class", ".img-center class", ".img-fluid class" ]
D
k00346
How we can fix the width of the container in Bootstrap ?
[ ".container-fixed", ".container-fluid", ".container", ".container-default" ]
C
k00347
Which of the following bootstrap styles can be used to create a Stacked progress bar?
[ "Stacked form", "Striped form", "Rounded form", "None of the above" ]
A
k00348
In Bootstrap 4 .col-LG is used to-
[ "To make width size", "To make height size", "To make width and height both", "To make character entry size" ]
A
k00349
Which of the below is true about Glyphicons in Bootstrap ?
[ "It is used to set different icons on a webpage.", "It is used for Removing different icons on the page.", "It is used for Selecting different icons on the page.", "None of the above." ]
A
k00350
Which of the below is a feature of Bootstrap which is used for styling and formatting the text content ?
[ "List group", "Typography", "Popover", "None of the above" ]
B
k00351
Which of the below is the correct syntax for adding flexbox in Bootstrap pages ?
[ "<div id=\"d-flex p-2\"></div>", "<div id=\"d-fixp-2\"></div>", "<div id=\"flex p-2\"></div>", "<div id=\"d-flex p-2\"></div>" ]
D
k00352
Which object in bootstraps aligned to the left or to the right of some content in an easy and efficient manner ?
[ "media-left", "media-right", "media-body", "All of the above" ]
D
k00353
Which bootstrap class is used to create something like an alert dialog that disappears in a short time?
[ "Toast", "Alert", "Timer", "Navs" ]
A
k00354
Which class is used to display additional information about any element and is displayed on click of mouse pointer over that element.
[ "Popover", "Scrollspy", "Typography", "Grid" ]
A
k00355
Which bootstrap class is used to display a series of content in an organized way ?
[ "Tool", "List Groups", "Tooltip", "Toast" ]
B
k00356
Which of the below is a flexible and extensible content container in bootstrap?
[ "Footer", "Flexbox", "Cards", "Spinner" ]
C
k00357
How do we create the dropdown menu in bootstrap ?
[ ".dropdown", ".select", ".select-list", "None of the above" ]
A
k00358
Which plugin is used to create a cycle through elements as a slideshow ?
[ "slideshow", "scroll spy", "carousel", "None of the above" ]
C
k00359
Which of the following class in Bootstrap is used to create a basic list group ?
[ ".grouped-list", ".select-list", ".list-group", ".list-grouped" ]
C
k00360
What is the maximum number of columns in the bootstrap grid system?
[ "3", "12", "9", "15" ]
B
k00361
How we create a large button in Bootstrap ?
[ ".btn-xl", ".btn-lrg", ".btn-large", ".btn-lg" ]
D
k00362
Which class in bootstrap makes a table more compact by cutting cell padding in half ?
[ ".table-bordered", ".table-responsive", ".table-striped", ".table-condensed" ]
D
k00363
Which bootstrap classes is used to add a zebra stripe to the table ?
[ ".tab-striped", ".zebra-strip", ".table-stripped", ".table-striped" ]
D
k00364
Which of the below classes in bootstrap is used to set the button in the entire width of their parent element ?
[ "btn-fix", "btn-set", "btn-block", "btn-container" ]
C
k00365
Which of the below bootstrap style is used to create pagination ?
[ ".breadcrumb", ".pagination", ".menu", "None of the above" ]
B
k00366
How we create the default progress bar in bootstrap ?
[ ".progress, .progress-bar", ".nav-progress", ".link-progress-bar", "None of the above" ]
A
k00367
Which of the below bootstrap class indicates a warning that might need attention from the user ?
[ ".active", ".success", ".warning", ".danger" ]
C
k00368
How do we make uppercased text in bootstrap ?
[ ".text-capitalize", ".text-upper", ".uppercase", ".text-uppercase" ]
D
k00369
Which bootstrap feature targets the navigation bar contents automatically on scrolling the area?
[ "Scrollspy", "div.scroll", "spinner-border", "Carousel" ]
A
k00370
Which bootstrap classes are used to control the layout of flexbox components ?
[ "Layout", "Alert", "Flex", "Box" ]
C
k00371
Which bootstrap classes are used for create different styles of the spinner to display the loading state of projects ?
[ "Spinners", "Alert", "Progress bar", "NabBar" ]
C
k00372
Which bootstrap class is used in <div> element to wrap the container element.
[ ".custom-alert", ".custom-color", ".custom-checkbox", ".custom-carousel" ]
C
k00373
Which of the below class in bootstrap is used to add additional information to the content ?
[ ".alert", ".notify", ".badge", ".warning" ]
C
k00374
Which class is used to make form horizontal in bootstrap ?
[ ".horizontal", ".form-horizontal", ".horizontal", "None of the above" ]
B
k00375
The Query.noConflict(true) in jQuery is used as
[ "free up the $ symbol by other libraries", "Improve compatibility", "Remove all jQuery variables", "All of the above" ]
D
k00376
Which method is used to check whether an element is selected or not ?
[ "hasClass()", "toggleClass()", "find()", "addClass()" ]
A
k00377
How we set all the div elements of 130px high
[ "$(\"div\").height(130);", "$(\"div\").height = \"130\" ;", "$(\"div\").height = 130 ;", "All of the above" ]
A
k00378
Which of the below method is responsible for merging the two or more objects into the first object ?
[ "check() Method", "find() Method", "obj() Method", "extend() Method" ]
D
k00379
Which jQuery method is used to make the Ajax call?
[ "ready(url, [data], [callback] )", "load( url, [data], [callback] )", "reload(url, [data], [callback] )", "None of the above." ]
B
k00380
Which method is select all enable forms in jQuery?
[ ":enabled selector", ":file selector", ":reset selector", ":button selector" ]
A
k00381
How to find the current selection against an expression in jQuery ?
[ "getIs( selector )", "findls( selector )", "is( selector )", "None of the above" ]
C
k00382
Which one of the following is the correct option for the toggle() in jQuery?
[ "Element will hide and show", "Element will Fade In and Out", "Element will up and down", "Element will Animate and Hide" ]
A
k00383
Which one is the utility function used in the jquery?
[ "jQuery.parseJSON()", "jQuery.noConflict()", "jQuery.Conflict()", "jQuery.each()" ]
A
k00384
If you hide the selected element in jquery which jquery method did you have to choose from below?
[ "display(none) Method", "hidden(element) Method", "hide() Method", "visible(false) Method" ]
C
k00385
Which of the below defines a single global function?
[ "$()", "local()", "jQuery()", "global()" ]
C
k00386
Which jQuery method is used to check that event.stopPropagation() method was ever called on event object ?
[ "isDefaultPrevented( ) Method", "isPropagationStopped( ) Method", "isImmediatePropagationStopped( ) Method", "None of the above." ]
B
k00387
Which one of the following options is true for selecting the specified text?
[ ":target()", ":selects()", ":choose", "None of the them" ]
B
k00388
Which attribute is used to select all elements with a name attribute that contains the specified string.
[ "$(\"[attribute~=\\'string\\']\")", "$(\"attribute~=\\'string\\'\")", "$(\"[attribute==\\'value\\']\")", "$(\"[attribute==\\'char\\']\")" ]
A
k00389
Find the context of assigning a value from the below code snippets: variable: var geeks = this. In TypeScript
[ "printScope => console.log this", "geek = this printScope -> console.log geek", "printScope => console.log @", "All of the following" ]
D
k00390
Which jQuery attribute is used to select each element that doesn’t have the specified attribute and value?
[ "$(\"[attribute@=\\'value\\']\")", "$(\"[attribute$=\\'value\\']\")", "$(\"[attribute!=\\'value\\']\")", "$(\"[attribute|=\\'value\\']\")" ]
C
k00391
Out of the below jQuery method which one is used to find the highest property of the element ?
[ "height( )", "getCSSheight( )", "getheight( )", "All of the above." ]
A
k00392
Which selector selects in jQuery is used to select the just “next” element of the specified “element”?
[ "element + next Selector", "$(\":not(nextSelector)\")", "$(element) + $(Selector)", "element + next Selector" ]
D
k00393
Which of the below jQuery method is used to find all the ancestor elements between two given elements in a DOM tree?
[ "$(selector).siblings(function)", "$(selector1).parentsUntil(selector2)", "$(selector).parent()", "$(selector).slice(para1, para2)" ]
B
k00394
Which of the below jQuery method is used to find the set of elements that is the closest parent to the specified selector?
[ "getNearest( selector )", "getClosest( [selector])", "closest(selector)", "None of the above." ]
C
k00395
Which of the below cookie plugin is used in jQuery?
[ "Dazzler", "Session", "Dough", "None of these" ]
C
k00396
Which of the below method is used to show the asynchronous request?
[ "jQuery.ajaxAsync()", "jQuery.ajaxLoad()", "jQuery.ajax()", "All of the following" ]
C
k00397
Which of the following function is used to stop the jquery?
[ "stop()", "delay()", "pause()", "shutdown()" ]
B
k00398
Which of the following is best suited for jQuery?
[ "Client Scripting", "Server Scripting", "Both of them", "None of them" ]
A
k00399
Which of the below code snippet is ask for the set the div element in the jQuery?
[ "var find= $(div);", "var find= #(\"div\");", "var find= jQuery(\"div\");", "var find = $(\"div\");" ]
D
k00400
Which method is used to check whether an element is selected or not?
[ "hasClass() Method", "toggleClass() Method", "find() Method", "addClass() Method" ]
A