Statewise Prepration
Govt. Examwise MCQ
2090+ MCQ Questions in english हिन्दी
The capital of the Chandela dynasty was:
The famous Bhojeshwar Temple is located near:
King Bhoja, the famous Paramara ruler, is known for his contributions to:
The capital of the Paramara dynasty was:
The capital of Scindia rulers in Madhya Pradesh was?
The Bhil revolt in Western Madhya Pradesh was led by whom?
Who founded the Gondwana kingdom in Madhya Pradesh?
The Great Stupa at Sanchi was originally commissioned by which emperor?
Which ancient city of Madhya Pradesh was the capital of King Ashoka during his viceroyalty?
Who was the first Chief Minister of Madhya Pradesh?
How many members are there in the Uttar Pradesh Legislative Council (Vidhan Parishad)?
UP has a bicameral legislature; its upper house (Legislative Council) has a sanctioned strength of 100 members. Members are elected through various methods—MLAs, local authorities, teachers, graduates, and nominated. It functions as a revising chamber like the Rajya Sabha.
Who appoints the Governor of Uttar Pradesh?
The Governor is appointed by the President under Article 155 of the Constitution. He acts as the constitutional head of the state. The appointment is generally based on advice from the Union Council of Ministers.
Uttar Pradesh has how many seats in the Rajya Sabha?
Uttar Pradesh sends 31 members to the Rajya Sabha, the highest among all Indian states. Rajya Sabha members are elected by MLAs through proportional representation. This reflects UP's large population and legislative size.
What is the minimum age required to become the Chief Minister of Uttar Pradesh?
As per Article 173 of the Indian Constitution, the minimum age to become an MLA and thereby eligible for CM is 25. There is no separate provision for CM; he/she must be a member of the state legislature. Eligibility includes Indian citizenship and no disqualifications.
Who was the first Chief Minister of Uttar Pradesh?
Govind Ballabh Pant served as the first CM of Uttar Pradesh from 1950 to 1954. He played a major role in shaping UP’s early administrative framework post-independence. Pant was also an active participant in India’s freedom movement.
How many seats are there in the Uttar Pradesh Legislative Assembly?
The UP Legislative Assembly (Vidhan Sabha) has 403 elected members, making it the largest state assembly in India. It represents constituencies across the entire state. This number was fixed under the Delimitation Act, 2008.
In networking, what is the purpose of a “subnet mask”?
A subnet mask identifies the network and host portions of an IP address. It allows efficient routing and management of IP address blocks. Subnetting improves security and performance of networks.
What does “overfitting” mean in machine learning?
Overfitting occurs when a model learns training data too well, including noise and outliers. It fails to generalize to new data. Techniques like cross-validation and regularization are used to prevent it.
What does “virtual memory” refer to?
Virtual memory allows a computer to compensate for shortages of physical memory by using disk space. This helps run larger applications by extending RAM virtually. It slows down performance compared to real RAM.
Which logic gate returns false only when all inputs are true?
NAND (Not AND) returns false only if all inputs are true. It is considered a universal gate because all logical operations can be built using only NAND gates. It’s essential in hardware design.
What does the term "deadlock" refer to in operating systems?
A deadlock occurs when processes wait indefinitely for resources held by each other. This creates a circular dependency, halting progress. Operating systems use algorithms to prevent or detect deadlocks.
Which of the following is NOT a functional programming language?
Pascal is a procedural programming language and not designed for functional programming paradigms. In contrast, Haskell and Scala are purely or partly functional. Python supports functional features but isn’t a functional language by design.
Which computer architecture uses a single bus for instructions and data?
von Neumann architecture stores both data and program instructions in the same memory. This design is simple but suffers from the "von Neumann bottleneck." It's used in most general-purpose computers.
What is the full form of JSON?
JSON is a lightweight data interchange format based on JavaScript syntax. It's widely used in web APIs and data transmission. It is human-readable and easy to parse by machines.
17. In Python, what will print(0.1 + 0.2 == 0.3) output?
Due to floating-point precision errors, 0.1 + 0.2 results in a value slightly more than 0.3. Thus, the equality test returns False. This is a classic floating-point arithmetic caveat in computing.
Which scheduling algorithm is used in real-time operating systems?
Rate Monotonic Scheduling is a priority-based real-time algorithm where shorter cycles get higher priority. It ensures predictable task execution. It's commonly used in embedded and control systems.
In Big Data, what does the “4 Vs” stand for?
Big Data is defined by its high Volume (data size), Velocity (speed), Variety (types), and Veracity (uncertainty). These characteristics pose challenges for traditional data processing. The 4 Vs guide the design of scalable data systems.
Which layer of the OSI model is responsible for encryption and compression?
The presentation layer manages data formatting, translation, encryption, and compression. It acts as a translator between the application and the lower layers. This layer ensures readable data formats between systems.