Posts

Showing posts from May, 2023

The 'Sengol' that Prime Minister Modi installed: 5 Facts In the New Parliament

Image
The 'Sengol' that Prime Minister Modi installed: 5 Facts In the New Parliament   Nearly 30 pontiffs from various Adheenams in Tamil Nadu presented the "Sengol" to PM Modi before it was installed in the new Parliament building In the recently completed Parliament building in New Delhi, Prime Minister Narendra Modi today erected a historic sceptre known as "Sengol" adjacent to the Lok Sabha Speaker's seat. Here are 5 facts about the sceptre 'Sengol': 1 ➡ Sengol, the name of the ceremonial sceptre placed next to the Speaker's seat, is derived from the Tamil word "semmai," which means "righteousness." 2➡The 'Sengol' has been important to India's history, according to Union Home Minister Amit Shah. To commemorate the handover of authority from the British to Indians, this sceptre was given to Jawaharlal Nehru, the country's first prime minister. 3➡ The sceptre had previously been kept at Prayagraj, Uttar Pradesh

JEE ADVANCE PREVIOUS YEAR QUESTION PAPER-2021 SHIFT-2

  JEE ADVANCE       PREVIO U S YEAR PAPER   2021

JEE ADVANCE PREVIOUS YEAR QUESTION PAPER-2021 SHIFT 1

  JEE ADVANCE       PREVIO U S YEAR PAPER   2021

JEE ADVANCE 2022 shift -2

  JEE ADVANCE       PREVIO U S YEAR PAPER   2022 JEE (ADVANCE ) 2022- shift 2  DOWNLOAD HERE

JEE ADVANCE PREVIOUS YEAR QUESTION PAPER-2022 SHIFT 1

JEE ADVANCE       PREVIO U S YEAR PAPER   2022 JEE (ADVANCE ) 2022- shift 1 link                                                        ▢ DOWNLOAD HERE JEE (ADV) PREVIOS YEAR -2022  SHIFT -2 ----- CLICK HERE  

DATA STRUCTURE

  WHAT IS DATA STRUCTURE? A data structure is a way of organizing and storing data in a computer so that it can be accessed and manipulated efficiently. It defines the format, organization, and relationship between data elements, as well as the operations that can be performed on the data. Data structures are fundamental building blocks in computer science and are used to store, manage, and retrieve data in various applications and algorithms. They provide a way to organize and structure data in such a way that it can be efficiently processed and accessed. There are various types of data structures, each with its own characteristics and usage. Some common data structures include arrays, linked lists, stacks, queues, trees, graphs, and hash tables. Each data structure has its own advantages and is suitable for specific tasks and scenarios. The choice of a data structure depends on factors such as the type of data to be stored, the operations to be performed on the data, the efficiency

CODE IN C

  HAL PYRAMID CODE  Certainly! Here's an example code snippet in C to print a half pyramid pattern using asterisks (*): #include <stdio.h> void print_half_pyramid(int rows) { int i, j; for (i = 1; i <= rows; i++) { for (j = 1; j <= i; j++) { printf("* "); } printf("\n"); } } int main() { int num_rows = 5; print_half_pyramid(num_rows); return 0; } In this code, we have a function print_half_pyramid that takes the number of rows as a parameter and prints the half pyramid pattern using nested loops. The outer loop controls the number of rows, and the inner loop prints the asterisks for each row. After printing each row, we use printf("\n") to move to the next line. The main function is where the print_half_pyramid function is called with num_rows = 5 as an example. You can change the value of num_rows to create a half pyramid with a different number of rows.

what is array?

 what is array? An array is a data structure that stores a fixed-size sequence of elements of the same type. It provides a way to organize and access multiple related values under a single name. Each element in an array is identified by its index or position within the array, starting from zero. Arrays are commonly used in programming to store collections of data such as a list of numbers, a series of characters, or any other type of homogeneous data. They offer efficient random access to elements, which means you can access any element in constant time if you know its index. Here's an example of an array in C: #include <stdio.h> int main() { // Declare an array of integers int numbers[5]; // Assign values to the array elements numbers[0] = 10; numbers[1] = 20; numbers[2] = 30; numbers[3] = 40; numbers[4] = 50; // Access and print array elements printf("%d\n", numbers[0]); // Output: 10 printf("%d\n", number

POINTER

WHAT IS POINTER? In computer programming, a pointer is a variable that stores the memory address of another variable. Pointers allow for more efficient and flexible memory management by providing a way to indirectly access and manipulate data. Instead of directly working with the data itself, you work with the memory address where the data is stored. Pointers are commonly used in low-level programming languages like C and C++, where direct memory manipulation is required. However, they are also present in other programming languages, albeit often hidden or abstracted away. Here's a simple example in C to illustrate the concept of pointers: #include <s tdio.h> int main() { int num = 42; // Declare and initialize an integer variable int *ptr; // Declare a pointer variable ptr = &num; // Assign the address of 'num' to the pointer variable printf("Value of num: %d\n", num); // Output: Value of num: 42 printf("Address of