Skip to main content

Inspirational Quotes

  • "Don't cry because it's over, smile because it happened." ― Dr. Seuss
  • "How wonderful it is that nobody need wait a single moment before starting to improve the world." ― Anne Frank
  • "The optimist proclaims that we live in the best of all possible worlds; and the pessimist fears this is true." ― James Branch Cabell
  • Your time is limited, so don’t waste it living someone else’s life. –Steve Jobs
  • Strive not to be a success, but rather to be of value. –Albert Einstein
  • Life is 10% what happens to me and 90% of how I react to it. –John Maxwell
  • If you do what you’ve always done, you’ll get what you’ve always gotten. –Tony Robbins
  • The mind is everything. What you think you become.  –Buddha
  • The best time to plant a tree was 20 years ago. The second best time is now. –Chinese Proverb
  • An unexamined life is not worth living. –Socrates
  • Eighty percent of success is showing up. –Woody Allen
  • Don’t wait. The time will never be just right. –Napoleon Hill
  • Winning isn’t everything, but wanting to win is. –Vince Lombardi
  • I am not a product of my circumstances. I am a product of my decisions. –Stephen Covey
  • Every child is an artist.  The problem is how to remain an artist once he grows up. –Pablo Picasso
  • You can never cross the ocean until you have the courage to lose sight of the shore. –Christopher Columbus
  • Go confidently in the direction of your dreams.  Live the life you have imagined. –Henry David Thoreau
  • When I stand before God at the end of my life, I would hope that I would not have a single bit of talent left and could say, I used everything you gave me. –Erma Bombeck
  • Successful people are always looking for opportunities to help others.  Unsuccessful people are always asking, “What’s in it for me?” – Brian Tracy
  • Certain things catch your eye, but pursue only those that capture the heart. – Ancient Indian Proverb
  • Believe you can and you’re halfway there. –Theodore Roosevelt
  • Everything you’ve ever wanted is on the other side of fear. –George Addair
  • We can easily forgive a child who is afraid of the dark; the real tragedy of life is when men are afraid of the light. –Plato
  • Once you choose hope, anything’s possible. –Christopher Reeve
  • Start where you are. Use what you have.  Do what you can. –Arthur Ashe
  • When I was 5 years old, my mother always told me that happiness was the key to life.  When I went to school, they asked me what I wanted to be when I grew up.  I wrote down ‘happy’.  They told me I didn’t understand the assignment, and I told them they didn’t understand life. –John Lennon
  • Fall seven times and stand up eight. –Japanese Proverb

Comments

Popular posts from this blog

Sampling and FFT Size derivation in LTE

Sampling and FFT Size derivation in LTE Ts = 1 / (15000 x 2048) seconds, which corresponds to the 30.72 MHz sample clock for the 2048 point FFT used with the 20 MHz system bandwidth. In the frequency domain, the number of sub-carriers N ranges from 128 to 2048, depending on channel bandwidth with 512 and 1024 for 5 and 10 MHz, respectively, being most commonly used in practice. The sub-carrier spacing is ∆f = 1/T u = 15 kHz. The sampling rate is fs = ∆f · N = 15000 N. This results in a sampling rate that’s multiple or sub-multiple of the WCDMA chip rate of 3.84 Mcps: LTE parameters have been chosen such that FFT lengths and sampling rates are easily obtained for all operation modes while at the same time ensuring the easy implementation of dual-mode devices with a common clock reference. Sampling frequency is Multiple's of 2, For 15 Mhz Bandwidth - Sampling Frequency = 23.04 (6 * 3.84). FFT SIZE = S

C Programming Questions – Part 1

1. W hat do curly braces denote in C? Why does it make sense to use curly brac es to surround the body of a function?   Answer: The curly braces denote a block of code, in which variables can be declared. Variables declared within the block are valid only until the end of the block, marked by the matching right curly brace ’}’. The body of a function is one such type of block, and thus, curly braces are used to describe the extent of that block . 2.Describe the difference between the literal values 7, "7", and ’7 ’ ?   Answer: The first literal is integer 7.Second literal is null terminated string value '7'.Third literal is character '7' having ASCII character code (55). 3. Consider the statement double ans = 10.0+2.0/3.0−2.0∗2.0; Rewrite this statement, inserting parentheses to ensure that ans = 11.0 upon evaluation of this statement ? Answer: double ans = 10.0+2.0/ (( 3.0−2.0 ) ∗2.0 ) ; 4 .C

C Programming Questions - Part 2

1) How do you determine the size and range of the following data types ? char unsigned char short int unsigned int unsigned long float Ans:- limits.h header file defines the minimum and maximum range macros for each of the data types , sizeof(datatype) returns the number of bytes used by the datatype in current machine. 2) Write logical expressions that tests whether a given character variable c is lowercase letter uppercase letter digit white space(includes space,tab,newline) Ans:- lowercase letter = (c >= 'a' && c <= 'z') uppercase letter = (c >= 'A' && c <= 'Z') digit = (c >= '0' && c <= '9') white space(includes space,tab,newline) = (c == ' ' || c == '\t' || c == '\n') 3) Consider unsigned int val=0xCAFE; Write expressio