Exambodh - योग्यता, रीजनिंग और GK प्रश्नों का अभ्यास
UPlay Quiz
कंप्यूटर ज्ञान
MediumQ. No. which-operating-system-is-commonly-used-for-embedded-devices-like-smart-tvs-and-routers

Smart TV और router जैसे embedded devices में कौन सा OS प्रकार सामान्यतः उपयोग होता है?

Last Updated:

Aएम्बेडेड ऑपरेटिंग सिस्टम
Bकेवल डेस्कटॉप ऑपरेटिंग सिस्टम
Cकेवल बैच ऑपरेटिंग सिस्टम
Dकोई सॉफ्टवेयर नहीं
Correct Answer: एम्बेडेड ऑपरेटिंग सिस्टमYour Answer: A

Explanation

Embedded OS खास functions वाले dedicated devices के लिए बनाया जाता है।

Important Notes

  • एम्बेडेड ऑपरेटिंग सिस्टम ko concept ke saath revise karein.
  • यह सामग्री अभी उपलब्ध नहीं है। ke similar MCQs ko exam practice ke liye repeat karein.
  • कंप्यूटर ज्ञान ke liye ye point quick revision me useful hai.
यह सामग्री अभी उपलब्ध न...
कंप्यूटर ज्...
Answer
एम्बेडेड ऑपरेटिंग सिस्टम

Exam Info

  • Asked in: SSC, Railway, Banking and other competitive exams.
  • Also asked in: RRB NTPC, CHSL, State PCS and online mock tests.
  • Topic: यह सामग्री अभी उपलब्ध नहीं है।

Related Questions

View All

FAQ

यह सामग्री अभी उपलब्ध नहीं है। FAQs

Common questions and clear answers for this topic.

What is an Operating System and what are its main functions?

An Operating System (OS) is system software that manages computer hardware and software resources. Main functions: Process Management, Memory Management, File System Management, I/O Management, Security, and User Interface. Common OS: Windows (Microsoft), macOS (Apple), Linux/Ubuntu (open-source), Android and iOS (mobile). OS is an important topic in Computer Awareness for SSC, IBPS Bank, and Railway exams.

What are the types of Operating Systems?

Types of Operating Systems: Batch OS (processes jobs in batches without user interaction), Time-Sharing OS (multiple users share computer time, UNIX), Real-Time OS (used in embedded systems, RTOS), Network OS (manages network resources, Windows Server), Distributed OS (manages group of computers as a single system), and Mobile OS (Android, iOS). Windows, Linux, and macOS are the most common desktop operating systems.

What is Process Management in Operating Systems?

Process Management handles creation, scheduling, and termination of processes. A process is a program in execution. Process states: New, Ready, Running, Waiting, Terminated. Process Scheduling algorithms: FCFS (First Come First Serve), SJF (Shortest Job First), Round Robin (time quantum based), Priority Scheduling. The OS uses PCB (Process Control Block) to store process information. Deadlock is when two processes wait for each other's resources.

What is Memory Management in Operating Systems?

Memory Management allocates and deallocates memory for processes. Techniques: Paging (divides memory into fixed-size pages), Segmentation (divides into variable-size segments), Virtual Memory (uses disk space as extended RAM), and Swapping (moves processes between RAM and disk). Internal fragmentation occurs with paging; external fragmentation occurs with variable partitions.

What is the difference between process and thread in OS?

A Process is an independent program in execution with its own memory space and resources. Processes are isolated from each other. A Thread is the smallest unit of execution within a process. Threads within the same process share memory space and resources. Multi-threading allows concurrent execution within a process. Threads are lighter than processes with faster context switching.