[ PHP Programming MCQS ]
झारखंड में आयोजित होने वाली JPSC, JSSC, JET, झारखंड पुलिस भर्ती परीक्षा आदि के लिए उपयोगी सामान्य अध्ययन।
[ PHP Programming MCQS ]
Useful GK for JPSC, JSSC, JET, Jharkhand Police and other exams.
661. Gutenberg क्या है?
[A] Block Editor
[B] Cache Plugin
[C] Theme Framework
[D] Database Engine
661. What is Gutenberg?
[A] Block Editor
[B] Cache Plugin
[C] Theme Framework
[D] Database Engine
सही उत्तर: Block Editor
व्याख्या: WordPress का modern content editor।
Correct Answer: Block Editor
Explanation: Modern content editor of WordPress.
662. Gutenberg Block register करने के लिए कौन-सा JavaScript function उपयोग होता है?
[A] registerBlockType()
[B] createBlock()
[C] registerEditorBlock()
[D] blockRegister()
662. Which JavaScript function registers a Gutenberg Block?
[A] registerBlockType()
[B] createBlock()
[C] registerEditorBlock()
[D] blockRegister()
सही उत्तर: registerBlockType()
व्याख्या: Custom blocks create करने के लिए।
Correct Answer: registerBlockType()
Explanation: Used to create custom blocks.
663. Headless WordPress का अर्थ क्या है?
[A] Frontend और Backend अलग होना
[B] WordPress बिना Database
[C] WordPress बिना Theme
[D] WordPress बिना Plugin
663. What does Headless WordPress mean?
[A] Separate Frontend and Backend
[B] WordPress without Database
[C] WordPress without Theme
[D] WordPress without Plugin
सही उत्तर: Frontend और Backend अलग होना
व्याख्या: WordPress backend API के रूप में कार्य करता है।
Correct Answer: Separate Frontend and Backend
Explanation: WordPress acts as an API backend.
664. Headless WordPress में data access के लिए सामान्यतः क्या उपयोग होता है?
[A] REST API
[B] FTP
[C] SMTP
[D] Cron
664. What is commonly used to access data in Headless WordPress?
[A] REST API
[B] FTP
[C] SMTP
[D] Cron
सही उत्तर: REST API
व्याख्या: Frontend applications data fetch करती हैं।
Correct Answer: REST API
Explanation: Frontend applications fetch data through it.
665. WP-CLI क्या है?
[A] WordPress Command Line Interface
[B] WordPress Cache Layer
[C] WordPress Core Library
[D] WordPress Layout Interface
665. What is WP-CLI?
[A] WordPress Command Line Interface
[B] WordPress Cache Layer
[C] WordPress Core Library
[D] WordPress Layout Interface
सही उत्तर: WordPress Command Line Interface
व्याख्या: Command line से WordPress manage करने का tool।
Correct Answer: WordPress Command Line Interface
Explanation: Tool for managing WordPress via command line.
666. WP-CLI में plugin install करने का command क्या है?
[A] wp plugin install
[B] wp install plugin
[C] wp add plugin
[D] wp plugin:add
666. Which WP-CLI command installs a plugin?
[A] wp plugin install
[B] wp install plugin
[C] wp add plugin
[D] wp plugin:add
सही उत्तर: wp plugin install
व्याख्या: Command line से plugin install करता है।
Correct Answer: wp plugin install
Explanation: Installs plugins from command line.
667. WP-CLI में cache clear करने का command क्या है?
[A] wp cache flush
[B] wp cache clear
[C] wp clear cache
[D] wp cache reset
667. Which WP-CLI command clears cache?
[A] wp cache flush
[B] wp cache clear
[C] wp clear cache
[D] wp cache reset
सही उत्तर: wp cache flush
व्याख्या: Object cache flush करता है।
Correct Answer: wp cache flush
Explanation: Flushes object cache.
668. Custom Post Type register करने के लिए कौन-सा function उपयोग होता है?
[A] register_post_type()
[B] create_post_type()
[C] add_post_type()
[D] post_type_register()
668. Which function registers a Custom Post Type?
[A] register_post_type()
[B] create_post_type()
[C] add_post_type()
[D] post_type_register()
सही उत्तर: register_post_type()
व्याख्या: Custom content types create करता है।
Correct Answer: register_post_type()
Explanation: Creates custom content types.
669. Taxonomy register करने के लिए कौन-सा function उपयोग होता है?
[A] register_taxonomy()
[B] create_taxonomy()
[C] add_taxonomy()
[D] taxonomy_register()
669. Which function registers a taxonomy?
[A] register_taxonomy()
[B] create_taxonomy()
[C] add_taxonomy()
[D] taxonomy_register()
सही उत्तर: register_taxonomy()
व्याख्या: Custom classifications create करता है।
Correct Answer: register_taxonomy()
Explanation: Creates custom classifications.
670. Category और Tag किस प्रकार की taxonomies हैं?
[A] Built-in Taxonomies
[B] Custom Taxonomies
[C] Dynamic Taxonomies
[D] Private Taxonomies
670. What type of taxonomies are Category and Tag?
[A] Built-in Taxonomies
[B] Custom Taxonomies
[C] Dynamic Taxonomies
[D] Private Taxonomies
सही उत्तर: Built-in Taxonomies
व्याख्या: WordPress में default taxonomies।
Correct Answer: Built-in Taxonomies
Explanation: Default taxonomies in WordPress.