JoBat update

A Virtual World of Infotainment :)

What happens if you take a U Turn in the road illegally?
Certainly, death!
Does it sound strange?
Not at all, if you have watched the movie U Turn.

This movie is an official remake of 2016 Kannada movie with same title, which is the third film of Pawan Kumar after his crowd-funded blockbuster 'Lucia'.

Plot

Every person who takes a U Turn in a bridge to avoid traffic, is being killed by someone. Who kills them and Why are they being killed? Find the answers through this 128-minute thriller.


Review
  • Director
Pawan Kumar has served a treat to the thriller loving audience.
How did this concept come to his mind?
Brilliant story by the way and an additional advantage is that he has produced the movie too.
The screenplay is so gripping and it brings us to the edge of our seats.
The first few minutes were slow and then the film accelerates in top gear.
Pawan Kumar proved again that good films can be made at low cost.
  • Cinematography
The title card was very strange and the frame takes an U Turn at the beginning of the film itself.
The camera was straight forward on its move and the camera angles were perfectly placed.
Each and every murder scenes were horrifying and tickled the adrenaline instantly.
  • Editing
The suspense sequences were revealed one after the other sequentially, that relaxed the shrunken eyebrows of the audience then and there.
  • Music
The Music director easily adapted to the screenplay and done his job without any flaws.
The horror tunes raised up the heart beats at many occasions.
The Sound mixing team came up with some terrific fade in and fade out musical notes.
  • Actors
Samantha's look and her expressions were so apt for her character.
Aadhi donned the role of cop perfectly and it suits him.
Bhumika's role was too short, yet she did it without any compromises.
The other supporting characters are Narain, Rahul, Naren, the little girl, the old man in the bridge, and the victims.
The naming of the characters should have taken some time of director, when he penned the script.
  • Things to note
The director has used the color red in almost every scenes through vehicles, costumes, lighting, etc.
Like Final destination series, every victim visualizes a symbol before their death (it's an U sign).
In some scenes, the characters take U Turns while they move or walk.

Definitely, U Turn will be remembered as one of the finest horror-thrillers in the Indian film industry.


Blurb: Beware! Never take a U Turn anywhere in your life!!!

Find the Nth term for the given series

Write a C program to find the Nth term for the given series
1,2,3,5,8,13,21.....
whose first term is 1 and second term is 2 and Nth term will be the sum of term(N-1) and term (N-2)
Explanation :
term 1 = 1
term 2 = 2
term N = term(N-1) + term(N-2)
Sample input   : 15
Sample output : 987

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#include <stdio.h>
int main()
{
    int term1=1,term2=2,sum=0;
    int itr,num;
    scanf("%d",&num);
    if(num==1 || num==2) // N= 1 or 2
        printf("%d",num);
    else // for N above 2
    {
        for(itr=3;itr<=num;itr++)
        {
            sum=term1+term2;
            term1=term2;
            term2=sum;
        }
        printf("%d",sum);
    }
    return 0;
}

OUTPUT :


Check palindrome without using library functions

write a C program to check the string whether it is palindrome or not 
CONSTRAINT : without using library functions

Sample input   1: madam
Sample output 1: Palindrome

Sample input  2  : jobat
Sample output 2 : Not a Palindrome

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <stdio.h>
#include <string.h>
int main() {
    char str[30];
    int len,start,end,flag=0;
    gets(str);
    //length of string
    for(int i=0;str[i];len++,i++);
    //check palindrome with two pointers for start and end
    for( start=0,end=len-1;start<end;start++,end--)
    {
        if(str[start]!=str[end])
        {
            flag=1;
            break;
        }
    }
     if(flag==0)
         printf("Palindrome");
    else
        printf("Not a Palindrome");
    return 0;
}

OUTPUT :

Newer Posts Older Posts Home

SUBSCRIBE & FOLLOW

POPULAR POSTS

  • Sketch Movie Review
  • Thaana Serndha Kootam (aka) TSK Movie Review
  • Suriya 37 Confirmed!
  • JBM awards 2k18
  • Mersal Movie Review
  • Tyrese Gibson Threatens To Quit FF Franchise..!
  • Windows 10 May 2020 Update How to Download it and its features
  • Square Matrix-Corner Elements Sum
  • Middlewares in Express JS
  • Aval Movie Review

Categories

  • Awards 4
  • Code 23
  • Review 19
  • sport 1
  • Tech 20
  • Update 19

Contact Form

Name

Email *

Message *

  • ►  2020 (3)
    • ►  July (1)
    • ►  May (2)
  • ►  2019 (8)
    • ►  October (1)
    • ►  July (1)
    • ►  June (1)
    • ►  February (1)
    • ►  January (4)
  • ▼  2018 (52)
    • ►  October (3)
    • ▼  September (3)
      • U Turn Movie Review
      • Nth term for the given series
      • Check palindrome without using library functions
    • ►  August (2)
    • ►  July (3)
    • ►  June (5)
    • ►  May (1)
    • ►  April (10)
    • ►  March (19)
    • ►  February (1)
    • ►  January (5)
  • ►  2017 (19)
    • ►  December (3)
    • ►  November (8)
    • ►  October (8)

Search This Blog

Powered by Blogger.

Report Abuse

HOME

  • HOME
  • Code Block
  • Tech World
  • How is it?
  • What's Up?
  • JoBatMovie_Awards
  • Sports Block
  • Privacy Policy

JoBatMovie Awards

  • Home
  • JoBatMovie Awards
  • Home

Featured post

JBM awards 2k18

JoBat Updates

Designed by OddThemes | Distributed by Gooyaabi Templates