India – 22 Year Old Indian Hacks PM Narendra Modi’s App

According to a report by Your Story, a 22 year-old hacker Javed Khatri claimed that he was able to hack PM Narendra Modi app which is separate from the official app and is available on Android, iOS and Windows.
Javed Khatri in an email to Your Story, said, “I am able to access private data of any user on the app. The data includes phone number, email, name, location, interests, last seen etc.”
“I successfully managed to extract the personal phone numbers and email ids of ministers like Smriti Irani. Not only that, I can make any user on the platform follow any other user on the platform,” he added.
“This is just the summary of this huge security loophole which I want to report. The privacy of more than seven million users is at stake if this gets ignored.” he said
The 22 year old has no intention to misuse the data and just wanted to demonstrate how poor the security of the app is as it was easy for him to hack the app, he told the site.
He has also shared a couple of screenshots to prove the legitimacy of his hack. The screenshots show personal data of Dr Jitendra Singh, Minister of State for the Ministry of Development of North Eastern Region, the data was accessed via Narendra Modi app.

Write “Hello World” Program in 26 Different Programming Languages

Printing “Hello World” on the console ( monitor ) is where most of the present senior programmers started once. When you are taking an online course, or learning a programming language for the first time, “Hello World” program is where you are most likely to start. So, today we will print the words ‘ Hello World ‘ on console using 27 different programming languages. I assume this article would help you distinguish how a program syntax changes from one programming language to another. Here we go starting with the Legendary C language:

1. C

#include 
 
int main()
{
    printf("Hello, World");
    return(0);
}

2. C++

#include 
 
int main()
{
    std::cout << "Hello, World";
    return 0;
}

3. C#

using System;
class Program
{
    public static void Main(string[] args)
    {
        Console.WriteLine("Hello, World");
    }
}

4. Bash

echo "Hello, World"

5. Basic

PRINT "Hello, World"

6. HTML

 Hello, World

7. Java

public class Main {
    public static void main(String[] args) {
        System.out.println("Hello, World!");
    }
}

8. Clipper

? "Hello, World"

9. Delphi

program HelloWorld;
begin
  Writeln('Hello, World');
end.

10. CoffeeScript

console.log 'Hello, World'

11. MatLab

disp('Hello, World')

12. Julia

println("Hello, World")

13. JavaScript

document.write('Hello, World');

14. Logo

print [Hello, World]

15. jQuery

$("body").append("Hello, World");

16. Perl 5

print "Hello, World";

17. Pascal

program HelloWorld;
begin
  WriteLn('Hello, World');
end.

18. Objective-C

#import 
#import 
 
int main(void)
{
    NSLog(@"Hello, World");
    return 0;
}

19. Visual Basic .NET

Module Module1
    Sub Main()
        Console.WriteLine("Hello, World")
    End Sub
End Module

20. R

cat('Hello, World')

21. VBScript

MsgBox "Hello, World"

22. XSLT

      Hello, World

23. Processing

void setup(){
  println("Hello, World");
}

24. Ruby

puts "Hello, World"

25. Swift

print("Hello, World")

26. Python

print ("Hello, World")
I started my programming days with my first program in C which is printing ” Hello, World “on monitor. What was your first program ? Comment Below
If there are any errors in the code mentioned above, feel free to mention the in the comment section.
print (" Happy Coding! ")