Home / Computer Science / Interview Stuff

Interview Stuff

Interview Stuff

Visakhapatnam Smart City – IT and ITeS Companies

Visakhatanam is the one of the fast growing developing city in India. Below is the list of IT and ITeS list in vizag.   Excel To HTML using codebeautify.org Company’s Name Contact Number Website Address Acclaris Business Solutions Pvt.ltd. 0891-2787323 http://acclaris.com Dutt Island, Siripuram ACN Infotech (India) Private Limited +91-891-2541522, …

Read More »

Java Programs

seconds to hours and minutes

Write a java program to accept seconds as an input and convert into hours and minutes? import java.util.*; public class timeConvert { int sec=0,min=0,hr=0; int reminder=0; Scanner sr = new Scanner(System.in); public timeConvert(){ System.out.println(“Enter seconds to convert”); sec=sr.nextInt(); if(sec!=0){ min=sec/60; reminder=sec%60; sec=reminder; if(min>=60){ hr=min/60; min=min%60; } } System.out.println(hr+”Hours:”+min+”Minutes:”+sec+”Seconds”); } public …

Read More »

Questions & Answers for Interviews

Q1).State the different types of linked lists? ANS). The different types of linked list includes, single linked list, double linked list and circular linked list. Q2).List the basic operations carried out in a linked list? ANS). The basic operation carried out in a linked list includes *creation of a list …

Read More »

Interview Question-Java Virtual Machine

When a Java program is compiled it is converted to byte code which is then executed by the Java interpreter by translating the byte code into machine instructions. Java interpreter is part of Java runtime environment. Byte code is an intermediate code independent of any machine and any operating system. …

Read More »