-
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
-
-
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
-
Array Differences
What is the difference between one-dimensional and two-dimensional arrays?
-
-
-
-
-
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
-
-
-
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.
-
WIPRO Technical Interview
main()
{
int a[]={0 1 2 3};
int *b;
b=&a[2];
printf("%d",b[-1]);
}
TECHNICAL INTERVIEW -
-
Unary and Binary Operator
Explain the concept of unary and binary operator overloading giving suitable examples.
-
Kernel executes the first process when system starts
Ans :- init();
-
Which hardware implements stack operation in 8085/8086
A. ROM
B. PROM
C. RAM
D. none of these
Answer:C.RAM
-
C language
Write a function to find how many binary 1s nd 0s present in a number
What is the output of the program?
main()
{
char a='123'
printf ("%c n",a);
return 0;
}
A. ASCII value of 121
B. 1
C. 3
D. none of these
Ans