Home / Computer Science / Interview Stuff

Interview Stuff

Interview Stuff

Top 10 Interview Questions for Python Strings

Interview Questions for Python Strings

The world of programming has witnessed a surge in popularity of Python due to its simplicity and versatility. Here is the blog for top 10 interview questions for python strings, As a Python developer, it is crucial to have a strong understanding of strings as they form a fundamental data …

Read More »

Mostly Asked Interview Questions for Power BI Developer

The purpose of this blog post is to help individuals preparing for a job interview for the role of Power BI Developer. This post covers the Mostly Asked Interview Questions for Power BI Developer, essential skills and knowledge required to become a Power BI Developer, including data modeling, data transformation, …

Read More »

DAX Interview Questions Part – 2

Dax Interview Questions

These are mostly asked DAX Interview Questions in Power BI developer or Data analyst interview’s. Below are questions for experienced level and freshers interviews. Q. Can you explain the difference between the SUM and SUMX functions in DAX? Ans: The SUM function in DAX is used to sum up the …

Read More »

Dax Interview Questions Part -1

Dax Interview Questions

Advanced Level DAX Interview Questions Q: What is the difference between calculated columns and measures in DAX? Ans: Calculated columns are used to create new columns in a table that are based on expressions that use other columns in the same table. These columns are calculated at the row level …

Read More »

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 »