Nishtha Thakur has Published 581 Articles

Variable Length Argument in C

Nishtha Thakur

Nishtha Thakur

Updated on 30-Jul-2019 22:30:25

945 Views

Sometimes, you may come across a situation, when you want to have a function, which can take variable number of arguments, i.e., parameters, instead of predefined number of parameters. The C/C++ programming language provides a solution for this situation and you are allowed to define a function which can accept ... Read More

Iterate through Octet Tuple in Java

Nishtha Thakur

Nishtha Thakur

Updated on 30-Jul-2019 22:30:25

52 Views

You can easily iterate through Octet Tuple using a for the loop. Let us first see what we need to work with JavaTuples. To work with Octet class in JavaTuples, you need to import the following package −import org.javatuples.Octet;Note − Download JavaTuples Jar library to run JavaTuples program. If you ... Read More

Operations on struct variables in C

Nishtha Thakur

Nishtha Thakur

Updated on 30-Jul-2019 22:30:25

757 Views

Here we will see what type of operations can be performed on struct variables. Here basically one operation can be performed for struct. The operation is assignment operation. Some other operations like equality check or other are not available for stack.Example#include typedef struct { //define a structure for complex ... Read More

How to Sort a stack in android?

Nishtha Thakur

Nishtha Thakur

Updated on 30-Jul-2019 22:30:25

59 Views

This example demonstrate about How to Sort a stack in android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.     In the above ... Read More

The contains() method of the Java Ennead Tuple

Nishtha Thakur

Nishtha Thakur

Updated on 30-Jul-2019 22:30:25

33 Views

The contains() method of the Ennead Tuple in Java is used to search for a value in the Tuple. To find the existence of a value, you need to just set it as a parameter of the method. It returns a boolean value i.e. TRUE is returned for the existence ... Read More

How to efficiently perform “distinct” with multiple keys in MongoDB?

Nishtha Thakur

Nishtha Thakur

Updated on 30-Jul-2019 22:30:25

238 Views

You can perform distinct with multiple keys with the help of an aggregate framework.To understand the concept, let us create a collection with the document. The query to create a collection with a document is as follows −> db.distinctWithMultipleKeysDemo.insertOne({"StudentName":"Mike", "StudentAge":22, "StudentMathMarks":56}); {    "acknowledged" : true,    "insertedId" : ObjectId("5c7f74488d10a061296a3c53") ... Read More

What is the difference between C++0x and C++11?

Nishtha Thakur

Nishtha Thakur

Updated on 30-Jul-2019 22:30:22

234 Views

C++ and C Standards are usually named after the year they are published in. For example, in C++, the original Standard was published in 1998, so it is called C++98, and its first correction, published in 2003 is called C++03.For the next revision, it was supposed that the next Standard ... Read More

What do you mean by C++ Tokens?

Nishtha Thakur

Nishtha Thakur

Updated on 30-Jul-2019 22:30:21

1K+ Views

A token is the smallest element of a C++ program that is meaningful to the compiler. The C++ parser recognizes these kinds of tokens: identifiers, keywords, literals, operators, punctuators, and other separators. A stream of these tokens makes up a translation unit. Tokens are usually separated by white space.The parser ... Read More

Architecture for Deploying SAP HR module

Nishtha Thakur

Nishtha Thakur

Updated on 30-Jul-2019 22:30:20

50 Views

It would be good to separate the HR from other modules as not only the load and usage is high on HRmodule but the business and security requirements differ for HR module as well.In such scenarios, other module can be customized in terms of security and configured as per theirneeds. ... Read More

Learning SAP HANA and scope with ABAP-HANA or BI-HANA

Nishtha Thakur

Nishtha Thakur

Updated on 30-Jul-2019 22:30:20

147 Views

While you have a valid point that most of the SAP HANA projects are coupled with varied SAP landscape but there does exists a lot of projects which involve only native SAP HANA development.It entirely depends on your interests and knowledge base but sound understanding of the core concepts around ... Read More

Advertisements