Skip to main content

Posts

Showing posts from August, 2023

69th National Film Awards Winners List Out Check Here

69th National Film Awards Winners List Out Check Here The 69th National Film Awards have been announced for the year 2021. It  was announced on 24 August 2023. This award give by directry of film festival  and  here the organisation work in information and  broadcast ministry. 1. ALLU ARJUN [film pushpa] select for the best actor award at the 69th National Film Awards. 2. ALIYA BHATT and KRITI SENAN select for the best actress award the 69th National Film Award. 3 .The best featuer film award in ROCKETRY: THE NAMBI EFFECT. 4. RRR MOVIE best popular film providing wholesome entertainment . 5. SARDAR UDDHAM MOVIE select for the best hindi film award. 6. THERE WAS A VILLAGE select for non fature film was chose for the best film award.    Feature film award at the 69th National Film Awards          CATEGORY                                                   WINNERS                 Best feature film                           Rocketry: the nambi effect Best direction                         

The Eagle Eye Challenge: Spot the 10 Differences in the Satellite Orbit Image

Eagle Eye Challenge: Spot the 10 Differences in the Satellite Orbit Image * Welcome to the Eagle Eye Challenge, where your keen observation skills will be put to the test! Take a closer look at the captivating image of satellites gracefully orbiting the Earth in the vastness of space. While the scene might appear identical at first glance, there are 10 subtle differences waiting to be discovered. Sharpen your vision and let's begin the hunt for these hidden variations. Source: Shutterstock The image captures the mesmerizing expanse of space, with the Earth majestically rotating below. Against the backdrop of the starlit cosmos, a network of satellites is harmoniously navigating their orbital paths. These metallic marvels reflect the sunlight as they move, creating an enchanting spectacle.  Challenge Rules: 1. Analyze the image meticulously to locate the differences described below.  2. Once you've spotted a difference, note its coordinates (for example, Row 2, Column 3) to he

The Eagle Eye Challenge: Spotting the Differences in Massi Images

The Eagle Eye Challenge: Spotting the Differences in Massi Images In the imagery featuring a " Massi " or aunt, a familiar and endearing figure in many households, our task is to keenly observe two snapshots and pinpoint the subtle distinctions that set them apart. The " Massi ," often a pillar of support and warmth, invites us to engage in a visual journey and identify the key variations that define each image. Image: 1                                                                  Source:  The Football Quiz Show Image: 2 In conclusion, the images of the "Massi" serve as a window into the embrace of family and tradition. The differences in setting – from indoor comfort to outdoor serenity – and attire – from traditional elegance to modern casual – encapsulate the versatility of this beloved figure and the evolving nature of cultural practices. Each variation tells a tale of adaptation and coexistence, showcasing the harmonious blend of heritage and mode

The Eagle Eye Challenge: Spotting the Differences in Tom and Jerry Images

The Eagle Eye Challenge: Spotting the Differences in Tom and Jerry Images Introduction: Welcome, cartoon enthusiasts and fans of the classic duo, Tom and Jerry! Today, we embark on a visual adventure as we take on the "Eagle Eye Challenge" to spot the differences between two images featuring our favorite cat and mouse duo, Tom and Jerry. Get ready to put your observation skills to the test as we delve into the vibrant world of animation and uncover the subtle variations that set these two images apart. The Unforgettable Duo: Tom and Jerry: Before we dive into the challenge, let's take a moment to appreciate the iconic characters, Tom the cat and Jerry the Mouse. Created by William Hanna and Joseph Barbera, these lovable characters have entertained generations with their timeless antics, hilarious chases, and unwavering rivalry. The Challenge Begins: Now, let's jump into the heart of the challenge. Below are the two images of Tom and Jerry that we will be analyzing: Im

The Eagle Eye Challenge: Spotting the Differences in Tom and Jerry Images

The Eagle Eye Challenge: Spotting the Differences in Tom and Jerry Images Introduction: Welcome, cartoon enthusiasts and fans of the classic duo, Tom and Jerry! Today, we embark on a visual adventure as we take on the "Eagle Eye Challenge" to spot the differences between two images featuring our favorite cat and mouse duo, Tom and Jerry. Get ready to put your observation skills to the test as we delve into the vibrant world of animation and uncover the subtle variations that set these two images apart. The Unforgettable Duo: Tom and Jerry: Before we dive into the challenge, let's take a moment to appreciate the iconic characters, Tom the Cat and Jerry the Mouse. Created by William Hanna and Joseph Barbera, these lovable characters have entertained generations with their timeless antics, hilarious chases, and unwavering rivalry. The Challenge Begins: Now, let's jump into the heart of the challenge. Below are the two images of Tom and Jerry that we will be analyzing: Im

Spotting the Differences in Frog Images

The Eagle Eye Challenge: Spotting the Differences in Frog Images Within the enchanting realm of frog imagery, a world teeming with vibrant amphibian life lies the opportunity to embark on an engaging quest – to detect the subtle variations that set two snapshots of a frog apart. These captivating creatures, known for their unique adaptations and charming appearances, beckon us to delve into their intricate details and identify the five distinct differences that distinguish one image from the other. Image: 1 Source: Funzzle Image: 2 In conclusion, the images of the frog serve as a captivating canvas for our exploration. The differences in position, coloration, eye expression, posture, and shadow play contribute to a rich narrative of adaptation, transformation, and motion. Each alteration allows us to peek into the frog's world, offering insights into its behavior, habitat, and interactions. This exercise not only hones our observational skills but also deepens our connection to the

Spotting the Differences in child bicycle Rides

The Eagle Eye Challenge: Spotting the Differences in child bicycle Rides In the image capturing a child's lively bicycle ride, the scene unfolds with an exuberant young rider pedaling through a sunlit path. Amid the picturesque setting, our challenge is to discern the five notable distinctions that differentiate this snapshot from another version of the same image. Source: Funzzle The child, adorned in a cheerful red T-shirt and denim shorts, radiates an infectious spirit of adventure. As their hands grasp the handlebars with a firm yet carefree grip, the bicycle's wheels spin in rhythm, propelling them forward. Now, let's delve into the subtleties that set the two versions apart. In conclusion, the image of a child's bicycle ride provides a canvas for keen observers to uncover the five distinctive differences that set two versions of the same scene apart. From the child's pedaling stance to the playful addition in the basket, the shifting butterfly, the evolving ex

SOLID principles in a simple way

The SOLID principles are a set of five design principles that help software developers create more maintainable , flexible , and scalable software systems. These principles were introduced by Robert C. Martin and are widely used in object-oriented programming and software design. Single Responsibility Principle (SRP): A class should have only one reason to change, meaning it should have only one responsibility. In other words, a class should have only one job. Example in C#:                   // Incorrect implementation         class Employee         {             public void CalculateSalary ()             {                 // ... calculate salary logic             }             public void SaveToDatabase ()             {                 // ... save to database logic             }         }         // Correct implementation         class Employee         {             public void CalculateSalary ()             {                 // ... calculate salary logic             }    

Create Test Case using Jest library in React JS

In this article, you will get an understanding of how we can create a basic Unit Test case in React JS Creating automated test cases for a React application involves using testing libraries and frameworks like Jest and React Testing Library. For testing a LoginForm component, you would want to cover different scenarios like valid and invalid inputs, form submission, error handling, and more. Below, I'll provide an example of how to create test cases using Jest and React Testing Library. Let's assume your LoginForm component looks something like this: import React , { useState } from 'react' ; const LoginForm = ({ onLogin }) => {   const [ email , setEmail ] = useState ( '' ) ;   const [ password , setPassword ] = useState ( '' ) ;   const [ error , setError ] = useState ( '' ) ;   const handleEmailChange = ( event ) => {     setEmail ( event . target .value ) ;   };   const handlePasswordChange = ( event ) =>