↳
Dear Candidate, Since your identity is not known to us we are unable to cross verify your concerns, but we will still attempt to clear your doubts. We are not sure how many interviews you have attended, any experienced candidate would know that it is a standard procedure of having 2-3 rounds of interview, especially for technical positions. We are unable to check your interview and test papers, but just for your knowledge our technical tests have various degrees of difficulty, you probably have attempted the basic level and not the intermediate or advanced level test. We invite you to attempt the higher levels. Regarding interview in Hindi, when candidates struggle to reply in the English language, we do not mind using our national language. Do you have an objection if we use our national language for communication ? As for the wait, apologies if you had to wait for a long duration and the inconvenience caused to you (if any), but again any experienced candidate would know and be prepared to wait, especially when there are more than expected candidates for interview. Further option for hiring on contract or payroll is something that is decided as per mutual preference. Infact we believe this is an additional option to the employee. HR CyberSol Less
↳
Do not reply on the name of HR. There is no HR in company. For god shake dont play emotion with emplyee. Close this company Less
↳
Explained my roles and responsibilities from my previous companies. About the course which i have done. Less
↳
Please Share the interview questions.
↳
Q.which not html5 attrribute =---- properties id, name, accesskey, class,.. A: name Less
↳
Q.global assemble cache can maintain, option a> 2 assembly with same name, version. b> same name, diff version c> maintain only one, d> A: assembly with same name, version. Less
↳
The online test was done through interviewzen site. The recruiter will be able to view each of your action during the test time as all your action will be recorded by interviewzen. Recruiter may want to see the approach how you answers the questions rather than the right syntax. Less
↳
Thanks for the feedback. What did they ask you to code? Like a web application or just a problem? Less
↳
I agree with the process for points 1 and 2. The telephone interview and then the group interview are as described. Less
↳
Create update delete operations
↳
What are Crud operations??
↳
What do you mean by Pseudo code for Hospital and doctor working?
↳
Ans. I answered: Temporary tables are stored only in one database i.e. tempdb. Still the interviewer was asking irrelevant scenarios. Less
↳
No, because temporary table only exists in temp db
↳
Interviewer asked, "but if temporary table exists in different databases, can both be accessed in same query window?" Less
↳
select max(salary) from emp where salary<(select max(salary)from emp);
↳
Select sal from (select sal, dense_rank() over( order by sal desc) r from students) where r=&n N = Place the position of any highest salary eg:- 2nd highest n=2, 3rd highest n=3 and so on. Less
↳
select max(salary) from emp where salary<(select max(salary)from emp);
↳
maintaining a state is session management.
↳
Session management is a way in ASP.net to ensure that information is passed over from one page to the other. The view state property of a page is used to automatically pass the information of controls from one page to the other. The 'Session' object is used to store and retrieve specific values within a web page. Less
↳
Session management is a way in ASP.net to ensure that information is passed over from one page to the other. The view state property of a page is used to automatically pass the information of controls from one page to the other. The 'Session' object is used to store and retrieve specific values within a web page. Less
↳
How many marks they have aloted for each section??
↳
Some 5 some 10
↳
What interview questions they ask on asp.net??
↳
Proceed with given formula
↳
Answer of this program in c++ #include int main() { float maths,chemistry,physics,cutoff; cout>maths; cout>chemistry; cout>physics; maths=maths*0.5; chemistry=chemistry*0.25; physics=physics*0.25; cutoff=maths+chemistry+physics; cout<<"The cutoff value is : "< Less
↳
import java.io.*; public class Cutoff { /** * @param args */ public static void main(String[] args)throws IOException { // TODO Auto-generated method stub float chemistry,physics,maths; Double cutoff; String str; DataInputStream in= new DataInputStream(System.in); System.out.println("Enter the chemistry marks out of 200:"); str=in.readLine(); chemistry=Integer.parseInt(str); System.out.println("Enter the physics marks out of 200:"); str=in.readLine(); physics=Integer.parseInt(str); System.out.println("Enter the maths marks out of 200:"); str=in.readLine(); maths=Integer.parseInt(str); maths=(float)(maths*0.5); physics=(float)(physics*0.25); chemistry=(float)(chemistry*0.25); cutoff=(double)(maths+physics+chemistry); System.out.println("The cutoff value is:"+cutoff); } } Less
↳
Write an algorithm that implements a "long division" (http://en.wikipedia.org/wiki/Long_division). That in theory still needs the div and mod operators, but you can always implement that the other way round, if slower, by subtacting the divisor until the (part of the) number you are currently considering is smaller than the divisor. Less
↳
Thanks Kanchan for the solution! One thing I noticed is that answer will result in an infinite loop, it also will not account for an equivalent numerator and denominator. For anyone who refers to the above solution I think this will work: // C#: Simple logic : Note: Works only for Integers int division(int numerator, int denominator) { int result = 0; while (numerator >= denominator) { numerator = numerator - denominator; result++; } return result; } Less
↳
The above answer fails as well, because of the fact that you can't divide a positive number by a negative number or vice versa. IE: 5/(-3) would yielf 5 = 5 - (-3) = 8. the numerator will always be greater than the denominator. Plus it does not account for division by . These are all simple fixes. Less