{ // 获取包含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 }); }); } })(); "},"choices":{"kind":"list like","value":["Yes","No"],"string":"[\n \"Yes\",\n \"No\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":246,"cells":{"task_id":{"kind":"string","value":"k00247"},"question":{"kind":"string","value":"Is this a \"well formed\" XML document?ToveJaniReminderDon't forget me this weekend!"},"choices":{"kind":"list like","value":["No","Yes"],"string":"[\n \"No\",\n \"Yes\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":247,"cells":{"task_id":{"kind":"string","value":"k00248"},"question":{"kind":"string","value":"Which statement is true?"},"choices":{"kind":"list like","value":["All the statements are true","All XML elements must be lower case","All XML documents must have a DTD","All XML elements must be properly closed"],"string":"[\n \"All the statements are true\",\n \"All XML elements must be lower case\",\n \"All XML documents must have a DTD\",\n \"All XML elements must be properly closed\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":248,"cells":{"task_id":{"kind":"string","value":"k00249"},"question":{"kind":"string","value":"Which statement is NOT true?"},"choices":{"kind":"list like","value":["XML elements must be properly nested","XML tags are case sensitive","White-space is not preserved in XML","XML documents must have a root tag"],"string":"[\n \"XML elements must be properly nested\",\n \"XML tags are case sensitive\",\n \"White-space is not preserved in XML\",\n \"XML documents must have a root tag\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":249,"cells":{"task_id":{"kind":"string","value":"k00250"},"question":{"kind":"string","value":"XML preserves white spaces"},"choices":{"kind":"list like","value":["False","True"],"string":"[\n \"False\",\n \"True\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":250,"cells":{"task_id":{"kind":"string","value":"k00251"},"question":{"kind":"string","value":"Is this a \"well formed\" XML document?ToveJani"},"choices":{"kind":"list like","value":["No","Yes"],"string":"[\n \"No\",\n \"Yes\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":251,"cells":{"task_id":{"kind":"string","value":"k00252"},"question":{"kind":"string","value":"Is this a \"well formed\" XML document?ToveJani"},"choices":{"kind":"list like","value":["No","Yes"],"string":"[\n \"No\",\n \"Yes\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":252,"cells":{"task_id":{"kind":"string","value":"k00253"},"question":{"kind":"string","value":"XML elements cannot be empty"},"choices":{"kind":"list like","value":["False","True"],"string":"[\n \"False\",\n \"True\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":253,"cells":{"task_id":{"kind":"string","value":"k00254"},"question":{"kind":"string","value":"Which is not a correct name for an XML element?"},"choices":{"kind":"list like","value":["All 3 names are incorrect","<1dollar>","","

"],"string":"[\n \"All 3 names are incorrect\",\n \"<1dollar>\",\n \"\",\n \"

\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":254,"cells":{"task_id":{"kind":"string","value":"k00255"},"question":{"kind":"string","value":"Which is not a correct name for an XML element?"},"choices":{"kind":"list like","value":["","All 3 names are incorrect","",""],"string":"[\n \"\",\n \"All 3 names are incorrect\",\n \"\",\n \"\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":255,"cells":{"task_id":{"kind":"string","value":"k00256"},"question":{"kind":"string","value":"Which is a correct name for an XML element?"},"choices":{"kind":"list like","value":["","<7eleven>","",""],"string":"[\n \"\",\n \"<7eleven>\",\n \"\",\n \"\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":256,"cells":{"task_id":{"kind":"string","value":"k00257"},"question":{"kind":"string","value":"XML attribute values must always be enclosed in quotes"},"choices":{"kind":"list like","value":["False","True"],"string":"[\n \"False\",\n \"True\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":257,"cells":{"task_id":{"kind":"string","value":"k00258"},"question":{"kind":"string","value":"What does XSL stand for?"},"choices":{"kind":"list like","value":["eXtra Style Language","eXtensible Style Listing","eXpandable Style Language","eXtensible Stylesheet Language"],"string":"[\n \"eXtra Style Language\",\n \"eXtensible Style Listing\",\n \"eXpandable Style Language\",\n \"eXtensible Stylesheet Language\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":258,"cells":{"task_id":{"kind":"string","value":"k00259"},"question":{"kind":"string","value":"What is a correct way of referring to a stylesheet called \"mystyle.xsl\" ?"},"choices":{"kind":"list like","value":["","",""],"string":"[\n \"\",\n \"\",\n \"\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":259,"cells":{"task_id":{"kind":"string","value":"k00260"},"question":{"kind":"string","value":"For the XML parser to ignore a certain section of your XML document, which syntax is correct?"},"choices":{"kind":"list like","value":["",""," Text to be ignored "," Text to be ignored "],"string":"[\n \"\",\n \"\",\n \" Text to be ignored \",\n \" Text to be ignored \"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":260,"cells":{"task_id":{"kind":"string","value":"k00261"},"question":{"kind":"string","value":"Which statement is true?"},"choices":{"kind":"list like","value":["Attributes must always be present","Attributes must occur in defined order","None of the other two statements are true"],"string":"[\n \"Attributes must always be present\",\n \"Attributes must occur in defined order\",\n \"None of the other two statements are true\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":261,"cells":{"task_id":{"kind":"string","value":"k00262"},"question":{"kind":"string","value":"What are XML entities used for?"},"choices":{"kind":"list like","value":["Entities define shortcuts to standard elements","Entities define shortcuts to standard attributes","Entities define shortcuts to standard text or special characters"],"string":"[\n \"Entities define shortcuts to standard elements\",\n \"Entities define shortcuts to standard attributes\",\n \"Entities define shortcuts to standard text or special characters\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":262,"cells":{"task_id":{"kind":"string","value":"k00263"},"question":{"kind":"string","value":"Which of the following XML fragments is well-formed?"},"choices":{"kind":"list like","value":["
","John Smith"],"string":"[\n \"
\",\n \"John Smith\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":263,"cells":{"task_id":{"kind":"string","value":"k00264"},"question":{"kind":"string","value":"What is an XML instance?"},"choices":{"kind":"list like","value":["An XML document","An XML element","An XML attribute"],"string":"[\n \"An XML document\",\n \"An XML element\",\n \"An XML attribute\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":264,"cells":{"task_id":{"kind":"string","value":"k00265"},"question":{"kind":"string","value":"Which of the following is a way to push one HTML content into another HTML content?"},"choices":{"kind":"list like","value":["Server Side push","Use of Comment","Use of pushing","Use of include"],"string":"[\n \"Server Side push\",\n \"Use of Comment\",\n \"Use of pushing\",\n \"Use of include\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":265,"cells":{"task_id":{"kind":"string","value":"k00266"},"question":{"kind":"string","value":"Which of the below is the controller for the single parameter in Angular JS?"},"choices":{"kind":"list like","value":["$control","$scope","^scope","All of the above"],"string":"[\n \"$control\",\n \"$scope\",\n \"^scope\",\n \"All of the above\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":266,"cells":{"task_id":{"kind":"string","value":"k00267"},"question":{"kind":"string","value":"How many numbers of $RootScope does in Angular Js?"},"choices":{"kind":"list like","value":["2","3","1","4"],"string":"[\n \"2\",\n \"3\",\n \"1\",\n \"4\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":267,"cells":{"task_id":{"kind":"string","value":"k00268"},"question":{"kind":"string","value":"Which angular decorator is used to defining the name of the pipe?"},"choices":{"kind":"list like","value":["pipeName","pipeDeco","Pipe","None of the above"],"string":"[\n \"pipeName\",\n \"pipeDeco\",\n \"Pipe\",\n \"None of the above\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":268,"cells":{"task_id":{"kind":"string","value":"k00269"},"question":{"kind":"string","value":"The router in angular js is used for?"},"choices":{"kind":"list like","value":["@angular/router","@angular/core","@angular/scroll","None of above"],"string":"[\n \"@angular/router\",\n \"@angular/core\",\n \"@angular/scroll\",\n \"None of above\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":269,"cells":{"task_id":{"kind":"string","value":"k00270"},"question":{"kind":"string","value":"Which of the below option fits for the lowercase filter in angular JS?"},"choices":{"kind":"list like","value":["The lowercase filter converts a text to lower case text.","The lowercase filter is a function that takes text as input.","The lowercase doesn\\'t convert the string input","None of the above."],"string":"[\n \"The lowercase filter converts a text to lower case text.\",\n \"The lowercase filter is a function that takes text as input.\",\n \"The lowercase doesn\\\\'t convert the string input\",\n \"None of the above.\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":270,"cells":{"task_id":{"kind":"string","value":"k00271"},"question":{"kind":"string","value":"Which of the following is the way for creating custom directives in angular js?"},"choices":{"kind":"list like","value":["Element directives","CSS","Attribute","All of the above."],"string":"[\n \"Element directives\",\n \"CSS\",\n \"Attribute\",\n \"All of the above.\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":271,"cells":{"task_id":{"kind":"string","value":"k00272"},"question":{"kind":"string","value":"Which of the below is the correct syntax for orderBy Filter?"},"choices":{"kind":"list like","value":["{{ string | uppercase}}","{{ orderBy_expression | orderBy : expression : reverse }}","{{ orderBy_clause | orderBy : expression : reverse }}","{{ orderBy_expression | orderBy : expression : forward}}"],"string":"[\n \"{{ string | uppercase}}\",\n \"{{ orderBy_expression | orderBy : expression : reverse }}\",\n \"{{ orderBy_clause | orderBy : expression : reverse }}\",\n \"{{ orderBy_expression | orderBy : expression : forward}}\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":272,"cells":{"task_id":{"kind":"string","value":"k00273"},"question":{"kind":"string","value":"Which filter in AngularJs is used to convert a number into string or text?"},"choices":{"kind":"list like","value":["int Filter","lowerCase","upperCase","number Filter"],"string":"[\n \"int Filter\",\n \"lowerCase\",\n \"upperCase\",\n \"number Filter\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":273,"cells":{"task_id":{"kind":"string","value":"k00274"},"question":{"kind":"string","value":"Which function in AngularJs is used to determine if the date is valid or not ?"},"choices":{"kind":"list like","value":["angular.isTime()","angular.isDate()","angular.bootstrap()","angular.isElement()"],"string":"[\n \"angular.isTime()\",\n \"angular.isDate()\",\n \"angular.bootstrap()\",\n \"angular.isElement()\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":274,"cells":{"task_id":{"kind":"string","value":"k00275"},"question":{"kind":"string","value":"Which filter is used to returns an array or a string that contains a specified number of elements."},"choices":{"kind":"list like","value":["limitTo Filter","limitBegain","limitNumer","limitOrderBy"],"string":"[\n \"limitTo Filter\",\n \"limitBegain\",\n \"limitNumer\",\n \"limitOrderBy\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":275,"cells":{"task_id":{"kind":"string","value":"k00276"},"question":{"kind":"string","value":"Which below are not inbuilt-in AngularJS directives."},"choices":{"kind":"list like","value":["ng-app","ng-init","ng-model","filter"],"string":"[\n \"ng-app\",\n \"ng-init\",\n \"ng-model\",\n \"filter\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":276,"cells":{"task_id":{"kind":"string","value":"k00277"},"question":{"kind":"string","value":"Which directive is used to specify the condition to show or hide the child elements in HTML DOM?"},"choices":{"kind":"list like","value":["ng-switch","ng-cut","ng-readOnly","ng-input"],"string":"[\n \"ng-switch\",\n \"ng-cut\",\n \"ng-readOnly\",\n \"ng-input\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":277,"cells":{"task_id":{"kind":"string","value":"k00278"},"question":{"kind":"string","value":"Angular.js is the combination of which of the following languages ?"},"choices":{"kind":"list like","value":["HTML and PHP","HTML and CrossScript","HTML and Bootstrap","HTML and TypeScript"],"string":"[\n \"HTML and PHP\",\n \"HTML and CrossScript\",\n \"HTML and Bootstrap\",\n \"HTML and TypeScript\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":278,"cells":{"task_id":{"kind":"string","value":"k00279"},"question":{"kind":"string","value":"Which of the below architecture patterns does angular is based on ?"},"choices":{"kind":"list like","value":["MVC","VMC","MCV","CVM"],"string":"[\n \"MVC\",\n \"VMC\",\n \"MCV\",\n \"CVM\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":279,"cells":{"task_id":{"kind":"string","value":"k00280"},"question":{"kind":"string","value":"Which of the following is a way for applying expression in AngularJS application ?"},"choices":{"kind":"list like","value":["(expression)","{{expression}}","{({expression})}","[expression]"],"string":"[\n \"(expression)\",\n \"{{expression}}\",\n \"{({expression})}\",\n \"[expression]\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":280,"cells":{"task_id":{"kind":"string","value":"k00281"},"question":{"kind":"string","value":"Which of the following is the way to manually start the application in Angular?"},"choices":{"kind":"list like","value":["angular. bootstrap","angular.element","angular. copy","None of the above"],"string":"[\n \"angular. bootstrap\",\n \"angular.element\",\n \"angular. copy\",\n \"None of the above\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":281,"cells":{"task_id":{"kind":"string","value":"k00282"},"question":{"kind":"string","value":"What of the following is the correct way for applying multiple filters in AngularJS ?"},"choices":{"kind":"list like","value":["{{ expression | filter1 | filter2}}","{{ expression | {filter1} | {filter2} }}","{{ expression - {filter1} - {filter2}}}","{{ {filter1} | {filter2} | ...expression}}"],"string":"[\n \"{{ expression | filter1 | filter2}}\",\n \"{{ expression | {filter1} | {filter2} }}\",\n \"{{ expression - {filter1} - {filter2}}}\",\n \"{{ {filter1} | {filter2} | ...expression}}\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":282,"cells":{"task_id":{"kind":"string","value":"k00283"},"question":{"kind":"string","value":"Which of the following is used to bind the value of HTML controls in the text area to the application data ?"},"choices":{"kind":"list like","value":["ng-cloak","ng-bind","ng-model","ng-blur"],"string":"[\n \"ng-cloak\",\n \"ng-bind\",\n \"ng-model\",\n \"ng-blur\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":283,"cells":{"task_id":{"kind":"string","value":"k00284"},"question":{"kind":"string","value":"Which of the following is the correct syntax for the create module in angularJs ?"},"choices":{"kind":"list like","value":["ar myModule= module();","var myModule= new Module();","angular.module(\"app\", []);","var Module= new Module(my);"],"string":"[\n \"ar myModule= module();\",\n \"var myModule= new Module();\",\n \"angular.module(\\\"app\\\", []);\",\n \"var Module= new Module(my);\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":284,"cells":{"task_id":{"kind":"string","value":"k00285"},"question":{"kind":"string","value":"Which directive is used to specify the custom behavior functions during the copy of the text in input text fields in jQuery are?"},"choices":{"kind":"list like","value":["ng-copy","ng-list","ng-hide","ng-keypress"],"string":"[\n \"ng-copy\",\n \"ng-list\",\n \"ng-hide\",\n \"ng-keypress\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":285,"cells":{"task_id":{"kind":"string","value":"k00286"},"question":{"kind":"string","value":"Which of the below templates is used for writing the AngularJs directive ?"},"choices":{"kind":"list like","value":["Tag","Attribute","Class name","All of the above"],"string":"[\n \"Tag\",\n \"Attribute\",\n \"Class name\",\n \"All of the above\"\n]"},"answer":{"kind":"string","value":"D"}}},{"rowIdx":286,"cells":{"task_id":{"kind":"string","value":"k00287"},"question":{"kind":"string","value":"Which directive is used to specify that the specific content of HTML should not be compiled?"},"choices":{"kind":"list like","value":["ng-directive","ng-bindable","ng-non-bindable","ng-src"],"string":"[\n \"ng-directive\",\n \"ng-bindable\",\n \"ng-non-bindable\",\n \"ng-src\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":287,"cells":{"task_id":{"kind":"string","value":"k00288"},"question":{"kind":"string","value":"Which one is below correct syntax for JSON Filter?"},"choices":{"kind":"list like","value":["{{ Json | json : spacing }}","{{ object | json :expression }}","{{ object | json : spacing }}","{{ currency_expression }}"],"string":"[\n \"{{ Json | json : spacing }}\",\n \"{{ object | json :expression }}\",\n \"{{ object | json : spacing }}\",\n \"{{ currency_expression }}\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":288,"cells":{"task_id":{"kind":"string","value":"k00289"},"question":{"kind":"string","value":"Which directive is used for building the nested form in Angular?"},"choices":{"kind":"list like","value":["ng-app","ng-start","ng-form","ng-end"],"string":"[\n \"ng-app\",\n \"ng-start\",\n \"ng-form\",\n \"ng-end\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":289,"cells":{"task_id":{"kind":"string","value":"k00290"},"question":{"kind":"string","value":"Which of the below directive in AngularJs is called the entry point of the application?"},"choices":{"kind":"list like","value":["ng-begin","ng-start","ng-app","None of the above"],"string":"[\n \"ng-begin\",\n \"ng-start\",\n \"ng-app\",\n \"None of the above\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":290,"cells":{"task_id":{"kind":"string","value":"k00291"},"question":{"kind":"string","value":"$dirty flag in Angular JS is used for?"},"choices":{"kind":"list like","value":["State that the form has invalid data.","State that value has been changed.","Both of the above.","None of the above."],"string":"[\n \"State that the form has invalid data.\",\n \"State that value has been changed.\",\n \"Both of the above.\",\n \"None of the above.\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":291,"cells":{"task_id":{"kind":"string","value":"k00292"},"question":{"kind":"string","value":"Which jQuery function is used to bind the current context to the function?"},"choices":{"kind":"list like","value":["angular.element()","angular.bind()","angular.bootstrap()","angular.foreach()"],"string":"[\n \"angular.element()\",\n \"angular.bind()\",\n \"angular.bootstrap()\",\n \"angular.foreach()\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":292,"cells":{"task_id":{"kind":"string","value":"k00293"},"question":{"kind":"string","value":".subscribe in angular is used for?"},"choices":{"kind":"list like","value":["Streams data synchronously","Streams data asynchronously","Both of the above","None of above"],"string":"[\n \"Streams data synchronously\",\n \"Streams data asynchronously\",\n \"Both of the above\",\n \"None of above\"\n]"},"answer":{"kind":"string","value":"C"}}},{"rowIdx":293,"cells":{"task_id":{"kind":"string","value":"k00294"},"question":{"kind":"string","value":"Which directive is used for linking the angular to Html?"},"choices":{"kind":"list like","value":["ng-begin","ng-app","ng-start","None of the above"],"string":"[\n \"ng-begin\",\n \"ng-app\",\n \"ng-start\",\n \"None of the above\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":294,"cells":{"task_id":{"kind":"string","value":"k00295"},"question":{"kind":"string","value":"Which of the below decorator is used for configuring your module class?"},"choices":{"kind":"list like","value":["@NgApp","@NgModule","Both of the above","@NgImport"],"string":"[\n \"@NgApp\",\n \"@NgModule\",\n \"Both of the above\",\n \"@NgImport\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":295,"cells":{"task_id":{"kind":"string","value":"k00296"},"question":{"kind":"string","value":"Which of the below is an Invalid filter in AngularJs?"},"choices":{"kind":"list like","value":["JSON","email","limitTo","order by"],"string":"[\n \"JSON\",\n \"email\",\n \"limitTo\",\n \"order by\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":296,"cells":{"task_id":{"kind":"string","value":"k00297"},"question":{"kind":"string","value":"The directive which is responsible for adding or removing the element in HTML is:"},"choices":{"kind":"list like","value":["ng-switch","ng-model","ng-Disabled","ng-Cloak"],"string":"[\n \"ng-switch\",\n \"ng-model\",\n \"ng-Disabled\",\n \"ng-Cloak\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":297,"cells":{"task_id":{"kind":"string","value":"k00298"},"question":{"kind":"string","value":"JQLite is used for ?"},"choices":{"kind":"list like","value":["Built-in subset of jQuery","Built-in superset of jQuery","KnockoutJS built-in subset of jQuery","KnockoutJS built-in superset of jQuery"],"string":"[\n \"Built-in subset of jQuery\",\n \"Built-in superset of jQuery\",\n \"KnockoutJS built-in subset of jQuery\",\n \"KnockoutJS built-in superset of jQuery\"\n]"},"answer":{"kind":"string","value":"A"}}},{"rowIdx":298,"cells":{"task_id":{"kind":"string","value":"k00299"},"question":{"kind":"string","value":"angular. modules are used-"},"choices":{"kind":"list like","value":["Destroys an application module","Creates an application module","Invokes an application module","None"],"string":"[\n \"Destroys an application module\",\n \"Creates an application module\",\n \"Invokes an application module\",\n \"None\"\n]"},"answer":{"kind":"string","value":"B"}}},{"rowIdx":299,"cells":{"task_id":{"kind":"string","value":"k00300"},"question":{"kind":"string","value":"In AngularJs the controller which takes only one parameter is called:"},"choices":{"kind":"list like","value":["$param","$control","$scope","$scont"],"string":"[\n \"$param\",\n \"$control\",\n \"$scope\",\n \"$scont\"\n]"},"answer":{"kind":"string","value":"C"}}}],"truncated":false,"partial":false},"paginationData":{"pageIndex":2,"numItemsPerPage":100,"numTotalItems":701,"offset":200,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1NjI5ODY0Mywic3ViIjoiL2RhdGFzZXRzL25tZDJrL3Rlc3RjbSIsImV4cCI6MTc1NjMwMjI0MywiaXNzIjoiaHR0cHM6Ly9odWdnaW5nZmFjZS5jbyJ9.JV3oPCGYF33Fp1bYCOSqMJMBFo1RVBs4Y5OQiOt-j5oMZW77UkPUEs-bOJ8JUxaVsxC3ef695R4_CKNOx3heBA","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
k00201
What attributes are required for the SVG <ellipse> element?
[ "x and y attributes", "cx and cy attributes", "rx and ry attributes" ]
C
k00202
What attributes are used for the SVG <line> element?
[ "x1, y1, x2, y2 and r attributes", "x1, y1, x2 and y2 attributes", "x1, y1 and r attributes", "x1 and y1 attributes" ]
B
k00203
The SVG <polygon> element is used to create a graphic that contains at least three sides.
[ "False", "True" ]
B
k00204
Which of the following attributes are used with the <radialGradient> element?
[ "rx, ry, cx and cy", "x1, x2, y1 and y2", "cx, cy, fx and fy" ]
C
k00205
Polygons are made of straight lines, and the shape is open.
[ "False", "True" ]
A
k00206
Which attribute is used with the SVG <polyline> element?
[ "line attribute", "circle attribute", "points attribute" ]
C
k00207
Polylines are made of straight lines, and the shape is open.
[ "False", "True" ]
B
k00208
What are the commands used in the 'd' attribute of the SVG <path> element?
[ "M", "Z", "All commands mentioned here can be used", "L" ]
C
k00209
What SVG element is used to define a text?
[ "<p>", "<span>", "<text>", "<txt>" ]
C
k00210
What SVG attribute is used to set the color of the inside of an element?
[ "stroke", "fill" ]
B
k00211
What SVG attribute is used to define the color of the line drawn outside of an element?
[ "stroke", "fill" ]
A
k00212
What is true for using SVG filter?
[ "The <filter> element is defined within a <defs> element", "The <filter> element is used to define SVG filters", "The <filter> element has a required id attribute", "All alternatives are true" ]
D
k00213
What SVG filter is used to blur an SVG graphic?
[ "<feComposite>", "<feBlend>", "<fePointLight>", "<feGaussianBlur>" ]
D
k00214
What SVG filter is used to create a drop shadow effect for an SVG graphic?
[ "<feDropShadow>", "Both <feDropShadow> and <feOffset> can be used", "<feOffset>" ]
B
k00215
Which attribute is used with the SVG <polygon> element?
[ "line attribute", "circle attribute", "points attribute" ]
C
k00216
What does SVG stand for?
[ "Scalable Vector Graphics", "Standard Vector Graphics" ]
A
k00217
Which special tag is used to make dynamic components in Vue?
[ "<KeepAlive>", "<DynamicComponent>", "<Slot>", "<component>" ]
D
k00218
In what ways can we pass data from a parent to a child component?
[ "Props", "Provide/Inject", "All of the techniques mentioned", "Fallthrough Attributes" ]
C
k00219
Which language is Vue written in?
[ "C++", "JavaScript", "Python", "C" ]
B
k00220
Which Vue directive is used to conditionally render an element?
[ "v-model", "v-bind", "v-for", "v-if" ]
D
k00221
Which Vue directive is used for list rendering?
[ "v-bind", "v-for", "v-if", "v-show" ]
B
k00222
The v-bind directive is used to attatch an HTML attribute to a data property.
[ "Yes", "No, never" ]
A
k00223
Which Vue directive is used to create a two-way binding between a form input and a data property?
[ "v-show", "v-bind", "v-model", "v-for" ]
C
k00224
We can make a 'watcher' in Vue to monitor a data property and create side effects.
[ "There is no such thing as watchers in Vue.", "No, watchers can only monitor data properties, never create side effects", "Yes, watchers are made to create side effects when a monitored data property reaches a certain point, that is the intention" ]
C
k00225
When a 'watcher' runs, both the old and the new data property values are available as arguments to the watcher method.
[ "Neither the old nor the new data property values are available", "Only the new data property value is available", "Only the old data property value is available", "Yes" ]
D
k00226
To display the value from the data property 'message' inside a <p> tag with text interpolation, what is the correct syntax?
[ "<p>// message //</p>", "<p>## message ##</p>", "<p>{{ message }}</p>", "<p>'' message ''</p>" ]
C
k00227
What is the main purpose of the 'mounted' lifecycle hook in a Vue component?
[ "To perform side effects after the component has been inserted into the DOM", "To define computed properties", "To define the component's slots before the component is rendered", "To watch data property changes" ]
A
k00228
Vue uses a file to initialize the root Vue instance and mount it to the DOM, what is the file's name?
[ "views.js", "main.js", "settings.js", "config.js" ]
B
k00229
In which lifecycle hook is the DOM accessible and ready for manipulation?
[ "mounted", "beforeCreate", "beforeMount", "created" ]
A
k00230
What is the purpose of the provide() method?
[ "To keep methods local to a single component", "To make data locally available to a specific parent component", "To make a strict interface of data shared between components", "To make data available to other components" ]
D
k00231
What is the purpose of the inject() method?
[ "To smoothly integrate the iframe tag in Vue", "To include 3rd party libraries", "To create a global funtion", "To get data in a component that is provided by another component" ]
D
k00232
What is the purpose of the 'errorCaptured' lifecycle hook?
[ "To handle errors thrown in component watchers", "To handle errors thrown in component lifecycle hooks", "To handle errors thrown in component methods", "To handle errors thrown in any of the cases mentioned" ]
D
k00233
How can you add a transition effect to an element in Vue?
[ "Transitions are not supported in Vue", "Using the v-transition directive", "Using the <Transition> wrapper element", "Using the transition() method" ]
C
k00234
Which special Vue attribute is recommended to provide when generating elements with v-for?
[ "note", "elementID", "number", "key" ]
D
k00235
What command do we need to write to run our Vue project in developer mode?
[ "run dev mode", "run vue in developer mode", "compile to dev", "npm run vue" ]
D
k00236
What attribute must be used to make the CSS rules inside the <style> tag of a component local to only that specific component?
[ "<style this>", "<style onlyHere>", "<style local>", "<style scoped>" ]
D
k00237
How is data passed to a component using props?
[ "as a special wrapper tag", "as text between the components start tag and end tag", "as a method", "as a special attribute" ]
D
k00238
Which Vue directive is used to conditionally display an element?
[ "v-for", "v-model", "v-show", "v-bind" ]
C
k00239
How do you define a computed property in Vue
[ "As a variable inside the 'methods' instance", "As a variable inside the 'computed' instance", "As a method inside the 'methods' instance", "As a method inside the 'computed' instance" ]
D
k00240
What is the main purpose of the 'data' instance in a Vue component?
[ "To handle user interactions", "To define methods for the component", "To define computed properties", "To define variables" ]
D
k00241
What does XML stand for?
[ "eXtensible Markup Language", "Example Markup Language", "eXtra Modern Link", "X-Markup Language" ]
A
k00242
There is a way of describing XML data, how?
[ "XML uses a description node to describe data", "XML uses a DTD to describe the data", "XML uses XSL to describe data" ]
B
k00243
XML's goal is to replace HTML
[ "False", "True" ]
A
k00244
What is the correct syntax of the declaration which defines the XML version?
[ "<?xml version=\"1.0\" />", "<?xml version=\"1.0\"?>", "<xml version=\"1.0\" />" ]
B
k00245
What does DTD stand for?
[ "Do The Dance", "Direct Type Definition", "Document Type Definition", "Dynamic Type Definition" ]
C
k00246
Is this a "well formed" XML document?<?xml version="1.0"?><note><to>Tove</to><from>Jani</from><heading>Reminder</heading><body>Don't forget me this weekend!</body></note>
[ "Yes", "No" ]
A
k00247
Is this a "well formed" XML document?<?xml version="1.0"?><to>Tove</to><from>Jani</from><heading>Reminder</heading><body>Don't forget me this weekend!</body>
[ "No", "Yes" ]
A
k00248
Which statement is true?
[ "All the statements are true", "All XML elements must be lower case", "All XML documents must have a DTD", "All XML elements must be properly closed" ]
D
k00249
Which statement is NOT true?
[ "XML elements must be properly nested", "XML tags are case sensitive", "White-space is not preserved in XML", "XML documents must have a root tag" ]
C
k00250
XML preserves white spaces
[ "False", "True" ]
B
k00251
Is this a "well formed" XML document?<?xml version="1.0"?><note><to age="29">Tove</to><from>Jani</from></note>
[ "No", "Yes" ]
B
k00252
Is this a "well formed" XML document?<?xml version="1.0"?><note><to age=29>Tove</to><from>Jani</from></note>
[ "No", "Yes" ]
A
k00253
XML elements cannot be empty
[ "False", "True" ]
A
k00254
Which is not a correct name for an XML element?
[ "All 3 names are incorrect", "<1dollar>", "<Note>", "<h1>" ]
B
k00255
Which is not a correct name for an XML element?
[ "<first name>", "All 3 names are incorrect", "<NAME>", "<age>" ]
A
k00256
Which is a correct name for an XML element?
[ "<Name>", "<7eleven>", "<phone number>", "<xmldocument>" ]
A
k00257
XML attribute values must always be enclosed in quotes
[ "False", "True" ]
B
k00258
What does XSL stand for?
[ "eXtra Style Language", "eXtensible Style Listing", "eXpandable Style Language", "eXtensible Stylesheet Language" ]
D
k00259
What is a correct way of referring to a stylesheet called "mystyle.xsl" ?
[ "<?xml-stylesheet type=\"text/xsl\" href=\"mystyle.xsl\" ?>", "<stylesheet type=\"text/xsl\" href=\"mystyle.xsl\" />", "<link type=\"text/xsl\" href=\"mystyle.xsl\" />" ]
A
k00260
For the XML parser to ignore a certain section of your XML document, which syntax is correct?
[ "<xml:CDATA[ Text to be ignored ]>", "<![CDATA[ Text to be ignored ]]>", "<CDATA> Text to be ignored </CDATA>", "<PCDATA> Text to be ignored </PCDATA>" ]
B
k00261
Which statement is true?
[ "Attributes must always be present", "Attributes must occur in defined order", "None of the other two statements are true" ]
C
k00262
What are XML entities used for?
[ "Entities define shortcuts to standard elements", "Entities define shortcuts to standard attributes", "Entities define shortcuts to standard text or special characters" ]
C
k00263
Which of the following XML fragments is well-formed?
[ "<customer id=\"3456\"><address/><zip code=\"3456\"/></customer>", "<customer id=3456><name>John Smith</name></customer>" ]
A
k00264
What is an XML instance?
[ "An XML document", "An XML element", "An XML attribute" ]
A
k00265
Which of the following is a way to push one HTML content into another HTML content?
[ "Server Side push", "Use of Comment", "Use of pushing", "Use of include" ]
D
k00266
Which of the below is the controller for the single parameter in Angular JS?
[ "$control", "$scope", "^scope", "All of the above" ]
C
k00267
How many numbers of $RootScope does in Angular Js?
[ "2", "3", "1", "4" ]
C
k00268
Which angular decorator is used to defining the name of the pipe?
[ "pipeName", "pipeDeco", "Pipe", "None of the above" ]
C
k00269
The router in angular js is used for?
[ "@angular/router", "@angular/core", "@angular/scroll", "None of above" ]
A
k00270
Which of the below option fits for the lowercase filter in angular JS?
[ "The lowercase filter converts a text to lower case text.", "The lowercase filter is a function that takes text as input.", "The lowercase doesn\\'t convert the string input", "None of the above." ]
A
k00271
Which of the following is the way for creating custom directives in angular js?
[ "Element directives", "CSS", "Attribute", "All of the above." ]
D
k00272
Which of the below is the correct syntax for orderBy Filter?
[ "{{ string | uppercase}}", "{{ orderBy_expression | orderBy : expression : reverse }}", "{{ orderBy_clause | orderBy : expression : reverse }}", "{{ orderBy_expression | orderBy : expression : forward}}" ]
B
k00273
Which filter in AngularJs is used to convert a number into string or text?
[ "int Filter", "lowerCase", "upperCase", "number Filter" ]
D
k00274
Which function in AngularJs is used to determine if the date is valid or not ?
[ "angular.isTime()", "angular.isDate()", "angular.bootstrap()", "angular.isElement()" ]
B
k00275
Which filter is used to returns an array or a string that contains a specified number of elements.
[ "limitTo Filter", "limitBegain", "limitNumer", "limitOrderBy" ]
A
k00276
Which below are not inbuilt-in AngularJS directives.
[ "ng-app", "ng-init", "ng-model", "filter" ]
D
k00277
Which directive is used to specify the condition to show or hide the child elements in HTML DOM?
[ "ng-switch", "ng-cut", "ng-readOnly", "ng-input" ]
A
k00278
Angular.js is the combination of which of the following languages ?
[ "HTML and PHP", "HTML and CrossScript", "HTML and Bootstrap", "HTML and TypeScript" ]
D
k00279
Which of the below architecture patterns does angular is based on ?
[ "MVC", "VMC", "MCV", "CVM" ]
A
k00280
Which of the following is a way for applying expression in AngularJS application ?
[ "(expression)", "{{expression}}", "{({expression})}", "[expression]" ]
B
k00281
Which of the following is the way to manually start the application in Angular?
[ "angular. bootstrap", "angular.element", "angular. copy", "None of the above" ]
A
k00282
What of the following is the correct way for applying multiple filters in AngularJS ?
[ "{{ expression | filter1 | filter2}}", "{{ expression | {filter1} | {filter2} }}", "{{ expression - {filter1} - {filter2}}}", "{{ {filter1} | {filter2} | ...expression}}" ]
A
k00283
Which of the following is used to bind the value of HTML controls in the text area to the application data ?
[ "ng-cloak", "ng-bind", "ng-model", "ng-blur" ]
C
k00284
Which of the following is the correct syntax for the create module in angularJs ?
[ "ar myModule= module();", "var myModule= new Module();", "angular.module(\"app\", []);", "var Module= new Module(my);" ]
C
k00285
Which directive is used to specify the custom behavior functions during the copy of the text in input text fields in jQuery are?
[ "ng-copy", "ng-list", "ng-hide", "ng-keypress" ]
A
k00286
Which of the below templates is used for writing the AngularJs directive ?
[ "Tag", "Attribute", "Class name", "All of the above" ]
D
k00287
Which directive is used to specify that the specific content of HTML should not be compiled?
[ "ng-directive", "ng-bindable", "ng-non-bindable", "ng-src" ]
C
k00288
Which one is below correct syntax for JSON Filter?
[ "{{ Json | json : spacing }}", "{{ object | json :expression }}", "{{ object | json : spacing }}", "{{ currency_expression }}" ]
C
k00289
Which directive is used for building the nested form in Angular?
[ "ng-app", "ng-start", "ng-form", "ng-end" ]
C
k00290
Which of the below directive in AngularJs is called the entry point of the application?
[ "ng-begin", "ng-start", "ng-app", "None of the above" ]
C
k00291
$dirty flag in Angular JS is used for?
[ "State that the form has invalid data.", "State that value has been changed.", "Both of the above.", "None of the above." ]
A
k00292
Which jQuery function is used to bind the current context to the function?
[ "angular.element()", "angular.bind()", "angular.bootstrap()", "angular.foreach()" ]
B
k00293
.subscribe in angular is used for?
[ "Streams data synchronously", "Streams data asynchronously", "Both of the above", "None of above" ]
C
k00294
Which directive is used for linking the angular to Html?
[ "ng-begin", "ng-app", "ng-start", "None of the above" ]
B
k00295
Which of the below decorator is used for configuring your module class?
[ "@NgApp", "@NgModule", "Both of the above", "@NgImport" ]
B
k00296
Which of the below is an Invalid filter in AngularJs?
[ "JSON", "email", "limitTo", "order by" ]
B
k00297
The directive which is responsible for adding or removing the element in HTML is:
[ "ng-switch", "ng-model", "ng-Disabled", "ng-Cloak" ]
A
k00298
JQLite is used for ?
[ "Built-in subset of jQuery", "Built-in superset of jQuery", "KnockoutJS built-in subset of jQuery", "KnockoutJS built-in superset of jQuery" ]
A
k00299
angular. modules are used-
[ "Destroys an application module", "Creates an application module", "Invokes an application module", "None" ]
B
k00300
In AngularJs the controller which takes only one parameter is called:
[ "$param", "$control", "$scope", "$scont" ]
C