Cart (0) - ₹0
  1. Home
  2. / quiz

How much bones of human body?

2024-02-22 13:03:06

<p>Sure thing! A grown-up human body has <strong>206 bones</strong>. When we're born, we have about 300 bones, but as we grow, some of those bones fuse together, like in the skull and spine, leaving us with 206 bones as adults. These bones give our body structure, protect our organs, and work with our muscles to let us move around. Pretty cool, right?</p>

प्रकाश वर्ष किस भौतिक राशि का मात्रक है?

2023-11-01 12:22:54

<p>प्रकाश वर्ष <strong>दूरी का मात्रक</strong> है।</p>

सार्थक अंक से आप क्या समझते हैं?

2023-11-03 12:57:32

<p>किसी भी भौतिक राशि को किसी मापक यंत्र द्वारा एक सीमा तक ही यथार्थता पूर्वक मापा जा सकता है अतः प्रत्येक मापक यंत्र द्वारा मापी गई माप यथार्थत की सीमा तक ही शुद्ध होती है। प्रत्येक मापन में प्रेक्षण का अंतिम अंक सदैव संदिग्ध होता है।</p>

भारतीय संविधान में मौलिक अधिकार

2023-11-03 12:58:37

<p>भारतीय संविधान में मौलिक अधिकारों को<strong> ‘मैग्नाकार्टा’ </strong>कहा गया है। मौलिक अधिकार भारतीय संविधान में अमेरिका से लिया गया है। इसे संविधान में <strong>भाग 3 के अनुच्छेद 12 से अनुच्छेद 35 तक</strong> रखा गया है। मौलिक अधिकारों को भारतीय नागरिकों के लिए व्यक्तिगत स्वतंत्रता को सुनिश्चित करने के लिए प्रधान किये गए हैं। भारतीय संविधान में शुरू से &nbsp;7 मौलिक अधिकार सुनिश्चित किए गए थे &nbsp;किंतु बाद में एक अधिकार को वापस ले लिया गया जो &nbsp;की संपत्ति का अधिकार वर्तमान समय में भारतीय नागरिकों के पास 6 मौलिक अधिकार है &nbsp;जो निम्नलिखित है -</p><ol><li>समता का अधिकार</li><li>स्वतंत्रता का अधिकार</li><li>शोषण के विरुद्ध अधिकार</li><li>धर्म की स्वतंत्रता</li><li>संस्कृति एवं शिक्षा का अधिकार</li><li>संवैधानिक उपचारों का अधिकार</li></ol>

What is operator ?

2023-10-08 14:36:02

<p>The term <strong>"operator" </strong>can have different meanings depending on the context. In programming, an operator is a symbol that represents a computation or action. Examples include <strong>arithmetic operators (+ for addition, - for subtraction), logical operators (&amp;&amp; for logical AND, || for logical OR), and more.</strong></p><p>&nbsp;</p>

what is operating system?

2023-10-08 14:36:15

<p>A operating system &nbsp;is software that manages computer hardware and provides services for &nbsp;programs. It acts as an intermediary between users and the computer hardware, facilitating tasks such as <strong>file management, memory allocation, and process scheduling</strong>. Common examples include <strong>Windows, MacOS, and Linux </strong>for personal computers, and <strong>Android or IOS</strong> for mobile devices.</p>

What is compiler ?

2023-10-08 14:36:27

<p>A compiler is <strong>a software tool </strong>that translates<strong> high-level programming code</strong> written by a programmer into machine code or an intermediate code that can be executed by a computer. This translation process involves several stages, including lexical analysis, syntax analysis, optimization, and code generation. The resulting compiled code is typically more efficient for the computer to execute than the original source code. Compilers are essential in the software development process for languages like <strong>C, C++, and Java</strong>.</p>

How many types of operating system?

2023-10-08 14:36:46

<p>There are several types of operating systems, each designed for specific purposes. Here are some common types:</p><p><strong>1.Single-User, Single-Tasking </strong>- Examples -<strong> MS-DOS (Microsoft Disk Operating System)</strong></p><p><strong>2.Single-User, Multi-Tasking -</strong><br>&nbsp;Allows a user to run multiple applications simultaneously.<br><strong>&nbsp;Examples - Windows, macOS.</strong></p><p><strong>3.Multi-User -</strong><br>&nbsp;Supports multiple users accessing the system at the same time.<br>&nbsp;<strong>Examples -</strong> Unix, Linux.</p><p><strong>4.Real-Time Operating System (RTOS) -</strong><br>Designed for systems that require immediate and predictable responses.<br>Used in embedded systems, robotics, and industrial control systems.<br>&nbsp;<strong>Examples - </strong>VxWorks, QNX.</p><p><strong>5.Distributed Operating System -</strong><br>&nbsp; Spreads tasks across multiple computers connected by a network.<br>&nbsp; Enhances resource sharing and improves performance.<br>&nbsp; <strong>Examples -</strong> Amoeba, Google Fuchsia.</p><p><strong>6.Network Operating System (NOS) -</strong><br>&nbsp; Manages network resources and provides services to other computers in the network.<br><strong>&nbsp; Examples -</strong> Novell NetWare.</p><p><strong>7.Mobile Operating System -</strong><br>&nbsp;Specifically designed for mobile devices like smartphones and tablets.<br>&nbsp;<strong> Examples -</strong> Android, iOS.</p><p><strong>8.Embedded Operating System -</strong><br>&nbsp;Optimized for embedded systems, often with limited resources.<br>&nbsp;Used in devices like routers, smart TVs, and IoT devices.<br>&nbsp;&nbsp;</p><p>&nbsp;</p>

What is interpreter?

2023-10-08 14:36:58

<p>An interpreter is a type of language processor that directly executes instructions written in a programming or scripting language without the need for a separate compilation step. It translates the source code into machine code or an intermediate code line by line, executing each statement as it goes.</p><p>Key points about interpreters -</p><p><strong>1.No Intermediate Compilation</strong><br>&nbsp; - Unlike compilers, interpreters do not generate a standalone executable before the program runs.</p><p><strong>2.Line-by-Line Execution</strong><br>&nbsp; - Interpreters work by translating and executing one line of code at a time.</p><p><strong>3.Interactive Development</strong><br>&nbsp;Often used in interactive development environments where programmers can test code snippets or make immediate changes.</p><p><strong>4.Slower Execution</strong><br>&nbsp;Generally, interpreted code can be slower than compiled code because the translation happens at runtime.</p><p><strong>5.Examples</strong><br>&nbsp; Python, JavaScript, and Ruby often use interpreters. Python, for instance, has both an interpreter (CPython) and a compiler (Py).</p><p>&nbsp;</p>

विज्ञान से आप क्या समझते हैं?

2023-10-08 14:37:56

<p>विज्ञान प्राकृतिक परिघटनाओं को यथा संभव <strong>विस्तृत एवं गहनता</strong> से समझने के लिए किया जाने वाला सुव्यवस्थित प्रयास है इसमें इस प्रकार अर्जित ज्ञान का उपयोग परिघटनाओं की <strong>भविष्य कथन, संशोधन एवं नियंत्रण</strong> के लिए किया जाता है।</p><p>विज्ञान एक व्यवस्थित उद्यम है जो दुनिया के बारे में परीक्षण योग्य स्पष्टीकरण और भविष्यवाणियों के रूप में ज्ञान का <strong>निर्माण और व्यवस्थित</strong> करता है। यह <strong>वैज्ञानिक पद्धति पर आधारित</strong> है, जो अवलोकन करने, परिकल्पना बनाने, उन परिकल्पनाओं का परीक्षण करने और निष्कर्ष निकालने की एक प्रक्रिया है।</p><p>विज्ञान को <strong>दो व्यापक श्रेणियों में विभाजित</strong> किया जा सकता है - <strong>प्राकृतिक विज्ञान और सामाजिक विज्ञान</strong>। प्राकृतिक विज्ञान भौतिक ब्रह्मांड, पृथ्वी पर जीवन और मानव मन सहित प्राकृतिक दुनिया का अध्ययन करता है। सामाजिक विज्ञान मानव समाज और व्यवहार का अध्ययन करता है।</p>

Latest Post

View All
  • No Post available..