Alter Systems

Career Details
Eligibility:

Engineering Degree with 50%

Selection Process:

Written
GD
Interview

Entry Package:
1.9
Organization Details
Company Profile :

Alter Systems was founded in 2004 in order to service United States’ growing demand for energy that is independent of traditional fossil fuels, reliable, and supports sustainable approaches to development. As we approach the future of dwindling energy resources commonly referred as “peak oil”, the demand for reliable and cost-effective sources of energy will become more and more important in local communities, United States and the World as whole.

The mission of Alter Systems is to promote renewable energy use across the United States by providing our customers with the source of information, products and services that will facilitate this transition from fossil fuel dependency to a sustainable and earth-friendly independence. We understand that our customers’ desires to make their homes and offices environmental friendly must be combined with financially feasible approaches. That’s why we are not only experts in alternative energy resource engineering, but in the financial incentives and tax advantages of installing alternative energy systems.

Sample Paper
int b=10;
int *p=&b;
*p++;
printf("%d",*p);
what is the output?

What is the difference between malloc, calloc and realloc?

What does malloc return in C and C++?

main()
{
char *a="hello";
char *b="bye";
char *c="hai";
int x=10,y=100;
c=(x)?a:b;
printf("%s",c);
}
whats the output?

void main()
{
int a,b;
a=sumdig(123);
b=sumdig(123);
printf("%d %d",a,b);
}
int sumdig(int n)
{
static int sum;
int d;
if(n!=0)
{
d=n%10;
n=(n-d)/10;
sum=sum+d;
sumdig(n);
}
else
return s;
}
what is the output?

Declare a pointer to a function that takes a char pointer
as argument and returns a void pointer.

How do we open a binary file in Read/Write mode in C?

C++

class A
{
public:
A()
{
}
~A();
};
class derived:public A
{
derived();
};
what is wrong with this type of declaration?

what do you mean by exception handling?

What are "pure virtual" functions?

What is the difference between member functions and
static member functions?

What is the4 difference between delete[] and delete?

Question on Copy constructor.

What are namespaces?

One question on namespace.

What are pass by valu and pass by reference?
what is the disadvantage of pass by value?
I didnt get this. if you have the answer plz tell me.

How to invoke a C function using a C++ program?

char *str;
char *str1="Hello World";
sscanf(str1,"%s",str);
what is the output?

Difference between function overloading and function overriding.

There is a base class sub, with a member function fnsub(). There are
two classes super1 and super2 which are subclasses of the base class sub.
if and pointer object is created of the class sub which points to any
of the two classes super1 and super2, if fnsub() is called which one
will be inoked?

0
No votes yet

Post new comment

The content of this field is kept private and will not be shown publicly.
 
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd><a> <em> <strong> <small> <sup> <sub> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd> <h2> <h3> <h4> <img> <br> <br /> <p> <div> <span> <b> <i>.
  • Lines and paragraphs break automatically.

More information about formatting options