Applied CS Workshop

I conducted few workshops!!

Hi guys, last week I successfully facilitated the six days extensive workshop on Google Applied CS with Android Program in my college (VJIT). Being an Applied CS Facilitator, it was my responsibility to teach and guide my fellow batch-mates (CS/IT Students) through the Android Development course.ACS Logo

It was fun and a learning experience to conduct this workshop as it not only helped the participants but also helped me in improving myself in several aspects of management and leadership skills.

All of the code developed during the workshop period is in my Github account. You can have a look at it if you are interested.

Glimpse of the workshop

Have a look at the below images snapped during the workshop.
DSC06569      DSC06582
DSC06578       IMG_20180224_115747

So yes, it was fun and a refreshing experience to conduct this workshop. Hopefully I’ll be conducting one more series of workshop for my juniors, may be in the next month. Stay tuned!

 

 

 

C Practice Programs- 2

  1. Write a function to find the middle element of a given singly linked list in C.

Input:               Head of linked list

Output:            Middle value of the list

For example, if the given linked list is 1->2->3->4->5 then, output should be 3.

If there are even number of elements, then there would be two middle elements, then output should be the second middle element.

For example, if given linked list is 1->2->3->4->5->6 then, output should be 4.


  1. Program to split string by single space into words ?

Input: Welcome to C Programming

Output:

Welcome

to

C

Programming

No. of words: 4


  1. Given two numbers, find the sum of prime numbers between them, both inclusive.

Input    : 1 5

Output : 10


  1. Write a program to find the second largest number in the integer array, A, of size N.

Range: 0≤A≤100  0≤N≤100

Input    : 8 11 22 6 8 9 18 19 10  //here first 8 indicates size of array.

Output : 19



You can find the solution programs here C Programming 2

If you have any queries fell free to ask them here.

C Practice Programs

So guys, here are some basic C programs that you must know!!

  1. Area of circle using pointer.
    input: 3.5
    output: 38.465


  2. C program to Accessing Value from Address using Pointer
    input: 5
    output: 5


  3. Number Pyramid Pattern in C Programming
    input: 5
    output:
    1
    1 1
    1 2 1
    1 3 3 1
    1 4 6 4 1


  4. Generate the Fibonacci Series starting from any two numbers?
    input:  10 20 200        //here 200 is the limit
    output:  10 20 30 50 80 130


  5. Reverse a given number !
    input: 123
    output: 321


  6. Check Whether Number is Perfect Or Not
    input: 6
    output: perfect number

 

Do try them, and yes, you can always find the solution here

Wait is over

Well the wait is over!

After all my hard work & dedication, i managed to develop a app that can help you in calculating your attendance.

You can find my app here.

  • The only thing you have to do is to update your attendance daily only for working days.
  • Once attendance is updated you can view your attendance for
    • Monthly fortnight wise attendance.
    • Complete month average.
    • Complete semester aggregate.
  • NOTE: All your attendance data is stored in your phone’s memory.

Student’s Attendance Problem

Hello everyone!!

Well this is my first blog,so i am very excited !!

So lets start it, I am a B’Tech student here in Hyderabad. You can know more about me here.

I believe that max students, not particularly  B’Tech but of every field, face a problem of Attendance Management. We all try to manage our attendance to the best level possible so that we don’t have to pay any attendance condonation fee. But sometime we can’t 😔

This can be avoided by planning our bunks(when to bunk and when to not) based on our attendance. The biggest thing here is the how can we keep a track of our attendance and calculate our attendance percentages?

So i am thinking to create a app(Android application) which can automate this work for you 😃 , so that you need not to calculate your attendance every time you think to bunk rather use my app for it.

Well my app is under development now, will be released here soon ! Stay tuned 😉

Design a site like this with WordPress.com
Get started