India Temporarily Blocks Telegram, Claiming It Was Done To Prevent Exam Fraud


The platform will be unavailable until June 22 after a key test paper was purportedly leaked.

India has temporarily blocked Telegram for a strange justification: test cheating. The government recently annulled the results of a key medical school entrance test because it said that the answers were leaked ahead of time on Telegram, The Financial Times reports. To preserve the integrity of the re-test slated for June 21, the government is completely blocking the messaging app until exams finish on June 22. 

That may sound like a terrible reason to block Telegram in its largest market — estimated to be around 84 million people — but there’s more to the story. Apart from the leak, the exam system has been called “broken and corrupt” by India’s primary opposition leader. That issue is what initially led to student outrage and protests against Indian Prime Minister Narendra Modi. 

There’s a good explanation for the so-called CBSE scandal (after India’s Central Board of Secondary Education) at Al Jazeera, but here’s a summary. Some 2.28 million students, many of whom studied for years, took the NEET medical school entrance exam test on May 3. This year, the CBSE introduced an On-Screen Marking system to better grade the millions of answers sheets. The contract for that system went to a controversial firm, and after the initial test, students found troubling discrepancies in their results. 

One student who obtained a scan of his answer sheet discovered that it wasn’t even his. “I studied for an entire year. And now I don’t even know whether MY actual Physics paper was checked,” he wrote in a post on X. Other complaints followed, then another student exposed security vulnerabilities in the test marking portal and claimed he was able to enter the system and edit marks. 

On May 12, the government’s National Testing Agency annulled the results, saying investigators found evidence that large sections of the paper may have been leaked and circulated on Telegram prior to the test. The NTA said that Telegram channels with titles like “Paper Leaked NEET” were offering exam paper access in exchange for money.

However, the Internet Freedom Foundation called the ban a “band-aid solution” and “disproportionate” response to exam fraud. “The block of Telegram is reactive and ineffective and will punish ordinary users instead of addressing the systemic source of exam leaks,” the group said in a statement on X



Source link

Leave a Reply

Subscribe to Our Newsletter

Get our latest articles delivered straight to your inbox. No spam, we promise.

Recent Reviews


What is a star schema?

Star schemas are the most basic structure for storing data in a data warehouse. A star schema’s centre is made up of one or more “fact tables” that index a series of “dimension tables.” To fully comprehend star schemas, as well as snowflake schemas, fact tables and dimension tables must be thoroughly examined.

What is a Snowflake schema?

A snowflake schema’s purpose is to normalise the denormalized data in a star schema. This eliminates the write command slowdowns and other issues that are commonly associated with “star schemas.”

A “multi-dimensional” framework seems to be the snowflake schema. At its heart are fact tables which communicate the data gleaned in dimension tables, which radiate upwards and like a star. The snowflake schema’s dimension tables, on the other hand, start dividing themselves into multiple tables. This results in the snowflake pattern.

Become a Snowflake Certified professional by learning this HKR Snowflake Training !

Snowflake Training

  • Master Your Craft
  • Lifetime LMS & Faculty Access
  • 24/7 online expert support
  • Real-world & Project Based Learning

Star schema vs snowflake schema:

The following are the key differences between the start schema and snowflake schema across multiple factors.They are:

1. Working and organizing the data

Data orgaing in star schema:

The goal of a star schema is to separate numerical “fact” data about a business from descriptive, or “dimensional” data. Price, weight, speed, and quantities that is, data in a numerical format will be included in fact data. Colors, model names, geographical locations, employee names, salesperson names, and so on will be included in dimensional data, in addition to numerical information.

The factual data is organised into fact tables, while the dimensional data is organised into dimension tables. In the data warehouse, fact tables are the integration points at the centre of the star schema. They enable machine learning tools to analyse the data as a whole, and they allow other business systems to access the data as well. Dimension tables store and manage data (both numerical and nonnumerical) that flows through fact tables to form the data warehouse.

From a technical point of view, fact tables make note of numeric data related to various events. They could, for instance, include numeric values as well as foreign keys that map to additional (descriptive and nonnumerical) information in dimension tables. To get more analytical, fact tables keep a low level of granularity (or “detail”), which means they record information at a more atomic level. This could result in a large number of records being added to the fact table over time.

Data organizing in snowflake:

The snowflake schema normalises the dimension tables it connects with using this “snowflaking” method by (1) removing “low cardinality” attributes (that appear multiple times in the parent table); and (2) splitting the dimension tables into multiple tables until the dimension tables are completely normalised.

The snowflake database, like snowflake patterns in nature, becomes extremely complex. The schema can generate complex data relationships in which child tables have multiple parent tables.

Get ahead in your career with our Snowflake Tutorial !

2. Dimension table normalisation

The snowflake schema is a data structure that has been fully normalised. Separate dimensional tables are used to store dimensional hierarchies (such as city > country > region).Because it saves space, it can be used when the Dimension Table is relatively large.

Star schema dimensions, on the other hand, are denormalized. The repetition of the same values within a table is referred to as denormalization.It can be used when the Dimension Table contains fewer rows.

3. Redundancy in data

Snowflake schema fully normalizes dimension tables and avoids data redundancy, whereas star schema stores redundant data in dimension tables.Because the Snowflake Schema does have low data redundancy, it is cheaper to update and change.

A star schema, for example, would repeat the values in the field customer address country for each order from the same country.The Star Schema does have a high level of data redundancy, making it hard to maintain and modify.

The denormalization vs normalisation schema design causes redundancy, or duplicated entries.

4. Complexity of the query

A straightforward star schema relates to straightforward query creation. Analysts do not need to write multiple joins because the fact table is joined to only one level of dimensional tables.It is easy to understand  and has low query complexity.

Snowflake schemas, but on the other hand, necessitate a more complex query design. More joins are required to link the additional tables due to the complex relationships between the fact table and its dimensional tables. This adds to the overhead when writing analytical queries.

5. Performance of queries

Star schemas have a faster query execution time. Because dimensional tables require a single join between a fact and its set of attributes, a star schema functions almost as a single table for query lookups.

Snowflake schemas, on the other hand, necessitate complex joins of dimensional tables with their own sub-dimensional or supra-dimensional tables. This slows query processing and may have an impact on other OLAP products such as cube processing.

6. Hard drive space

Star schemas may run queries faster, but due to data redundancy, they require more storage space than snowflake schemas.

7. The integrity of data:

Star schemas put data integrity at greater risk than snowflake schemas. Because data is stored redundantly, multiple copies of the same data exist in the dimensional tables of the star schema. This means that new inserts, updates, or deletes can jeopardise data integrity.

The snowflake schema, on the other hand, is less vulnerable to data integrity issues because it fully normalises dimensional tables, storing dimension data only once in the appropriate table.

8. Installation and upkeep

Snowflake schema is a bottom up model.Star schemas are simpler to develop and implement. Since they are depicted by straightforward relationships, creating a suitable star schema is simple for a database developer or data architect.

Star schemas, but on the other hand, are more tough to sustain than snowflake schemas. Star schemas become more difficult to maintain and check for data integrity violations as new information is consumed into the data warehouse.Star schema is a top -down model.

Data Warehousing & ETLs, star-schema-vs-snowflake-schema-description-0, Data Warehousing & ETLs, star-schema-vs-snowflake-schema-description-1

Subscribe to our YouTube channel to get new updates..!

Benefits of star schema:

The following advantages are provided by star schemas:

  • Because all of the data connects through the fact table, the multiple dimension tables are treated as one large table of information, making queries simpler and easier to perform.
  • Easier reporting of business insights: Star schemas make it easier to pull business reports such as as-of-as and period-over-period reports.
  • Better-performing queries: By expelling the bottlenecks of a highly normalised schema, query speed and read-only command performance improve.
  • Data is provided to OLAP systems: Star schemas can be used to create OLAP cubes in OLAP (Online Analytical Processing) systems.

Top 30 frequently asked snowflake interview questions & answers for freshers & experienced professionals

Benefits of snowflake schema:

Snowflake schemas have the following advantages over standard star schemas:

  • Many OLAP database modelling tools are compatible with it: Certain OLAP database tools, such as those used by data scientists for data analysis and modelling, are particularly developed to function with snowflake data schemas.
  • Reduces the need for data storage: Normalizing data that would normally be denormalized in a star schema could indeed result in a significant reduction in disc space requirements. Largely, this is due to the fact that you are converting long strings of non-numerical data into numerical keys, which are significantly less taxing in terms of storage.

Challenges of snowflake schema:

There are three potential problems with snowflake schemas:

  • Snowflake schemas, as you could expect, add many levels of complexity while normalising the attributes of a star schema. As a result of this complexity, source query joins become more complicated. Snowflake’s ability to provide a more efficient way of storing data may result in performance degradation when browsing these complex joins. Nonetheless, advances in processing technology have resulted in improved snowflake schema query performance in recent years, which is one of the reasons why snowflake schemas are becoming more popular.
  • Slower cube information systems: Complex joins inside a snowflake schema result in slower cube data processing. In a broad sense, the star schema is preferable for cube data processing.
  • Low concentrations of data integrity: While snowflake schemas provide greater normalisation and fewer risks of data corruption after performing UPDATE and INSERT commands, they do not provide the level of transnational assurance that a traditional, highly-normalized database structure does. As a result, when loading data into a snowflake schema, it’s critical to be cautious and double-check the information’s quality after loading.

Snowflake Training

Weekday / Weekend Batches

Challenges faced by star schema:

Working to improve read queries as well as analysis in a star schema may present the following challenges:

  • Data integrity is compromised: Because of denormalized data structure, star schemas do not start enforcing data integrity quite well. Although star schemas employ steps to prevent anomalies from forming, a straightforward insert or update command could still result in data inconsistencies.
  • Database design creates and optimises star schemas for different analysis needs, making them less able to handle vast and varied queries. They work the best with a fairly narrow set of simple queries because they are denormalized data sets. A normalised schema, on the other hand, allows for a much broader range of more complex analytical queries.

Conclusion:

Which one of the two kinds of data warehouse schema will you be using?

Star schemas, on the other hand, are easier, running applications faster, and are simple to set up.Snowflake schemas, but on the other hand, are much less vulnerable to data integrity issues, are cheaper to update, and take up less space.

Premised on the tradeoffs discussed above, it really is up to you to determine which advantage (or disadvantage) better serves your company’s use situations.

Related Articles:



Source link