Home »
Recent posts
All posts from April 2018
Learn: In this article we learn about the different storing classes used in C programming language.
Tags:
C programming language
Learn- In this article we study about the introduction of Entity Relationship Diagram(ER Diagram). We understand why we use ER Diagram in Database management system? What are the basic attribute of ER Model.
Tags:
DBMS
Learn: The difference between references [preferably used in C++] and pointers [preferably used in C/C++] and would ultimately help in answering a C++ interview question.
Tags:
C++ programming language
A service is a component that runs in the background for supporting different types of operations that are long running. The user is not interacted with these. These perform task even if application is destroyed. Examples include handling of network transactions, interaction with content providers, playing music.
Tags:
Android
In this tutorial, we are going to learn how to animate pictures and graphics in android studio. This is an example of ‘fade in’ animation.
Tags:
Android
In this C program, we are going to design a login screen that will read and validate username, password with given values.
Tags:
C programs,
C puzzle programs
In this C program, we are going to print the characters with their ASCII codes? As we know that each character has some specific predefined code (ASCII - American Standard Code for Information Interchange), here we are printing those codes using a C program.
Tags:
C programs,
C MISC. programs
In the past it was a saying that in few upcoming years Humanoid Robots will be all around us and I think this is the start so guys we are going to tell you a very interesting fact that Smithsonian Institute situated at Washington D.C., which is known to be world’s largest museum...
Tags:
News/Updates
In this C program, we will learn how to get and set the systems date, time in Windows. This program will execute in Windows based compiler/system.
Tags:
C programs,
C MISC. programs
In this C program, we will learn how can we find the remainder of two integer numbers without using modulus (%) operator?
Tags:
C programs,
C MISC. programs
In this C program, we will check what will be the size of different types of pointer variables? Here, we will print the size of different types of pointer variables.
Tags:
C programs,
C pointer programs
In this C program, we are going to learn about double pointers (pointer to pointer) in C programming language, here we will learn how to declare, assign and use a double pointer (pointer to pointer) in C?
Tags:
C programs,
C pointer programs
In this C program, we are going to learn about array of pointers in C programming language, here we will learn how to declare and use an array of pointers in C?
Tags:
C programs,
C pointer programs
C programming Bitwise Operators Aptitude Questions and Answers: In this section you will find C Aptitude Questions and Answers on Bitwise Operators like Bitwise OR (|), Bitwise AND (&), Bitwise NOT (!).
Tags:
C Aptitude Questions and Answers
C programming Basic Aptitude Questions and Answers: In this section, you will find C Aptitude Questions and Answers on Basic Input, Output, Data Type, printf, scanf etc.
Tags:
C Aptitude Questions and Answers
This is a common error while compiling C program in GCC/G++ Linux. This error occurs when you are using pthread_create function to create threads in your programs.
Tags:
C programming
This is a common error while compiling C program in GCC/G++ Linux. This error occurs when you are using pow function to calculate power of a number in your programs.
Tags:
C programming
Both are the compilers in Linux to compile and run C and C++ programs. Initially gcc was the GNU C Compiler but now a day's GCC (GNU Compiler Collections) provides many compilers, two are: gcc and g++.
Tags:
C programming
C & C++ are computer programming languages that are used to write programs to communicate with computer. Here we will learn what is C and C++ programming languages and what are the differences between them.
Tags:
C programming
This section contains solved c programming examples on various c language popular topics. Provided all examples have explanations and output on different user inputs. These programs are important for exams and interview prospective. Programs are all time favourite for computer science students, IT professionals and job seeking guys.
Tags:
C programs
Learn: What is Covariant return type in java? Here, we are going to learn about Covariant return type in detail and what is the utilization of Covariant return type?
Tags:
Java programming
This section contains the aptitude questions and answers on basic concepts of DBMS. You will find aptitude questions on DDL, DCL, DML, DQL, TCL statements and other related topics.
Tags:
DBMS Aptitude Questions and Answers,
DBMS
This section contains the aptitude questions and answers on basic concepts of DBMS. You will find aptitude questions on DDL, DCL, DML, DQL, TCL statements and other related topics.
Tags:
DBMS Aptitude Questions and Answers,
DBMS
This section contains the aptitude questions and answers on basic concepts of DBMS. You will find aptitude questions on DDL, DCL, DML, DQL, TCL statements and other related topics.
Tags:
DBMS Aptitude Questions and Answers,
DBMS
This section contains the aptitude questions and answers on basic concepts of DBMS. You will find aptitude questions on DDL, DCL, DML, DQL, TCL statements and other related topics.
Tags:
DBMS Aptitude Questions and Answers,
DBMS
SQL Join Tutorial - In this tutorial, we are going to learn about the SQL joins with Queries and Examples. There are two joins that we are going to discuss here - 1) Inner Join and 2) Outer Join and there sub parts.
Tags:
DBMS,
SQL
In this article, we are going to learn about the va_start() and va_end() functions of stdarg.h header file in C programming language and use it to initializes the variable argument list referred to by ap.
Tags:
C programs
In this article we are going to learn about the longjmp() function of setjmp.h header file in C programming language and use it to restores the environment and returns from the original setjmp function.
Tags:
C programs
In this article we are going to learn about the localeconv() function of locale.h header file in C programming language and use it to returns a pointer to a structure that contains current locale information.
Tags:
C programs
C++ Functions and Block based aptitude questions and answers - This section contains Aptitude Questions and Answers based on C++ functions and blocks.
Tags:
C++ Aptitude Questions and Answers
C++ Constructor and Destructor based C++ programming aptitude questions and answers - This section has some questions which are based on C++ class’s constructor and destructor feature.
Tags:
C++ Aptitude Questions and Answers
This section contains C++ programming Basic Input, Output, Data types, Declaration etc Aptitude Questions and Answers with explanations.
Tags:
C++ Aptitude Questions and Answers
In this section you will find C Aptitude Questions and Answers on condition statements – if else, nested if else, ladder if else, conditional operators etc.
Tags:
C Aptitude Questions and Answers
In this section you will find C Aptitude Questions and Answers on various looping statements like while, do dhile, for nested looping etc.
Tags:
C Aptitude Questions and Answers
Nowadays this is a very big problem to search appropriate data on web search engines. This is quite difficult to get our desired data. Well, there are more search engines which perform the job of data searching like Google, Yahoo, Bing etc., but sometimes these are unable to provide required data. Here is a list of searching techniques to improve the accuracy of results. The uses of these searching techniques are just like "something is better than nothing". After using these, one can be able to get fruitful results.
Tags:
Articles
In this section you will find C Aptitude Questions and Answers on Strings, String is the set of characters and String related Aptitude Questions and Answers you will find here.
Tags:
C Aptitude Questions and Answers
User define function example with arguments and no return type - In this C program, we are defining a function that will not return any value but have arguments.
Tags:
User define functions C programs,
C programs
User define function Example with No argument and No return type - In this C program, we are defining a function that will not have any argument and return type.
Tags:
User define functions C programs,
C programs
In this section you will find C Aptitude Questions and Answers on Pre-processor topics like #define, #undef, #if, #endif etc.
Tags:
C Aptitude Questions and Answers
In this section you will find C Aptitude Questions and Answers on Functions and Blocks – Scope of the block, function’s declarations, function’s definition, function’s calling etc.
Tags:
C Aptitude Questions and Answers
In this section you will find C Aptitude Questions and Answers on Pointers topics, declaring pointers, using pointers, pointer with other c topics like pointer of array etc.
Tags:
C Aptitude Questions and Answers
In this section you will find C Aptitude Questions and Answers on typedef topics, defining/changing name of any data type, using and accessing the typedef values.
Tags:
C Aptitude Questions and Answers
In this section you will find C Aptitude Questions and Answers on Command Line Arguments – Passing values with running programs, separate argument values, number of arguments etc.
Tags:
C Aptitude Questions and Answers
This section contains Aptitude Questions and Answers on Cast Typing, Basically in C programming language there are two types of cast type - Implicit and Explicit.
Tags:
C Aptitude Questions and Answers
Russia made a Robot that is designed for hiring humans.
04 APR 2018 by Aleesha Ali
A Russian startup company named Stafory has invented an AI (Artificial Intelligence) powered robot named Vera, that is been trained with thirteen billion examples of syntax and speech. Vera can shortlist or delete duplicate resumes and conduct interviews. The startup claims Vera has taken over 2,000 interviews so for and has 300 clients including PepsiCo, L’Oreal, and Ikea.
Tags:
News
Tech giant Google has announced to shut down its URL shortening service ‘goo.gl’.
04 APR 2018 by Aleesha Ali
Google has announced that it will be shutting down its URL (Uniform Resource Locator) shortening service named ‘goo.gl’. The company said new and anonymous users won’t be able to create links through the service from April 13 but it’ll be available for existing users for another year. The URL shortener was launched in 2009 for users to share links and measure traffic online.
Tags:
News
Glimpse of Private Cloud in Cloud Computing.
04 APR 2018 by Aleesha Ali
Public clouds are appealing and provide a viable option to cut IT costs and reduce capital expenses, but they are not applicable in all scenarios. For example, a very common critique to the use of cloud computing in its canonical implementation is the loss of control. In the case of public clouds, the provider is in control of the infrastructure and, eventually, of the customers’ core logic and sensitive data...
Tags:
Cloud Computing
Types of Inheritance in C#.
03 APR 2018 by IncludeHelp
In this article, we are going to learn about Types of Inheritance in C# with its definition, syntax etc.
Tags:
C#
Inheritance in C# with Example.
03 APR 2018 by IncludeHelp
In this article, we are going to learn about Inheritance in C#.net: What is Inheritance, what are its properties? How can we implement Inheritance? Learn everything about Inheritance with Example.
Tags:
C#
SQL Alias.
02 APR 2018 by Preeti Jain
What is SQL alias? Here, we are going to learn how we can define aliases of table, column in SQL? What is the purposes of aliases and what is the advantages of SQL?
Tags:
SQL