Posts

B.Tech. Computer Science and Engineering Notes - Semester 8

Here, you can download ⬇️ notes of your choice . πŸ˜„πŸ˜ŠπŸ‘ Digital Image Processing(DIP): Click the link below https://drive.google.com/drive/folders/1VqNBBxz3ql79E8W3zqG3Bct_Z4ZLAqV9?usp=sharing   ⬇️ Data Compression(DC): Click the link below https://drive.google.com/drive/folders/1RFMt_DzizxL7LF2NyUi_No3tfOtqM-Pm?usp=sharing   ⬇️ Pattern Recognition(PR):   Click the link below https://drive.google.com/drive/folders/1HQvBySmnD1KTGIPNFaxoxploWNSXhi-m?usp=sharing   ⬇️ Real Time System(RTS):   Click the link below https://drive.google.com/drive/folders/1xDYQqhRYAQS4LrdpkxYnogFzIGFyTFGC?usp=sharing ⬇️
Q2. Write a program in JAVA to count the number of digits in a given number. Example 1: Input: 654845  Output: The number of digits in the given number are 6 Example 2: Input: 6845  Output: The number of digits in the given number are 4 Solution:  import java.util.Scanner; public class CountingDigitsInInteger {    public static void main(String args[]){       Scanner sc = new Scanner(System.in);       int count = 0;       System.out.println("Enter a number ::");       int num = sc.nextInt();       while(num!=0){          num = num/10;          count++;       }       System.out.println("Number of digits in the entered integer are :: "+count);    } }

Happy New Year 2019 | Happy New Year Best Whatsapp status video 2019

Image
Wish you all a very happy new year my dear friends πŸŽŠπŸŽ‰❤πŸ˜πŸ˜˜πŸ˜‡πŸ’–πŸ’“ Happy New Year 2019 Whatsapp Status Video. Like and share with your friends.

#Merry Christmas 2018 | Whatsapp Status | #Christmas Status | #Merry Chr...

Image
We wish you a merry christmas and a happy new yearπŸŽ„πŸŽ…πŸ€ΆπŸŽ‰πŸŽ‚πŸŽŠπŸ˜„πŸ˜‡❤

B.Tech. Notes Semester 7

Here, you can download ⬇️ notes of your choice . πŸ˜„πŸ˜ŠπŸ‘ AI: Click the link below https://drive.google.com/file/d/11NjdVpU83h_n_PmdCbCR30EwZtx2c7wJ/view?usp=sharing   ⬇️ DS: Click the link below https://drive.google.com/file/d/1EGiHDU96zaBtezVEBK4MrCwwp0BwJnMY/view?usp=sharing   ⬇️ STA:   Click the link below https://drive.google.com/file/d/1Vmkw_vDqepxx5vpGAjWg1RIow6oIhcte/view?usp=drivesdk   ⬇️ SPM: Click the link below https://drive.google.com/file/d/1QaCwkL-fAcYgLoqvZ95J0WdBVy7L6cLj/view?usp=sharing  ⬇️ CNS: Click the link below https://drive.google.com/file/d/12xENsmBwPtynxRdyP78UIN6y1WY0_JkY/view?usp=sharing  ⬇️

Gate Exam Solutions

Image
GATE | GATE-CS-2017 (Set 2) | Question 53 Consider the following C Program: #include<stdio.h> #include<string.h> int main() { char * c = "GATECSIT2017"; char *p = c; printf("%d", (int)strlen(c+2[p]-6[p]-1)); return 0; } The output of the program is _________. [Note: It was Numerical Answer Type Question.] Solution: The output of the program is 2. If you have any questions, ask in the comment box.