Date: 20-10-2023
Company : Tiger Analytics
Role : Data Analyst
Topic : Tableau extract, tableau parameter, freeze pane, vlookup
1. What is a Tableau extract?
A Tableau extract is a compressed file that contains a subset of data from a larger data source. Extracts can be used to improve performance by reducing the amount of data that needs to be loaded into Tableau. Extracts can be created by selecting the "Extract" option when connecting to a data source, and can be refreshed on a schedule or on demand.
2. What is a Tableau parameter?
A Tableau parameter is a dynamic input that allows users to change the behavior of a visualization. Parameters can be used to create dynamic filters, switch between views, or adjust calculations. Parameters are created by defining a data type, range of allowable values, and a default value. Parameters can be used in calculations, filters, and other parts of a Tableau workbook.
3. What is conditional formatting in Excel?
Conditional formatting allows you to apply formatting rules to cells based on specific conditions, such as highlighting values greater than a certain threshold or applying color scales.
4. What is the purpose of the VLOOKUP function in Excel?
The VLOOKUP function is used to search for a value in the leftmost column of a table and retrieve a corresponding value from a different column within the same row.
โโโโโโโโโโโโโโโโโโโโ-
Company : Tiger Analytics
Role : Data Analyst
Topic : Tableau extract, tableau parameter, freeze pane, vlookup
1. What is a Tableau extract?
A Tableau extract is a compressed file that contains a subset of data from a larger data source. Extracts can be used to improve performance by reducing the amount of data that needs to be loaded into Tableau. Extracts can be created by selecting the "Extract" option when connecting to a data source, and can be refreshed on a schedule or on demand.
2. What is a Tableau parameter?
A Tableau parameter is a dynamic input that allows users to change the behavior of a visualization. Parameters can be used to create dynamic filters, switch between views, or adjust calculations. Parameters are created by defining a data type, range of allowable values, and a default value. Parameters can be used in calculations, filters, and other parts of a Tableau workbook.
3. What is conditional formatting in Excel?
Conditional formatting allows you to apply formatting rules to cells based on specific conditions, such as highlighting values greater than a certain threshold or applying color scales.
4. What is the purpose of the VLOOKUP function in Excel?
The VLOOKUP function is used to search for a value in the leftmost column of a table and retrieve a corresponding value from a different column within the same row.
โโโโโโโโโโโโโโโโโโโโ-
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ pinned ยซDate: 20-10-2023 Company : Tiger Analytics Role : Data Analyst Topic : Tableau extract, tableau parameter, freeze pane, vlookup 1. What is a Tableau extract? A Tableau extract is a compressed file that contains a subset of data from a larger data source.โฆยป
Date: 10-12-2023
Company Name: LinkedIn
Role: Data Analyst
Topics asked from: Social Network Analysis, Data Visualization, User Engagement
Q1: How would you analyze data to understand user connection patterns on a professional network?
Ans: I'd use graph databases like Neo4j for social network analysis. By analyzing connection patterns, I can identify influencers or isolated communities.
Q2: Describe a challenging data visualization you created to represent user engagement metrics.
Ans: I visualized multi-dimensional data showing user engagement across features, regions, and time using tools like D3.js, creating an interactive dashboard with drill-down capabilities.
Q3: How would you identify and target passive job seekers on LinkedIn?
Ans: I'd analyze user behavior patterns, like increased profile updates, frequent visits to job postings, or engagement with career-related content, to identify potential passive job seekers.
Q4: How do you measure the effectiveness of a new feature launched on LinkedIn?
Ans: I'd set up A/B tests, comparing user engagement metrics between those who have access to the new feature and a control group. I'd then analyze metrics like time spent, feature usage frequency, and overall platform engagement to measure effectiveness.
Company Name: LinkedIn
Role: Data Analyst
Topics asked from: Social Network Analysis, Data Visualization, User Engagement
Q1: How would you analyze data to understand user connection patterns on a professional network?
Ans: I'd use graph databases like Neo4j for social network analysis. By analyzing connection patterns, I can identify influencers or isolated communities.
Q2: Describe a challenging data visualization you created to represent user engagement metrics.
Ans: I visualized multi-dimensional data showing user engagement across features, regions, and time using tools like D3.js, creating an interactive dashboard with drill-down capabilities.
Q3: How would you identify and target passive job seekers on LinkedIn?
Ans: I'd analyze user behavior patterns, like increased profile updates, frequent visits to job postings, or engagement with career-related content, to identify potential passive job seekers.
Q4: How do you measure the effectiveness of a new feature launched on LinkedIn?
Ans: I'd set up A/B tests, comparing user engagement metrics between those who have access to the new feature and a control group. I'd then analyze metrics like time spent, feature usage frequency, and overall platform engagement to measure effectiveness.
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ pinned ยซDate: 10-12-2023 Company Name: LinkedIn Role: Data Analyst Topics asked from: Social Network Analysis, Data Visualization, User Engagement Q1: How would you analyze data to understand user connection patterns on a professional network? Ans: I'd useโฆยป
public static List<Integer> findDistinctDuplicates(int N, int[] arr) {
HashSet<Integer> seen = new HashSet<>();
HashSet<Integer> duplicates = new HashSet<>();
for (int num : arr) {
if (!seen.add(num)) {
duplicates.add(num);
}
}
if (duplicates.isEmpty()) {
// No duplicates found
return List.of(-1);
} else {
// Convert set to list and sort it
List<Integer> result = new ArrayList<>(duplicates);
result.sort(null);
return result;
}
}
Array of Duplicate Elements โ
HashSet<Integer> seen = new HashSet<>();
HashSet<Integer> duplicates = new HashSet<>();
for (int num : arr) {
if (!seen.add(num)) {
duplicates.add(num);
}
}
if (duplicates.isEmpty()) {
// No duplicates found
return List.of(-1);
} else {
// Convert set to list and sort it
List<Integer> result = new ArrayList<>(duplicates);
result.sort(null);
return result;
}
}
Array of Duplicate Elements โ
def is_prime(num):
if num < 2:
return False
for i in range(2, int(num**0.5) + 1):
if num % i == 0:
return False
return True
def nth_prime_number(n):
count = 0
candidate = 1
while count < n:
candidate += 1
if is_prime(candidate):
count += 1
return candidate
Prime Numbers โ
if num < 2:
return False
for i in range(2, int(num**0.5) + 1):
if num % i == 0:
return False
return True
def nth_prime_number(n):
count = 0
candidate = 1
while count < n:
candidate += 1
if is_prime(candidate):
count += 1
return candidate
Prime Numbers โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
def is_prime(num): if num < 2: return False for i in range(2, int(num**0.5) + 1): if num % i == 0: return False return True def nth_prime_number(n): count = 0 candidate = 1 while count < n: candidateโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Walk in Interviews at Dukaan office, this Saturday.
Type : Full time
Role : backend developers.
Stack : Python (Django) and NodeJs
Freshers must have proof of work (Working projects).
https://x.com/subhashchy/status/1735234217142010069?t=aaIdM3BLv6Hgbfet9o-QGQ&s=35
Type : Full time
Role : backend developers.
Stack : Python (Django) and NodeJs
Freshers must have proof of work (Working projects).
https://x.com/subhashchy/status/1735234217142010069?t=aaIdM3BLv6Hgbfet9o-QGQ&s=35
X (formerly Twitter)
Subhash Choudhary (@subhashchy) on X
Walk in Interviews at Dukaan office, this Saturday.
Type : Full time
Role : backend developers.
Stack : Python (Django) and NodeJs
Freshers must have proof of work (Working projects).
Please register before coming (link in 1st comment)
Type : Full time
Role : backend developers.
Stack : Python (Django) and NodeJs
Freshers must have proof of work (Working projects).
Please register before coming (link in 1st comment)
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Zappian is hiring for Intern role (2024 and 2025 grads can apply)
Link to apply: https://career.zappian.com/
Link to apply: https://career.zappian.com/
Zappian Media
Career
Zappian Career page. Job position
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Give.do is hiring for Analyst role (0-1 year of experience)
https://docs.google.com/forms/d/e/1FAIpQLScumc_PLlTNZLfmr5oih9TQbgwJpnnbpQjZeQLXnZ42cW35Gw/viewform
Work is purely based on SQL, only apply if you have decent knowledge of SQL
https://docs.google.com/forms/d/e/1FAIpQLScumc_PLlTNZLfmr5oih9TQbgwJpnnbpQjZeQLXnZ42cW35Gw/viewform
Work is purely based on SQL, only apply if you have decent knowledge of SQL
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Accenture is Hiring for a premium process
#walkindrive at Gurgaon for fresher
Hiring Criteria:
Exp - 0 -1yrs
Shift - 24x7 with 5days working
Qualification - Graduates/Post Graduates (Non-tech)
Date - 18-Dec at 11AM
Venue - Accenture DDC5, Building No.7, Candor Tech Space, Kapashera-samalkha road, Sector-21, Gurugram
Contact : harjit.a.kaur@accenture.com
#walkindrive at Gurgaon for fresher
Hiring Criteria:
Exp - 0 -1yrs
Shift - 24x7 with 5days working
Qualification - Graduates/Post Graduates (Non-tech)
Date - 18-Dec at 11AM
Venue - Accenture DDC5, Building No.7, Candor Tech Space, Kapashera-samalkha road, Sector-21, Gurugram
Contact : harjit.a.kaur@accenture.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Ishrath Fathima on LinkedIn: #gomicron #microncareers #wherethebestbelong #electronicsโฆ | 94 comments
๐๐จ๐ฎ๐ซ ๐
๐ฎ๐ญ๐ฎ๐ซ๐ ๐๐ญ๐๐ซ๐ญ๐ฌ ๐๐๐ซ๐
Attention, graduates of 2023. Here is your invitation to apply !
Our ๐บ๐๐๐๐๐ ๐ฐ๐๐๐๐๐๐๐๐๐๐ ๐ฎ๐๐๐๐โฆ | 94 comments on LinkedIn
Attention, graduates of 2023. Here is your invitation to apply !
Our ๐บ๐๐๐๐๐ ๐ฐ๐๐๐๐๐๐๐๐๐๐ ๐ฎ๐๐๐๐โฆ | 94 comments on LinkedIn
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐AiDash is Hiring !!
Role: Software Engineer Intern
Batch: 2024, 2023
Location: Bangalore
Apply here-
https://jobs.lever.co/aidash/6db20838-2e74-40a3-bd2d-7d3345dfb5c4
Role: Software Engineer Intern
Batch: 2024, 2023
Location: Bangalore
Apply here-
https://jobs.lever.co/aidash/6db20838-2e74-40a3-bd2d-7d3345dfb5c4
jobs.lever.co
AiDash - Intern - Software Engineer
Who is AiDash? AiDash is making critical infrastructure industries climate-resilient and sustainable with satellites and AI. Using our full-stack SaaS solutions, customers in electric, gas, and water utilities, transportation, and construction are transformingโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Intern JD - Technology (002)[25].pdf
157.4 KB
Any one interested send your resume @sachdevlaksh
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๏ธ
------ Internships ------
๐ท Company Name - Ripple
๐ Batch - 2024
๐ Job Type - Hiring
๐ Location - Bengaluru
๐ Apply Link - https://ripple.com/careers/all-jobs/job/5568637/?gh_jid=5568637&gh_src=79e001831us
------ Internships ------
๐ท Company Name - Ripple
๐ Batch - 2024
๐ Job Type - Hiring
๐ Location - Bengaluru
๐ Apply Link - https://ripple.com/careers/all-jobs/job/5568637/?gh_jid=5568637&gh_src=79e001831us
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Wealthy is hiring SDE -> Backend
https://www.linkedin.com/posts/vijay-kumar-15253b186_wealthyis-hiring-sde-backend-responsibilities-activity-7141635785136422912-nEQy?utm_source=share&utm_medium=member_ios
https://www.linkedin.com/posts/vijay-kumar-15253b186_wealthyis-hiring-sde-backend-responsibilities-activity-7141635785136422912-nEQy?utm_source=share&utm_medium=member_ios
Linkedin
Sign Up | LinkedIn
500 million+ members | Manage your professional identity. Build and engage with your professional network. Access knowledge, insights and opportunities.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Propel is Hiring !!
Role: Software Developer
Batch: 2023, 2024
Apply here-
https://talent.propelinc.com/jobs/Careers/26698000060688712/Fresher---Software-Developer?source=CareerSite
Role: Software Developer
Batch: 2023, 2024
Apply here-
https://talent.propelinc.com/jobs/Careers/26698000060688712/Fresher---Software-Developer?source=CareerSite
โ๏ธ Amazon Off Campus Drive Hiring As Customer Service Associate | 2.4 LPA โ๏ธ
๐จโ๐ปJob Role : Customer Service Associate
๐Qualification : Any Degree
๐Experience : Freshers
๐ฐSalary : 2.4 LPA
โญ๏ธ Apply Fast : https://csalgo.us/2023/12/16/amazon-off-campus-drive-customer-service-associate/
๐จโ๐ปJob Role : Customer Service Associate
๐Qualification : Any Degree
๐Experience : Freshers
๐ฐSalary : 2.4 LPA
โญ๏ธ Apply Fast : https://csalgo.us/2023/12/16/amazon-off-campus-drive-customer-service-associate/
Jobs โ CSAlgo.US
Amazon Off Campus Drive Hiring As Customer Service Associate | 2.4 LPA
Explore Amazon's Off-Campus Drive for Customer Service Associates. Start your career with a salary of 2.4 LPA. Apply now for a chance to work with a global leader!