• NCERT Solutions for Class 12 Chemistry Part 2

    Categories: NCERT Solutions ||

    NCERT Solutions for Class 12 Chemistry Part 2 The Solid-State Exercise Solutions   Q1: Name the parameters that characterize a unit cell. Answer: The six parameters that characterise a u

  • NCERT Solutions for Class 12 Chemistry Part 1

    Categories: NCERT Solutions ||

    NCERT Solutions for Class 12 Chemistry Part 1 The Solid-State Exercise Solutions   Q1: Why are solids rigid? Answer: The intermolecular forces of attraction that are present in solids ar

  • Pointer Arithmetic in C Language

    Categories: C language ||

    We can perform arithmetic operations on the pointers like addition, subtraction, etc. However, as we know that pointer contains the address, the result of an arithmetic operation performed on the poin

  • C Double Pointer (Pointer to Pointer)

    Categories: C language ||

    As we know that, a pointer is used to store the address of a variable in C. Pointer reduces the access time of a variable. However, In C, we can also define a pointer to store the address of another p

  • C Pointers in C Language

    Categories: C language ||

    The pointer in C language is a variable which stores the address of another variable. This variable can be of type int, char, array, function, or any other pointer. The size of the pointer depends on

  • Passing Array to Function in C

    Categories: C language ||

    In C, there are various general problems which requires passing more than one variable of the same type to a function. For example, consider a function which sorts the 10 elements in ascending order.

  • What is an Array in C Language

    Categories: C language ||

    An array is a type of data structure that stores a fixed-size of a homogeneous collection of data. In short, we can say that array is a collection of variables of the same type.For example, if we want

  • Two Dimensional Array in C Language

    Categories: C language ||

    The two-dimensional array can be defined as an array of arrays. The 2D array is organized as matrices which can be represented as the collection of rows and columns. However, 2D arrays are created to

  • C Array in C Language

    Categories: C language ||

    An array is defined as the collection of similar type of data items stored at contiguous memory locations. Arrays are the derived data type in C programming language which can store the primitive type

  • Storage Classes in C

    Categories: C language ||

    Storage classes in C are used to determine the lifetime, visibility, memory location, and initial value of a variable. There are four types of storage classes in C1. Automatic2. External3. Static4. Re

  • Recursive Function In C Language

    Categories: C language ||

    A recursive function performs the tasks by dividing it into the subtasks. There is a termination condition defined in the function which is satisfied by some specific subtask. After this, the recursio

  • Recursion in C Language

    Categories: C language ||

    Recursion is the process which comes into existence when a function calls a copy of itself to work on a smaller problem. Any function which calls itself is called recursive function, and such function

  • Call by value and Call by reference in C Language

    Categories: C language ||

    There are two methods to pass the data into the function in C language, i.e., call by value and call by reference.Call by value in C1. In call by value method, the value of the actual parameters is co

  • Types of Functions in C Language

    Categories: C language ||

    There are two types of functions in C programming:1. Library Functions: are the functions which are declared in the C header files such as scanf(), printf(), gets(), puts(), ceil(), floor() etc.2. Use

  • C Functions

    Categories: C language ||

    In c, we can divide a large program into the basic building blocks known as function. The function contains the set of programming statements enclosed by {}. A function can be called multiple times to

  • C goto statement in C Language

    Categories: C language ||

    The goto statement is known as jump statement in C. As the name suggests, goto is used to transfer the program control to a predefined label. The goto statment can be used to repeat some part of the c

  • C continue statement in C Language

    Categories: C language ||

    The continue statement in C language is used to bring the program control to the beginning of the loop. The continue statement skips some lines of code inside the loop and continues with the next iter

  • C break statement in C Language

    Categories: C language ||

    The break is a keyword in C which is used to bring the program control out of the loop. The break statement is used inside loops or switch statement. The break statement breaks the loop one by one, i.

  • Nested Loops in C Language

    Categories: C language ||

    C supports nesting of loops in C. Nesting of loops is the feature in C that allows the looping of statements inside another loop. Let's observe an example of nesting loops in C.Any number of loops can

  • Nested Loops in C Language

    Categories: C language ||

    C supports nesting of loops in C. Nesting of loops is the feature in C that allows the looping of statements inside another loop. Let's observe an example of nesting loops in C.Any number of loops can

  • for loop in C Language

    Categories: C language ||

    The for loop in C language is used to iterate the statements or a part of the program several times. It is frequently used to traverse the data structures like the array and linked list.Syntax of for

  • Properties of while loop in C Language

    Categories: C language ||

    1. A conditional expression is used to check the condition. The statements defined inside the while loop will repeatedly execute until the given condition fails.2. The condition will be true if it ret

  • while loop in C Language

    Categories: C language ||

    While loop is also known as a pre-tested loop. In general, a while loop allows a part of the code to be executed multiple times depending upon a given boolean condition. It can be viewed as a repeatin

  • do while loop in C

    Categories: C language ||

    The do while loop is a post tested loop. Using the do-while loop, we can repeat the execution of several parts of the statements. The do-while loop is mainly used in the case where we need to execute

  • C Loops of C Language

    Categories: C language ||

    The looping can be defined as repeating the same process multiple times until a specific condition satisfies. There are three types of loops used in the C language. In this part of the tutorial, we ar

  • Difference Between if-else and switch

    Categories: C language ||

    What is an if-else statement?An if-else statement in C programming is a conditional statement that executes a different set of statements based on the condition that is true or false. The 'if' block w

  • C Switch Statement In C Language

    Categories: C language ||

    The switch statement in C is an alternate to if-else-if ladder statement which allows us to execute multiple operations for the different possibles values of a single variable called switch variable.

  • The C Language in the C Control Statement

    Categories: C language ||

    C if else StatementThe if-else statement in C is used to perform the operations based on some specific condition. The operations specified in if block are executed if and only if the given condition i

  • What is the 2s complement in C

    Categories: C language ||

    The 2s complement in C is generated from the 1s complement in C. As we know that the 1s complement of a binary number is created by transforming bit 1 to 0 and 0 to 1; the 2s complement of a binary nu

  • Meaning of Bitwise Operator in C Language

    Categories: C language ||

    The bitwise operators are the operators used to perform the operations on the data at the bit-level. When we perform the bitwise operations, then it is also known as bit-level programming. It consists

  • Conditional Operator in C Language

    Categories: C language ||

    The conditional operator is also known as a ternary operator. The conditional statements are the decision-making statements which depends upon the output of the expression. It is represented by two sy

  • Differences Between Compile-Time and Runtime In C Language

    Categories: C language ||

    Compile-time1. The compile-time errors are the errors which are produced at the compile-time, and they are detected by the compiler.2. In this case, the compiler prevents the code from execution if it

  • Compile time vs Runtime In C language

    Categories: C language ||

    Compile-time and Runtime are the two programming terms used in the software development. Compile-time is the time at which the source code is converted into an executable code while the run time is th

  • Programming Errors in C Language

    Categories: C language ||

    Errors are the problems or the faults that occur in the program, which makes the behavior of the program abnormal, and experienced developers can also make these faults. Programming errors are also kn

  • Difference in C language Term

    Categories: C language ||

    Differences b/w static and global variableGlobal variables are the variables that are declared outside the function. These global variables exist at the beginning of the program, and its scope remains

  • Static in C Language

    Categories: C language ||

    Static is a keyword used in C programming language. It can be used with both variables and functions, i.e., we can declare a static variable and static function as well. An ordinary variable is limite

  • Boolean with Logical Operators in C language

    Categories: C language ||

    The Boolean type value is associated with logical operators. There are three types of logical operators in the C language:&&(AND Operator): It is a logical operator that takes two operands. If

  • C Boolean in C language

    Categories: C language ||

    In C, Boolean is a data type that contains two types of values, i.e., 0 and 1. Basically, the bool type value represents two types of behavior, either true or false. Here, '0' represents false value,

  • Operators in C Language

    Categories: C language ||

    Operators in C is a special symbol used to perform the functions. The data items on which the operators are applied are known as operands. Operators are applied between the operands. Depending on the

  • Tokens in C language

    Categories: C language ||

    Tokens in C is the most important element to be used in creating a program in C. We can define the token as the smallest individual element in C. For `example, we cannot create a sentence without usin

  • AWS IoT ExpressLink is now generally available

    Categories: AWS ||

    AWS IoT ExpressLink is now generally available   We are excited to announce the general availability of hardware connectivity modules powered by AWS IoT ExpressLink, which are developed and off

  • About composer in Laravel and Artisan

    Categories: Laravel ||

    About composer in Laravel and Artisan   What is Composer? Laravel 4 consists of many components that are put together automatically into the framework through Composer. Using Composer, you can

  • The Laravel History and Its works framework develop

    Categories: Laravel ||

    The Laravel History and Its works framework develop   In 2011, Taylor Otwell, a great web developer has created an open source PHP framework, he called it Laravel. For only just 2 years, many d

  • Constants in C

    Categories: C language ||

    A constant is a value or variable that can't be changed in the program, for example: 10, 20, 'a', 3.4, "c programming" etc.There are different types of constants in C programming.List of Constants in

Top Blogs
The Influence of Slot Game Providers on Your Gaming Experience Published at:- Subset Sum Problem SubSet Sum Problem Solution using Knapsack Published at:- Knapsack top down dynamic programming using java Published at:- Sorting the Employees Salary in Each Department in Ascending Order Published at:- Sorting the Employees Salary in Each Department in Descending Order Published at:- Concatenate String array into single string Published at:- Find Customer staring with +91 mobile number Published at:- Child and Parent overridden methods Throws checked exception Published at:- Child and Parent overridden methods Throws RuntimeException Published at:- Java Class subclass interview coding questions Published at:- Printing the Number of Employees in Each Department using Java Published at:- Printing Average Age of Male and Female Employees using Java Published at:- Finding Maximum Age of Employee using Java Published at:- Printing Employee Details by Age Criteria using Java Published at:- Printing Names of All Departments from Employee Class using Java Published at:- Finding the Count of Male and Female Employees Published at:- Grouping Employees by City and Age Published at:- Employee Highest salary in each department using Java Published at:- Sort highest salary in each department Published at:- 5 Family Bonding Activities You Can Do Offline This -Ber Months Published at:- Find first repeated character in a string Published at:- Travel Tips for First-Time LRT Commuters Published at:- sum ,min ,max etc example using reduce method using Java 8 Stream API Published at:- Java 8 Stream String Null Or Empty Filter Published at:- 26 Java 8 Programs using Lambda Expression and Stream Published at:- java 8 using lambda expression and stream api | Java 8 Programs using Lambda Expression and Stream Published at:- Singleton Design Pattern and 7 Ways to Implement It 4 Ways to Break Singleton Design Pattern Published at:- The Legends of Manchester United: 10 Greatest Players in Manchester United History Published at:- Course on Computer Concepts (CCC) MCQs Published at:- Given a list of integers, separate odd and even numbers Published at:- Reports and Indices (MCQs) Published at:- Find Last duplicate character of given string using Java 8 Published at:- News Locations (MCQs) Published at:- Find duplicate elements with its count using Java 8 Published at:- How to check if list is empty in Java 8 using Optional Published at:- Write a Program to find the Maximum element in an array Published at:- count of each character in a String using Java 8 Published at:- How to print keys & values of a Map using Java 8 Published at:- How to iterate and modify values in a Map using Java 8 Published at:- How to find next, previous, tomorrow ,yesterday date using Java 8 Published at:- How to remove all duplicates from an array of integers in Java using Java 8 Published at:- How to count the number of occurrences of a given word in a list of strings using Java 8 Published at:- Write a Java program To create a map from a array of strings where the key is the string and the value is its length Published at:- How to filter and collect a list of strings that start with a specific letter using Java 8 Stream Published at:- How to sort a list of strings by length using Lambda expressions Published at:- Find the maximum value in a list of integers using Stream & Method Reference Published at:- Drop all while condition not meet dropWhile(),dropWhile(Predicate<T> predicate) Published at:- Write a program to sum an array Published at:- Write a program to sum an array without using the sum method Published at:- Write a program to append char in char ex-input- {A, B, C} output->[A_X, B_Y, C_Z] Published at:- Write a program to find the only duplicate count list in the List Published at:- How to increment salary by 2%, 5%, etc. Using java Published at:- Filter employees by age set senior if age is greater than 30 in Java 8 Lamda steam Published at:- Write a Java 8 program to get the last element of an array string/object Published at:- Filter employees by age in Java 8 Lamda steam Published at:- Write a Java 8 program to print the first 10 odd numbers Published at:- Write a Java 8 program to calculate the age of a person in years given their birthday Years Months Days Published at:- Write a Java 8 program to calculate the age of a person in years given their birthday Published at:- Write a program for group words by first character of given string | Java 8 Stream Example Published at:- Business, Economy & Banking (MCQs) Published at:- Varför ett Casino utan Svensk Licens Kan Erbjuda Större Bonusar: En Analys av Regleringsfria Spelmarknader Published at:- Can you explain how you would use Spring Boot to build a RESTful API for a project? Published at:- How do you schedule tasks in a Spring Boot application? Published at:- How do you handle exceptions in a Spring Boot application? Published at:- What is a Selector and Template Published at:- What are Components in Angular? Published at:- What is a CLI tool? Explain the importance of Angular CLI. Published at:- What are Angular advantages? Published at:- What is NPM(Node Package Manager) Published at:- How to check the angular version ? or Ways to find the angular version. Published at:- What is the difference between angular and angularjs? Published at:- What is angular Published at:- Decoding the Symbolism of Green in Highway Signage Published at:- The Ultimate Guide to the World's Best Dips Featuring Indian Chutneys Published at:- fizzbuzz problem java Published at:- pushing value at last in java | how to add element at the end of array in java Published at:- java toUpperCase() and toLowerCase() example Published at:- Scanner nextLine() ,nextInt() ,nextDouble() method in Java with Examples Published at:- Elevate Your Strategy: Top AI Tools Transforming Industries Published at:- IELTS Paraphrasing Published at:- Best practice for IELTS academic reading[IELTS 3 step strategy] Published at:- Does Watching Romantic Films Help Your Love Life? Published at:- Optimizing Remote Team Management with WorkTime Software Published at:- The Top 7 Online Casino Tools Published at:- How to Plan the Perfect Mother's Day Brunch in 2024 Published at:- From Past to Present: Evolution of Labour Rights on World Labour Day Published at:- Casino Gambling Systems and Strategies — Make Your Right Choice Published at:- The Importance of Investing in a Quality Portable Trade Show Display Published at:- How to Support and Promote World Heritage Conservation on World Heritage Day 2024 Published at:- Cultural Significance of the Cricket World Cup Logo Designs Published at:- Unlocking Innovation: What to Expect from the Jio 5G Smart Mobile Published at:- Betting on Underdog Squads: Be or Not to Be Published at:- vi shortcuts in terminal Published at:- Maintaining a Balanced Diet in Your Third Trimester: Nurturing Both Mother and Baby Published at:- Mobile Addiction and Relationships: Finding Balance in a Tech-Driven World Published at:- Interface and Usability of 1win: User Experience Published at:- Tips and Tricks to Win with Slot Machines 2024 Published at:- Educate-Online Partner Schools | Transforming Global Education Published at:- The Mathematics of Betting Using Statistics and Probabilities in IPL 2024 Published at:- Man of the Match: Where to Place Bet on MoM in India? Published at:-
R4R Team
The content on R4R.co.in website is created by expert teams.We have vistots from India, Afghanistan, Bahrain, Bhutan, Canada, France, Germany, Iraq, Japan, Kenya, Kuwait, Maldives, Nepal, Netherlands, Nigeria, Oman, Qatar, Russia, Rwanda, Seychelles, Tanzania, Ukraine, UAE, UK, USA etc