Skip to content

Gyan Today

Knowledge point

  • Home
  • Upcoming Jobs
  • Current Affairs
  • Exam Results
  • Tutorials
    • Programming
      • C Tutorial
  • Interview Question
    • Tricky C programming questions
    • Most Important Interview Questions In C
    • Operating System FAQ
      • OS Questions Set 1
    • Core Java Interview Questions
    • Software Tools FAQ
    • Linux Interview Questions
    • IPC FAQ
      • IPC Questions Set 1
    • Hadoop interview questions
    • LTE FAQ
      • LTE – Channels
      • LTE Questions Part 1
      • LTE Questions Part 2
      • LTE Questions Set 3
    • Python Interview Questions
      • Python Interview Questions set 1
      • Python Interview Questions set 2
      • Python Interview Questions set 3
    • Ruby Interview Questions
      • Ruby Interview Questions part 1
      • Ruby Interview Questions set 2
    • General Questions

Author: Gyantoday

what is LTE?

July 12, 2015 Gyantoday LTE FAQ, LTE Questions Part 1 Leave a comment

LTE stands for Long Term Evolution and is a registered trademark owned by ETSI (European Telecommunications Standards Institute) for the wireless data communications

Continue reading

Q26 Write a C program to check leap year.

July 12, 2015 Gyantoday Most Important Interview Questions In C Leave a comment

#include<stdio.h> int main() {         int year;         printf(“Enter any year to check leap year\n”);         scanf(“%d”,&year);         if((year %

Continue reading

Q25 Write a C program to find duplicate integer in an array.

July 12, 2015 Gyantoday Most Important Interview Questions In C Leave a comment

#include<stdio.h> int main() {         int i, j, temp, arr[10];         printf(“Enter the number with some repeated number\n”);         for(i

Continue reading

Q24 Write a C program to convert from decimal to binary, octal, or hex number system.

July 11, 2015 Gyantoday Most Important Interview Questions In C Leave a comment

#include<stdio.h> void decimal_to_any_base(int number, int base) {         int i, x, digits[1000], flag;         i = 0;         while(number)        

Continue reading

Q23 Write a C program which produces its own source code as its output.

July 11, 2015 Gyantoday Most Important Interview Questions In C Leave a comment

#include<stdio.h> int main() { FILE *fptr; char chr; fptr = fopen(__FILE__,”r”); do{ chr= getc(fptr); putchar(chr); } while(chr!=EOF); fclose(fptr); return 0;

Continue reading

Q22 How to add sum the digits of a given number in single statement?

July 11, 2015 Gyantoday Most Important Interview Questions In C Leave a comment

Twisted question from interviewer, but not difficult. for(; num > 0; sum += num%10, num /= 10); printf(“Sum = %d\n”,sum);

Continue reading

Q21 Write your own program to implement the atoi() function.

July 6, 2015 Gyantoday Most Important Interview Questions In C Leave a comment

What atoi() function does? atoi() function is used to convert a string to an integer #include int own_atoi(const char *str)

Continue reading

Q20 Write your own function of memset().

July 6, 2015 Gyantoday Most Important Interview Questions In C Leave a comment

memset() function is used to initialize a block of memory to a specified value. User defined function of memset(). #include<stdio.h> #include<string.h>

Continue reading

Cell phone usage pattern can detect real time unemployment

July 5, 2015 Gyantoday Science Leave a comment

Study: Usage patterns vary when people are not working. If you leave your job, chances are your pattern of cellphone

Continue reading

Q19 Write your own function of memcmp().

July 5, 2015 Gyantoday Most Important Interview Questions In C Leave a comment

memcmp() function is used to perform byte by byte comparison. Given below user defined memecmp() function. #include<stdio.h> #include<string.h> #include<stdlib.h> int

Continue reading

Researchers has developed an automatic computer bug repair system.

July 4, 2015 Gyantoday Science Leave a comment

System fixes bugs by importing functionality from other programs, without access to source code At the Association for Computing Machinery’s

Continue reading

Q18 Write your own function of memmove().

July 4, 2015 Gyantoday Most Important Interview Questions In C Leave a comment

User defined function of memmove(). #include<stdio.h> #include<string.h> #include<stdlib.h> void own_memmove(void *to, const void *from, int n) {         unsigned char

Continue reading

Q17 Write your own function of memcpy().

June 30, 2015 Gyantoday Most Important Interview Questions In C Leave a comment

User defined function of memcpy(). #include<stdio.h> #include<string.h> #include<stdlib.h> void own_memcpy(void *to, void *from, int n) {         while(n- -)        

Continue reading

Q16 What is the difference between memcpy and memmove.

June 30, 2015 Gyantoday Most Important Interview Questions In C Leave a comment

Hmm friends this is interviewer’s favourite question. Interviewer wants to know, how you handle byte stream. Prototype of memcpy() void

Continue reading

Posts pagination

«Previous Posts 1 … 13 14 15 16 17 18 Next Posts»

Recent Posts

  • Born today Famous People’s Birthdays 1st September 01/09 in India and world
  • Born today Famous People’s Birthdays 31st August 31/08 in India and world
  • Born today Famous People’s Birthdays 30th August 30/08 in India and world
  • Born today Famous People’s Birthdays 29th August 29/08 in India and world
  • Born today Famous People’s Birthdays 28th August 28/08 in India and world

Recent Comments

  • Gyantoday on Born today Famous People’s Birthdays 27th August 27/08 in India and world
  • PAUL on Q58 What is constant expression required error in array?
  • Ganesh on User defined function of strcmp()
  • Abrar Alam Khan on Born today Famous People’s Birthdays 27th August 27/08 in India and world
  • Avinash singh on Q43 Write a C program to reverse odd bits or even bits of an integer.

Archives

  • August 2017
  • August 2016
  • July 2016
  • January 2016
  • December 2015
  • November 2015
  • October 2015
  • September 2015
  • August 2015
  • July 2015
  • June 2015
  • May 2015
  • January 2015

Categories

  • Android
  • Cell Phones
  • Core Java Interview Questions
  • Current Affairs
  • Exam Results
  • General Questions
  • Hadoop interview questions
  • IPC FAQ
  • IPC Questions Set 1
  • Jobs Today
  • Linux
  • Linux Interview Questions
  • LTE – Channels
  • LTE FAQ
  • LTE Questions Part 1
  • LTE Questions Part 2
  • LTE Questions Set 3
  • Mac OS
  • Most Important Interview Questions In C
  • News
  • Operating System FAQ
  • OS
  • OS Questions Set 1
  • Others
  • Python Interview Questions
  • Python Interview Questions set 1
  • Python Interview Questions set 2
  • Python Interview Questions set 3
  • Ruby Interview Questions
  • Ruby Interview Questions part 1
  • Ruby Interview Questions set 2
  • Science
  • Sports News
  • Today's Birthday
  • Tricky C programming questions
  • Upcoming Exams and Dates
  • Windows
  • XAMPP

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org
WordPress Theme: Tortuga by ThemeZee.