Skip to main content

Going to launch ebook soon for your success 

Comments

Popular posts from this blog

baby ni guddalo na sulli

1. Palindrome Number A number is a palindrome if it reads the same backward as forward. #include <stdio.h> int main() { int n, reversed = 0, remainder, original; printf("Enter an integer: "); scanf("%d", &n); original = n; while (n != 0) { remainder = n % 10; reversed = reversed * 10 + remainder; n /= 10; } if (original == reversed) printf("%d is a palindrome.", original); else printf("%d is not a palindrome.", original); return 0; } output Enter an integer: 1 1 is a palindrome. === Code Execution Successful ===                  2a Pattern 1: The Vertical Bar (Pipe) Pattern This pattern uses the | character. Plaintext | | | | | | | | | | | | | | | C # include <stdio.h> int main () { int i, j; for (i = 1 ; i <= 5 ; i++) { for (j = 1 ; j <= i; j++) { printf ( "| " ); } printf ( "\n" ); } ...
Get free 100 bucks click me   Here is the link to get free 100$  Click me to get free 100$
  8(b) Classification of Magnetic Materials (5 Marks Answer) Magnetic materials are classified based on how they respond to a magnetic field. They are mainly divided into three types . 1. Diamagnetic Materials Diamagnetic materials are substances that are weakly repelled by a magnetic field . Properties: Magnetic susceptibility is negative . Magnetic permeability is less than 1 . They move from strong magnetic field to weak magnetic field . Examples: Bismuth, Copper, Silver, Gold. 2. Paramagnetic Materials Paramagnetic materials are substances that are weakly attracted by a magnetic field . Properties: Magnetic susceptibility is small and positive . Magnetic permeability is slightly greater than 1 . They move from weak magnetic field to strong magnetic field . Examples: Aluminium, Platinum, Chromium. 3. Ferromagnetic Materials Ferromagnetic materials are substances that are strongly attracted by a magnetic field . Properties: Magnetic susce...