-
Kernel executes the first process when system starts
Ans :- init();
-
Unary and Binary Operator
Explain the concept of unary and binary operator overloading giving suitable examples.
-
-
WIPRO Technical Interview
main()
{
int a[]={0 1 2 3};
int *b;
b=&a[2];
printf("%d",b[-1]);
}
TECHNICAL INTERVIEW -
A Tricky Question
A financial year is start from 1 April of every year and end on 31 March of next year. Write a C program to find number of months and number of days between two dates in a given financial year. E.g if d1=5/4/2012 and d2=23/2/2013 are given, find the no. of days between these two dates.
-
-
-
Explanation of static in c,c++,c#and core java.
Please explain me the use of static in c,c++,c#and core java using in variable and method or function with its effects
-
-
-
-
-
Array Differences
What is the difference between one-dimensional and two-dimensional arrays?
-
RDBMS triggers are typically bound to a _____________and one or more _____________
a) Table, SQL statement types b) SQL statement type, user c) Column, rows d) User, tables
-
-
What is the function of the modulus operator in most languages ?
a) Sets a system environmental value to either base 10, base 8 or base 16 b) Returns the remainder after dividing one number by another c) Returns the first argument raised to the second argument power d) Prints out the actual code written to standard output rather than executing the code
-
What is the entry in your .kshrc or .profile that will save up to last 200 commands in a history list?
Assuming you have the environment variable ENV=.kshrc set, What is the entry in ur .kshrc or .profile that will save up to ur last 200 commands in a history list?
A) HISTSIZE=200
B) Set history 200
C) HISTORY=200
D) Setenv history 200 -
With every use of memory allocation function should be used to release allocated memory which is no longer needed ?
A) dropmem() b) dealloc() c) release() d) free()
-
-
Languages Interview Questions
Sub Category
Questions
Answers
Last Updated
Ans